Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Memory management functions. |
| 3 | * |
| 4 | * Copyright 2000-2007 Willy Tarreau <w@1wt.eu> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 12 | #include <errno.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 13 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 14 | #include <haproxy/activity-t.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 15 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 16 | #include <haproxy/applet-t.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 17 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 18 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 19 | #include <haproxy/cli.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 20 | #include <haproxy/errors.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 21 | #include <haproxy/global.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 22 | #include <haproxy/list.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 23 | #include <haproxy/pool.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 24 | #include <haproxy/stats-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 25 | #include <haproxy/stream_interface.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 26 | #include <haproxy/thread.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 27 | #include <haproxy/tools.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 28 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 29 | |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 30 | #ifdef CONFIG_HAP_LOCAL_POOLS |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 31 | /* These are the most common pools, expected to be initialized first. These |
| 32 | * ones are allocated from an array, allowing to map them to an index. |
| 33 | */ |
| 34 | struct pool_head pool_base_start[MAX_BASE_POOLS] = { }; |
| 35 | unsigned int pool_base_count = 0; |
| 36 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 37 | /* These ones are initialized per-thread on startup by init_pools() */ |
| 38 | struct pool_cache_head pool_cache[MAX_THREADS][MAX_BASE_POOLS]; |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 39 | THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */ |
| 40 | THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */ |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 41 | #endif |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 42 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 43 | static struct list pools = LIST_HEAD_INIT(pools); |
Willy Tarreau | 067ac9f | 2015-10-08 14:12:13 +0200 | [diff] [blame] | 44 | int mem_poison_byte = -1; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 45 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 46 | #ifdef DEBUG_FAIL_ALLOC |
| 47 | static int mem_fail_rate = 0; |
| 48 | static int mem_should_fail(const struct pool_head *); |
| 49 | #endif |
| 50 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 51 | /* Try to find an existing shared pool with the same characteristics and |
| 52 | * returns it, otherwise creates this one. NULL is returned if no memory |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 53 | * is available for a new creation. Two flags are supported : |
| 54 | * - MEM_F_SHARED to indicate that the pool may be shared with other users |
| 55 | * - MEM_F_EXACT to indicate that the size must not be rounded up |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 56 | */ |
| 57 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags) |
| 58 | { |
| 59 | struct pool_head *pool; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 60 | struct pool_head *entry; |
| 61 | struct list *start; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 62 | unsigned int align; |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 63 | int idx __maybe_unused; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 64 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 65 | /* We need to store a (void *) at the end of the chunks. Since we know |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 66 | * that the malloc() function will never return such a small size, |
| 67 | * let's round the size up to something slightly bigger, in order to |
| 68 | * ease merging of entries. Note that the rounding is a power of two. |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 69 | * This extra (void *) is not accounted for in the size computation |
| 70 | * so that the visible parts outside are not affected. |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 71 | * |
| 72 | * Note: for the LRU cache, we need to store 2 doubly-linked lists. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 73 | */ |
| 74 | |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 75 | if (!(flags & MEM_F_EXACT)) { |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 76 | align = 4 * sizeof(void *); // 2 lists = 4 pointers min |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 77 | size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA; |
| 78 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 79 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 80 | /* TODO: thread: we do not lock pool list for now because all pools are |
| 81 | * created during HAProxy startup (so before threads creation) */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 82 | start = &pools; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 83 | pool = NULL; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 84 | |
| 85 | list_for_each_entry(entry, &pools, list) { |
| 86 | if (entry->size == size) { |
| 87 | /* either we can share this place and we take it, or |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 88 | * we look for a shareable one or for the next position |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 89 | * before which we will insert a new one. |
| 90 | */ |
| 91 | if (flags & entry->flags & MEM_F_SHARED) { |
| 92 | /* we can share this one */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 93 | pool = entry; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 94 | DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 95 | break; |
| 96 | } |
| 97 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 98 | else if (entry->size > size) { |
| 99 | /* insert before this one */ |
| 100 | start = &entry->list; |
| 101 | break; |
| 102 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | if (!pool) { |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 106 | #ifdef CONFIG_HAP_LOCAL_POOLS |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 107 | if (pool_base_count < MAX_BASE_POOLS) |
| 108 | pool = &pool_base_start[pool_base_count++]; |
| 109 | |
| 110 | if (!pool) { |
| 111 | /* look for a freed entry */ |
| 112 | for (entry = pool_base_start; entry != pool_base_start + MAX_BASE_POOLS; entry++) { |
| 113 | if (!entry->size) { |
| 114 | pool = entry; |
| 115 | break; |
| 116 | } |
| 117 | } |
| 118 | } |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 119 | #endif |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 120 | |
| 121 | if (!pool) |
| 122 | pool = calloc(1, sizeof(*pool)); |
| 123 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 124 | if (!pool) |
| 125 | return NULL; |
| 126 | if (name) |
| 127 | strlcpy2(pool->name, name, sizeof(pool->name)); |
| 128 | pool->size = size; |
| 129 | pool->flags = flags; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 130 | LIST_ADDQ(start, &pool->list); |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 131 | |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 132 | #ifdef CONFIG_HAP_LOCAL_POOLS |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 133 | /* update per-thread pool cache if necessary */ |
| 134 | idx = pool_get_index(pool); |
| 135 | if (idx >= 0) { |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 136 | int thr; |
| 137 | |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 138 | for (thr = 0; thr < MAX_THREADS; thr++) |
| 139 | pool_cache[thr][idx].size = size; |
| 140 | } |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 141 | #endif |
Olivier Houchard | 8af97eb | 2020-02-01 17:45:32 +0100 | [diff] [blame] | 142 | HA_SPIN_INIT(&pool->lock); |
Olivier Houchard | 8af97eb | 2020-02-01 17:45:32 +0100 | [diff] [blame] | 143 | } |
| 144 | pool->users++; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 145 | return pool; |
| 146 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 147 | |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 148 | #ifdef CONFIG_HAP_LOCAL_POOLS |
| 149 | /* Evicts some of the oldest objects from the local cache, pushing them to the |
| 150 | * global pool. |
| 151 | */ |
| 152 | void pool_evict_from_cache() |
| 153 | { |
| 154 | struct pool_cache_item *item; |
| 155 | struct pool_cache_head *ph; |
| 156 | |
| 157 | do { |
Willy Tarreau | 20dc3cd | 2020-06-28 00:54:27 +0200 | [diff] [blame] | 158 | item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru); |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 159 | /* note: by definition we remove oldest objects so they also are the |
| 160 | * oldest in their own pools, thus their next is the pool's head. |
| 161 | */ |
| 162 | ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list); |
| 163 | LIST_DEL(&item->by_pool); |
| 164 | LIST_DEL(&item->by_lru); |
| 165 | ph->count--; |
| 166 | pool_cache_count--; |
| 167 | pool_cache_bytes -= ph->size; |
| 168 | __pool_free(pool_base_start + (ph - pool_cache[tid]), item); |
| 169 | } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8); |
| 170 | } |
| 171 | #endif |
| 172 | |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 173 | #if defined(CONFIG_HAP_NO_GLOBAL_POOLS) |
| 174 | |
| 175 | /* simply fall back on the default OS' allocator */ |
| 176 | |
| 177 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 178 | { |
| 179 | int allocated = pool->allocated; |
| 180 | int limit = pool->limit; |
| 181 | void *ptr = NULL; |
| 182 | |
| 183 | if (limit && allocated >= limit) { |
| 184 | _HA_ATOMIC_ADD(&pool->allocated, 1); |
| 185 | activity[tid].pool_fail++; |
| 186 | return NULL; |
| 187 | } |
| 188 | |
| 189 | ptr = pool_alloc_area(pool->size + POOL_EXTRA); |
| 190 | if (!ptr) { |
| 191 | _HA_ATOMIC_ADD(&pool->failed, 1); |
| 192 | activity[tid].pool_fail++; |
| 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | _HA_ATOMIC_ADD(&pool->allocated, 1); |
| 197 | _HA_ATOMIC_ADD(&pool->used, 1); |
| 198 | |
| 199 | #ifdef DEBUG_MEMORY_POOLS |
| 200 | /* keep track of where the element was allocated from */ |
| 201 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 202 | #endif |
| 203 | return ptr; |
| 204 | } |
| 205 | |
| 206 | /* legacy stuff */ |
| 207 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 208 | { |
| 209 | void *ptr; |
| 210 | |
| 211 | ptr = __pool_refill_alloc(pool, avail); |
| 212 | return ptr; |
| 213 | } |
| 214 | |
| 215 | /* legacy stuff */ |
| 216 | void pool_flush(struct pool_head *pool) |
| 217 | { |
| 218 | } |
| 219 | |
| 220 | /* This function might ask the malloc library to trim its buffers. */ |
| 221 | void pool_gc(struct pool_head *pool_ctx) |
| 222 | { |
| 223 | #if defined(HA_HAVE_MALLOC_TRIM) |
| 224 | malloc_trim(0); |
| 225 | #endif |
| 226 | } |
| 227 | |
| 228 | #elif defined(CONFIG_HAP_LOCKLESS_POOLS) |
| 229 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 230 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 231 | * available, then returns the last one for immediate use, so that at least |
| 232 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 233 | * last entry could not be allocated. It's important to note that at least one |
| 234 | * allocation is always performed even if there are enough entries in the pool. |
| 235 | * A call to the garbage collector is performed at most once in case malloc() |
| 236 | * returns an error, before returning NULL. |
| 237 | */ |
| 238 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 239 | { |
Olivier Houchard | 8b2c8a7 | 2018-10-21 01:52:59 +0200 | [diff] [blame] | 240 | void *ptr = NULL, **free_list; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 241 | int failed = 0; |
| 242 | int size = pool->size; |
| 243 | int limit = pool->limit; |
| 244 | int allocated = pool->allocated, allocated_orig = allocated; |
| 245 | |
| 246 | /* stop point */ |
| 247 | avail += pool->used; |
| 248 | |
| 249 | while (1) { |
| 250 | if (limit && allocated >= limit) { |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 251 | _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig); |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 252 | activity[tid].pool_fail++; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 253 | return NULL; |
| 254 | } |
| 255 | |
Willy Tarreau | 606135a | 2020-06-01 12:35:03 +0200 | [diff] [blame] | 256 | swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->allocated, POOL_AVG_SAMPLES/4); |
Willy Tarreau | a1e4f8c | 2020-05-08 08:31:56 +0200 | [diff] [blame] | 257 | |
Willy Tarreau | 24aa1ee | 2020-05-30 18:56:17 +0200 | [diff] [blame] | 258 | ptr = pool_alloc_area(size + POOL_EXTRA); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 259 | if (!ptr) { |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 260 | _HA_ATOMIC_ADD(&pool->failed, 1); |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 261 | if (failed) { |
| 262 | activity[tid].pool_fail++; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 263 | return NULL; |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 264 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 265 | failed++; |
| 266 | pool_gc(pool); |
| 267 | continue; |
| 268 | } |
| 269 | if (++allocated > avail) |
| 270 | break; |
| 271 | |
| 272 | free_list = pool->free_list; |
| 273 | do { |
| 274 | *POOL_LINK(pool, ptr) = free_list; |
| 275 | __ha_barrier_store(); |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 276 | } while (_HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr) == 0); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 277 | } |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 278 | __ha_barrier_atomic_store(); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 279 | |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 280 | _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig); |
| 281 | _HA_ATOMIC_ADD(&pool->used, 1); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 282 | |
| 283 | #ifdef DEBUG_MEMORY_POOLS |
| 284 | /* keep track of where the element was allocated from */ |
| 285 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 286 | #endif |
| 287 | return ptr; |
| 288 | } |
| 289 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 290 | { |
| 291 | void *ptr; |
| 292 | |
| 293 | ptr = __pool_refill_alloc(pool, avail); |
| 294 | return ptr; |
| 295 | } |
| 296 | /* |
| 297 | * This function frees whatever can be freed in pool <pool>. |
| 298 | */ |
| 299 | void pool_flush(struct pool_head *pool) |
| 300 | { |
Olivier Houchard | b6fa08b | 2020-02-01 17:37:22 +0100 | [diff] [blame] | 301 | struct pool_free_list cmp, new; |
Olivier Houchard | 8b2c8a7 | 2018-10-21 01:52:59 +0200 | [diff] [blame] | 302 | void **next, *temp; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 303 | int removed = 0; |
| 304 | |
| 305 | if (!pool) |
| 306 | return; |
Willy Tarreau | 21072b9 | 2020-05-29 17:23:05 +0200 | [diff] [blame] | 307 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 308 | do { |
Olivier Houchard | b6fa08b | 2020-02-01 17:37:22 +0100 | [diff] [blame] | 309 | cmp.free_list = pool->free_list; |
| 310 | cmp.seq = pool->seq; |
| 311 | new.free_list = NULL; |
| 312 | new.seq = cmp.seq + 1; |
| 313 | } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new)); |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 314 | __ha_barrier_atomic_store(); |
Willy Tarreau | 21072b9 | 2020-05-29 17:23:05 +0200 | [diff] [blame] | 315 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Olivier Houchard | b6fa08b | 2020-02-01 17:37:22 +0100 | [diff] [blame] | 316 | next = cmp.free_list; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 317 | while (next) { |
| 318 | temp = next; |
| 319 | next = *POOL_LINK(pool, temp); |
| 320 | removed++; |
Willy Tarreau | 24aa1ee | 2020-05-30 18:56:17 +0200 | [diff] [blame] | 321 | pool_free_area(temp, pool->size + POOL_EXTRA); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 322 | } |
| 323 | pool->free_list = next; |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 324 | _HA_ATOMIC_SUB(&pool->allocated, removed); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 325 | /* here, we should have pool->allocate == pool->used */ |
| 326 | } |
| 327 | |
| 328 | /* |
| 329 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 330 | * the minimum thresholds imposed by owners. It makes sure to be alone to |
| 331 | * run by using thread_isolate(). <pool_ctx> is unused. |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 332 | */ |
| 333 | void pool_gc(struct pool_head *pool_ctx) |
| 334 | { |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 335 | struct pool_head *entry; |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 336 | int isolated = thread_isolated(); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 337 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 338 | if (!isolated) |
| 339 | thread_isolate(); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 340 | |
| 341 | list_for_each_entry(entry, &pools, list) { |
| 342 | while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) { |
| 343 | struct pool_free_list cmp, new; |
| 344 | |
| 345 | cmp.seq = entry->seq; |
| 346 | __ha_barrier_load(); |
| 347 | cmp.free_list = entry->free_list; |
| 348 | __ha_barrier_load(); |
| 349 | if (cmp.free_list == NULL) |
| 350 | break; |
| 351 | new.free_list = *POOL_LINK(entry, cmp.free_list); |
| 352 | new.seq = cmp.seq + 1; |
Willy Tarreau | 6a38b32 | 2019-05-11 18:04:24 +0200 | [diff] [blame] | 353 | if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0) |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 354 | continue; |
Willy Tarreau | 24aa1ee | 2020-05-30 18:56:17 +0200 | [diff] [blame] | 355 | pool_free_area(cmp.free_list, entry->size + POOL_EXTRA); |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 356 | _HA_ATOMIC_SUB(&entry->allocated, 1); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 360 | if (!isolated) |
| 361 | thread_release(); |
Willy Tarreau | 88366c2 | 2020-11-03 15:53:34 +0100 | [diff] [blame] | 362 | |
| 363 | #if defined(HA_HAVE_MALLOC_TRIM) |
| 364 | malloc_trim(0); |
| 365 | #endif |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 366 | } |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 367 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 368 | #else /* CONFIG_HAP_LOCKLESS_POOLS */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 369 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 370 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 371 | * available, then returns the last one for immediate use, so that at least |
| 372 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 373 | * last entry could not be allocated. It's important to note that at least one |
| 374 | * allocation is always performed even if there are enough entries in the pool. |
| 375 | * A call to the garbage collector is performed at most once in case malloc() |
| 376 | * returns an error, before returning NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 377 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 378 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 379 | { |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 380 | void *ptr = NULL; |
| 381 | int failed = 0; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 382 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 383 | #ifdef DEBUG_FAIL_ALLOC |
| 384 | if (mem_should_fail(pool)) |
| 385 | return NULL; |
| 386 | #endif |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 387 | /* stop point */ |
| 388 | avail += pool->used; |
| 389 | |
| 390 | while (1) { |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 391 | if (pool->limit && pool->allocated >= pool->limit) { |
| 392 | activity[tid].pool_fail++; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 393 | return NULL; |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 394 | } |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 395 | |
Willy Tarreau | 606135a | 2020-06-01 12:35:03 +0200 | [diff] [blame] | 396 | swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->allocated, POOL_AVG_SAMPLES/4); |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 397 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 398 | ptr = pool_alloc_area(pool->size + POOL_EXTRA); |
Willy Tarreau | 8286754 | 2019-07-04 11:48:16 +0200 | [diff] [blame] | 399 | #ifdef DEBUG_MEMORY_POOLS |
| 400 | /* keep track of where the element was allocated from. This |
| 401 | * is done out of the lock so that the system really allocates |
| 402 | * the data without harming other threads waiting on the lock. |
| 403 | */ |
| 404 | if (ptr) |
| 405 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 406 | #endif |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 407 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 408 | if (!ptr) { |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 409 | pool->failed++; |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 410 | if (failed) { |
| 411 | activity[tid].pool_fail++; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 412 | return NULL; |
Willy Tarreau | a8b2ce0 | 2019-05-28 17:04:16 +0200 | [diff] [blame] | 413 | } |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 414 | failed++; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 415 | pool_gc(pool); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 416 | continue; |
| 417 | } |
| 418 | if (++pool->allocated > avail) |
| 419 | break; |
| 420 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 421 | *POOL_LINK(pool, ptr) = (void *)pool->free_list; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 422 | pool->free_list = ptr; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 423 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 424 | pool->used++; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 425 | return ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 426 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 427 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 428 | { |
| 429 | void *ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 430 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 431 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 432 | ptr = __pool_refill_alloc(pool, avail); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 433 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 434 | return ptr; |
| 435 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 436 | /* |
| 437 | * This function frees whatever can be freed in pool <pool>. |
| 438 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 439 | void pool_flush(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 440 | { |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 441 | void *temp; |
| 442 | |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 443 | if (!pool) |
| 444 | return; |
| 445 | |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 446 | while (1) { |
| 447 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
| 448 | temp = pool->free_list; |
| 449 | if (!temp) { |
| 450 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
| 451 | break; |
| 452 | } |
| 453 | pool->free_list = *POOL_LINK(pool, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 454 | pool->allocated--; |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 455 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 456 | pool_free_area(temp, pool->size + POOL_EXTRA); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 457 | } |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 458 | /* here, we should have pool->allocated == pool->used */ |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | /* |
| 462 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 463 | * the minimum thresholds imposed by owners. It makes sure to be alone to |
| 464 | * run by using thread_isolate(). <pool_ctx> is unused. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 465 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 466 | void pool_gc(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 467 | { |
| 468 | struct pool_head *entry; |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 469 | int isolated = thread_isolated(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 470 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 471 | if (!isolated) |
| 472 | thread_isolate(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 473 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 474 | list_for_each_entry(entry, &pools, list) { |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 475 | void *temp; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 476 | //qfprintf(stderr, "Flushing pool %s\n", entry->name); |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 477 | while (entry->free_list && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 478 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 479 | temp = entry->free_list; |
| 480 | entry->free_list = *POOL_LINK(entry, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 481 | entry->allocated--; |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 482 | pool_free_area(temp, entry->size + POOL_EXTRA); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 483 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 484 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 485 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 486 | if (!isolated) |
| 487 | thread_release(); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 488 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 489 | #endif |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 490 | |
| 491 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 492 | * This function destroys a pool by freeing it completely, unless it's still |
| 493 | * in use. This should be called only under extreme circumstances. It always |
| 494 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 495 | * pointer, otherwise it returns the pool. |
| 496 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 497 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 498 | void *pool_destroy(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 499 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 500 | if (pool) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 501 | pool_flush(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 502 | if (pool->used) |
| 503 | return pool; |
| 504 | pool->users--; |
| 505 | if (!pool->users) { |
| 506 | LIST_DEL(&pool->list); |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 507 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 508 | HA_SPIN_DESTROY(&pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 509 | #endif |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 510 | |
| 511 | #ifdef CONFIG_HAP_LOCAL_POOLS |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 512 | if ((pool - pool_base_start) < MAX_BASE_POOLS) |
| 513 | memset(pool, 0, sizeof(*pool)); |
| 514 | else |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 515 | #endif |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 516 | free(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 517 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 518 | } |
| 519 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 520 | } |
| 521 | |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 522 | /* This destroys all pools on exit. It is *not* thread safe. */ |
| 523 | void pool_destroy_all() |
| 524 | { |
| 525 | struct pool_head *entry, *back; |
| 526 | |
| 527 | list_for_each_entry_safe(entry, back, &pools, list) |
| 528 | pool_destroy(entry); |
| 529 | } |
| 530 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 531 | /* This function dumps memory usage information into the trash buffer. */ |
| 532 | void dump_pools_to_trash() |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 533 | { |
| 534 | struct pool_head *entry; |
| 535 | unsigned long allocated, used; |
| 536 | int nbpools; |
| 537 | |
| 538 | allocated = used = nbpools = 0; |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 539 | chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n"); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 540 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 541 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 542 | HA_SPIN_LOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 543 | #endif |
Willy Tarreau | a1e4f8c | 2020-05-08 08:31:56 +0200 | [diff] [blame] | 544 | chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used, needed_avg %u, %u failures, %u users, @%p=%02d%s\n", |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 545 | entry->name, entry->size, entry->allocated, |
Willy Tarreau | a1e4f8c | 2020-05-08 08:31:56 +0200 | [diff] [blame] | 546 | entry->size * entry->allocated, entry->used, |
Willy Tarreau | 606135a | 2020-06-01 12:35:03 +0200 | [diff] [blame] | 547 | swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed, |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 548 | entry->users, entry, (int)pool_get_index(entry), |
| 549 | (entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 550 | |
| 551 | allocated += entry->allocated * entry->size; |
| 552 | used += entry->used * entry->size; |
| 553 | nbpools++; |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 554 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 555 | HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 556 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 557 | } |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 558 | chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n", |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 559 | nbpools, allocated, used); |
| 560 | } |
| 561 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 562 | /* Dump statistics on pools usage. */ |
| 563 | void dump_pools(void) |
| 564 | { |
| 565 | dump_pools_to_trash(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 566 | qfprintf(stderr, "%s", trash.area); |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 567 | } |
| 568 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 569 | /* This function returns the total number of failed pool allocations */ |
| 570 | int pool_total_failures() |
| 571 | { |
| 572 | struct pool_head *entry; |
| 573 | int failed = 0; |
| 574 | |
| 575 | list_for_each_entry(entry, &pools, list) |
| 576 | failed += entry->failed; |
| 577 | return failed; |
| 578 | } |
| 579 | |
| 580 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
| 581 | unsigned long pool_total_allocated() |
| 582 | { |
| 583 | struct pool_head *entry; |
| 584 | unsigned long allocated = 0; |
| 585 | |
| 586 | list_for_each_entry(entry, &pools, list) |
| 587 | allocated += entry->allocated * entry->size; |
| 588 | return allocated; |
| 589 | } |
| 590 | |
| 591 | /* This function returns the total amount of memory used in pools (in bytes) */ |
| 592 | unsigned long pool_total_used() |
| 593 | { |
| 594 | struct pool_head *entry; |
| 595 | unsigned long used = 0; |
| 596 | |
| 597 | list_for_each_entry(entry, &pools, list) |
| 598 | used += entry->used * entry->size; |
| 599 | return used; |
| 600 | } |
| 601 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 602 | /* This function dumps memory usage information onto the stream interface's |
| 603 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 604 | * completion. No state is used. |
| 605 | */ |
| 606 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 607 | { |
| 608 | struct stream_interface *si = appctx->owner; |
| 609 | |
| 610 | dump_pools_to_trash(); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 611 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 612 | si_rx_room_blk(si); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 613 | return 0; |
| 614 | } |
| 615 | return 1; |
| 616 | } |
| 617 | |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 618 | /* callback used to create early pool <name> of size <size> and store the |
| 619 | * resulting pointer into <ptr>. If the allocation fails, it quits with after |
| 620 | * emitting an error message. |
| 621 | */ |
| 622 | void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size) |
| 623 | { |
| 624 | *ptr = create_pool(name, size, MEM_F_SHARED); |
| 625 | if (!*ptr) { |
| 626 | ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n", |
| 627 | name, size, strerror(errno)); |
| 628 | exit(1); |
| 629 | } |
| 630 | } |
| 631 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 632 | /* Initializes all per-thread arrays on startup */ |
| 633 | static void init_pools() |
| 634 | { |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 635 | #ifdef CONFIG_HAP_LOCAL_POOLS |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 636 | int thr, idx; |
| 637 | |
| 638 | for (thr = 0; thr < MAX_THREADS; thr++) { |
| 639 | for (idx = 0; idx < MAX_BASE_POOLS; idx++) { |
| 640 | LIST_INIT(&pool_cache[thr][idx].list); |
| 641 | pool_cache[thr][idx].size = 0; |
| 642 | } |
Willy Tarreau | 20dc3cd | 2020-06-28 00:54:27 +0200 | [diff] [blame] | 643 | LIST_INIT(&ha_thread_info[thr].pool_lru_head); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 644 | } |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 645 | #endif |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | INITCALL0(STG_PREPARE, init_pools); |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 649 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 650 | /* register cli keywords */ |
| 651 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | e9ecec8 | 2016-12-16 18:55:23 +0100 | [diff] [blame] | 652 | { { "show", "pools", NULL }, "show pools : report information about the memory pools usage", NULL, cli_io_handler_dump_pools }, |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 653 | {{},} |
| 654 | }}; |
| 655 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 656 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 657 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 658 | #ifdef DEBUG_FAIL_ALLOC |
| 659 | #define MEM_FAIL_MAX_CHAR 32 |
| 660 | #define MEM_FAIL_MAX_STR 128 |
| 661 | static int mem_fail_cur_idx; |
| 662 | static char mem_fail_str[MEM_FAIL_MAX_CHAR * MEM_FAIL_MAX_STR]; |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 663 | __decl_thread(static HA_SPINLOCK_T mem_fail_lock); |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 664 | |
| 665 | int mem_should_fail(const struct pool_head *pool) |
| 666 | { |
Olivier Houchard | 9c4f08a | 2019-02-01 16:28:04 +0100 | [diff] [blame] | 667 | int ret = 0; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 668 | int n; |
| 669 | |
| 670 | if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) { |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 671 | int randnb = ha_random() % 100; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 672 | |
| 673 | if (mem_fail_rate > randnb) |
| 674 | ret = 1; |
| 675 | else |
| 676 | ret = 0; |
| 677 | } |
Olivier Houchard | 04f5fe8 | 2020-02-01 17:49:31 +0100 | [diff] [blame] | 678 | HA_SPIN_LOCK(POOL_LOCK, &mem_fail_lock); |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 679 | n = snprintf(&mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR], |
| 680 | MEM_FAIL_MAX_CHAR - 2, |
| 681 | "%d %.18s %d %d", mem_fail_cur_idx, pool->name, ret, tid); |
| 682 | while (n < MEM_FAIL_MAX_CHAR - 1) |
| 683 | mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n++] = ' '; |
| 684 | if (mem_fail_cur_idx < MEM_FAIL_MAX_STR - 1) |
| 685 | mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = '\n'; |
| 686 | else |
| 687 | mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = 0; |
| 688 | mem_fail_cur_idx++; |
| 689 | if (mem_fail_cur_idx == MEM_FAIL_MAX_STR) |
| 690 | mem_fail_cur_idx = 0; |
Olivier Houchard | 04f5fe8 | 2020-02-01 17:49:31 +0100 | [diff] [blame] | 691 | HA_SPIN_UNLOCK(POOL_LOCK, &mem_fail_lock); |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 692 | return ret; |
| 693 | |
| 694 | } |
| 695 | |
| 696 | /* config parser for global "tune.fail-alloc" */ |
| 697 | static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx, |
Amaury Denoyelle | 3b1c9a3 | 2021-03-22 11:21:36 +0100 | [diff] [blame] | 698 | const struct proxy *defpx, const char *file, int line, |
| 699 | char **err) |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 700 | { |
| 701 | if (too_many_args(1, args, err, NULL)) |
| 702 | return -1; |
| 703 | mem_fail_rate = atoi(args[1]); |
| 704 | if (mem_fail_rate < 0 || mem_fail_rate > 100) { |
| 705 | memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]); |
| 706 | return -1; |
| 707 | } |
| 708 | return 0; |
| 709 | } |
| 710 | #endif |
| 711 | |
| 712 | /* register global config keywords */ |
| 713 | static struct cfg_kw_list mem_cfg_kws = {ILH, { |
| 714 | #ifdef DEBUG_FAIL_ALLOC |
| 715 | { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc }, |
| 716 | #endif |
| 717 | { 0, NULL, NULL } |
| 718 | }}; |
| 719 | |
| 720 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws); |
| 721 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 722 | /* |
| 723 | * Local variables: |
| 724 | * c-indent-level: 8 |
| 725 | * c-basic-offset: 8 |
| 726 | * End: |
| 727 | */ |