2 * UCW Library -- Memory Pools
4 * (c) 1997--2014 Martin Mares <mj@ucw.cz>
5 * (c) 2007 Pavel Charvat <pchar@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
14 #include <ucw/alloc.h>
16 #ifdef CONFIG_UCW_CLEAN_ABI
17 #define mp_alloc ucw_mp_alloc
18 #define mp_alloc_internal ucw_mp_alloc_internal
19 #define mp_alloc_noalign ucw_mp_alloc_noalign
20 #define mp_alloc_zero ucw_mp_alloc_zero
21 #define mp_delete ucw_mp_delete
22 #define mp_flush ucw_mp_flush
23 #define mp_grow_internal ucw_mp_grow_internal
24 #define mp_init ucw_mp_init
25 #define mp_memdup ucw_mp_memdup
26 #define mp_multicat ucw_mp_multicat
27 #define mp_new ucw_mp_new
28 #define mp_open ucw_mp_open
29 #define mp_pop ucw_mp_pop
30 #define mp_printf ucw_mp_printf
31 #define mp_printf_append ucw_mp_printf_append
32 #define mp_push ucw_mp_push
33 #define mp_realloc ucw_mp_realloc
34 #define mp_realloc_zero ucw_mp_realloc_zero
35 #define mp_restore ucw_mp_restore
36 #define mp_spread_internal ucw_mp_spread_internal
37 #define mp_start ucw_mp_start
38 #define mp_start_internal ucw_mp_start_internal
39 #define mp_start_noalign ucw_mp_start_noalign
40 #define mp_stats ucw_mp_stats
41 #define mp_str_from_mem ucw_mp_str_from_mem
42 #define mp_strdup ucw_mp_strdup
43 #define mp_strjoin ucw_mp_strjoin
44 #define mp_total_size ucw_mp_total_size
45 #define mp_vprintf ucw_mp_vprintf
46 #define mp_vprintf_append ucw_mp_vprintf_append
56 * Memory pool state (see @mp_push(), ...).
57 * You should use this one as an opaque handle only, the insides are internal.
59 struct mempool_state {
62 struct mempool_state *next;
67 * You should use this one as an opaque handle only, the insides are internal.
70 struct ucw_allocator allocator;
71 struct mempool_state state;
72 void *unused, *last_big;
73 uns chunk_size, threshold, idx;
76 struct mempool_stats { /** Mempool statistics. See @mp_stats(). **/
77 u64 total_size; /* Real allocated size in bytes */
78 uns chain_count[3]; /* Number of allocated chunks in small/big/unused chains */
79 uns chain_size[3]; /* Size of allocated chunks in small/big/unused chains */
89 * Initialize a given mempool structure.
90 * @chunk_size must be in the interval `[1, UINT_MAX / 2]`.
91 * It will allocate memory by this large chunks and take
92 * memory to satisfy requests from them.
94 * Memory pools can be treated as <<trans:respools,resources>>, see <<trans:res_mempool()>>.
96 void mp_init(struct mempool *pool, uns chunk_size);
99 * Allocate and initialize a new memory pool.
100 * See @mp_init() for @chunk_size limitations.
102 * The new mempool structure is allocated on the new mempool.
104 * Memory pools can be treated as <<trans:respools,resources>>, see <<trans:res_mempool()>>.
106 struct mempool *mp_new(uns chunk_size);
109 * Cleanup mempool initialized by mp_init or mp_new.
110 * Frees all the memory allocated by this mempool and,
111 * if created by @mp_new(), the @pool itself.
113 void mp_delete(struct mempool *pool);
116 * Frees all data on a memory pool, but leaves it working.
117 * It can keep some of the chunks allocated to serve
118 * further allocation requests. Leaves the @pool alive,
119 * even if it was created with @mp_new().
121 void mp_flush(struct mempool *pool);
124 * Compute some statistics for debug purposes.
125 * See the definition of the <<struct_mempool_stats,mempool_stats structure>>.
127 void mp_stats(struct mempool *pool, struct mempool_stats *stats);
128 u64 mp_total_size(struct mempool *pool); /** How many bytes were allocated by the pool. **/
133 * Allocation routines
134 * -------------------
137 /* For internal use only, do not call directly */
138 void *mp_alloc_internal(struct mempool *pool, uns size) LIKE_MALLOC;
141 * The function allocates new @size bytes on a given memory pool.
142 * If the @size is zero, the resulting pointer is undefined,
143 * but it may be safely reallocated or used as the parameter
144 * to other functions below.
146 * The resulting pointer is always aligned to a multiple of
147 * `CPU_STRUCT_ALIGN` bytes and this condition remains true also
148 * after future reallocations.
150 void *mp_alloc(struct mempool *pool, uns size);
153 * The same as @mp_alloc(), but the result may be unaligned.
155 void *mp_alloc_noalign(struct mempool *pool, uns size);
158 * The same as @mp_alloc(), but fills the newly allocated memory with zeroes.
160 void *mp_alloc_zero(struct mempool *pool, uns size);
163 * Inlined version of @mp_alloc().
165 static inline void *mp_alloc_fast(struct mempool *pool, uns size)
167 uns avail = pool->state.free[0] & ~(CPU_STRUCT_ALIGN - 1);
170 pool->state.free[0] = avail - size;
171 return (byte *)pool->state.last[0] - avail;
174 return mp_alloc_internal(pool, size);
178 * Inlined version of @mp_alloc_noalign().
180 static inline void *mp_alloc_fast_noalign(struct mempool *pool, uns size)
182 if (size <= pool->state.free[0])
184 void *ptr = (byte *)pool->state.last[0] - pool->state.free[0];
185 pool->state.free[0] -= size;
189 return mp_alloc_internal(pool, size);
193 * Return a generic allocator representing the given mempool.
195 static inline struct ucw_allocator *mp_get_allocator(struct mempool *mp)
197 return &mp->allocator;
205 * You do not need to know, how a buffer will need to be large,
206 * you can grow it incrementally to needed size. You can grow only
207 * one buffer at a time on a given mempool.
209 * Similar functionality is provided by <<growbuf:,growing buffes>> module.
212 /* For internal use only, do not call directly */
213 void *mp_start_internal(struct mempool *pool, uns size) LIKE_MALLOC;
214 void *mp_grow_internal(struct mempool *pool, uns size);
215 void *mp_spread_internal(struct mempool *pool, void *p, uns size);
217 static inline uns mp_idx(struct mempool *pool, void *ptr)
219 return ptr == pool->last_big;
223 * Open a new growing buffer (at least @size bytes long).
224 * If the @size is zero, the resulting pointer is undefined,
225 * but it may be safely reallocated or used as the parameter
226 * to other functions below.
228 * The resulting pointer is always aligned to a multiple of
229 * `CPU_STRUCT_ALIGN` bytes and this condition remains true also
230 * after future reallocations. There is an unaligned version as well.
232 * Keep in mind that you can't make any other pool allocations
233 * before you "close" the growing buffer with @mp_end().
235 void *mp_start(struct mempool *pool, uns size);
236 void *mp_start_noalign(struct mempool *pool, uns size);
239 * Inlined version of @mp_start().
241 static inline void *mp_start_fast(struct mempool *pool, uns size)
243 uns avail = pool->state.free[0] & ~(CPU_STRUCT_ALIGN - 1);
247 pool->state.free[0] = avail;
248 return (byte *)pool->state.last[0] - avail;
251 return mp_start_internal(pool, size);
255 * Inlined version of @mp_start_noalign().
257 static inline void *mp_start_fast_noalign(struct mempool *pool, uns size)
259 if (size <= pool->state.free[0])
262 return (byte *)pool->state.last[0] - pool->state.free[0];
265 return mp_start_internal(pool, size);
269 * Return start pointer of the growing buffer allocated by latest @mp_start() or a similar function.
271 static inline void *mp_ptr(struct mempool *pool)
273 return (byte *)pool->state.last[pool->idx] - pool->state.free[pool->idx];
277 * Return the number of bytes available for extending the growing buffer.
278 * (Before a reallocation will be needed).
280 static inline uns mp_avail(struct mempool *pool)
282 return pool->state.free[pool->idx];
286 * Grow the buffer allocated by @mp_start() to be at least @size bytes long
287 * (@size may be less than @mp_avail(), even zero). Reallocated buffer may
288 * change its starting position. The content will be unchanged to the minimum
289 * of the old and new sizes; newly allocated memory will be uninitialized.
290 * Multiple calls to mp_grow() have amortized linear cost wrt. the maximum value of @size. */
291 static inline void *mp_grow(struct mempool *pool, uns size)
293 return (size <= mp_avail(pool)) ? mp_ptr(pool) : mp_grow_internal(pool, size);
297 * Grow the buffer by at least one byte -- equivalent to <<mp_grow(),`mp_grow`>>`(@pool, @mp_avail(pool) + 1)`.
299 static inline void *mp_expand(struct mempool *pool)
301 return mp_grow_internal(pool, mp_avail(pool) + 1);
305 * Ensure that there is at least @size bytes free after @p,
306 * if not, reallocate and adjust @p.
308 static inline void *mp_spread(struct mempool *pool, void *p, uns size)
310 return (((uns)((byte *)pool->state.last[pool->idx] - (byte *)p) >= size) ? p : mp_spread_internal(pool, p, size));
314 * Close the growing buffer. The @end must point just behind the data, you want to keep
315 * allocated (so it can be in the interval `[@mp_ptr(@pool), @mp_ptr(@pool) + @mp_avail(@pool)]`).
316 * Returns a pointer to the beginning of the just closed block.
318 static inline void *mp_end(struct mempool *pool, void *end)
320 void *p = mp_ptr(pool);
321 pool->state.free[pool->idx] = (byte *)pool->state.last[pool->idx] - (byte *)end;
326 * Return size in bytes of the last allocated memory block (with @mp_alloc() or @mp_end()).
328 static inline uns mp_size(struct mempool *pool, void *ptr)
330 uns idx = mp_idx(pool, ptr);
331 return ((byte *)pool->state.last[idx] - (byte *)ptr) - pool->state.free[idx];
335 * Open the last memory block (allocated with @mp_alloc() or @mp_end())
336 * for growing and return its size in bytes. The contents and the start pointer
337 * remain unchanged. Do not forget to call @mp_end() to close it.
339 uns mp_open(struct mempool *pool, void *ptr);
342 * Inlined version of mp_open().
344 static inline uns mp_open_fast(struct mempool *pool, void *ptr)
346 pool->idx = mp_idx(pool, ptr);
347 uns size = ((byte *)pool->state.last[pool->idx] - (byte *)ptr) - pool->state.free[pool->idx];
348 pool->state.free[pool->idx] += size;
353 * Reallocate the last memory block (allocated with @mp_alloc() or @mp_end())
354 * to the new @size. Behavior is similar to @mp_grow(), but the resulting
357 void *mp_realloc(struct mempool *pool, void *ptr, uns size);
360 * The same as @mp_realloc(), but fills the additional bytes (if any) with zeroes.
362 void *mp_realloc_zero(struct mempool *pool, void *ptr, uns size);
365 * Inlined version of mp_realloc().
367 static inline void *mp_realloc_fast(struct mempool *pool, void *ptr, uns size)
369 mp_open_fast(pool, ptr);
370 ptr = mp_grow(pool, size);
371 mp_end(pool, (byte *)ptr + size);
377 * Storing and restoring state
378 * ---------------------------
380 * Mempools can remember history of what was allocated and return back
385 * Save the current state of a memory pool.
386 * Do not call this function with an opened growing buffer.
388 static inline void mp_save(struct mempool *pool, struct mempool_state *state)
390 *state = pool->state;
391 pool->state.next = state;
395 * Save the current state to a newly allocated mempool_state structure.
396 * Do not call this function with an opened growing buffer.
398 struct mempool_state *mp_push(struct mempool *pool);
401 * Restore the state saved by @mp_save() or @mp_push() and free all
402 * data allocated after that point (including the state structure itself).
403 * You can't reallocate the last memory block from the saved state.
405 void mp_restore(struct mempool *pool, struct mempool_state *state);
408 * Inlined version of @mp_restore().
410 static inline void mp_restore_fast(struct mempool *pool, struct mempool_state *state)
412 if (pool->state.last[0] != state->last[0] || pool->state.last[1] != state->last[1])
413 mp_restore(pool, state);
416 pool->state = *state;
417 pool->last_big = &pool->last_big;
422 * Restore the state saved by the last call to @mp_push().
423 * @mp_pop() and @mp_push() works as a stack so you can push more states safely.
425 void mp_pop(struct mempool *pool);
434 char *mp_strdup(struct mempool *, const char *) LIKE_MALLOC; /** Makes a copy of a string on a mempool. Returns NULL for NULL string. **/
435 void *mp_memdup(struct mempool *, const void *, uns) LIKE_MALLOC; /** Makes a copy of a memory block on a mempool. **/
437 * Concatenates all passed strings. The last parameter must be NULL.
438 * This will concatenate two strings:
440 * char *message = mp_multicat(pool, "hello ", "world", NULL);
442 char *mp_multicat(struct mempool *, ...) LIKE_MALLOC SENTINEL_CHECK;
444 * Concatenates two strings and stores result on @mp.
446 static inline char *LIKE_MALLOC mp_strcat(struct mempool *mp, const char *x, const char *y)
448 return mp_multicat(mp, x, y, NULL);
451 * Join strings and place @sep between each two neighboring.
452 * @p is the mempool to provide memory, @a is array of strings and @n
453 * tells how many there is of them.
455 char *mp_strjoin(struct mempool *p, char **a, uns n, uns sep) LIKE_MALLOC;
457 * Convert memory block to a string. Makes a copy of the given memory block
458 * in the mempool @p, adding an extra terminating zero byte at the end.
460 char *mp_str_from_mem(struct mempool *p, const void *mem, uns len) LIKE_MALLOC;
470 * printf() into a in-memory string, allocated on the memory pool.
472 char *mp_printf(struct mempool *mp, const char *fmt, ...) FORMAT_CHECK(printf,2,3) LIKE_MALLOC;
474 * Like @mp_printf(), but uses `va_list` for parameters.
476 char *mp_vprintf(struct mempool *mp, const char *fmt, va_list args) LIKE_MALLOC;
478 * Like @mp_printf(), but it appends the data at the end of string
479 * pointed to by @ptr. The string is @mp_open()ed, so you have to
480 * provide something that can be.
482 * Returns pointer to the beginning of the string (the pointer may have
483 * changed due to reallocation).
485 char *mp_printf_append(struct mempool *mp, char *ptr, const char *fmt, ...) FORMAT_CHECK(printf,3,4);
487 * Like @mp_printf_append(), but uses `va_list` for parameters.
489 char *mp_vprintf_append(struct mempool *mp, char *ptr, const char *fmt, va_list args);