Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 62405a2 | 2014-12-23 13:51:28 +0100 | [diff] [blame] | 2 | * include/common/memory.h |
| 3 | * Memory management definitions.. |
| 4 | * |
| 5 | * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #ifndef _COMMON_MEMORY_H |
| 23 | #define _COMMON_MEMORY_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 25 | #include <sys/mman.h> |
| 26 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | #include <stdlib.h> |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 28 | #include <string.h> |
David Carlier | 4ee76d0 | 2018-02-18 19:36:42 +0000 | [diff] [blame] | 29 | #include <stdint.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 30 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 31 | #include <common/config.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 32 | #include <common/mini-clist.h> |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 33 | #include <common/hathreads.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | |
Willy Tarreau | a84dcb8 | 2015-10-28 12:04:02 +0100 | [diff] [blame] | 35 | #ifndef DEBUG_DONT_SHARE_POOLS |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 36 | #define MEM_F_SHARED 0x1 |
Willy Tarreau | a84dcb8 | 2015-10-28 12:04:02 +0100 | [diff] [blame] | 37 | #else |
| 38 | #define MEM_F_SHARED 0 |
| 39 | #endif |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 40 | #define MEM_F_EXACT 0x2 |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 41 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 42 | /* reserve an extra void* at the end of a pool for linking */ |
| 43 | #ifdef DEBUG_MEMORY_POOLS |
| 44 | #define POOL_EXTRA (sizeof(void *)) |
| 45 | #define POOL_LINK(pool, item) (void **)(((char *)item) + (pool->size)) |
| 46 | #else |
| 47 | #define POOL_EXTRA (0) |
| 48 | #define POOL_LINK(pool, item) ((void **)(item)) |
| 49 | #endif |
| 50 | |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 51 | #define MAX_BASE_POOLS 32 |
| 52 | |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 53 | struct pool_cache_head { |
| 54 | struct list list; /* head of objects in this pool */ |
| 55 | size_t size; /* size of an object */ |
| 56 | unsigned int count; /* number of objects in this pool */ |
| 57 | }; |
| 58 | |
| 59 | struct pool_cache_item { |
| 60 | struct list by_pool; /* link to objects in this pool */ |
| 61 | struct list by_lru; /* link to objects by LRU order */ |
| 62 | }; |
| 63 | |
| 64 | extern THREAD_LOCAL struct pool_cache_head pool_cache[MAX_BASE_POOLS]; |
| 65 | extern THREAD_LOCAL struct list pool_lru_head; /* oldest objects */ |
| 66 | extern THREAD_LOCAL size_t pool_cache_bytes; /* total cache size */ |
| 67 | extern THREAD_LOCAL size_t pool_cache_count; /* #cache objects */ |
| 68 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 69 | #ifdef CONFIG_HAP_LOCKLESS_POOLS |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 70 | struct pool_free_list { |
| 71 | void **free_list; |
| 72 | uintptr_t seq; |
| 73 | }; |
| 74 | #endif |
| 75 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 76 | struct pool_head { |
Willy Tarreau | 1ca1b70 | 2017-11-26 10:50:36 +0100 | [diff] [blame] | 77 | void **free_list; |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 78 | #ifdef CONFIG_HAP_LOCKLESS_POOLS |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 79 | uintptr_t seq; |
| 80 | #else |
| 81 | __decl_hathreads(HA_SPINLOCK_T lock); /* the spin lock */ |
| 82 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 83 | unsigned int used; /* how many chunks are currently in use */ |
| 84 | unsigned int allocated; /* how many chunks have been allocated */ |
| 85 | unsigned int limit; /* hard limit on the number of chunks */ |
| 86 | unsigned int minavail; /* how many chunks are expected to be used */ |
| 87 | unsigned int size; /* chunk size */ |
| 88 | unsigned int flags; /* MEM_F_* */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 89 | unsigned int users; /* number of pools sharing this zone */ |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 90 | unsigned int failed; /* failed allocations */ |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 91 | struct list list; /* list of all known pools */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 92 | char name[12]; /* name of the pool */ |
Willy Tarreau | 1ca1b70 | 2017-11-26 10:50:36 +0100 | [diff] [blame] | 93 | } __attribute__((aligned(64))); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 94 | |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 95 | |
| 96 | extern struct pool_head pool_base_start[MAX_BASE_POOLS]; |
| 97 | extern unsigned int pool_base_count; |
| 98 | |
Willy Tarreau | 067ac9f | 2015-10-08 14:12:13 +0200 | [diff] [blame] | 99 | /* poison each newly allocated area with this byte if >= 0 */ |
| 100 | extern int mem_poison_byte; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 101 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 102 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 103 | * available, then returns the last one for immediate use, so that at least |
| 104 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 105 | * last entry could not be allocated. It's important to note that at least one |
| 106 | * allocation is always performed even if there are enough entries in the pool. |
| 107 | * A call to the garbage collector is performed at most once in case malloc() |
| 108 | * returns an error, before returning NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 109 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 110 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 111 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 112 | |
| 113 | /* Try to find an existing shared pool with the same characteristics and |
| 114 | * returns it, otherwise creates this one. NULL is returned if no memory |
| 115 | * is available for a new creation. |
| 116 | */ |
| 117 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags); |
| 118 | |
| 119 | /* Dump statistics on pools usage. |
| 120 | */ |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 121 | void dump_pools_to_trash(); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 122 | void dump_pools(void); |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 123 | int pool_total_failures(); |
| 124 | unsigned long pool_total_allocated(); |
| 125 | unsigned long pool_total_used(); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 126 | |
| 127 | /* |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 128 | * This function frees whatever can be freed in pool <pool>. |
| 129 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 130 | void pool_flush(struct pool_head *pool); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 131 | |
| 132 | /* |
| 133 | * This function frees whatever can be freed in all pools, but respecting |
| 134 | * the minimum thresholds imposed by owners. |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 135 | * |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 136 | * <pool_ctx> is used when pool_gc is called to release resources to allocate |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 137 | * an element in __pool_refill_alloc. It is important because <pool_ctx> is |
| 138 | * already locked, so we need to skip the lock here. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 139 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 140 | void pool_gc(struct pool_head *pool_ctx); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 141 | |
| 142 | /* |
| 143 | * This function destroys a pull by freeing it completely. |
| 144 | * This should be called only under extreme circumstances. |
| 145 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 146 | void *pool_destroy(struct pool_head *pool); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 147 | |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 148 | /* returns the pool index for pool <pool>, or -1 if this pool has no index */ |
| 149 | static inline ssize_t pool_get_index(const struct pool_head *pool) |
| 150 | { |
| 151 | size_t idx; |
| 152 | |
| 153 | idx = pool - pool_base_start; |
| 154 | if (idx >= MAX_BASE_POOLS) |
| 155 | return -1; |
| 156 | return idx; |
| 157 | } |
| 158 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 159 | #ifdef CONFIG_HAP_LOCKLESS_POOLS |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 160 | |
| 161 | /* Tries to retrieve an object from the local pool cache corresponding to pool |
| 162 | * <pool>. Returns NULL if none is available. |
| 163 | */ |
| 164 | static inline void *__pool_get_from_cache(struct pool_head *pool) |
| 165 | { |
| 166 | ssize_t idx = pool_get_index(pool); |
| 167 | struct pool_cache_item *item; |
| 168 | |
| 169 | /* pool not in cache */ |
| 170 | if (idx < 0) |
| 171 | return NULL; |
| 172 | |
| 173 | /* never allocated or empty */ |
| 174 | if (pool_cache[idx].list.n == NULL || LIST_ISEMPTY(&pool_cache[idx].list)) |
| 175 | return NULL; |
| 176 | |
| 177 | item = LIST_NEXT(&pool_cache[idx].list, typeof(item), by_pool); |
| 178 | pool_cache[idx].count--; |
| 179 | pool_cache_bytes -= pool_cache[idx].size; |
| 180 | pool_cache_count--; |
| 181 | LIST_DEL(&item->by_pool); |
| 182 | LIST_DEL(&item->by_lru); |
Willy Tarreau | 8e9f453 | 2018-10-28 20:09:12 +0100 | [diff] [blame] | 183 | #ifdef DEBUG_MEMORY_POOLS |
| 184 | /* keep track of where the element was allocated from */ |
| 185 | *POOL_LINK(pool, item) = (void *)pool; |
| 186 | #endif |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 187 | return item; |
| 188 | } |
| 189 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 190 | /* |
| 191 | * Returns a pointer to type <type> taken from the pool <pool_type> if |
| 192 | * available, otherwise returns NULL. No malloc() is attempted, and poisonning |
| 193 | * is never performed. The purpose is to get the fastest possible allocation. |
| 194 | */ |
| 195 | static inline void *__pool_get_first(struct pool_head *pool) |
| 196 | { |
| 197 | struct pool_free_list cmp, new; |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 198 | void *ret = __pool_get_from_cache(pool); |
| 199 | |
| 200 | if (ret) |
| 201 | return ret; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 202 | |
| 203 | cmp.seq = pool->seq; |
| 204 | __ha_barrier_load(); |
| 205 | |
| 206 | cmp.free_list = pool->free_list; |
| 207 | do { |
| 208 | if (cmp.free_list == NULL) |
| 209 | return NULL; |
| 210 | new.seq = cmp.seq + 1; |
| 211 | __ha_barrier_load(); |
| 212 | new.free_list = *POOL_LINK(pool, cmp.free_list); |
| 213 | } while (__ha_cas_dw((void *)&pool->free_list, (void *)&cmp, (void *)&new) == 0); |
Tim Duesterhus | 05f6a43 | 2018-02-20 00:49:46 +0100 | [diff] [blame] | 214 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 215 | HA_ATOMIC_ADD(&pool->used, 1); |
| 216 | #ifdef DEBUG_MEMORY_POOLS |
| 217 | /* keep track of where the element was allocated from */ |
| 218 | *POOL_LINK(pool, cmp.free_list) = (void *)pool; |
| 219 | #endif |
| 220 | return cmp.free_list; |
| 221 | } |
| 222 | |
| 223 | static inline void *pool_get_first(struct pool_head *pool) |
| 224 | { |
| 225 | void *ret; |
| 226 | |
| 227 | ret = __pool_get_first(pool); |
| 228 | return ret; |
| 229 | } |
| 230 | /* |
| 231 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 232 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 233 | * the next element in the list. No memory poisonning is ever performed on the |
| 234 | * returned area. |
| 235 | */ |
| 236 | static inline void *pool_alloc_dirty(struct pool_head *pool) |
| 237 | { |
| 238 | void *p; |
| 239 | |
| 240 | if ((p = __pool_get_first(pool)) == NULL) |
| 241 | p = __pool_refill_alloc(pool, 0); |
| 242 | return p; |
| 243 | } |
| 244 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 245 | /* |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 246 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 247 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 248 | * the next element in the list. Memory poisonning is performed if enabled. |
| 249 | */ |
| 250 | static inline void *pool_alloc(struct pool_head *pool) |
| 251 | { |
| 252 | void *p; |
| 253 | |
| 254 | p = pool_alloc_dirty(pool); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 255 | if (p && mem_poison_byte >= 0) { |
| 256 | memset(p, mem_poison_byte, pool->size); |
| 257 | } |
| 258 | |
| 259 | return p; |
| 260 | } |
| 261 | |
Willy Tarreau | 146794d | 2018-10-16 08:55:15 +0200 | [diff] [blame] | 262 | /* Locklessly add item <ptr> to pool <pool>, then update the pool used count. |
| 263 | * Both the pool and the pointer must be valid. Use pool_free() for normal |
| 264 | * operations. |
| 265 | */ |
| 266 | static inline void __pool_free(struct pool_head *pool, void *ptr) |
| 267 | { |
Willy Tarreau | 7a6ad88 | 2018-10-20 17:37:38 +0200 | [diff] [blame] | 268 | void **free_list = pool->free_list; |
Willy Tarreau | 146794d | 2018-10-16 08:55:15 +0200 | [diff] [blame] | 269 | |
| 270 | do { |
| 271 | *POOL_LINK(pool, ptr) = (void *)free_list; |
| 272 | __ha_barrier_store(); |
Willy Tarreau | 7a6ad88 | 2018-10-20 17:37:38 +0200 | [diff] [blame] | 273 | } while (!HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr)); |
Willy Tarreau | 146794d | 2018-10-16 08:55:15 +0200 | [diff] [blame] | 274 | HA_ATOMIC_SUB(&pool->used, 1); |
| 275 | } |
| 276 | |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 277 | /* frees an object to the local cache, possibly pushing oldest objects to the |
| 278 | * global pool. |
| 279 | */ |
| 280 | void __pool_put_to_cache(struct pool_head *pool, void *ptr, ssize_t idx); |
| 281 | static inline void pool_put_to_cache(struct pool_head *pool, void *ptr) |
| 282 | { |
| 283 | ssize_t idx = pool_get_index(pool); |
| 284 | |
| 285 | /* pool not in cache or too many objects for this pool (more than |
| 286 | * half of the cache is used and this pool uses more than 1/8 of |
| 287 | * the cache size). |
| 288 | */ |
| 289 | if (idx < 0 || |
| 290 | (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4 && |
| 291 | pool_cache[idx].count >= 16 + pool_cache_count / 8)) { |
| 292 | __pool_free(pool, ptr); |
| 293 | return; |
| 294 | } |
| 295 | __pool_put_to_cache(pool, ptr, idx); |
| 296 | } |
| 297 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 298 | /* |
| 299 | * Puts a memory area back to the corresponding pool. |
| 300 | * Items are chained directly through a pointer that |
| 301 | * is written in the beginning of the memory area, so |
| 302 | * there's no need for any carrier cell. This implies |
| 303 | * that each memory area is at least as big as one |
| 304 | * pointer. Just like with the libc's free(), nothing |
| 305 | * is done if <ptr> is NULL. |
| 306 | */ |
| 307 | static inline void pool_free(struct pool_head *pool, void *ptr) |
| 308 | { |
| 309 | if (likely(ptr != NULL)) { |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 310 | #ifdef DEBUG_MEMORY_POOLS |
| 311 | /* we'll get late corruption if we refill to the wrong pool or double-free */ |
| 312 | if (*POOL_LINK(pool, ptr) != (void *)pool) |
| 313 | *(volatile int *)0 = 0; |
| 314 | #endif |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 315 | pool_put_to_cache(pool, ptr); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 316 | } |
| 317 | } |
| 318 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 319 | #else /* CONFIG_HAP_LOCKLESS_POOLS */ |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 320 | /* |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 321 | * Returns a pointer to type <type> taken from the pool <pool_type> if |
| 322 | * available, otherwise returns NULL. No malloc() is attempted, and poisonning |
| 323 | * is never performed. The purpose is to get the fastest possible allocation. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 324 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 325 | static inline void *__pool_get_first(struct pool_head *pool) |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 326 | { |
| 327 | void *p; |
| 328 | |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 329 | if ((p = pool->free_list) != NULL) { |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 330 | pool->free_list = *POOL_LINK(pool, p); |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 331 | pool->used++; |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 332 | #ifdef DEBUG_MEMORY_POOLS |
| 333 | /* keep track of where the element was allocated from */ |
| 334 | *POOL_LINK(pool, p) = (void *)pool; |
| 335 | #endif |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 336 | } |
| 337 | return p; |
| 338 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 339 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 340 | static inline void *pool_get_first(struct pool_head *pool) |
| 341 | { |
| 342 | void *ret; |
| 343 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 344 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 345 | ret = __pool_get_first(pool); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 346 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 347 | return ret; |
| 348 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 349 | /* |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 350 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 351 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 352 | * the next element in the list. No memory poisonning is ever performed on the |
| 353 | * returned area. |
| 354 | */ |
| 355 | static inline void *pool_alloc_dirty(struct pool_head *pool) |
| 356 | { |
| 357 | void *p; |
| 358 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 359 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 360 | if ((p = __pool_get_first(pool)) == NULL) |
| 361 | p = __pool_refill_alloc(pool, 0); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 362 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 363 | return p; |
| 364 | } |
| 365 | |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 366 | #ifndef DEBUG_UAF /* normal allocator */ |
| 367 | |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 368 | /* allocates an area of size <size> and returns it. The semantics are similar |
| 369 | * to those of malloc(). |
| 370 | */ |
| 371 | static inline void *pool_alloc_area(size_t size) |
| 372 | { |
| 373 | return malloc(size); |
| 374 | } |
| 375 | |
| 376 | /* frees an area <area> of size <size> allocated by pool_alloc_area(). The |
| 377 | * semantics are identical to free() except that the size is specified and |
| 378 | * may be ignored. |
| 379 | */ |
| 380 | static inline void pool_free_area(void *area, size_t __maybe_unused size) |
| 381 | { |
| 382 | free(area); |
| 383 | } |
| 384 | |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 385 | #else /* use-after-free detector */ |
| 386 | |
| 387 | /* allocates an area of size <size> and returns it. The semantics are similar |
| 388 | * to those of malloc(). However the allocation is rounded up to 4kB so that a |
| 389 | * full page is allocated. This ensures the object can be freed alone so that |
| 390 | * future dereferences are easily detected. The returned object is always |
Willy Tarreau | 364d745 | 2018-02-22 14:14:23 +0100 | [diff] [blame] | 391 | * 16-bytes aligned to avoid issues with unaligned structure objects. In case |
| 392 | * some padding is added, the area's start address is copied at the end of the |
| 393 | * padding to help detect underflows. |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 394 | */ |
Olivier Houchard | 62975a7 | 2018-10-21 01:33:11 +0200 | [diff] [blame] | 395 | #include <errno.h> |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 396 | static inline void *pool_alloc_area(size_t size) |
| 397 | { |
| 398 | size_t pad = (4096 - size) & 0xFF0; |
Willy Tarreau | 5a9cce4 | 2018-02-22 11:39:23 +0100 | [diff] [blame] | 399 | void *ret; |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 400 | |
Olivier Houchard | 62975a7 | 2018-10-21 01:33:11 +0200 | [diff] [blame] | 401 | ret = mmap(NULL, (size + 4095) & -4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); |
Willy Tarreau | 364d745 | 2018-02-22 14:14:23 +0100 | [diff] [blame] | 402 | if (ret == MAP_FAILED) |
| 403 | return NULL; |
| 404 | if (pad >= sizeof(void *)) |
| 405 | *(void **)(ret + pad - sizeof(void *)) = ret + pad; |
| 406 | return ret + pad; |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | /* frees an area <area> of size <size> allocated by pool_alloc_area(). The |
| 410 | * semantics are identical to free() except that the size must absolutely match |
Willy Tarreau | 364d745 | 2018-02-22 14:14:23 +0100 | [diff] [blame] | 411 | * the one passed to pool_alloc_area(). In case some padding is added, the |
| 412 | * area's start address is compared to the one at the end of the padding, and |
| 413 | * a segfault is triggered if they don't match, indicating an underflow. |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 414 | */ |
| 415 | static inline void pool_free_area(void *area, size_t size) |
| 416 | { |
| 417 | size_t pad = (4096 - size) & 0xFF0; |
| 418 | |
Willy Tarreau | 364d745 | 2018-02-22 14:14:23 +0100 | [diff] [blame] | 419 | if (pad >= sizeof(void *) && *(void **)(area - sizeof(void *)) != area) |
| 420 | *(volatile int *)0 = 0; |
| 421 | |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 422 | munmap(area - pad, (size + 4095) & -4096); |
| 423 | } |
| 424 | |
| 425 | #endif /* DEBUG_UAF */ |
| 426 | |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 427 | /* |
| 428 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 429 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 430 | * the next element in the list. Memory poisonning is performed if enabled. |
| 431 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 432 | static inline void *pool_alloc(struct pool_head *pool) |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 433 | { |
| 434 | void *p; |
| 435 | |
| 436 | p = pool_alloc_dirty(pool); |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 437 | if (p && mem_poison_byte >= 0) { |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 438 | memset(p, mem_poison_byte, pool->size); |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 439 | } |
| 440 | |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 441 | return p; |
| 442 | } |
| 443 | |
| 444 | /* |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 445 | * Puts a memory area back to the corresponding pool. |
| 446 | * Items are chained directly through a pointer that |
| 447 | * is written in the beginning of the memory area, so |
| 448 | * there's no need for any carrier cell. This implies |
| 449 | * that each memory area is at least as big as one |
Willy Tarreau | 48d63db | 2008-08-03 17:41:33 +0200 | [diff] [blame] | 450 | * pointer. Just like with the libc's free(), nothing |
| 451 | * is done if <ptr> is NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 452 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 453 | static inline void pool_free(struct pool_head *pool, void *ptr) |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 454 | { |
| 455 | if (likely(ptr != NULL)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 456 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 457 | #ifdef DEBUG_MEMORY_POOLS |
| 458 | /* we'll get late corruption if we refill to the wrong pool or double-free */ |
| 459 | if (*POOL_LINK(pool, ptr) != (void *)pool) |
| 460 | *(int *)0 = 0; |
| 461 | #endif |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 462 | |
| 463 | #ifndef DEBUG_UAF /* normal pool behaviour */ |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 464 | *POOL_LINK(pool, ptr) = (void *)pool->free_list; |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 465 | pool->free_list = (void *)ptr; |
Willy Tarreau | 158fa75 | 2017-11-22 15:47:29 +0100 | [diff] [blame] | 466 | #else /* release the entry for real to detect use after free */ |
| 467 | /* ensure we crash on double free or free of a const area*/ |
| 468 | *(uint32_t *)ptr = 0xDEADADD4; |
| 469 | pool_free_area(ptr, pool->size + POOL_EXTRA); |
| 470 | pool->allocated--; |
| 471 | #endif /* DEBUG_UAF */ |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 472 | pool->used--; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 473 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 474 | } |
| 475 | } |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 476 | #endif /* CONFIG_HAP_LOCKLESS_POOLS */ |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 477 | #endif /* _COMMON_MEMORY_H */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 478 | |
| 479 | /* |
| 480 | * Local variables: |
| 481 | * c-indent-level: 8 |
| 482 | * c-basic-offset: 8 |
| 483 | * End: |
| 484 | */ |