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