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>
17 #ifdef CONFIG_UCW_CLEAN_ABI
18 #define mp_alloc ucw_mp_alloc
19 #define mp_alloc_internal ucw_mp_alloc_internal
20 #define mp_alloc_noalign ucw_mp_alloc_noalign
21 #define mp_alloc_zero ucw_mp_alloc_zero
22 #define mp_append_printf ucw_mp_append_printf
23 #define mp_append_vprintf ucw_mp_append_vprintf
24 #define mp_delete ucw_mp_delete
25 #define mp_flush ucw_mp_flush
26 #define mp_grow_internal ucw_mp_grow_internal
27 #define mp_init ucw_mp_init
28 #define mp_memdup ucw_mp_memdup
29 #define mp_multicat ucw_mp_multicat
30 #define mp_new ucw_mp_new
31 #define mp_open ucw_mp_open
32 #define mp_pop ucw_mp_pop
33 #define mp_printf ucw_mp_printf
34 #define mp_push ucw_mp_push
35 #define mp_realloc ucw_mp_realloc
36 #define mp_realloc_zero ucw_mp_realloc_zero
37 #define mp_restore ucw_mp_restore
38 #define mp_spread_internal ucw_mp_spread_internal
39 #define mp_start ucw_mp_start
40 #define mp_start_internal ucw_mp_start_internal
41 #define mp_start_noalign ucw_mp_start_noalign
42 #define mp_stats ucw_mp_stats
43 #define mp_str_from_mem ucw_mp_str_from_mem
44 #define mp_strdup ucw_mp_strdup
45 #define mp_strjoin ucw_mp_strjoin
46 #define mp_total_size ucw_mp_total_size
47 #define mp_vprintf ucw_mp_vprintf
57 * Memory pool state (see @mp_push(), ...).
58 * You should use this one as an opaque handle only, the insides are internal.
60 struct mempool_state {
63 struct mempool_state *next;
68 * You should use this one as an opaque handle only, the insides are internal.
71 struct ucw_allocator allocator;
72 struct mempool_state state;
73 void *unused, *last_big;
74 uns chunk_size, threshold, idx;
78 struct mempool_stats { /** Mempool statistics. See @mp_stats(). **/
79 u64 total_size; /* Real allocated size in bytes */
80 u64 used_size; /* Estimated size allocated from mempool to application */
81 uns chain_count[3]; /* Number of allocated chunks in small/big/unused chains */
82 u64 chain_size[3]; /* Size of allocated chunks in small/big/unused chains */
92 * Initialize a given mempool structure.
93 * @chunk_size must be in the interval `[1, UINT_MAX / 2]`.
94 * It will allocate memory by this large chunks and take
95 * memory to satisfy requests from them.
97 * Memory pools can be treated as <<trans:respools,resources>>, see <<trans:res_mempool()>>.
99 void mp_init(struct mempool *pool, uns chunk_size);
102 * Allocate and initialize a new memory pool.
103 * See @mp_init() for @chunk_size limitations.
105 * The new mempool structure is allocated on the new mempool.
107 * Memory pools can be treated as <<trans:respools,resources>>, see <<trans:res_mempool()>>.
109 struct mempool *mp_new(uns chunk_size);
112 * Cleanup mempool initialized by mp_init or mp_new.
113 * Frees all the memory allocated by this mempool and,
114 * if created by @mp_new(), the @pool itself.
116 void mp_delete(struct mempool *pool);
119 * Frees all data on a memory pool, but leaves it working.
120 * It can keep some of the chunks allocated to serve
121 * further allocation requests. Leaves the @pool alive,
122 * even if it was created with @mp_new().
124 void mp_flush(struct mempool *pool);
127 * Compute some statistics for debug purposes.
128 * See the definition of the <<struct_mempool_stats,mempool_stats structure>>.
129 * This function scans the chunk list, so it can be slow. If you are interested
130 * in total memory consumption only, mp_total_size() is faster.
132 void mp_stats(struct mempool *pool, struct mempool_stats *stats);
135 * Return how many bytes were allocated by the pool, including unused parts
136 * of chunks. This function runs in constant time.
138 u64 mp_total_size(struct mempool *pool);
141 * Release unused chunks of memory reserved for further allocation
142 * requests, but stop if mp_total_size() would drop below @min_total_size.
144 void mp_shrink(struct mempool *pool, u64 min_total_size);
148 * Allocation routines
149 * -------------------
152 /* For internal use only, do not call directly */
153 void *mp_alloc_internal(struct mempool *pool, uns size) LIKE_MALLOC;
156 * The function allocates new @size bytes on a given memory pool.
157 * If the @size is zero, the resulting pointer is undefined,
158 * but it may be safely reallocated or used as the parameter
159 * to other functions below.
161 * The resulting pointer is always aligned to a multiple of
162 * `CPU_STRUCT_ALIGN` bytes and this condition remains true also
163 * after future reallocations.
165 void *mp_alloc(struct mempool *pool, uns size);
168 * The same as @mp_alloc(), but the result may be unaligned.
170 void *mp_alloc_noalign(struct mempool *pool, uns size);
173 * The same as @mp_alloc(), but fills the newly allocated memory with zeroes.
175 void *mp_alloc_zero(struct mempool *pool, uns size);
178 * Inlined version of @mp_alloc().
180 static inline void *mp_alloc_fast(struct mempool *pool, uns size)
182 uns avail = pool->state.free[0] & ~(CPU_STRUCT_ALIGN - 1);
185 pool->state.free[0] = avail - size;
186 return (byte *)pool->state.last[0] - avail;
189 return mp_alloc_internal(pool, size);
193 * Inlined version of @mp_alloc_noalign().
195 static inline void *mp_alloc_fast_noalign(struct mempool *pool, uns size)
197 if (size <= pool->state.free[0])
199 void *ptr = (byte *)pool->state.last[0] - pool->state.free[0];
200 pool->state.free[0] -= size;
204 return mp_alloc_internal(pool, size);
208 * Return a generic allocator representing the given mempool.
210 static inline struct ucw_allocator *mp_get_allocator(struct mempool *mp)
212 return &mp->allocator;
220 * You do not need to know, how a buffer will need to be large,
221 * you can grow it incrementally to needed size. You can grow only
222 * one buffer at a time on a given mempool.
224 * Similar functionality is provided by <<growbuf:,growing buffes>> module.
227 /* For internal use only, do not call directly */
228 void *mp_start_internal(struct mempool *pool, uns size) LIKE_MALLOC;
229 void *mp_grow_internal(struct mempool *pool, uns size);
230 void *mp_spread_internal(struct mempool *pool, void *p, uns size);
232 static inline uns mp_idx(struct mempool *pool, void *ptr)
234 return ptr == pool->last_big;
238 * Open a new growing buffer (at least @size bytes long).
239 * If the @size is zero, the resulting pointer is undefined,
240 * but it may be safely reallocated or used as the parameter
241 * to other functions below.
243 * The resulting pointer is always aligned to a multiple of
244 * `CPU_STRUCT_ALIGN` bytes and this condition remains true also
245 * after future reallocations. There is an unaligned version as well.
247 * Keep in mind that you can't make any other pool allocations
248 * before you "close" the growing buffer with @mp_end().
250 void *mp_start(struct mempool *pool, uns size);
251 void *mp_start_noalign(struct mempool *pool, uns size);
254 * Inlined version of @mp_start().
256 static inline void *mp_start_fast(struct mempool *pool, uns size)
258 uns avail = pool->state.free[0] & ~(CPU_STRUCT_ALIGN - 1);
262 pool->state.free[0] = avail;
263 return (byte *)pool->state.last[0] - avail;
266 return mp_start_internal(pool, size);
270 * Inlined version of @mp_start_noalign().
272 static inline void *mp_start_fast_noalign(struct mempool *pool, uns size)
274 if (size <= pool->state.free[0])
277 return (byte *)pool->state.last[0] - pool->state.free[0];
280 return mp_start_internal(pool, size);
284 * Return start pointer of the growing buffer allocated by latest @mp_start() or a similar function.
286 static inline void *mp_ptr(struct mempool *pool)
288 return (byte *)pool->state.last[pool->idx] - pool->state.free[pool->idx];
292 * Return the number of bytes available for extending the growing buffer.
293 * (Before a reallocation will be needed).
295 static inline uns mp_avail(struct mempool *pool)
297 return pool->state.free[pool->idx];
301 * Grow the buffer allocated by @mp_start() to be at least @size bytes long
302 * (@size may be less than @mp_avail(), even zero). Reallocated buffer may
303 * change its starting position. The content will be unchanged to the minimum
304 * of the old and new sizes; newly allocated memory will be uninitialized.
305 * Multiple calls to mp_grow() have amortized linear cost wrt. the maximum value of @size. */
306 static inline void *mp_grow(struct mempool *pool, uns size)
308 return (size <= mp_avail(pool)) ? mp_ptr(pool) : mp_grow_internal(pool, size);
312 * Grow the buffer by at least one byte -- equivalent to <<mp_grow(),`mp_grow`>>`(@pool, @mp_avail(pool) + 1)`.
314 static inline void *mp_expand(struct mempool *pool)
316 return mp_grow_internal(pool, mp_avail(pool) + 1);
320 * Ensure that there is at least @size bytes free after @p,
321 * if not, reallocate and adjust @p.
323 static inline void *mp_spread(struct mempool *pool, void *p, uns size)
325 return (((uns)((byte *)pool->state.last[pool->idx] - (byte *)p) >= size) ? p : mp_spread_internal(pool, p, size));
329 * Append a character to the growing buffer. Called with @p pointing after
330 * the last byte in the buffer, returns a pointer after the last byte
331 * of the new (possibly reallocated) buffer.
333 static inline char *mp_append_char(struct mempool *pool, char *p, uns c)
335 p = mp_spread(pool, p, 1);
341 * Append a memory block to the growing buffer. Called with @p pointing after
342 * the last byte in the buffer, returns a pointer after the last byte
343 * of the new (possibly reallocated) buffer.
345 static inline void *mp_append_block(struct mempool *pool, void *p, const void *block, uns size)
347 char *q = mp_spread(pool, p, size);
348 memcpy(q, block, size);
353 * Append a string to the growing buffer. Called with @p pointing after
354 * the last byte in the buffer, returns a pointer after the last byte
355 * of the new (possibly reallocated) buffer.
357 static inline void *mp_append_string(struct mempool *pool, void *p, const char *str)
359 return mp_append_block(pool, p, str, strlen(str));
363 * Close the growing buffer. The @end must point just behind the data, you want to keep
364 * allocated (so it can be in the interval `[@mp_ptr(@pool), @mp_ptr(@pool) + @mp_avail(@pool)]`).
365 * Returns a pointer to the beginning of the just closed block.
367 static inline void *mp_end(struct mempool *pool, void *end)
369 void *p = mp_ptr(pool);
370 pool->state.free[pool->idx] = (byte *)pool->state.last[pool->idx] - (byte *)end;
375 * Close the growing buffer as a string. That is, append a zero byte and call mp_end().
377 static inline char *mp_end_string(struct mempool *pool, void *end)
379 end = mp_append_char(pool, end, 0);
380 return mp_end(pool, end);
384 * Return size in bytes of the last allocated memory block (with @mp_alloc() or @mp_end()).
386 static inline uns mp_size(struct mempool *pool, void *ptr)
388 uns idx = mp_idx(pool, ptr);
389 return ((byte *)pool->state.last[idx] - (byte *)ptr) - pool->state.free[idx];
393 * Open the last memory block (allocated with @mp_alloc() or @mp_end())
394 * for growing and return its size in bytes. The contents and the start pointer
395 * remain unchanged. Do not forget to call @mp_end() to close it.
397 uns mp_open(struct mempool *pool, void *ptr);
400 * Inlined version of @mp_open().
402 static inline uns mp_open_fast(struct mempool *pool, void *ptr)
404 pool->idx = mp_idx(pool, ptr);
405 uns size = ((byte *)pool->state.last[pool->idx] - (byte *)ptr) - pool->state.free[pool->idx];
406 pool->state.free[pool->idx] += size;
411 * Reallocate the last memory block (allocated with @mp_alloc() or @mp_end())
412 * to the new @size. Behavior is similar to @mp_grow(), but the resulting
415 void *mp_realloc(struct mempool *pool, void *ptr, uns size);
418 * The same as @mp_realloc(), but fills the additional bytes (if any) with zeroes.
420 void *mp_realloc_zero(struct mempool *pool, void *ptr, uns size);
423 * Inlined version of @mp_realloc().
425 static inline void *mp_realloc_fast(struct mempool *pool, void *ptr, uns size)
427 mp_open_fast(pool, ptr);
428 ptr = mp_grow(pool, size);
429 mp_end(pool, (byte *)ptr + size);
435 * Storing and restoring state
436 * ---------------------------
438 * Mempools can remember history of what was allocated and return back
443 * Save the current state of a memory pool.
444 * Do not call this function with an opened growing buffer.
446 static inline void mp_save(struct mempool *pool, struct mempool_state *state)
448 *state = pool->state;
449 pool->state.next = state;
453 * Save the current state to a newly allocated mempool_state structure.
454 * Do not call this function with an opened growing buffer.
456 struct mempool_state *mp_push(struct mempool *pool);
459 * Restore the state saved by @mp_save() or @mp_push() and free all
460 * data allocated after that point (including the state structure itself).
461 * You can't reallocate the last memory block from the saved state.
463 void mp_restore(struct mempool *pool, struct mempool_state *state);
466 * Inlined version of @mp_restore().
468 static inline void mp_restore_fast(struct mempool *pool, struct mempool_state *state)
470 if (pool->state.last[0] != state->last[0] || pool->state.last[1] != state->last[1])
471 mp_restore(pool, state);
474 pool->state = *state;
475 pool->last_big = &pool->last_big;
480 * Restore the state saved by the last call to @mp_push().
481 * @mp_pop() and @mp_push() works as a stack so you can push more states safely.
483 void mp_pop(struct mempool *pool);
492 char *mp_strdup(struct mempool *, const char *) LIKE_MALLOC; /** Makes a copy of a string on a mempool. Returns NULL for NULL string. **/
493 void *mp_memdup(struct mempool *, const void *, uns) LIKE_MALLOC; /** Makes a copy of a memory block on a mempool. **/
495 * Concatenates all passed strings. The last parameter must be NULL.
496 * This will concatenate two strings:
498 * char *message = mp_multicat(pool, "hello ", "world", NULL);
500 char *mp_multicat(struct mempool *, ...) LIKE_MALLOC SENTINEL_CHECK;
502 * Concatenates two strings and stores result on @mp.
504 static inline char *LIKE_MALLOC mp_strcat(struct mempool *mp, const char *x, const char *y)
506 return mp_multicat(mp, x, y, NULL);
509 * Join strings and place @sep between each two neighboring.
510 * @p is the mempool to provide memory, @a is array of strings and @n
511 * tells how many there is of them.
513 char *mp_strjoin(struct mempool *p, char **a, uns n, uns sep) LIKE_MALLOC;
515 * Convert memory block to a string. Makes a copy of the given memory block
516 * in the mempool @p, adding an extra terminating zero byte at the end.
518 char *mp_str_from_mem(struct mempool *p, const void *mem, uns len) LIKE_MALLOC;
528 * printf() into a in-memory string, allocated on the memory pool.
530 char *mp_printf(struct mempool *mp, const char *fmt, ...) FORMAT_CHECK(printf,2,3) LIKE_MALLOC;
532 * Like @mp_printf(), but uses `va_list` for parameters.
534 char *mp_vprintf(struct mempool *mp, const char *fmt, va_list args) LIKE_MALLOC;
536 * Like @mp_printf(), but it appends the data at the end of string
537 * pointed to by @ptr. The string is @mp_open()ed, so you have to
538 * provide something that can be.
540 * Returns pointer to the beginning of the string (the pointer may have
541 * changed due to reallocation).
543 * Alternatively, this function may be called mp_printf_append() for compatibility with
544 * previous releases of LibUCW.
546 char *mp_append_printf(struct mempool *mp, char *ptr, const char *fmt, ...) FORMAT_CHECK(printf,3,4);
547 #define mp_printf_append mp_append_printf
549 * Like @mp_append_printf(), but uses `va_list` for parameters.
551 * Alternatively, this function may be called mp_vprintf_append() for compatibility with
552 * previous releases of LibUCW.
554 char *mp_append_vprintf(struct mempool *mp, char *ptr, const char *fmt, va_list args);
555 #define mp_vprintf_append mp_append_vprintf