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