blob: 116c1cd132176314a3f6f227121da00f7f6ca903 [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
64 /** mmap segment info: base + length */
65 u8 *mmap_base;
66 u64 mmap_size;
67
Ed Warnickecb9cada2015-12-08 15:45:58 -070068} pool_header_t;
69
Chris Luke8e5b0412016-07-26 13:06:10 -040070/** Align pool header so that pointers are naturally aligned. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070071#define pool_aligned_header_bytes \
72 vec_aligned_header_bytes (sizeof (pool_header_t), sizeof (void *))
73
Chris Luke8e5b0412016-07-26 13:06:10 -040074/** Get pool header from user pool pointer */
Dave Barachc3799992016-08-15 11:12:27 -040075always_inline pool_header_t *
76pool_header (void *v)
77{
78 return vec_aligned_header (v, sizeof (pool_header_t), sizeof (void *));
79}
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Dave Barachb7f1faa2017-08-29 11:43:37 -040081extern void _pool_init_fixed (void **, u32, u32);
82extern void fpool_free (void *);
83
84/** initialize a fixed-size, preallocated pool */
85#define pool_init_fixed(pool,max_elts) \
86{ \
87 _pool_init_fixed((void **)&(pool),sizeof(pool[0]),max_elts); \
88}
89
Chris Luke8e5b0412016-07-26 13:06:10 -040090/** Validate a pool */
Dave Barachc3799992016-08-15 11:12:27 -040091always_inline void
92pool_validate (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -070093{
Dave Barachc3799992016-08-15 11:12:27 -040094 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -070095 uword i, n_free_bitmap;
96
Dave Barachc3799992016-08-15 11:12:27 -040097 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 return;
99
100 n_free_bitmap = clib_bitmap_count_set_bits (p->free_bitmap);
101 ASSERT (n_free_bitmap == vec_len (p->free_indices));
102 for (i = 0; i < vec_len (p->free_indices); i++)
103 ASSERT (clib_bitmap_get (p->free_bitmap, p->free_indices[i]) == 1);
104}
105
Dave Barachc3799992016-08-15 11:12:27 -0400106always_inline void
107pool_header_validate_index (void *v, uword index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108{
Dave Barachc3799992016-08-15 11:12:27 -0400109 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 if (v)
112 vec_validate (p->free_bitmap, index / BITS (uword));
113}
114
115#define pool_validate_index(v,i) \
116do { \
117 uword __pool_validate_index = (i); \
118 vec_validate_ha ((v), __pool_validate_index, \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400119 pool_aligned_header_bytes, /* align */ 0); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 pool_header_validate_index ((v), __pool_validate_index); \
121} while (0)
122
Chris Luke8e5b0412016-07-26 13:06:10 -0400123/** Number of active elements in a pool.
124 * @return Number of active elements in a pool
125 */
Dave Barachc3799992016-08-15 11:12:27 -0400126always_inline uword
127pool_elts (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128{
129 uword ret = vec_len (v);
130 if (v)
131 ret -= vec_len (pool_header (v)->free_indices);
132 return ret;
133}
134
Chris Luke8e5b0412016-07-26 13:06:10 -0400135/** Number of elements in pool vector.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Chris Luke8e5b0412016-07-26 13:06:10 -0400137 @note You probably want to call pool_elts() instead.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138*/
139#define pool_len(p) vec_len(p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
Chris Luke8e5b0412016-07-26 13:06:10 -0400141/** Number of elements in pool vector (usable as an lvalue)
142
143 @note You probably don't want to use this macro.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144*/
145#define _pool_len(p) _vec_len(p)
146
Chris Luke8e5b0412016-07-26 13:06:10 -0400147/** Memory usage of pool header. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148always_inline uword
Dave Barachc3799992016-08-15 11:12:27 -0400149pool_header_bytes (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150{
Dave Barachc3799992016-08-15 11:12:27 -0400151 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
Dave Barachc3799992016-08-15 11:12:27 -0400153 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 return 0;
155
156 return vec_bytes (p->free_bitmap) + vec_bytes (p->free_indices);
157}
158
Chris Luke8e5b0412016-07-26 13:06:10 -0400159/** Memory usage of pool. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160#define pool_bytes(P) (vec_bytes (P) + pool_header_bytes (P))
161
Chris Luke8e5b0412016-07-26 13:06:10 -0400162/** Local variable naming macro. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163#define _pool_var(v) _pool_##v
164
Chris Luke8e5b0412016-07-26 13:06:10 -0400165/** Queries whether pool has at least N_FREE free elements. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166always_inline uword
Dave Barachc3799992016-08-15 11:12:27 -0400167pool_free_elts (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168{
Dave Barachc3799992016-08-15 11:12:27 -0400169 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 uword n_free = 0;
171
Dave Barachc3799992016-08-15 11:12:27 -0400172 if (v)
173 {
174 n_free += vec_len (p->free_indices);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
Dave Barachc3799992016-08-15 11:12:27 -0400176 /* Space left at end of vector? */
177 n_free += vec_capacity (v, sizeof (p[0])) - vec_len (v);
178 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 return n_free;
181}
182
Chris Luke8e5b0412016-07-26 13:06:10 -0400183/** Allocate an object E from a pool P (general version).
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
Chris Luke8e5b0412016-07-26 13:06:10 -0400185 First search free list. If nothing is free extend vector of objects.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186*/
Dave Baracha690fdb2020-01-21 12:34:55 -0500187#define _pool_get_aligned_internal_numa(P,E,A,Z,N) \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400188do { \
189 pool_header_t * _pool_var (p) = pool_header (P); \
190 uword _pool_var (l); \
191 \
Dave Baracha690fdb2020-01-21 12:34:55 -0500192 STATIC_ASSERT(A==0 || ((A % sizeof(P[0]))==0) \
193 || ((sizeof(P[0]) % A) == 0), \
Dave Baracheb987d32018-05-03 08:26:39 -0400194 "Pool aligned alloc of incorrectly sized object"); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400195 _pool_var (l) = 0; \
196 if (P) \
197 _pool_var (l) = vec_len (_pool_var (p)->free_indices); \
198 \
199 if (_pool_var (l) > 0) \
200 { \
201 /* Return free element from free list. */ \
Dave Baracha690fdb2020-01-21 12:34:55 -0500202 uword _pool_var (i) = \
203 _pool_var (p)->free_indices[_pool_var (l) - 1]; \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400204 (E) = (P) + _pool_var (i); \
Dave Baracha690fdb2020-01-21 12:34:55 -0500205 _pool_var (p)->free_bitmap = \
206 clib_bitmap_andnoti_notrim (_pool_var (p)->free_bitmap, \
207 _pool_var (i)); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400208 _vec_len (_pool_var (p)->free_indices) = _pool_var (l) - 1; \
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200209 CLIB_MEM_UNPOISON((E), sizeof((E)[0])); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400210 } \
211 else \
212 { \
213 /* fixed-size, preallocated pools cannot expand */ \
214 if ((P) && _pool_var(p)->max_elts) \
215 { \
216 clib_warning ("can't expand fixed-size pool"); \
217 os_out_of_memory(); \
218 } \
219 /* Nothing on free list, make a new element and return it. */ \
Dave Baracha690fdb2020-01-21 12:34:55 -0500220 P = _vec_resize_numa (P, \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400221 /* length_increment */ 1, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 /* new size */ (vec_len (P) + 1) * sizeof (P[0]), \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400223 pool_aligned_header_bytes, \
Dave Baracha690fdb2020-01-21 12:34:55 -0500224 /* align */ (A), \
225 /* numa */ (N)); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400226 E = vec_end (P) - 1; \
Dave Baracha690fdb2020-01-21 12:34:55 -0500227 } \
Dave Barachbf3443b2018-10-18 15:37:49 -0400228 if (Z) \
Dave Baracha690fdb2020-01-21 12:34:55 -0500229 memset(E, 0, sizeof(*E)); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230} while (0)
231
Dave Baracha690fdb2020-01-21 12:34:55 -0500232#define pool_get_aligned_zero_numa(P,E,A,Z,S) \
233 _pool_get_aligned_internal_numa(P,E,A,Z,S)
234
235#define pool_get_aligned_numa(P,E,A,S) \
236 _pool_get_aligned_internal_numa(P,E,A,0/*zero*/,S)
237
238#define pool_get_numa(P,E,S) \
239 _pool_get_aligned_internal_numa(P,E,0/*align*/,0/*zero*/,S)
240
241#define _pool_get_aligned_internal(P,E,A,Z) \
242 _pool_get_aligned_internal_numa(P,E,A,Z,VEC_NUMA_UNSPECIFIED)
243
Dave Barachbf3443b2018-10-18 15:37:49 -0400244/** Allocate an object E from a pool P with alignment A */
245#define pool_get_aligned(P,E,A) _pool_get_aligned_internal(P,E,A,0)
246
247/** Allocate an object E from a pool P with alignment A and zero it */
248#define pool_get_aligned_zero(P,E,A) _pool_get_aligned_internal(P,E,A,1)
249
Chris Luke8e5b0412016-07-26 13:06:10 -0400250/** Allocate an object E from a pool P (unspecified alignment). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251#define pool_get(P,E) pool_get_aligned(P,E,0)
252
Dave Barachbf3443b2018-10-18 15:37:49 -0400253/** Allocate an object E from a pool P and zero it */
254#define pool_get_zero(P,E) pool_get_aligned_zero(P,E,0)
255
Dave Barach614ac5d2017-02-06 09:28:03 -0500256/** See if pool_get will expand the pool or not */
Florin Coras66b11312017-07-31 17:18:03 -0700257#define pool_get_aligned_will_expand(P,YESNO,A) \
Dave Barach614ac5d2017-02-06 09:28:03 -0500258do { \
259 pool_header_t * _pool_var (p) = pool_header (P); \
260 uword _pool_var (l); \
261 \
262 _pool_var (l) = 0; \
263 if (P) \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400264 { \
Florin Coras87bd96a2017-11-13 17:44:51 -0800265 if (_pool_var (p)->max_elts) \
266 _pool_var (l) = _pool_var (p)->max_elts; \
267 else \
268 _pool_var (l) = vec_len (_pool_var (p)->free_indices); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400269 } \
Dave Barach614ac5d2017-02-06 09:28:03 -0500270 \
271 /* Free elements, certainly won't expand */ \
272 if (_pool_var (l) > 0) \
273 YESNO=0; \
274 else \
275 { \
276 /* Nothing on free list, make a new element and return it. */ \
277 YESNO = _vec_resize_will_expand \
278 (P, \
279 /* length_increment */ 1, \
280 /* new size */ (vec_len (P) + 1) * sizeof (P[0]), \
281 pool_aligned_header_bytes, \
282 /* align */ (A)); \
283 } \
284} while (0)
285
Dave Barachbf3443b2018-10-18 15:37:49 -0400286/** Tell the caller if pool get will expand the pool */
Dave Barach614ac5d2017-02-06 09:28:03 -0500287#define pool_get_will_expand(P,YESNO) pool_get_aligned_will_expand(P,YESNO,0)
288
Chris Luke8e5b0412016-07-26 13:06:10 -0400289/** Use free bitmap to query whether given element is free. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290#define pool_is_free(P,E) \
291({ \
292 pool_header_t * _pool_var (p) = pool_header (P); \
293 uword _pool_var (i) = (E) - (P); \
Florin Corasfcd23682018-06-29 03:22:44 -0700294 (_pool_var (i) < vec_len (P)) ? clib_bitmap_get (_pool_var (p)->free_bitmap, _pool_i) : 1; \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295})
Dave Barachc3799992016-08-15 11:12:27 -0400296
Chris Luke8e5b0412016-07-26 13:06:10 -0400297/** Use free bitmap to query whether given index is free */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298#define pool_is_free_index(P,I) pool_is_free((P),(P)+(I))
299
Chris Luke8e5b0412016-07-26 13:06:10 -0400300/** Free an object E in pool P. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301#define pool_put(P,E) \
302do { \
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200303 typeof (P) _pool_var(p__) = (P); \
304 typeof (E) _pool_var(e__) = (E); \
305 pool_header_t * _pool_var (p) = pool_header (_pool_var(p__)); \
306 uword _pool_var (l) = _pool_var(e__) - _pool_var(p__); \
307 ASSERT (vec_is_member (_pool_var(p__), _pool_var(e__))); \
308 ASSERT (! pool_is_free (_pool_var(p__), _pool_var(e__))); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309 \
310 /* Add element to free bitmap and to free list. */ \
Florin Corasfcd23682018-06-29 03:22:44 -0700311 _pool_var (p)->free_bitmap = \
312 clib_bitmap_ori_notrim (_pool_var (p)->free_bitmap, \
313 _pool_var (l)); \
Dave Barach0654dcc2018-06-27 10:49:17 -0400314 \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400315 /* Preallocated pool? */ \
316 if (_pool_var (p)->max_elts) \
317 { \
318 ASSERT(_pool_var(l) < _pool_var (p)->max_elts); \
319 _pool_var(p)->free_indices[_vec_len(_pool_var(p)->free_indices)] = \
320 _pool_var(l); \
321 _vec_len(_pool_var(p)->free_indices) += 1; \
322 } \
323 else \
324 vec_add1 (_pool_var (p)->free_indices, _pool_var (l)); \
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200325 \
326 CLIB_MEM_POISON(_pool_var(e__), sizeof(_pool_var(e__)[0])); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327} while (0)
328
Chris Luke8e5b0412016-07-26 13:06:10 -0400329/** Free pool element with given index. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330#define pool_put_index(p,i) \
331do { \
332 typeof (p) _e = (p) + (i); \
333 pool_put (p, _e); \
334} while (0)
335
Chris Luke8e5b0412016-07-26 13:06:10 -0400336/** Allocate N more free elements to pool (general version). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337#define pool_alloc_aligned(P,N,A) \
338do { \
339 pool_header_t * _p; \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400340 \
341 if ((P)) \
342 { \
343 _p = pool_header (P); \
344 if (_p->max_elts) \
345 { \
346 clib_warning ("Can't expand fixed-size pool"); \
347 os_out_of_memory(); \
348 } \
349 } \
350 \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 (P) = _vec_resize ((P), 0, (vec_len (P) + (N)) * sizeof (P[0]), \
352 pool_aligned_header_bytes, \
353 (A)); \
354 _p = pool_header (P); \
355 vec_resize (_p->free_indices, (N)); \
356 _vec_len (_p->free_indices) -= (N); \
357} while (0)
358
Chris Luke8e5b0412016-07-26 13:06:10 -0400359/** Allocate N more free elements to pool (unspecified alignment). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360#define pool_alloc(P,N) pool_alloc_aligned(P,N,0)
361
Florin Coras8be6c402018-11-27 17:11:37 -0800362/**
363 * Return copy of pool with alignment
364 *
365 * @param P pool to copy
366 * @param A alignment (may be zero)
367 * @return copy of pool
368 */
369#define pool_dup_aligned(P,A) \
370({ \
371 typeof (P) _pool_var (new) = 0; \
372 pool_header_t * _pool_var (ph), * _pool_var (new_ph); \
373 u32 _pool_var (n) = pool_len (P); \
Florin Corasf9240dc2019-01-15 08:03:17 -0800374 if ((P)) \
375 { \
376 _pool_var (new) = _vec_resize (_pool_var (new), _pool_var (n), \
377 _pool_var (n) * sizeof ((P)[0]), \
378 pool_aligned_header_bytes, (A)); \
379 clib_memcpy_fast (_pool_var (new), (P), \
380 _pool_var (n) * sizeof ((P)[0])); \
381 _pool_var (ph) = pool_header (P); \
382 _pool_var (new_ph) = pool_header (_pool_var (new)); \
383 _pool_var (new_ph)->free_bitmap = \
384 clib_bitmap_dup (_pool_var (ph)->free_bitmap); \
385 _pool_var (new_ph)->free_indices = \
386 vec_dup (_pool_var (ph)->free_indices); \
387 _pool_var (new_ph)->max_elts = _pool_var (ph)->max_elts; \
388 } \
Florin Coras8be6c402018-11-27 17:11:37 -0800389 _pool_var (new); \
390})
391
392/**
393 * Return copy of pool without alignment
394 *
395 * @param P pool to copy
396 * @return copy of pool
397 */
Florin Coras47c40e22018-11-26 17:01:36 -0800398#define pool_dup(P) pool_dup_aligned(P,0)
Florin Coras8be6c402018-11-27 17:11:37 -0800399
Chris Luke8e5b0412016-07-26 13:06:10 -0400400/** Low-level free pool operator (do not call directly). */
Dave Barachc3799992016-08-15 11:12:27 -0400401always_inline void *
402_pool_free (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403{
Dave Barachc3799992016-08-15 11:12:27 -0400404 pool_header_t *p = pool_header (v);
405 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 return v;
407 clib_bitmap_free (p->free_bitmap);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400408
409 if (p->max_elts)
410 {
411 int rv;
412
413 rv = munmap (p->mmap_base, p->mmap_size);
414 if (rv)
415 clib_unix_warning ("munmap");
416 }
417 else
418 {
419 vec_free (p->free_indices);
420 vec_free_h (v, pool_aligned_header_bytes);
421 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 return 0;
423}
424
Damjan Marion62c25ab2020-12-12 23:32:12 +0100425static_always_inline uword
426pool_get_first_index (void *pool)
427{
428 pool_header_t *h = pool_header (pool);
429 return clib_bitmap_first_clear (h->free_bitmap);
430}
431
432static_always_inline uword
433pool_get_next_index (void *pool, uword last)
434{
435 pool_header_t *h = pool_header (pool);
436 return clib_bitmap_next_clear (h->free_bitmap, last + 1);
437}
438
Chris Luke8e5b0412016-07-26 13:06:10 -0400439/** Free a pool. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440#define pool_free(p) (p) = _pool_free(p)
441
Chris Luke8e5b0412016-07-26 13:06:10 -0400442/** Optimized iteration through pool.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
444 @param LO pointer to first element in chunk
445 @param HI pointer to last element in chunk
446 @param POOL pool to iterate across
447 @param BODY operation to perform
448
Dave Barachc3799992016-08-15 11:12:27 -0400449 Optimized version which assumes that BODY is smart enough to
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 process multiple (LOW,HI) chunks. See also pool_foreach().
451 */
452#define pool_foreach_region(LO,HI,POOL,BODY) \
453do { \
454 uword _pool_var (i), _pool_var (lo), _pool_var (hi), _pool_var (len); \
455 uword _pool_var (bl), * _pool_var (b); \
456 pool_header_t * _pool_var (p); \
457 \
458 _pool_var (p) = pool_header (POOL); \
459 _pool_var (b) = (POOL) ? _pool_var (p)->free_bitmap : 0; \
460 _pool_var (bl) = vec_len (_pool_var (b)); \
461 _pool_var (len) = vec_len (POOL); \
462 _pool_var (lo) = 0; \
463 \
464 for (_pool_var (i) = 0; \
465 _pool_var (i) <= _pool_var (bl); \
466 _pool_var (i)++) \
467 { \
468 uword _pool_var (m), _pool_var (f); \
469 _pool_var (m) = (_pool_var (i) < _pool_var (bl) \
470 ? _pool_var (b) [_pool_var (i)] \
471 : 1); \
472 while (_pool_var (m) != 0) \
473 { \
474 _pool_var (f) = first_set (_pool_var (m)); \
475 _pool_var (hi) = (_pool_var (i) * BITS (_pool_var (b)[0]) \
476 + min_log2 (_pool_var (f))); \
477 _pool_var (hi) = (_pool_var (i) < _pool_var (bl) \
478 ? _pool_var (hi) : _pool_var (len)); \
479 _pool_var (m) ^= _pool_var (f); \
480 if (_pool_var (hi) > _pool_var (lo)) \
481 { \
482 (LO) = _pool_var (lo); \
483 (HI) = _pool_var (hi); \
484 do { BODY; } while (0); \
485 } \
486 _pool_var (lo) = _pool_var (hi) + 1; \
487 } \
488 } \
489} while (0)
490
Chris Luke8e5b0412016-07-26 13:06:10 -0400491/** Iterate through pool.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492
Chris Luke8e5b0412016-07-26 13:06:10 -0400493 @param VAR A variable of same type as pool vector to be used as an
494 iterator.
495 @param POOL The pool to iterate across.
496 @param BODY The operation to perform, typically a code block. See
497 the example below.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
Chris Luke8e5b0412016-07-26 13:06:10 -0400499 This macro will call @c BODY with each active pool element.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500
501 It is a bad idea to allocate or free pool element from within
Chris Luke8e5b0412016-07-26 13:06:10 -0400502 @c pool_foreach. Build a vector of indices and dispose of them later.
Neale Ranns87df12d2017-02-18 08:16:41 -0800503 Or call pool_flush.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504
Chris Luke8e5b0412016-07-26 13:06:10 -0400505
506 @par Example
507 @code{.c}
508 proc_t *procs; // a pool of processes.
509 proc_t *proc; // pointer to one process; used as the iterator.
510
511 pool_foreach (proc, procs, ({
512 if (proc->state != PROC_STATE_RUNNING)
513 continue;
514
515 // check a running proc in some way
516 ...
517 }));
518 @endcode
519
520 @warning Because @c pool_foreach is a macro, syntax errors can be
521 difficult to find inside @c BODY, let alone actual code bugs. One
522 can temporarily split a complex @c pool_foreach into a trivial
523 @c pool_foreach which builds a vector of active indices, and a
524 vec_foreach() (or plain for-loop) to walk the active index vector.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 */
Damjan Marion62c25ab2020-12-12 23:32:12 +0100526
Damjan Marionb2c31b62020-12-13 21:47:40 +0100527#define pool_foreach(VAR,POOL) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100528 if (POOL) \
529 for (VAR = POOL + pool_get_first_index (POOL); \
530 VAR < vec_end (POOL); \
531 VAR = POOL + pool_get_next_index (POOL, VAR - POOL))
532
Damjan Marionb2c31b62020-12-13 21:47:40 +0100533#define pool_foreach_old(VAR,POOL,BODY) \
534 pool_foreach(VAR,POOL) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100535 { BODY; }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
Chris Luke8e5b0412016-07-26 13:06:10 -0400537/** Returns pointer to element at given index.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
Chris Luke8e5b0412016-07-26 13:06:10 -0400539 ASSERTs that the supplied index is valid.
540 Even though one can write correct code of the form
541 @code
542 p = pool_base + index;
543 @endcode
Dave Barachc3799992016-08-15 11:12:27 -0400544 use of @c pool_elt_at_index is strongly suggested.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 */
546#define pool_elt_at_index(p,i) \
547({ \
548 typeof (p) _e = (p) + (i); \
549 ASSERT (! pool_is_free (p, _e)); \
550 _e; \
551})
552
Chris Luke8e5b0412016-07-26 13:06:10 -0400553/** Return next occupied pool index after @c i, useful for safe iteration. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554#define pool_next_index(P,I) \
555({ \
556 pool_header_t * _pool_var (p) = pool_header (P); \
557 uword _pool_var (rv) = (I) + 1; \
558 \
559 _pool_var(rv) = \
560 (_pool_var (rv) < vec_len (P) ? \
561 clib_bitmap_next_clear (_pool_var (p)->free_bitmap, _pool_var(rv)) \
562 : ~0); \
John Lo7f358b32018-04-28 01:19:24 -0400563 _pool_var(rv) = \
564 (_pool_var (rv) < vec_len (P) ? \
565 _pool_var (rv) : ~0); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 _pool_var(rv); \
567})
568
Damjan Marionb2c31b62020-12-13 21:47:40 +0100569#define pool_foreach_index(i,v) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100570 if (v) \
571 for (i = pool_get_first_index (v); \
572 i < vec_len (v); \
573 i = pool_get_next_index (v, i)) \
574
Chris Luke8e5b0412016-07-26 13:06:10 -0400575/** Iterate pool by index. */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100576#define pool_foreach_index_old(i,v,body) \
577 pool_foreach_index (i,v) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100578 { body; }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579
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 */