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 | 2d6f628 | 2021-04-15 16:24:00 +0200 | [diff] [blame] | 30 | #ifdef CONFIG_HAP_POOLS |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 31 | /* These ones are initialized per-thread on startup by init_pools() */ |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 32 | THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */ |
| 33 | THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */ |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 34 | #endif |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 35 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 36 | static struct list pools = LIST_HEAD_INIT(pools); |
Willy Tarreau | 067ac9f | 2015-10-08 14:12:13 +0200 | [diff] [blame] | 37 | int mem_poison_byte = -1; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 38 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 39 | #ifdef DEBUG_FAIL_ALLOC |
| 40 | static int mem_fail_rate = 0; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 41 | #endif |
| 42 | |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 43 | #if defined(HA_HAVE_MALLOC_TRIM) |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 44 | static int using_libc_allocator = 0; |
| 45 | |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 46 | /* ask the allocator to trim memory pools */ |
| 47 | static void trim_all_pools(void) |
| 48 | { |
| 49 | if (using_libc_allocator) |
| 50 | malloc_trim(0); |
| 51 | } |
| 52 | |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 53 | /* check if we're using the same allocator as the one that provides |
| 54 | * malloc_trim() and mallinfo(). The principle is that on glibc, both |
| 55 | * malloc_trim() and mallinfo() are provided, and using mallinfo() we |
| 56 | * can check if malloc() is performed through glibc or any other one |
| 57 | * the executable was linked against (e.g. jemalloc). |
| 58 | */ |
| 59 | static void detect_allocator(void) |
| 60 | { |
Willy Tarreau | 3bf7569 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 61 | #ifdef HA_HAVE_MALLINFO2 |
| 62 | struct mallinfo2 mi1, mi2; |
| 63 | #else |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 64 | struct mallinfo mi1, mi2; |
Willy Tarreau | 3bf7569 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 65 | #endif |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 66 | void *ptr; |
| 67 | |
Willy Tarreau | 3bf7569 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 68 | #ifdef HA_HAVE_MALLINFO2 |
| 69 | mi1 = mallinfo2(); |
| 70 | #else |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 71 | mi1 = mallinfo(); |
Willy Tarreau | 3bf7569 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 72 | #endif |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 73 | ptr = DISGUISE(malloc(1)); |
Willy Tarreau | 3bf7569 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 74 | #ifdef HA_HAVE_MALLINFO2 |
| 75 | mi2 = mallinfo2(); |
| 76 | #else |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 77 | mi2 = mallinfo(); |
Willy Tarreau | 3bf7569 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 78 | #endif |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 79 | free(DISGUISE(ptr)); |
| 80 | |
| 81 | using_libc_allocator = !!memcmp(&mi1, &mi2, sizeof(mi1)); |
| 82 | } |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 83 | #else |
| 84 | |
| 85 | static void trim_all_pools(void) |
| 86 | { |
| 87 | } |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 88 | |
| 89 | static void detect_allocator(void) |
| 90 | { |
| 91 | } |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 92 | #endif |
| 93 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 94 | /* Try to find an existing shared pool with the same characteristics and |
| 95 | * returns it, otherwise creates this one. NULL is returned if no memory |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 96 | * is available for a new creation. Two flags are supported : |
| 97 | * - MEM_F_SHARED to indicate that the pool may be shared with other users |
| 98 | * - 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] | 99 | */ |
| 100 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags) |
| 101 | { |
| 102 | struct pool_head *pool; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 103 | struct pool_head *entry; |
| 104 | struct list *start; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 105 | unsigned int align; |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 106 | int thr __maybe_unused; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 107 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 108 | /* 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] | 109 | * that the malloc() function will never return such a small size, |
| 110 | * let's round the size up to something slightly bigger, in order to |
| 111 | * 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] | 112 | * This extra (void *) is not accounted for in the size computation |
| 113 | * so that the visible parts outside are not affected. |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 114 | * |
| 115 | * 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] | 116 | */ |
| 117 | |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 118 | if (!(flags & MEM_F_EXACT)) { |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 119 | align = 4 * sizeof(void *); // 2 lists = 4 pointers min |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 120 | size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA; |
| 121 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 122 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 123 | /* TODO: thread: we do not lock pool list for now because all pools are |
| 124 | * created during HAProxy startup (so before threads creation) */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 125 | start = &pools; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 126 | pool = NULL; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 127 | |
| 128 | list_for_each_entry(entry, &pools, list) { |
| 129 | if (entry->size == size) { |
| 130 | /* either we can share this place and we take it, or |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 131 | * we look for a shareable one or for the next position |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 132 | * before which we will insert a new one. |
| 133 | */ |
Willy Tarreau | 1ab6c0b | 2021-05-05 07:29:01 +0200 | [diff] [blame] | 134 | if ((flags & entry->flags & MEM_F_SHARED) |
| 135 | #ifdef DEBUG_DONT_SHARE_POOLS |
| 136 | && strcmp(name, entry->name) == 0 |
| 137 | #endif |
| 138 | ) { |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 139 | /* we can share this one */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 140 | pool = entry; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 141 | DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 142 | break; |
| 143 | } |
| 144 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 145 | else if (entry->size > size) { |
| 146 | /* insert before this one */ |
| 147 | start = &entry->list; |
| 148 | break; |
| 149 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | if (!pool) { |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 153 | if (!pool) |
| 154 | pool = calloc(1, sizeof(*pool)); |
| 155 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 156 | if (!pool) |
| 157 | return NULL; |
| 158 | if (name) |
| 159 | strlcpy2(pool->name, name, sizeof(pool->name)); |
| 160 | pool->size = size; |
| 161 | pool->flags = flags; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 162 | LIST_APPEND(start, &pool->list); |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 163 | |
Willy Tarreau | 2d6f628 | 2021-04-15 16:24:00 +0200 | [diff] [blame] | 164 | #ifdef CONFIG_HAP_POOLS |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 165 | /* update per-thread pool cache if necessary */ |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 166 | for (thr = 0; thr < MAX_THREADS; thr++) { |
| 167 | LIST_INIT(&pool->cache[thr].list); |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 168 | } |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 169 | #endif |
Olivier Houchard | 8af97eb | 2020-02-01 17:45:32 +0100 | [diff] [blame] | 170 | HA_SPIN_INIT(&pool->lock); |
Olivier Houchard | 8af97eb | 2020-02-01 17:45:32 +0100 | [diff] [blame] | 171 | } |
| 172 | pool->users++; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 173 | return pool; |
| 174 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 175 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 176 | /* Tries to allocate an object for the pool <pool> using the system's allocator |
| 177 | * and directly returns it. The pool's allocated counter is checked and updated, |
| 178 | * but no other checks are performed. The pool's lock is not used and is not a |
| 179 | * problem either. |
| 180 | */ |
| 181 | void *pool_get_from_os(struct pool_head *pool) |
| 182 | { |
| 183 | if (!pool->limit || pool->allocated < pool->limit) { |
| 184 | void *ptr = pool_alloc_area(pool->size + POOL_EXTRA); |
| 185 | if (ptr) { |
| 186 | _HA_ATOMIC_INC(&pool->allocated); |
| 187 | return ptr; |
| 188 | } |
| 189 | _HA_ATOMIC_INC(&pool->failed); |
| 190 | } |
| 191 | activity[tid].pool_fail++; |
| 192 | return NULL; |
| 193 | |
| 194 | } |
| 195 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 196 | /* Releases a pool item back to the operating system and atomically updates |
| 197 | * the allocation counter. |
| 198 | */ |
| 199 | void pool_put_to_os(struct pool_head *pool, void *ptr) |
| 200 | { |
Willy Tarreau | 11e7af3 | 2021-06-10 17:20:19 +0200 | [diff] [blame] | 201 | #ifdef DEBUG_UAF |
| 202 | /* This object will be released for real in order to detect a use after |
| 203 | * free. We also force a write to the area to ensure we crash on double |
| 204 | * free or free of a const area. |
| 205 | */ |
| 206 | *(uint32_t *)ptr = 0xDEADADD4; |
| 207 | #endif /* DEBUG_UAF */ |
| 208 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 209 | pool_free_area(ptr, pool->size + POOL_EXTRA); |
| 210 | _HA_ATOMIC_DEC(&pool->allocated); |
| 211 | } |
| 212 | |
Willy Tarreau | 8fe726f | 2021-04-15 18:20:12 +0200 | [diff] [blame] | 213 | /* Tries to allocate an object for the pool <pool> using the system's allocator |
| 214 | * and directly returns it. The pool's counters are updated but the object is |
| 215 | * never cached, so this is usable with and without local or shared caches. |
| 216 | * This may be called with or without the pool lock held, so it must not use |
| 217 | * the pool's lock. |
| 218 | */ |
| 219 | void *pool_alloc_nocache(struct pool_head *pool) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 220 | { |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 221 | void *ptr = NULL; |
| 222 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 223 | ptr = pool_get_from_os(pool); |
| 224 | if (!ptr) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 225 | return NULL; |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 226 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 227 | swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 228 | _HA_ATOMIC_INC(&pool->used); |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 229 | |
| 230 | #ifdef DEBUG_MEMORY_POOLS |
| 231 | /* keep track of where the element was allocated from */ |
| 232 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 233 | #endif |
| 234 | return ptr; |
| 235 | } |
| 236 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 237 | /* Release a pool item back to the OS and keeps the pool's counters up to date. |
| 238 | * This is always defined even when pools are not enabled (their usage stats |
| 239 | * are maintained). |
| 240 | */ |
| 241 | void pool_free_nocache(struct pool_head *pool, void *ptr) |
| 242 | { |
| 243 | _HA_ATOMIC_DEC(&pool->used); |
| 244 | swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used); |
| 245 | pool_put_to_os(pool, ptr); |
| 246 | } |
| 247 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 248 | |
| 249 | #ifdef CONFIG_HAP_POOLS |
| 250 | |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 251 | /* Evicts some of the oldest objects from one local cache, until its number of |
| 252 | * objects is no more than 16+1/8 of the total number of locally cached objects |
| 253 | * or the total size of the local cache is no more than 75% of its maximum (i.e. |
| 254 | * we don't want a single cache to use all the cache for itself). For this, the |
| 255 | * list is scanned in reverse. |
| 256 | */ |
| 257 | void pool_evict_from_local_cache(struct pool_head *pool) |
| 258 | { |
| 259 | struct pool_cache_head *ph = &pool->cache[tid]; |
| 260 | struct pool_cache_item *item; |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 261 | |
| 262 | while (ph->count >= 16 + pool_cache_count / 8 && |
| 263 | pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4) { |
| 264 | item = LIST_NEXT(&ph->list, typeof(item), by_pool); |
| 265 | ph->count--; |
| 266 | pool_cache_bytes -= pool->size; |
| 267 | pool_cache_count--; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 268 | LIST_DELETE(&item->by_pool); |
| 269 | LIST_DELETE(&item->by_lru); |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 270 | pool_put_to_shared_cache(pool, item); |
| 271 | } |
| 272 | } |
| 273 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 274 | /* Evicts some of the oldest objects from the local cache, pushing them to the |
| 275 | * global pool. |
| 276 | */ |
| 277 | void pool_evict_from_local_caches() |
| 278 | { |
| 279 | struct pool_cache_item *item; |
| 280 | struct pool_cache_head *ph; |
| 281 | struct pool_head *pool; |
| 282 | |
| 283 | do { |
| 284 | item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru); |
| 285 | /* note: by definition we remove oldest objects so they also are the |
| 286 | * oldest in their own pools, thus their next is the pool's head. |
| 287 | */ |
| 288 | ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list); |
| 289 | pool = container_of(ph - tid, struct pool_head, cache); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 290 | LIST_DELETE(&item->by_pool); |
| 291 | LIST_DELETE(&item->by_lru); |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 292 | ph->count--; |
| 293 | pool_cache_count--; |
| 294 | pool_cache_bytes -= pool->size; |
| 295 | pool_put_to_shared_cache(pool, item); |
| 296 | } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8); |
| 297 | } |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 298 | |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 299 | /* Frees an object to the local cache, possibly pushing oldest objects to the |
| 300 | * shared cache, which itself may decide to release some of them to the OS. |
| 301 | * While it is unspecified what the object becomes past this point, it is |
| 302 | * guaranteed to be released from the users' perpective. |
| 303 | */ |
| 304 | void pool_put_to_cache(struct pool_head *pool, void *ptr) |
| 305 | { |
| 306 | struct pool_cache_item *item = (struct pool_cache_item *)ptr; |
| 307 | struct pool_cache_head *ph = &pool->cache[tid]; |
| 308 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 309 | LIST_INSERT(&ph->list, &item->by_pool); |
| 310 | LIST_INSERT(&ti->pool_lru_head, &item->by_lru); |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 311 | ph->count++; |
| 312 | pool_cache_count++; |
| 313 | pool_cache_bytes += pool->size; |
| 314 | |
| 315 | if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) { |
| 316 | if (ph->count >= 16 + pool_cache_count / 8) |
| 317 | pool_evict_from_local_cache(pool); |
| 318 | if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE) |
| 319 | pool_evict_from_local_caches(); |
| 320 | } |
| 321 | } |
| 322 | |
Willy Tarreau | eb3cc29 | 2021-04-15 18:13:13 +0200 | [diff] [blame] | 323 | #if defined(CONFIG_HAP_NO_GLOBAL_POOLS) |
| 324 | |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 325 | /* legacy stuff */ |
| 326 | void pool_flush(struct pool_head *pool) |
| 327 | { |
| 328 | } |
| 329 | |
| 330 | /* This function might ask the malloc library to trim its buffers. */ |
| 331 | void pool_gc(struct pool_head *pool_ctx) |
| 332 | { |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 333 | trim_all_pools(); |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 334 | } |
| 335 | |
Willy Tarreau | a206cf9 | 2021-06-10 10:21:35 +0200 | [diff] [blame] | 336 | #else /* CONFIG_HAP_NO_GLOBAL_POOLS */ |
| 337 | |
| 338 | #if defined(CONFIG_HAP_LOCKLESS_POOLS) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 339 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 340 | /* |
| 341 | * This function frees whatever can be freed in pool <pool>. |
| 342 | */ |
| 343 | void pool_flush(struct pool_head *pool) |
| 344 | { |
Willy Tarreau | d0cc376 | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 345 | void *next, *temp; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 346 | |
| 347 | if (!pool) |
| 348 | return; |
Willy Tarreau | d0cc376 | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 349 | |
| 350 | /* The loop below atomically detaches the head of the free list and |
| 351 | * replaces it with a NULL. Then the list can be released. |
| 352 | */ |
| 353 | next = pool->free_list; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 354 | do { |
Willy Tarreau | d0cc376 | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 355 | while (unlikely(next == POOL_BUSY)) { |
| 356 | __ha_cpu_relax(); |
| 357 | next = _HA_ATOMIC_LOAD(&pool->free_list); |
| 358 | } |
| 359 | if (next == NULL) |
| 360 | return; |
| 361 | } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY)); |
| 362 | _HA_ATOMIC_STORE(&pool->free_list, NULL); |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 363 | __ha_barrier_atomic_store(); |
Willy Tarreau | d0cc376 | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 364 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 365 | while (next) { |
| 366 | temp = next; |
| 367 | next = *POOL_LINK(pool, temp); |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 368 | pool_put_to_os(pool, temp); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 369 | } |
Willy Tarreau | caf6555 | 2021-06-10 06:54:22 +0200 | [diff] [blame] | 370 | /* here, we should have pool->allocated == pool->used */ |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 371 | } |
| 372 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 373 | #else /* CONFIG_HAP_LOCKLESS_POOLS */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 374 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 375 | /* |
| 376 | * This function frees whatever can be freed in pool <pool>. |
| 377 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 378 | void pool_flush(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 379 | { |
Willy Tarreau | af8120a | 2021-06-10 07:13:04 +0200 | [diff] [blame] | 380 | void *temp, **next; |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 381 | |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 382 | if (!pool) |
| 383 | return; |
| 384 | |
Willy Tarreau | af8120a | 2021-06-10 07:13:04 +0200 | [diff] [blame] | 385 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
| 386 | next = pool->free_list; |
| 387 | pool->free_list = NULL; |
| 388 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
| 389 | |
| 390 | while (next) { |
| 391 | temp = next; |
| 392 | next = *POOL_LINK(pool, temp); |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 393 | pool_put_to_os(pool, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 394 | } |
Willy Tarreau | 3e853ea | 2019-07-04 11:30:00 +0200 | [diff] [blame] | 395 | /* here, we should have pool->allocated == pool->used */ |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 396 | } |
| 397 | |
Willy Tarreau | a206cf9 | 2021-06-10 10:21:35 +0200 | [diff] [blame] | 398 | #endif /* CONFIG_HAP_LOCKLESS_POOLS */ |
| 399 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 400 | /* |
| 401 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 402 | * the minimum thresholds imposed by owners. It makes sure to be alone to |
| 403 | * run by using thread_isolate(). <pool_ctx> is unused. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 404 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 405 | void pool_gc(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 406 | { |
| 407 | struct pool_head *entry; |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 408 | int isolated = thread_isolated(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 409 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 410 | if (!isolated) |
| 411 | thread_isolate(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 412 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 413 | list_for_each_entry(entry, &pools, list) { |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 414 | void *temp; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 415 | //qfprintf(stderr, "Flushing pool %s\n", entry->name); |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 416 | while (entry->free_list && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 417 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 418 | temp = entry->free_list; |
| 419 | entry->free_list = *POOL_LINK(entry, temp); |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 420 | pool_put_to_os(entry, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 421 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 422 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 423 | |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 424 | trim_all_pools(); |
Willy Tarreau | 46b515c | 2021-06-10 08:40:16 +0200 | [diff] [blame] | 425 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 426 | if (!isolated) |
| 427 | thread_release(); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 428 | } |
Willy Tarreau | a206cf9 | 2021-06-10 10:21:35 +0200 | [diff] [blame] | 429 | #endif /* CONFIG_HAP_NO_GLOBAL_POOLS */ |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 430 | |
| 431 | #else /* CONFIG_HAP_POOLS */ |
| 432 | |
| 433 | /* legacy stuff */ |
| 434 | void pool_flush(struct pool_head *pool) |
| 435 | { |
| 436 | } |
| 437 | |
| 438 | /* This function might ask the malloc library to trim its buffers. */ |
| 439 | void pool_gc(struct pool_head *pool_ctx) |
| 440 | { |
Willy Tarreau | 33298de | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 441 | trim_all_pools(); |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | #endif /* CONFIG_HAP_POOLS */ |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 445 | |
| 446 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 447 | * This function destroys a pool by freeing it completely, unless it's still |
| 448 | * in use. This should be called only under extreme circumstances. It always |
| 449 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 450 | * pointer, otherwise it returns the pool. |
| 451 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 452 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 453 | void *pool_destroy(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 454 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 455 | if (pool) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 456 | pool_flush(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 457 | if (pool->used) |
| 458 | return pool; |
| 459 | pool->users--; |
| 460 | if (!pool->users) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 461 | LIST_DELETE(&pool->list); |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 462 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 463 | HA_SPIN_DESTROY(&pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 464 | #endif |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 465 | /* note that if used == 0, the cache is empty */ |
| 466 | free(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 467 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 468 | } |
| 469 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 470 | } |
| 471 | |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 472 | /* This destroys all pools on exit. It is *not* thread safe. */ |
| 473 | void pool_destroy_all() |
| 474 | { |
| 475 | struct pool_head *entry, *back; |
| 476 | |
| 477 | list_for_each_entry_safe(entry, back, &pools, list) |
| 478 | pool_destroy(entry); |
| 479 | } |
| 480 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 481 | /* This function dumps memory usage information into the trash buffer. */ |
| 482 | void dump_pools_to_trash() |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 483 | { |
| 484 | struct pool_head *entry; |
| 485 | unsigned long allocated, used; |
| 486 | int nbpools; |
| 487 | |
| 488 | allocated = used = nbpools = 0; |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 489 | chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n"); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 490 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 491 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 492 | HA_SPIN_LOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 493 | #endif |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 494 | chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used, needed_avg %u, %u failures, %u users, @%p%s\n", |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 495 | entry->name, entry->size, entry->allocated, |
Willy Tarreau | a1e4f8c | 2020-05-08 08:31:56 +0200 | [diff] [blame] | 496 | entry->size * entry->allocated, entry->used, |
Willy Tarreau | 606135a | 2020-06-01 12:35:03 +0200 | [diff] [blame] | 497 | swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed, |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 498 | entry->users, entry, |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 499 | (entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 500 | |
| 501 | allocated += entry->allocated * entry->size; |
| 502 | used += entry->used * entry->size; |
| 503 | nbpools++; |
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_UNLOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 506 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 507 | } |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 508 | chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n", |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 509 | nbpools, allocated, used); |
| 510 | } |
| 511 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 512 | /* Dump statistics on pools usage. */ |
| 513 | void dump_pools(void) |
| 514 | { |
| 515 | dump_pools_to_trash(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 516 | qfprintf(stderr, "%s", trash.area); |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 517 | } |
| 518 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 519 | /* This function returns the total number of failed pool allocations */ |
| 520 | int pool_total_failures() |
| 521 | { |
| 522 | struct pool_head *entry; |
| 523 | int failed = 0; |
| 524 | |
| 525 | list_for_each_entry(entry, &pools, list) |
| 526 | failed += entry->failed; |
| 527 | return failed; |
| 528 | } |
| 529 | |
| 530 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
| 531 | unsigned long pool_total_allocated() |
| 532 | { |
| 533 | struct pool_head *entry; |
| 534 | unsigned long allocated = 0; |
| 535 | |
| 536 | list_for_each_entry(entry, &pools, list) |
| 537 | allocated += entry->allocated * entry->size; |
| 538 | return allocated; |
| 539 | } |
| 540 | |
| 541 | /* This function returns the total amount of memory used in pools (in bytes) */ |
| 542 | unsigned long pool_total_used() |
| 543 | { |
| 544 | struct pool_head *entry; |
| 545 | unsigned long used = 0; |
| 546 | |
| 547 | list_for_each_entry(entry, &pools, list) |
| 548 | used += entry->used * entry->size; |
| 549 | return used; |
| 550 | } |
| 551 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 552 | /* This function dumps memory usage information onto the stream interface's |
| 553 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 554 | * completion. No state is used. |
| 555 | */ |
| 556 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 557 | { |
| 558 | struct stream_interface *si = appctx->owner; |
| 559 | |
| 560 | dump_pools_to_trash(); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 561 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 562 | si_rx_room_blk(si); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 563 | return 0; |
| 564 | } |
| 565 | return 1; |
| 566 | } |
| 567 | |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 568 | /* callback used to create early pool <name> of size <size> and store the |
| 569 | * resulting pointer into <ptr>. If the allocation fails, it quits with after |
| 570 | * emitting an error message. |
| 571 | */ |
| 572 | void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size) |
| 573 | { |
| 574 | *ptr = create_pool(name, size, MEM_F_SHARED); |
| 575 | if (!*ptr) { |
| 576 | ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n", |
| 577 | name, size, strerror(errno)); |
| 578 | exit(1); |
| 579 | } |
| 580 | } |
| 581 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 582 | /* Initializes all per-thread arrays on startup */ |
| 583 | static void init_pools() |
| 584 | { |
Willy Tarreau | 2d6f628 | 2021-04-15 16:24:00 +0200 | [diff] [blame] | 585 | #ifdef CONFIG_HAP_POOLS |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 586 | int thr; |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 587 | |
| 588 | for (thr = 0; thr < MAX_THREADS; thr++) { |
Willy Tarreau | 20dc3cd | 2020-06-28 00:54:27 +0200 | [diff] [blame] | 589 | LIST_INIT(&ha_thread_info[thr].pool_lru_head); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 590 | } |
Willy Tarreau | ed891fd | 2020-06-01 19:00:28 +0200 | [diff] [blame] | 591 | #endif |
Willy Tarreau | 562bf20 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 592 | detect_allocator(); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | INITCALL0(STG_PREPARE, init_pools); |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 596 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 597 | /* register cli keywords */ |
| 598 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 599 | { { "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] | 600 | {{},} |
| 601 | }}; |
| 602 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 603 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 604 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 605 | #ifdef DEBUG_FAIL_ALLOC |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 606 | |
| 607 | int mem_should_fail(const struct pool_head *pool) |
| 608 | { |
Olivier Houchard | 9c4f08a | 2019-02-01 16:28:04 +0100 | [diff] [blame] | 609 | int ret = 0; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 610 | |
| 611 | if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) { |
Willy Tarreau | 20f88ab | 2021-04-17 15:50:28 +0200 | [diff] [blame] | 612 | if (mem_fail_rate > statistical_prng_range(100)) |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 613 | ret = 1; |
| 614 | else |
| 615 | ret = 0; |
| 616 | } |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 617 | return ret; |
| 618 | |
| 619 | } |
| 620 | |
| 621 | /* config parser for global "tune.fail-alloc" */ |
| 622 | 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] | 623 | const struct proxy *defpx, const char *file, int line, |
| 624 | char **err) |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 625 | { |
| 626 | if (too_many_args(1, args, err, NULL)) |
| 627 | return -1; |
| 628 | mem_fail_rate = atoi(args[1]); |
| 629 | if (mem_fail_rate < 0 || mem_fail_rate > 100) { |
| 630 | memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]); |
| 631 | return -1; |
| 632 | } |
| 633 | return 0; |
| 634 | } |
| 635 | #endif |
| 636 | |
| 637 | /* register global config keywords */ |
| 638 | static struct cfg_kw_list mem_cfg_kws = {ILH, { |
| 639 | #ifdef DEBUG_FAIL_ALLOC |
| 640 | { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc }, |
| 641 | #endif |
| 642 | { 0, NULL, NULL } |
| 643 | }}; |
| 644 | |
| 645 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws); |
| 646 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 647 | /* |
| 648 | * Local variables: |
| 649 | * c-indent-level: 8 |
| 650 | * c-basic-offset: 8 |
| 651 | * End: |
| 652 | */ |