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 | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 32 | /* These ones are initialized per-thread on startup by init_pools() */ |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 33 | THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */ |
| 34 | THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */ |
| 35 | |
Willy Tarreau | 9f69995 | 2022-02-18 18:31:53 +0100 | [diff] [blame] | 36 | static struct list pools __read_mostly = LIST_HEAD_INIT(pools); |
Willy Tarreau | ef301b7 | 2022-02-23 14:15:18 +0100 | [diff] [blame] | 37 | int mem_poison_byte __read_mostly = 'P'; |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 38 | uint pool_debugging __read_mostly = /* set of POOL_DBG_* flags */ |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 39 | #ifdef DEBUG_FAIL_ALLOC |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 40 | POOL_DBG_FAIL_ALLOC | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 41 | #endif |
Willy Tarreau | fd8b737 | 2022-02-21 17:31:50 +0100 | [diff] [blame] | 42 | #ifdef DEBUG_DONT_SHARE_POOLS |
| 43 | POOL_DBG_DONT_MERGE | |
| 44 | #endif |
Willy Tarreau | d3470e1 | 2022-02-21 18:30:25 +0100 | [diff] [blame] | 45 | #ifdef DEBUG_POOL_INTEGRITY |
| 46 | POOL_DBG_COLD_FIRST | |
| 47 | #endif |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 48 | #ifdef DEBUG_POOL_INTEGRITY |
| 49 | POOL_DBG_INTEGRITY | |
| 50 | #endif |
Willy Tarreau | dff3b06 | 2022-02-22 09:21:13 +0100 | [diff] [blame] | 51 | #ifdef CONFIG_HAP_NO_GLOBAL_POOLS |
| 52 | POOL_DBG_NO_GLOBAL | |
| 53 | #endif |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 54 | #ifndef CONFIG_HAP_POOLS |
| 55 | POOL_DBG_NO_CACHE | |
| 56 | #endif |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 57 | #if defined(DEBUG_POOL_TRACING) |
| 58 | POOL_DBG_CALLER | |
| 59 | #endif |
Willy Tarreau | 13d7775 | 2022-02-23 10:20:37 +0100 | [diff] [blame] | 60 | #if defined(DEBUG_MEMORY_POOLS) |
| 61 | POOL_DBG_TAG | |
| 62 | #endif |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 63 | 0; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 64 | |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 65 | static const struct { |
| 66 | uint flg; |
| 67 | const char *set; |
| 68 | const char *clr; |
| 69 | const char *hlp; |
| 70 | } dbg_options[] = { |
| 71 | /* flg, set, clr, hlp */ |
| 72 | { POOL_DBG_FAIL_ALLOC, "fail", "no-fail", "randomly fail allocations" }, |
| 73 | { POOL_DBG_DONT_MERGE, "no-merge", "merge", "disable merging of similar pools" }, |
| 74 | { POOL_DBG_COLD_FIRST, "cold-first", "hot-first", "pick cold objects first" }, |
| 75 | { POOL_DBG_INTEGRITY, "integrity", "no-integrity", "enable cache integrity checks" }, |
| 76 | { POOL_DBG_NO_GLOBAL, "no-global", "global", "disable global shared cache" }, |
| 77 | { POOL_DBG_NO_CACHE, "no-cache", "cache", "disable thread-local cache" }, |
| 78 | { POOL_DBG_CALLER, "caller", "no-caller", "save caller information in cache" }, |
| 79 | { POOL_DBG_TAG, "tag", "no-tag", "add tag at end of allocated objects" }, |
| 80 | { POOL_DBG_POISON, "poison", "no-poison", "poison newly allocated objects" }, |
| 81 | { 0 /* end */ } |
| 82 | }; |
| 83 | |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 84 | static int mem_fail_rate __read_mostly = 0; |
Willy Tarreau | 9f69995 | 2022-02-18 18:31:53 +0100 | [diff] [blame] | 85 | static int using_default_allocator __read_mostly = 1; |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 86 | 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] | 87 | |
Willy Tarreau | 0d93a81 | 2021-12-23 09:26:30 +0100 | [diff] [blame] | 88 | /* ask the allocator to trim memory pools. |
| 89 | * This must run under thread isolation so that competing threads trying to |
| 90 | * allocate or release memory do not prevent the allocator from completing |
| 91 | * its job. We just have to be careful as callers might already be isolated |
| 92 | * themselves. |
| 93 | */ |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 94 | static void trim_all_pools(void) |
| 95 | { |
Willy Tarreau | 0d93a81 | 2021-12-23 09:26:30 +0100 | [diff] [blame] | 96 | int isolated = thread_isolated(); |
| 97 | |
| 98 | if (!isolated) |
| 99 | thread_isolate(); |
| 100 | |
David Carlier | d450ff6 | 2021-11-25 16:14:38 +0000 | [diff] [blame] | 101 | if (my_mallctl) { |
| 102 | unsigned int i, narenas = 0; |
| 103 | size_t len = sizeof(narenas); |
| 104 | |
| 105 | if (my_mallctl("arenas.narenas", &narenas, &len, NULL, 0) == 0) { |
| 106 | for (i = 0; i < narenas; i ++) { |
| 107 | char mib[32] = {0}; |
| 108 | snprintf(mib, sizeof(mib), "arena.%u.purge", i); |
| 109 | (void)my_mallctl(mib, NULL, NULL, NULL, 0); |
| 110 | } |
| 111 | } |
| 112 | } else { |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 113 | #if defined(HA_HAVE_MALLOC_TRIM) |
David Carlier | d450ff6 | 2021-11-25 16:14:38 +0000 | [diff] [blame] | 114 | if (using_default_allocator) |
| 115 | malloc_trim(0); |
David CARLIER | b1e190a | 2021-11-26 20:44:44 +0000 | [diff] [blame] | 116 | #elif defined(HA_HAVE_MALLOC_ZONE) |
| 117 | if (using_default_allocator) { |
| 118 | vm_address_t *zones; |
| 119 | unsigned int i, nzones; |
| 120 | |
| 121 | if (malloc_get_all_zones(0, NULL, &zones, &nzones) == KERN_SUCCESS) { |
| 122 | for (i = 0; i < nzones; i ++) { |
| 123 | malloc_zone_t *zone = (malloc_zone_t *)zones[i]; |
| 124 | |
| 125 | /* we cannot purge anonymous zones */ |
| 126 | if (zone->zone_name) |
| 127 | malloc_zone_pressure_relief(zone, 0); |
| 128 | } |
| 129 | } |
| 130 | } |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 131 | #endif |
David Carlier | d450ff6 | 2021-11-25 16:14:38 +0000 | [diff] [blame] | 132 | } |
Willy Tarreau | 0d93a81 | 2021-12-23 09:26:30 +0100 | [diff] [blame] | 133 | |
| 134 | if (!isolated) |
| 135 | thread_release(); |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 136 | } |
| 137 | |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 138 | /* check if we're using the same allocator as the one that provides |
| 139 | * malloc_trim() and mallinfo(). The principle is that on glibc, both |
| 140 | * malloc_trim() and mallinfo() are provided, and using mallinfo() we |
| 141 | * can check if malloc() is performed through glibc or any other one |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 142 | * the executable was linked against (e.g. jemalloc). Prior to this we |
| 143 | * have to check whether we're running on jemalloc by verifying if the |
| 144 | * mallctl() function is provided. Its pointer will be used later. |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 145 | */ |
| 146 | static void detect_allocator(void) |
| 147 | { |
Willy Tarreau | 781f07a | 2021-11-26 15:55:55 +0100 | [diff] [blame] | 148 | #if defined(__ELF__) |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 149 | extern int mallctl(const char *, void *, size_t *, void *, size_t) __attribute__((weak)); |
| 150 | |
| 151 | my_mallctl = mallctl; |
Willy Tarreau | 781f07a | 2021-11-26 15:55:55 +0100 | [diff] [blame] | 152 | #endif |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 153 | |
| 154 | if (!my_mallctl) { |
| 155 | my_mallctl = get_sym_curr_addr("mallctl"); |
| 156 | using_default_allocator = (my_mallctl == NULL); |
| 157 | } |
| 158 | |
| 159 | if (!my_mallctl) { |
| 160 | #if defined(HA_HAVE_MALLOC_TRIM) |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 161 | #ifdef HA_HAVE_MALLINFO2 |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 162 | struct mallinfo2 mi1, mi2; |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 163 | #else |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 164 | struct mallinfo mi1, mi2; |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 165 | #endif |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 166 | void *ptr; |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 167 | |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 168 | #ifdef HA_HAVE_MALLINFO2 |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 169 | mi1 = mallinfo2(); |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 170 | #else |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 171 | mi1 = mallinfo(); |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 172 | #endif |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 173 | ptr = DISGUISE(malloc(1)); |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 174 | #ifdef HA_HAVE_MALLINFO2 |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 175 | mi2 = mallinfo2(); |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 176 | #else |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 177 | mi2 = mallinfo(); |
Willy Tarreau | c2afb86 | 2021-09-16 09:18:21 +0200 | [diff] [blame] | 178 | #endif |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 179 | free(DISGUISE(ptr)); |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 180 | |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 181 | using_default_allocator = !!memcmp(&mi1, &mi2, sizeof(mi1)); |
David CARLIER | b1e190a | 2021-11-26 20:44:44 +0000 | [diff] [blame] | 182 | #elif defined(HA_HAVE_MALLOC_ZONE) |
| 183 | using_default_allocator = (malloc_default_zone() != NULL); |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 184 | #endif |
| 185 | } |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static int is_trim_enabled(void) |
| 189 | { |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 190 | return using_default_allocator; |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 191 | } |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 192 | |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 193 | static int mem_should_fail(const struct pool_head *pool) |
| 194 | { |
| 195 | int ret = 0; |
| 196 | |
| 197 | if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) { |
| 198 | if (mem_fail_rate > statistical_prng_range(100)) |
| 199 | ret = 1; |
| 200 | else |
| 201 | ret = 0; |
| 202 | } |
| 203 | return ret; |
| 204 | } |
| 205 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 206 | /* Try to find an existing shared pool with the same characteristics and |
| 207 | * returns it, otherwise creates this one. NULL is returned if no memory |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 208 | * is available for a new creation. Two flags are supported : |
| 209 | * - MEM_F_SHARED to indicate that the pool may be shared with other users |
| 210 | * - 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] | 211 | */ |
| 212 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags) |
| 213 | { |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 214 | unsigned int extra_mark, extra_caller, extra; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 215 | struct pool_head *pool; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 216 | struct pool_head *entry; |
| 217 | struct list *start; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 218 | unsigned int align; |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 219 | int thr __maybe_unused; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 220 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 221 | /* 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] | 222 | * that the malloc() function will never return such a small size, |
| 223 | * let's round the size up to something slightly bigger, in order to |
| 224 | * 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] | 225 | * This extra (void *) is not accounted for in the size computation |
| 226 | * so that the visible parts outside are not affected. |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 227 | * |
| 228 | * 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] | 229 | */ |
| 230 | |
Willy Tarreau | 13d7775 | 2022-02-23 10:20:37 +0100 | [diff] [blame] | 231 | extra_mark = (pool_debugging & POOL_DBG_TAG) ? POOL_EXTRA_MARK : 0; |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 232 | extra_caller = (pool_debugging & POOL_DBG_CALLER) ? POOL_EXTRA_CALLER : 0; |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 233 | extra = extra_mark + extra_caller; |
| 234 | |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 235 | if (!(flags & MEM_F_EXACT)) { |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 236 | align = 4 * sizeof(void *); // 2 lists = 4 pointers min |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 237 | size = ((size + extra + align - 1) & -align) - extra; |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 238 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 239 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 240 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) { |
| 241 | /* we'll store two lists there, we need the room for this. This is |
| 242 | * guaranteed by the test above, except if MEM_F_EXACT is set, or if |
| 243 | * the only EXTRA part is in fact the one that's stored in the cache |
| 244 | * in addition to the pci struct. |
| 245 | */ |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 246 | if (size + extra - extra_caller < sizeof(struct pool_cache_item)) |
| 247 | size = sizeof(struct pool_cache_item) + extra_caller - extra; |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 248 | } |
| 249 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 250 | /* TODO: thread: we do not lock pool list for now because all pools are |
| 251 | * created during HAProxy startup (so before threads creation) */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 252 | start = &pools; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 253 | pool = NULL; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 254 | |
| 255 | list_for_each_entry(entry, &pools, list) { |
| 256 | if (entry->size == size) { |
| 257 | /* either we can share this place and we take it, or |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 258 | * we look for a shareable one or for the next position |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 259 | * before which we will insert a new one. |
| 260 | */ |
Willy Tarreau | fd8b737 | 2022-02-21 17:31:50 +0100 | [diff] [blame] | 261 | if ((flags & entry->flags & MEM_F_SHARED) && |
| 262 | (!(pool_debugging & POOL_DBG_DONT_MERGE) || |
| 263 | strcmp(name, entry->name) == 0)) { |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 264 | /* we can share this one */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 265 | pool = entry; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 266 | DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 267 | break; |
| 268 | } |
| 269 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 270 | else if (entry->size > size) { |
| 271 | /* insert before this one */ |
| 272 | start = &entry->list; |
| 273 | break; |
| 274 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | if (!pool) { |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 278 | if (!pool) |
| 279 | pool = calloc(1, sizeof(*pool)); |
| 280 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 281 | if (!pool) |
| 282 | return NULL; |
| 283 | if (name) |
| 284 | strlcpy2(pool->name, name, sizeof(pool->name)); |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 285 | pool->alloc_sz = size + extra; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 286 | pool->size = size; |
| 287 | pool->flags = flags; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 288 | LIST_APPEND(start, &pool->list); |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 289 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 290 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) { |
| 291 | /* update per-thread pool cache if necessary */ |
| 292 | for (thr = 0; thr < MAX_THREADS; thr++) { |
| 293 | LIST_INIT(&pool->cache[thr].list); |
| 294 | pool->cache[thr].tid = thr; |
| 295 | pool->cache[thr].pool = pool; |
| 296 | } |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 297 | } |
Olivier Houchard | 8af97eb | 2020-02-01 17:45:32 +0100 | [diff] [blame] | 298 | } |
| 299 | pool->users++; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 300 | return pool; |
| 301 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 302 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 303 | /* Tries to allocate an object for the pool <pool> using the system's allocator |
| 304 | * 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] | 305 | * but no other checks are performed. |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 306 | */ |
| 307 | void *pool_get_from_os(struct pool_head *pool) |
| 308 | { |
| 309 | if (!pool->limit || pool->allocated < pool->limit) { |
Willy Tarreau | 96d5bc7 | 2022-02-23 08:57:59 +0100 | [diff] [blame] | 310 | void *ptr = pool_alloc_area(pool->alloc_sz); |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 311 | if (ptr) { |
| 312 | _HA_ATOMIC_INC(&pool->allocated); |
| 313 | return ptr; |
| 314 | } |
| 315 | _HA_ATOMIC_INC(&pool->failed); |
| 316 | } |
| 317 | activity[tid].pool_fail++; |
| 318 | return NULL; |
| 319 | |
| 320 | } |
| 321 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 322 | /* Releases a pool item back to the operating system and atomically updates |
| 323 | * the allocation counter. |
| 324 | */ |
| 325 | void pool_put_to_os(struct pool_head *pool, void *ptr) |
| 326 | { |
Willy Tarreau | 9a7aa3b | 2021-06-10 17:20:19 +0200 | [diff] [blame] | 327 | #ifdef DEBUG_UAF |
| 328 | /* This object will be released for real in order to detect a use after |
| 329 | * free. We also force a write to the area to ensure we crash on double |
| 330 | * free or free of a const area. |
| 331 | */ |
| 332 | *(uint32_t *)ptr = 0xDEADADD4; |
| 333 | #endif /* DEBUG_UAF */ |
| 334 | |
Willy Tarreau | 96d5bc7 | 2022-02-23 08:57:59 +0100 | [diff] [blame] | 335 | pool_free_area(ptr, pool->alloc_sz); |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 336 | _HA_ATOMIC_DEC(&pool->allocated); |
| 337 | } |
| 338 | |
Willy Tarreau | 8fe726f | 2021-04-15 18:20:12 +0200 | [diff] [blame] | 339 | /* Tries to allocate an object for the pool <pool> using the system's allocator |
| 340 | * and directly returns it. The pool's counters are updated but the object is |
| 341 | * 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] | 342 | */ |
| 343 | void *pool_alloc_nocache(struct pool_head *pool) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 344 | { |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 345 | void *ptr = NULL; |
| 346 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 347 | ptr = pool_get_from_os(pool); |
| 348 | if (!ptr) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 349 | return NULL; |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 350 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 351 | 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] | 352 | _HA_ATOMIC_INC(&pool->used); |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 353 | |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 354 | /* keep track of where the element was allocated from */ |
Willy Tarreau | 8c49270 | 2022-01-01 17:10:50 +0100 | [diff] [blame] | 355 | POOL_DEBUG_SET_MARK(pool, ptr); |
Willy Tarreau | f70fdde | 2022-01-25 15:56:50 +0100 | [diff] [blame] | 356 | POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL); |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 357 | return ptr; |
| 358 | } |
| 359 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 360 | /* Release a pool item back to the OS and keeps the pool's counters up to date. |
| 361 | * This is always defined even when pools are not enabled (their usage stats |
| 362 | * are maintained). |
| 363 | */ |
| 364 | void pool_free_nocache(struct pool_head *pool, void *ptr) |
| 365 | { |
| 366 | _HA_ATOMIC_DEC(&pool->used); |
| 367 | swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used); |
| 368 | pool_put_to_os(pool, ptr); |
| 369 | } |
| 370 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 371 | |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 372 | /* Updates <pch>'s fill_pattern and fills the free area after <item> with it, |
| 373 | * up to <size> bytes. The item part is left untouched. |
| 374 | */ |
| 375 | void pool_fill_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size) |
| 376 | { |
| 377 | ulong *ptr = (ulong *)item; |
| 378 | uint ofs; |
| 379 | ulong u; |
| 380 | |
| 381 | if (size <= sizeof(*item)) |
| 382 | return; |
| 383 | |
| 384 | /* Upgrade the fill_pattern to change about half of the bits |
| 385 | * (to be sure to catch static flag corruption), and apply it. |
| 386 | */ |
| 387 | u = pch->fill_pattern += ~0UL / 3; // 0x55...55 |
| 388 | ofs = sizeof(*item) / sizeof(*ptr); |
| 389 | while (ofs < size / sizeof(*ptr)) |
| 390 | ptr[ofs++] = u; |
| 391 | } |
| 392 | |
| 393 | /* check for a pool_cache_item integrity after extracting it from the cache. It |
| 394 | * must have been previously initialized using pool_fill_pattern(). If any |
| 395 | * corruption is detected, the function provokes an immediate crash. |
| 396 | */ |
| 397 | void pool_check_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size) |
| 398 | { |
| 399 | const ulong *ptr = (const ulong *)item; |
| 400 | uint ofs; |
| 401 | ulong u; |
| 402 | |
| 403 | if (size <= sizeof(*item)) |
| 404 | return; |
| 405 | |
| 406 | /* let's check that all words past *item are equal */ |
| 407 | ofs = sizeof(*item) / sizeof(*ptr); |
| 408 | u = ptr[ofs++]; |
| 409 | while (ofs < size / sizeof(*ptr)) { |
| 410 | if (unlikely(ptr[ofs] != u)) |
| 411 | ABORT_NOW(); |
| 412 | ofs++; |
| 413 | } |
| 414 | } |
| 415 | |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 416 | /* removes up to <count> items from the end of the local pool cache <ph> for |
| 417 | * pool <pool>. The shared pool is refilled with these objects in the limit |
| 418 | * of the number of acceptable objects, and the rest will be released to the |
| 419 | * OS. It is not a problem is <count> is larger than the number of objects in |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 420 | * the local cache. The counters are automatically updated. Must not be used |
| 421 | * with pools disabled. |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 422 | */ |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 423 | static void pool_evict_last_items(struct pool_head *pool, struct pool_cache_head *ph, uint count) |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 424 | { |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 425 | struct pool_cache_item *item; |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 426 | struct pool_item *pi, *head = NULL; |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 427 | uint released = 0; |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 428 | uint cluster = 0; |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 429 | uint to_free_max; |
| 430 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 431 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 432 | |
Willy Tarreau | dff3b06 | 2022-02-22 09:21:13 +0100 | [diff] [blame] | 433 | /* Note: this will be zero when global pools are disabled */ |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 434 | to_free_max = pool_releasable(pool); |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 435 | |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 436 | while (released < count && !LIST_ISEMPTY(&ph->list)) { |
Willy Tarreau | d5ec100 | 2022-01-02 12:40:14 +0100 | [diff] [blame] | 437 | item = LIST_PREV(&ph->list, typeof(item), by_pool); |
Willy Tarreau | e2830ad | 2022-02-09 16:23:55 +0100 | [diff] [blame] | 438 | BUG_ON(&item->by_pool == &ph->list); |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 439 | if (unlikely(pool_debugging & POOL_DBG_INTEGRITY)) |
| 440 | pool_check_pattern(ph, item, pool->size); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 441 | LIST_DELETE(&item->by_pool); |
| 442 | LIST_DELETE(&item->by_lru); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 443 | |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 444 | if (to_free_max > released || cluster) { |
Willy Tarreau | dff3b06 | 2022-02-22 09:21:13 +0100 | [diff] [blame] | 445 | /* will never match when global pools are disabled */ |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 446 | pi = (struct pool_item *)item; |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 447 | pi->next = NULL; |
| 448 | pi->down = head; |
| 449 | head = pi; |
| 450 | cluster++; |
| 451 | if (cluster >= CONFIG_HAP_POOL_CLUSTER_SIZE) { |
| 452 | /* enough to make a cluster */ |
| 453 | pool_put_to_shared_cache(pool, head, cluster); |
| 454 | cluster = 0; |
| 455 | head = NULL; |
| 456 | } |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 457 | } else |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 458 | pool_free_nocache(pool, item); |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 459 | |
| 460 | released++; |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 461 | } |
| 462 | |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 463 | /* incomplete cluster left */ |
| 464 | if (cluster) |
| 465 | pool_put_to_shared_cache(pool, head, cluster); |
| 466 | |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 467 | ph->count -= released; |
| 468 | pool_cache_count -= released; |
| 469 | pool_cache_bytes -= released * pool->size; |
| 470 | } |
| 471 | |
| 472 | /* Evicts some of the oldest objects from one local cache, until its number of |
| 473 | * objects is no more than 16+1/8 of the total number of locally cached objects |
| 474 | * or the total size of the local cache is no more than 75% of its maximum (i.e. |
| 475 | * we don't want a single cache to use all the cache for itself). For this, the |
Willy Tarreau | c895c44 | 2022-02-09 16:19:24 +0100 | [diff] [blame] | 476 | * list is scanned in reverse. If <full> is non-null, all objects are evicted. |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 477 | * Must not be used when pools are disabled. |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 478 | */ |
Willy Tarreau | c895c44 | 2022-02-09 16:19:24 +0100 | [diff] [blame] | 479 | void pool_evict_from_local_cache(struct pool_head *pool, int full) |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 480 | { |
| 481 | struct pool_cache_head *ph = &pool->cache[tid]; |
| 482 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 483 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 484 | |
Willy Tarreau | c895c44 | 2022-02-09 16:19:24 +0100 | [diff] [blame] | 485 | while ((ph->count && full) || |
| 486 | (ph->count >= CONFIG_HAP_POOL_CLUSTER_SIZE && |
| 487 | ph->count >= 16 + pool_cache_count / 8 && |
| 488 | pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) { |
Willy Tarreau | 43937e9 | 2022-01-02 17:24:55 +0100 | [diff] [blame] | 489 | pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE); |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 490 | } |
| 491 | } |
| 492 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 493 | /* Evicts some of the oldest objects from the local cache, pushing them to the |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 494 | * global pool. Must not be used when pools are disabled. |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 495 | */ |
| 496 | void pool_evict_from_local_caches() |
| 497 | { |
| 498 | struct pool_cache_item *item; |
| 499 | struct pool_cache_head *ph; |
| 500 | struct pool_head *pool; |
| 501 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 502 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 503 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 504 | do { |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 505 | item = LIST_PREV(&th_ctx->pool_lru_head, struct pool_cache_item *, by_lru); |
Willy Tarreau | e2830ad | 2022-02-09 16:23:55 +0100 | [diff] [blame] | 506 | BUG_ON(&item->by_lru == &th_ctx->pool_lru_head); |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 507 | /* note: by definition we remove oldest objects so they also are the |
| 508 | * oldest in their own pools, thus their next is the pool's head. |
| 509 | */ |
| 510 | ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list); |
Willy Tarreau | 49bb5d4 | 2022-02-09 16:33:22 +0100 | [diff] [blame] | 511 | BUG_ON(ph->tid != tid); |
| 512 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 513 | pool = container_of(ph - tid, struct pool_head, cache); |
Willy Tarreau | 49bb5d4 | 2022-02-09 16:33:22 +0100 | [diff] [blame] | 514 | BUG_ON(pool != ph->pool); |
| 515 | |
Willy Tarreau | 43937e9 | 2022-01-02 17:24:55 +0100 | [diff] [blame] | 516 | pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE); |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 517 | } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8); |
| 518 | } |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 519 | |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 520 | /* Frees an object to the local cache, possibly pushing oldest objects to the |
| 521 | * shared cache, which itself may decide to release some of them to the OS. |
| 522 | * While it is unspecified what the object becomes past this point, it is |
Willy Tarreau | add43fa | 2022-01-24 15:52:51 +0100 | [diff] [blame] | 523 | * guaranteed to be released from the users' perpective. A caller address may |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 524 | * be passed and stored into the area when DEBUG_POOL_TRACING is set. Must not |
| 525 | * be used with pools disabled. |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 526 | */ |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 527 | void pool_put_to_cache(struct pool_head *pool, void *ptr, const void *caller) |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 528 | { |
| 529 | struct pool_cache_item *item = (struct pool_cache_item *)ptr; |
| 530 | struct pool_cache_head *ph = &pool->cache[tid]; |
| 531 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 532 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 533 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 534 | LIST_INSERT(&ph->list, &item->by_pool); |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 535 | LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru); |
Willy Tarreau | add43fa | 2022-01-24 15:52:51 +0100 | [diff] [blame] | 536 | POOL_DEBUG_TRACE_CALLER(pool, item, caller); |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 537 | ph->count++; |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 538 | if (unlikely(pool_debugging & POOL_DBG_INTEGRITY)) |
| 539 | pool_fill_pattern(ph, item, pool->size); |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 540 | pool_cache_count++; |
| 541 | pool_cache_bytes += pool->size; |
| 542 | |
| 543 | if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) { |
Willy Tarreau | 43937e9 | 2022-01-02 17:24:55 +0100 | [diff] [blame] | 544 | if (ph->count >= 16 + pool_cache_count / 8 + CONFIG_HAP_POOL_CLUSTER_SIZE) |
Willy Tarreau | c895c44 | 2022-02-09 16:19:24 +0100 | [diff] [blame] | 545 | pool_evict_from_local_cache(pool, 0); |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 546 | if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE) |
| 547 | pool_evict_from_local_caches(); |
| 548 | } |
| 549 | } |
| 550 | |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 551 | /* Tries to refill the local cache <pch> from the shared one for pool <pool>. |
| 552 | * This is only used when pools are in use and shared pools are enabled. No |
| 553 | * malloc() is attempted, and poisonning is never performed. The purpose is to |
| 554 | * get the fastest possible refilling so that the caller can easily check if |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 555 | * the cache has enough objects for its use. Must not be used when pools are |
| 556 | * disabled. |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 557 | */ |
| 558 | void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_head *pch) |
| 559 | { |
| 560 | struct pool_cache_item *item; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 561 | struct pool_item *ret, *down; |
| 562 | uint count; |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 563 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 564 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 565 | |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 566 | /* we'll need to reference the first element to figure the next one. We |
| 567 | * must temporarily lock it so that nobody allocates then releases it, |
| 568 | * or the dereference could fail. |
| 569 | */ |
| 570 | ret = _HA_ATOMIC_LOAD(&pool->free_list); |
| 571 | do { |
| 572 | while (unlikely(ret == POOL_BUSY)) { |
| 573 | __ha_cpu_relax(); |
| 574 | ret = _HA_ATOMIC_LOAD(&pool->free_list); |
| 575 | } |
| 576 | if (ret == NULL) |
| 577 | return; |
| 578 | } while (unlikely((ret = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY)); |
| 579 | |
| 580 | if (unlikely(ret == NULL)) { |
| 581 | HA_ATOMIC_STORE(&pool->free_list, NULL); |
| 582 | return; |
| 583 | } |
| 584 | |
| 585 | /* this releases the lock */ |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 586 | HA_ATOMIC_STORE(&pool->free_list, ret->next); |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 587 | |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 588 | /* now store the retrieved object(s) into the local cache */ |
| 589 | count = 0; |
| 590 | for (; ret; ret = down) { |
| 591 | down = ret->down; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 592 | item = (struct pool_cache_item *)ret; |
Willy Tarreau | f70fdde | 2022-01-25 15:56:50 +0100 | [diff] [blame] | 593 | POOL_DEBUG_TRACE_CALLER(pool, item, NULL); |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 594 | LIST_INSERT(&pch->list, &item->by_pool); |
| 595 | LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru); |
| 596 | count++; |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 597 | if (unlikely(pool_debugging & POOL_DBG_INTEGRITY)) |
| 598 | pool_fill_pattern(pch, item, pool->size); |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 599 | } |
| 600 | HA_ATOMIC_ADD(&pool->used, count); |
| 601 | pch->count += count; |
| 602 | pool_cache_count += count; |
| 603 | pool_cache_bytes += count * pool->size; |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 604 | } |
| 605 | |
Willy Tarreau | 337410c | 2022-01-02 15:15:54 +0100 | [diff] [blame] | 606 | /* Adds pool item cluster <item> to the shared cache, which contains <count> |
| 607 | * elements. The caller is advised to first check using pool_releasable() if |
| 608 | * it's wise to add this series of objects there. Both the pool and the item's |
| 609 | * head must be valid. |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 610 | */ |
Willy Tarreau | 337410c | 2022-01-02 15:15:54 +0100 | [diff] [blame] | 611 | void pool_put_to_shared_cache(struct pool_head *pool, struct pool_item *item, uint count) |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 612 | { |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 613 | struct pool_item *free_list; |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 614 | |
Willy Tarreau | 337410c | 2022-01-02 15:15:54 +0100 | [diff] [blame] | 615 | _HA_ATOMIC_SUB(&pool->used, count); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 616 | free_list = _HA_ATOMIC_LOAD(&pool->free_list); |
| 617 | do { |
| 618 | while (unlikely(free_list == POOL_BUSY)) { |
| 619 | __ha_cpu_relax(); |
| 620 | free_list = _HA_ATOMIC_LOAD(&pool->free_list); |
| 621 | } |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 622 | _HA_ATOMIC_STORE(&item->next, free_list); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 623 | __ha_barrier_atomic_store(); |
| 624 | } while (!_HA_ATOMIC_CAS(&pool->free_list, &free_list, item)); |
| 625 | __ha_barrier_atomic_store(); |
| 626 | swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used); |
| 627 | } |
| 628 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 629 | /* |
| 630 | * This function frees whatever can be freed in pool <pool>. |
| 631 | */ |
| 632 | void pool_flush(struct pool_head *pool) |
| 633 | { |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 634 | struct pool_item *next, *temp, *down; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 635 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 636 | if (!pool || (pool_debugging & (POOL_DBG_NO_CACHE|POOL_DBG_NO_GLOBAL))) |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 637 | return; |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 638 | |
| 639 | /* The loop below atomically detaches the head of the free list and |
| 640 | * replaces it with a NULL. Then the list can be released. |
| 641 | */ |
| 642 | next = pool->free_list; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 643 | do { |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 644 | while (unlikely(next == POOL_BUSY)) { |
| 645 | __ha_cpu_relax(); |
| 646 | next = _HA_ATOMIC_LOAD(&pool->free_list); |
| 647 | } |
| 648 | if (next == NULL) |
| 649 | return; |
| 650 | } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY)); |
| 651 | _HA_ATOMIC_STORE(&pool->free_list, NULL); |
Olivier Houchard | 2087276 | 2019-03-08 18:53:35 +0100 | [diff] [blame] | 652 | __ha_barrier_atomic_store(); |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 653 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 654 | while (next) { |
| 655 | temp = next; |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 656 | next = temp->next; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 657 | for (; temp; temp = down) { |
| 658 | down = temp->down; |
| 659 | pool_put_to_os(pool, temp); |
| 660 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 661 | } |
Willy Tarreau | c239cde | 2021-06-10 06:54:22 +0200 | [diff] [blame] | 662 | /* here, we should have pool->allocated == pool->used */ |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 663 | } |
| 664 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 665 | /* |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 666 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 667 | * the minimum thresholds imposed by owners. It makes sure to be alone to |
| 668 | * run by using thread_isolate(). <pool_ctx> is unused. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 669 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 670 | void pool_gc(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 671 | { |
| 672 | struct pool_head *entry; |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 673 | int isolated = thread_isolated(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 674 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 675 | if (!isolated) |
| 676 | thread_isolate(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 677 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 678 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 679 | struct pool_item *temp, *down; |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 680 | |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 681 | while (entry->free_list && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 682 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 683 | temp = entry->free_list; |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 684 | entry->free_list = temp->next; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 685 | for (; temp; temp = down) { |
| 686 | down = temp->down; |
| 687 | pool_put_to_os(entry, temp); |
| 688 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 689 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 690 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 691 | |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 692 | trim_all_pools(); |
Willy Tarreau | 26ed183 | 2021-06-10 08:40:16 +0200 | [diff] [blame] | 693 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 694 | if (!isolated) |
| 695 | thread_release(); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 696 | } |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 697 | |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 698 | /* |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 699 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 700 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 701 | * the next element in the list. <flags> is a binary-OR of POOL_F_* flags. |
| 702 | * Prefer using pool_alloc() which does the right thing without flags. |
| 703 | */ |
| 704 | void *__pool_alloc(struct pool_head *pool, unsigned int flags) |
| 705 | { |
| 706 | void *p = NULL; |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 707 | void *caller = __builtin_return_address(0); |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 708 | |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 709 | if (unlikely(pool_debugging & POOL_DBG_FAIL_ALLOC)) |
| 710 | if (!(flags & POOL_F_NO_FAIL) && mem_should_fail(pool)) |
| 711 | return NULL; |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 712 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 713 | if (likely(!(pool_debugging & POOL_DBG_NO_CACHE)) && !p) |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 714 | p = pool_get_from_cache(pool, caller); |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 715 | |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 716 | if (unlikely(!p)) |
| 717 | p = pool_alloc_nocache(pool); |
| 718 | |
| 719 | if (likely(p)) { |
| 720 | if (unlikely(flags & POOL_F_MUST_ZERO)) |
| 721 | memset(p, 0, pool->size); |
Willy Tarreau | ef301b7 | 2022-02-23 14:15:18 +0100 | [diff] [blame] | 722 | else if (unlikely(!(flags & POOL_F_NO_POISON) && (pool_debugging & POOL_DBG_POISON))) |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 723 | memset(p, mem_poison_byte, pool->size); |
| 724 | } |
| 725 | return p; |
| 726 | } |
| 727 | |
| 728 | /* |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 729 | * Puts a memory area back to the corresponding pool. <ptr> be valid. Using |
| 730 | * pool_free() is preferred. |
| 731 | */ |
| 732 | void __pool_free(struct pool_head *pool, void *ptr) |
| 733 | { |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 734 | const void *caller = __builtin_return_address(0); |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 735 | |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 736 | /* we'll get late corruption if we refill to the wrong pool or double-free */ |
| 737 | POOL_DEBUG_CHECK_MARK(pool, ptr); |
Willy Tarreau | 27c8da1 | 2022-02-09 16:49:16 +0100 | [diff] [blame] | 738 | POOL_DEBUG_RESET_MARK(pool, ptr); |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 739 | |
| 740 | if (unlikely(pool_debugging & POOL_DBG_NO_CACHE)) { |
| 741 | pool_free_nocache(pool, ptr); |
| 742 | return; |
| 743 | } |
| 744 | |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 745 | pool_put_to_cache(pool, ptr, caller); |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 746 | } |
| 747 | |
Willy Tarreau | f14d190 | 2021-10-05 18:14:11 +0200 | [diff] [blame] | 748 | |
| 749 | #ifdef DEBUG_UAF |
| 750 | |
| 751 | /************* use-after-free allocator *************/ |
| 752 | |
| 753 | /* allocates an area of size <size> and returns it. The semantics are similar |
| 754 | * to those of malloc(). However the allocation is rounded up to 4kB so that a |
| 755 | * full page is allocated. This ensures the object can be freed alone so that |
| 756 | * future dereferences are easily detected. The returned object is always |
| 757 | * 16-bytes aligned to avoid issues with unaligned structure objects. In case |
| 758 | * some padding is added, the area's start address is copied at the end of the |
| 759 | * padding to help detect underflows. |
| 760 | */ |
| 761 | void *pool_alloc_area_uaf(size_t size) |
| 762 | { |
| 763 | size_t pad = (4096 - size) & 0xFF0; |
Willy Tarreau | f14d190 | 2021-10-05 18:14:11 +0200 | [diff] [blame] | 764 | void *ret; |
| 765 | |
Willy Tarreau | f14d190 | 2021-10-05 18:14:11 +0200 | [diff] [blame] | 766 | ret = mmap(NULL, (size + 4095) & -4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); |
| 767 | if (ret != MAP_FAILED) { |
| 768 | /* let's dereference the page before returning so that the real |
| 769 | * allocation in the system is performed without holding the lock. |
| 770 | */ |
| 771 | *(int *)ret = 0; |
| 772 | if (pad >= sizeof(void *)) |
| 773 | *(void **)(ret + pad - sizeof(void *)) = ret + pad; |
| 774 | ret += pad; |
| 775 | } else { |
| 776 | ret = NULL; |
| 777 | } |
Willy Tarreau | f14d190 | 2021-10-05 18:14:11 +0200 | [diff] [blame] | 778 | return ret; |
| 779 | } |
| 780 | |
| 781 | /* frees an area <area> of size <size> allocated by pool_alloc_area(). The |
| 782 | * semantics are identical to free() except that the size must absolutely match |
| 783 | * the one passed to pool_alloc_area(). In case some padding is added, the |
| 784 | * area's start address is compared to the one at the end of the padding, and |
| 785 | * a segfault is triggered if they don't match, indicating an underflow. |
| 786 | */ |
| 787 | void pool_free_area_uaf(void *area, size_t size) |
| 788 | { |
| 789 | size_t pad = (4096 - size) & 0xFF0; |
| 790 | |
| 791 | if (pad >= sizeof(void *) && *(void **)(area - sizeof(void *)) != area) |
| 792 | ABORT_NOW(); |
| 793 | |
Willy Tarreau | f14d190 | 2021-10-05 18:14:11 +0200 | [diff] [blame] | 794 | munmap(area - pad, (size + 4095) & -4096); |
Willy Tarreau | f14d190 | 2021-10-05 18:14:11 +0200 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | #endif /* DEBUG_UAF */ |
| 798 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 799 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 800 | * This function destroys a pool by freeing it completely, unless it's still |
| 801 | * in use. This should be called only under extreme circumstances. It always |
| 802 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 803 | * pointer, otherwise it returns the pool. |
| 804 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 805 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 806 | void *pool_destroy(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 807 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 808 | if (pool) { |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 809 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) |
| 810 | pool_evict_from_local_cache(pool, 1); |
| 811 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 812 | pool_flush(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 813 | if (pool->used) |
| 814 | return pool; |
| 815 | pool->users--; |
| 816 | if (!pool->users) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 817 | LIST_DELETE(&pool->list); |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 818 | /* note that if used == 0, the cache is empty */ |
| 819 | free(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 820 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 821 | } |
| 822 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 823 | } |
| 824 | |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 825 | /* This destroys all pools on exit. It is *not* thread safe. */ |
| 826 | void pool_destroy_all() |
| 827 | { |
| 828 | struct pool_head *entry, *back; |
| 829 | |
| 830 | list_for_each_entry_safe(entry, back, &pools, list) |
| 831 | pool_destroy(entry); |
| 832 | } |
| 833 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 834 | /* This function dumps memory usage information into the trash buffer. */ |
| 835 | void dump_pools_to_trash() |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 836 | { |
| 837 | struct pool_head *entry; |
| 838 | unsigned long allocated, used; |
| 839 | int nbpools; |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 840 | unsigned long cached_bytes = 0; |
| 841 | uint cached = 0; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 842 | |
| 843 | allocated = used = nbpools = 0; |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 844 | chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n"); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 845 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 846 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) { |
| 847 | int i; |
| 848 | for (cached = i = 0; i < global.nbthread; i++) |
| 849 | cached += entry->cache[i].count; |
| 850 | cached_bytes += cached * entry->size; |
| 851 | } |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 852 | chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used" |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 853 | " (~%u by thread caches)" |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 854 | ", needed_avg %u, %u failures, %u users, @%p%s\n", |
| 855 | entry->name, entry->size, entry->allocated, |
| 856 | entry->size * entry->allocated, entry->used, |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 857 | cached, |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 858 | swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed, |
| 859 | entry->users, entry, |
| 860 | (entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 861 | |
| 862 | allocated += entry->allocated * entry->size; |
| 863 | used += entry->used * entry->size; |
| 864 | nbpools++; |
| 865 | } |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 866 | chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used" |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 867 | " (~%lu by thread caches)" |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 868 | ".\n", |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 869 | nbpools, allocated, used, cached_bytes |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 870 | ); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 871 | } |
| 872 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 873 | /* Dump statistics on pools usage. */ |
| 874 | void dump_pools(void) |
| 875 | { |
| 876 | dump_pools_to_trash(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 877 | qfprintf(stderr, "%s", trash.area); |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 878 | } |
| 879 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 880 | /* This function returns the total number of failed pool allocations */ |
| 881 | int pool_total_failures() |
| 882 | { |
| 883 | struct pool_head *entry; |
| 884 | int failed = 0; |
| 885 | |
| 886 | list_for_each_entry(entry, &pools, list) |
| 887 | failed += entry->failed; |
| 888 | return failed; |
| 889 | } |
| 890 | |
| 891 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
| 892 | unsigned long pool_total_allocated() |
| 893 | { |
| 894 | struct pool_head *entry; |
| 895 | unsigned long allocated = 0; |
| 896 | |
| 897 | list_for_each_entry(entry, &pools, list) |
| 898 | allocated += entry->allocated * entry->size; |
| 899 | return allocated; |
| 900 | } |
| 901 | |
| 902 | /* This function returns the total amount of memory used in pools (in bytes) */ |
| 903 | unsigned long pool_total_used() |
| 904 | { |
| 905 | struct pool_head *entry; |
| 906 | unsigned long used = 0; |
| 907 | |
| 908 | list_for_each_entry(entry, &pools, list) |
| 909 | used += entry->used * entry->size; |
| 910 | return used; |
| 911 | } |
| 912 | |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 913 | /* This function parses a string made of a set of debugging features as |
| 914 | * specified after -dM on the command line, and will set pool_debugging |
| 915 | * accordingly. On success it returns a strictly positive value. It may zero |
| 916 | * with the first warning in <err>, -1 with a help message in <err>, or -2 with |
| 917 | * the first error in <err> return the first error in <err>. <err> is undefined |
| 918 | * on success, and will be non-null and locally allocated on help/error/warning. |
| 919 | * The caller must free it. Warnings are used to report features that were not |
| 920 | * enabled at build time, and errors are used to report unknown features. |
| 921 | */ |
| 922 | int pool_parse_debugging(const char *str, char **err) |
| 923 | { |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 924 | struct ist args; |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 925 | char *end; |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 926 | uint new_dbg; |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 927 | int v; |
| 928 | |
| 929 | |
| 930 | /* if it's empty or starts with a number, it's the mem poisonning byte */ |
| 931 | v = strtol(str, &end, 0); |
| 932 | if (!*end || *end == ',') { |
| 933 | mem_poison_byte = *str ? v : 'P'; |
| 934 | if (mem_poison_byte >= 0) |
| 935 | pool_debugging |= POOL_DBG_POISON; |
| 936 | else |
| 937 | pool_debugging &= ~POOL_DBG_POISON; |
| 938 | str = end; |
| 939 | } |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 940 | |
| 941 | new_dbg = pool_debugging; |
| 942 | |
| 943 | for (args = ist(str); istlen(args); args = istadv(istfind(args, ','), 1)) { |
| 944 | struct ist feat = iststop(args, ','); |
| 945 | |
| 946 | if (!istlen(feat)) |
| 947 | continue; |
| 948 | |
| 949 | if (isteq(feat, ist("help"))) { |
| 950 | ha_free(err); |
| 951 | memprintf(err, |
| 952 | "-dM alone enables memory poisonning with byte 0x50 on allocation. A numeric\n" |
| 953 | "value may be appended immediately after -dM to use another value (0 supported).\n" |
| 954 | "Then an optional list of comma-delimited keywords may be appended to set or\n" |
| 955 | "clear some debugging options ('*' marks the current setting):\n\n" |
| 956 | " set clear description\n" |
| 957 | " -----------------+-----------------+-----------------------------------------\n"); |
| 958 | |
| 959 | for (v = 0; dbg_options[v].flg; v++) { |
| 960 | memprintf(err, "%s %c %-15s|%c %-15s| %s\n", |
| 961 | *err, |
| 962 | (pool_debugging & dbg_options[v].flg) ? '*' : ' ', |
| 963 | dbg_options[v].set, |
| 964 | (pool_debugging & dbg_options[v].flg) ? ' ' : '*', |
| 965 | dbg_options[v].clr, |
| 966 | dbg_options[v].hlp); |
| 967 | } |
| 968 | return -1; |
| 969 | } |
| 970 | |
| 971 | for (v = 0; dbg_options[v].flg; v++) { |
| 972 | if (isteq(feat, ist(dbg_options[v].set))) { |
| 973 | new_dbg |= dbg_options[v].flg; |
| 974 | break; |
| 975 | } |
| 976 | else if (isteq(feat, ist(dbg_options[v].clr))) { |
| 977 | new_dbg &= ~dbg_options[v].flg; |
| 978 | break; |
| 979 | } |
| 980 | } |
| 981 | |
| 982 | if (!dbg_options[v].flg) { |
| 983 | memprintf(err, "unknown pool debugging feature <%.*s>", (int)istlen(feat), istptr(feat)); |
| 984 | return -2; |
| 985 | } |
| 986 | } |
| 987 | |
| 988 | pool_debugging = new_dbg; |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 989 | return 1; |
| 990 | } |
| 991 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 992 | /* This function dumps memory usage information onto the stream interface's |
| 993 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 994 | * completion. No state is used. |
| 995 | */ |
| 996 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 997 | { |
| 998 | struct stream_interface *si = appctx->owner; |
| 999 | |
| 1000 | dump_pools_to_trash(); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1001 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1002 | si_rx_room_blk(si); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1003 | return 0; |
| 1004 | } |
| 1005 | return 1; |
| 1006 | } |
| 1007 | |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 1008 | /* callback used to create early pool <name> of size <size> and store the |
| 1009 | * resulting pointer into <ptr>. If the allocation fails, it quits with after |
| 1010 | * emitting an error message. |
| 1011 | */ |
| 1012 | void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size) |
| 1013 | { |
| 1014 | *ptr = create_pool(name, size, MEM_F_SHARED); |
| 1015 | if (!*ptr) { |
| 1016 | ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n", |
| 1017 | name, size, strerror(errno)); |
| 1018 | exit(1); |
| 1019 | } |
| 1020 | } |
| 1021 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1022 | /* Initializes all per-thread arrays on startup */ |
| 1023 | static void init_pools() |
| 1024 | { |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 1025 | int thr; |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1026 | |
| 1027 | for (thr = 0; thr < MAX_THREADS; thr++) { |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 1028 | LIST_INIT(&ha_thread_ctx[thr].pool_lru_head); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1029 | } |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 1030 | |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 1031 | detect_allocator(); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1032 | } |
| 1033 | |
| 1034 | INITCALL0(STG_PREPARE, init_pools); |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 1035 | |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 1036 | /* Report in build options if trim is supported */ |
| 1037 | static void pools_register_build_options(void) |
| 1038 | { |
| 1039 | if (is_trim_enabled()) { |
| 1040 | char *ptr = NULL; |
| 1041 | memprintf(&ptr, "Support for malloc_trim() is enabled."); |
| 1042 | hap_register_build_opts(ptr, 1); |
| 1043 | } |
| 1044 | } |
| 1045 | INITCALL0(STG_REGISTER, pools_register_build_options); |
| 1046 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1047 | /* register cli keywords */ |
| 1048 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1049 | { { "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] | 1050 | {{},} |
| 1051 | }}; |
| 1052 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1053 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1054 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1055 | |
| 1056 | /* config parser for global "tune.fail-alloc" */ |
| 1057 | 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] | 1058 | const struct proxy *defpx, const char *file, int line, |
| 1059 | char **err) |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1060 | { |
| 1061 | if (too_many_args(1, args, err, NULL)) |
| 1062 | return -1; |
| 1063 | mem_fail_rate = atoi(args[1]); |
| 1064 | if (mem_fail_rate < 0 || mem_fail_rate > 100) { |
| 1065 | memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]); |
| 1066 | return -1; |
| 1067 | } |
| 1068 | return 0; |
| 1069 | } |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1070 | |
| 1071 | /* register global config keywords */ |
| 1072 | static struct cfg_kw_list mem_cfg_kws = {ILH, { |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1073 | { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc }, |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1074 | { 0, NULL, NULL } |
| 1075 | }}; |
| 1076 | |
| 1077 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws); |
| 1078 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 1079 | /* |
| 1080 | * Local variables: |
| 1081 | * c-indent-level: 8 |
| 1082 | * c-basic-offset: 8 |
| 1083 | * End: |
| 1084 | */ |