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 | |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 13 | #include <errno.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 14 | |
Willy Tarreau | 5d9ddc5 | 2021-10-06 19:54:09 +0200 | [diff] [blame] | 15 | #include <haproxy/activity.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 16 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 17 | #include <haproxy/applet-t.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 18 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 19 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 20 | #include <haproxy/cli.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 21 | #include <haproxy/errors.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 22 | #include <haproxy/global.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 23 | #include <haproxy/list.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 24 | #include <haproxy/pool.h> |
Willy Tarreau | 76a97a9 | 2022-12-08 17:26:50 +0100 | [diff] [blame] | 25 | #include <haproxy/pool-os.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 26 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 27 | #include <haproxy/stats-t.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 28 | #include <haproxy/stconn.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 29 | #include <haproxy/thread.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 30 | #include <haproxy/tools.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 31 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 32 | |
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 */ |
| 36 | |
Willy Tarreau | 9f69995 | 2022-02-18 18:31:53 +0100 | [diff] [blame] | 37 | static struct list pools __read_mostly = LIST_HEAD_INIT(pools); |
Willy Tarreau | ef301b7 | 2022-02-23 14:15:18 +0100 | [diff] [blame] | 38 | int mem_poison_byte __read_mostly = 'P'; |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 39 | uint pool_debugging __read_mostly = /* set of POOL_DBG_* flags */ |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 40 | #ifdef DEBUG_FAIL_ALLOC |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 41 | POOL_DBG_FAIL_ALLOC | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 42 | #endif |
Willy Tarreau | fd8b737 | 2022-02-21 17:31:50 +0100 | [diff] [blame] | 43 | #ifdef DEBUG_DONT_SHARE_POOLS |
| 44 | POOL_DBG_DONT_MERGE | |
| 45 | #endif |
Willy Tarreau | d3470e1 | 2022-02-21 18:30:25 +0100 | [diff] [blame] | 46 | #ifdef DEBUG_POOL_INTEGRITY |
| 47 | POOL_DBG_COLD_FIRST | |
| 48 | #endif |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 49 | #ifdef DEBUG_POOL_INTEGRITY |
| 50 | POOL_DBG_INTEGRITY | |
| 51 | #endif |
Willy Tarreau | dff3b06 | 2022-02-22 09:21:13 +0100 | [diff] [blame] | 52 | #ifdef CONFIG_HAP_NO_GLOBAL_POOLS |
| 53 | POOL_DBG_NO_GLOBAL | |
| 54 | #endif |
Willy Tarreau | 4da51bd | 2022-12-08 17:45:08 +0100 | [diff] [blame] | 55 | #if defined(DEBUG_NO_POOLS) || defined(DEBUG_UAF) |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 56 | POOL_DBG_NO_CACHE | |
| 57 | #endif |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 58 | #if defined(DEBUG_POOL_TRACING) |
| 59 | POOL_DBG_CALLER | |
| 60 | #endif |
Willy Tarreau | 13d7775 | 2022-02-23 10:20:37 +0100 | [diff] [blame] | 61 | #if defined(DEBUG_MEMORY_POOLS) |
| 62 | POOL_DBG_TAG | |
| 63 | #endif |
Willy Tarreau | 9192d20 | 2022-12-08 17:47:59 +0100 | [diff] [blame] | 64 | #if defined(DEBUG_UAF) |
| 65 | POOL_DBG_UAF | |
| 66 | #endif |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 67 | 0; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 68 | |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 69 | static const struct { |
| 70 | uint flg; |
| 71 | const char *set; |
| 72 | const char *clr; |
| 73 | const char *hlp; |
| 74 | } dbg_options[] = { |
| 75 | /* flg, set, clr, hlp */ |
| 76 | { POOL_DBG_FAIL_ALLOC, "fail", "no-fail", "randomly fail allocations" }, |
| 77 | { POOL_DBG_DONT_MERGE, "no-merge", "merge", "disable merging of similar pools" }, |
| 78 | { POOL_DBG_COLD_FIRST, "cold-first", "hot-first", "pick cold objects first" }, |
| 79 | { POOL_DBG_INTEGRITY, "integrity", "no-integrity", "enable cache integrity checks" }, |
| 80 | { POOL_DBG_NO_GLOBAL, "no-global", "global", "disable global shared cache" }, |
| 81 | { POOL_DBG_NO_CACHE, "no-cache", "cache", "disable thread-local cache" }, |
| 82 | { POOL_DBG_CALLER, "caller", "no-caller", "save caller information in cache" }, |
| 83 | { POOL_DBG_TAG, "tag", "no-tag", "add tag at end of allocated objects" }, |
| 84 | { POOL_DBG_POISON, "poison", "no-poison", "poison newly allocated objects" }, |
Willy Tarreau | 9192d20 | 2022-12-08 17:47:59 +0100 | [diff] [blame] | 85 | { POOL_DBG_UAF, "uaf", "no-uaf", "enable use-after-free checks (slow)" }, |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 86 | { 0 /* end */ } |
| 87 | }; |
| 88 | |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 89 | /* describes a snapshot of a pool line about to be dumped by "show pools" */ |
| 90 | struct pool_dump_info { |
| 91 | const struct pool_head *entry; |
| 92 | ulong alloc_items; |
| 93 | ulong alloc_bytes; |
| 94 | ulong used_items; |
| 95 | ulong cached_items; |
| 96 | ulong need_avg; |
| 97 | ulong failed_items; |
| 98 | }; |
| 99 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 100 | /* context used by "show pools" */ |
| 101 | struct show_pools_ctx { |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 102 | char *prefix; /* if non-null, match this prefix name for the pool */ |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 103 | int by_what; /* 0=no sort, 1=by name, 2=by item size, 3=by total alloc */ |
| 104 | int maxcnt; /* 0=no limit, other=max number of output entries */ |
| 105 | }; |
| 106 | |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 107 | static int mem_fail_rate __read_mostly = 0; |
Willy Tarreau | 0c27ec5 | 2023-03-22 17:52:05 +0100 | [diff] [blame] | 108 | static int using_default_allocator __read_mostly = 1; // linked-in allocator or LD_PRELOADed one ? |
Willy Tarreau | c4e56dc | 2022-03-08 10:41:40 +0100 | [diff] [blame] | 109 | static int disable_trim __read_mostly = 0; |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 110 | static int(*my_mallctl)(const char *, void *, size_t *, void *, size_t) = NULL; |
Willy Tarreau | eaba76b | 2023-03-22 14:55:25 +0100 | [diff] [blame] | 111 | static int(*_malloc_trim)(size_t) = NULL; |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 112 | |
Willy Tarreau | 0d93a81 | 2021-12-23 09:26:30 +0100 | [diff] [blame] | 113 | /* ask the allocator to trim memory pools. |
| 114 | * This must run under thread isolation so that competing threads trying to |
| 115 | * allocate or release memory do not prevent the allocator from completing |
| 116 | * its job. We just have to be careful as callers might already be isolated |
| 117 | * themselves. |
| 118 | */ |
Willy Tarreau | 7aee683 | 2023-03-22 15:36:29 +0100 | [diff] [blame] | 119 | void trim_all_pools(void) |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 120 | { |
Willy Tarreau | 0d93a81 | 2021-12-23 09:26:30 +0100 | [diff] [blame] | 121 | int isolated = thread_isolated(); |
| 122 | |
| 123 | if (!isolated) |
| 124 | thread_isolate(); |
| 125 | |
Willy Tarreau | 4138f15 | 2023-03-22 15:32:58 +0100 | [diff] [blame] | 126 | malloc_trim(0); |
Willy Tarreau | 0d93a81 | 2021-12-23 09:26:30 +0100 | [diff] [blame] | 127 | |
| 128 | if (!isolated) |
| 129 | thread_release(); |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 130 | } |
| 131 | |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 132 | /* check if we're using the same allocator as the one that provides |
| 133 | * malloc_trim() and mallinfo(). The principle is that on glibc, both |
| 134 | * malloc_trim() and mallinfo() are provided, and using mallinfo() we |
| 135 | * can check if malloc() is performed through glibc or any other one |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 136 | * the executable was linked against (e.g. jemalloc). Prior to this we |
| 137 | * have to check whether we're running on jemalloc by verifying if the |
| 138 | * mallctl() function is provided. Its pointer will be used later. |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 139 | */ |
| 140 | static void detect_allocator(void) |
| 141 | { |
Willy Tarreau | 781f07a | 2021-11-26 15:55:55 +0100 | [diff] [blame] | 142 | #if defined(__ELF__) |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 143 | extern int mallctl(const char *, void *, size_t *, void *, size_t) __attribute__((weak)); |
| 144 | |
| 145 | my_mallctl = mallctl; |
Willy Tarreau | 781f07a | 2021-11-26 15:55:55 +0100 | [diff] [blame] | 146 | #endif |
Willy Tarreau | 0c27ec5 | 2023-03-22 17:52:05 +0100 | [diff] [blame] | 147 | if (!my_mallctl) { |
| 148 | /* trick: we won't enter here if mallctl() is known at link |
| 149 | * time. This allows to detect if the symbol was changed since |
| 150 | * the program was linked, indicating it's not running on the |
| 151 | * expected allocator (due to an LD_PRELOAD) and that we must |
| 152 | * be extra cautious and avoid some optimizations that are |
| 153 | * known to break such as malloc_trim(). |
| 154 | */ |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 155 | my_mallctl = get_sym_curr_addr("mallctl"); |
Willy Tarreau | 0c27ec5 | 2023-03-22 17:52:05 +0100 | [diff] [blame] | 156 | using_default_allocator = (my_mallctl == NULL); |
| 157 | } |
David Carlier | ed23214 | 2021-11-25 16:09:45 +0000 | [diff] [blame] | 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 | eaba76b | 2023-03-22 14:55:25 +0100 | [diff] [blame] | 186 | |
| 187 | /* detect presence of malloc_trim() */ |
| 188 | _malloc_trim = get_sym_next_addr("malloc_trim"); |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Willy Tarreau | eaba76b | 2023-03-22 14:55:25 +0100 | [diff] [blame] | 191 | /* replace the libc's malloc_trim() so that we can also intercept the calls |
| 192 | * from child libraries when the allocator is not the default one. |
| 193 | */ |
| 194 | int malloc_trim(size_t pad) |
| 195 | { |
| 196 | int ret = 0; |
| 197 | |
| 198 | if (disable_trim) |
| 199 | return ret; |
| 200 | |
Willy Tarreau | 4138f15 | 2023-03-22 15:32:58 +0100 | [diff] [blame] | 201 | if (my_mallctl) { |
| 202 | /* here we're on jemalloc and malloc_trim() is called either |
| 203 | * by haproxy or another dependency (the worst case that |
| 204 | * normally crashes). Instead of just failing, we can actually |
| 205 | * emulate it so let's do it now. |
| 206 | */ |
| 207 | unsigned int i, narenas = 0; |
| 208 | size_t len = sizeof(narenas); |
| 209 | |
| 210 | if (my_mallctl("arenas.narenas", &narenas, &len, NULL, 0) == 0) { |
| 211 | for (i = 0; i < narenas; i ++) { |
| 212 | char mib[32] = {0}; |
| 213 | snprintf(mib, sizeof(mib), "arena.%u.purge", i); |
| 214 | (void)my_mallctl(mib, NULL, NULL, NULL, 0); |
| 215 | ret = 1; // success |
| 216 | } |
| 217 | } |
| 218 | } |
| 219 | else if (!using_default_allocator) { |
| 220 | /* special allocators that can be LD_PRELOADed end here */ |
| 221 | ret = 0; // did nothing |
| 222 | } |
| 223 | else if (_malloc_trim) { |
Willy Tarreau | eaba76b | 2023-03-22 14:55:25 +0100 | [diff] [blame] | 224 | /* we're typically on glibc and not overridden */ |
| 225 | ret = _malloc_trim(pad); |
| 226 | } |
Willy Tarreau | 4138f15 | 2023-03-22 15:32:58 +0100 | [diff] [blame] | 227 | #if defined(HA_HAVE_MALLOC_ZONE) |
| 228 | else { |
| 229 | /* we're on MacOS, there's an equivalent mechanism */ |
| 230 | vm_address_t *zones; |
| 231 | unsigned int i, nzones; |
| 232 | |
| 233 | if (malloc_get_all_zones(0, NULL, &zones, &nzones) == KERN_SUCCESS) { |
| 234 | for (i = 0; i < nzones; i ++) { |
| 235 | malloc_zone_t *zone = (malloc_zone_t *)zones[i]; |
| 236 | |
| 237 | /* we cannot purge anonymous zones */ |
| 238 | if (zone->zone_name) { |
| 239 | malloc_zone_pressure_relief(zone, 0); |
| 240 | ret = 1; // success |
| 241 | } |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | #endif |
| 246 | /* here we have ret=0 if nothing was release, or 1 if some were */ |
Willy Tarreau | eaba76b | 2023-03-22 14:55:25 +0100 | [diff] [blame] | 247 | return ret; |
| 248 | } |
| 249 | |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 250 | static int mem_should_fail(const struct pool_head *pool) |
| 251 | { |
| 252 | int ret = 0; |
| 253 | |
| 254 | if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) { |
| 255 | if (mem_fail_rate > statistical_prng_range(100)) |
| 256 | ret = 1; |
| 257 | else |
| 258 | ret = 0; |
| 259 | } |
| 260 | return ret; |
| 261 | } |
| 262 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 263 | /* Try to find an existing shared pool with the same characteristics and |
| 264 | * returns it, otherwise creates this one. NULL is returned if no memory |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 265 | * is available for a new creation. Two flags are supported : |
| 266 | * - MEM_F_SHARED to indicate that the pool may be shared with other users |
| 267 | * - 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] | 268 | */ |
| 269 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags) |
| 270 | { |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 271 | unsigned int extra_mark, extra_caller, extra; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 272 | struct pool_head *pool; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 273 | struct pool_head *entry; |
| 274 | struct list *start; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 275 | unsigned int align; |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 276 | int thr __maybe_unused; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 277 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 278 | /* 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] | 279 | * that the malloc() function will never return such a small size, |
| 280 | * let's round the size up to something slightly bigger, in order to |
| 281 | * 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] | 282 | * This extra (void *) is not accounted for in the size computation |
| 283 | * so that the visible parts outside are not affected. |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 284 | * |
| 285 | * 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] | 286 | */ |
| 287 | |
Willy Tarreau | 13d7775 | 2022-02-23 10:20:37 +0100 | [diff] [blame] | 288 | extra_mark = (pool_debugging & POOL_DBG_TAG) ? POOL_EXTRA_MARK : 0; |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 289 | extra_caller = (pool_debugging & POOL_DBG_CALLER) ? POOL_EXTRA_CALLER : 0; |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 290 | extra = extra_mark + extra_caller; |
| 291 | |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 292 | if (!(flags & MEM_F_EXACT)) { |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 293 | align = 4 * sizeof(void *); // 2 lists = 4 pointers min |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 294 | size = ((size + extra + align - 1) & -align) - extra; |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 295 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 296 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 297 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) { |
| 298 | /* we'll store two lists there, we need the room for this. This is |
| 299 | * guaranteed by the test above, except if MEM_F_EXACT is set, or if |
| 300 | * the only EXTRA part is in fact the one that's stored in the cache |
| 301 | * in addition to the pci struct. |
| 302 | */ |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 303 | if (size + extra - extra_caller < sizeof(struct pool_cache_item)) |
| 304 | size = sizeof(struct pool_cache_item) + extra_caller - extra; |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 305 | } |
| 306 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 307 | /* TODO: thread: we do not lock pool list for now because all pools are |
| 308 | * created during HAProxy startup (so before threads creation) */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 309 | start = &pools; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 310 | pool = NULL; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 311 | |
| 312 | list_for_each_entry(entry, &pools, list) { |
| 313 | if (entry->size == size) { |
| 314 | /* either we can share this place and we take it, or |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 315 | * we look for a shareable one or for the next position |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 316 | * before which we will insert a new one. |
| 317 | */ |
Willy Tarreau | fd8b737 | 2022-02-21 17:31:50 +0100 | [diff] [blame] | 318 | if ((flags & entry->flags & MEM_F_SHARED) && |
| 319 | (!(pool_debugging & POOL_DBG_DONT_MERGE) || |
| 320 | strcmp(name, entry->name) == 0)) { |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 321 | /* we can share this one */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 322 | pool = entry; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 323 | DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 324 | break; |
| 325 | } |
| 326 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 327 | else if (entry->size > size) { |
| 328 | /* insert before this one */ |
| 329 | start = &entry->list; |
| 330 | break; |
| 331 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | if (!pool) { |
Willy Tarreau | e81248c | 2022-03-02 17:59:04 +0100 | [diff] [blame] | 335 | void *pool_addr; |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 336 | |
Willy Tarreau | e81248c | 2022-03-02 17:59:04 +0100 | [diff] [blame] | 337 | pool_addr = calloc(1, sizeof(*pool) + __alignof__(*pool)); |
| 338 | if (!pool_addr) |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 339 | return NULL; |
Willy Tarreau | e81248c | 2022-03-02 17:59:04 +0100 | [diff] [blame] | 340 | |
| 341 | /* always provide an aligned pool */ |
| 342 | pool = (struct pool_head*)((((size_t)pool_addr) + __alignof__(*pool)) & -(size_t)__alignof__(*pool)); |
| 343 | pool->base_addr = pool_addr; // keep it, it's the address to free later |
| 344 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 345 | if (name) |
| 346 | strlcpy2(pool->name, name, sizeof(pool->name)); |
Willy Tarreau | 42705d0 | 2022-02-23 10:03:11 +0100 | [diff] [blame] | 347 | pool->alloc_sz = size + extra; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 348 | pool->size = size; |
| 349 | pool->flags = flags; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 350 | LIST_APPEND(start, &pool->list); |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 351 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 352 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) { |
| 353 | /* update per-thread pool cache if necessary */ |
| 354 | for (thr = 0; thr < MAX_THREADS; thr++) { |
| 355 | LIST_INIT(&pool->cache[thr].list); |
| 356 | pool->cache[thr].tid = thr; |
| 357 | pool->cache[thr].pool = pool; |
| 358 | } |
Christopher Faulet | 2f6d3c0 | 2019-06-25 21:45:59 +0200 | [diff] [blame] | 359 | } |
Olivier Houchard | 8af97eb | 2020-02-01 17:45:32 +0100 | [diff] [blame] | 360 | } |
| 361 | pool->users++; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 362 | return pool; |
| 363 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 364 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 365 | /* Tries to allocate an object for the pool <pool> using the system's allocator |
| 366 | * 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] | 367 | * but no other checks are performed. |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 368 | */ |
| 369 | void *pool_get_from_os(struct pool_head *pool) |
| 370 | { |
| 371 | if (!pool->limit || pool->allocated < pool->limit) { |
Willy Tarreau | a956366 | 2022-12-08 15:30:49 +0100 | [diff] [blame] | 372 | void *ptr; |
Willy Tarreau | 9192d20 | 2022-12-08 17:47:59 +0100 | [diff] [blame] | 373 | |
| 374 | if (pool_debugging & POOL_DBG_UAF) |
| 375 | ptr = pool_alloc_area_uaf(pool->alloc_sz); |
| 376 | else |
| 377 | ptr = pool_alloc_area(pool->alloc_sz); |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 378 | if (ptr) { |
| 379 | _HA_ATOMIC_INC(&pool->allocated); |
| 380 | return ptr; |
| 381 | } |
| 382 | _HA_ATOMIC_INC(&pool->failed); |
| 383 | } |
| 384 | activity[tid].pool_fail++; |
| 385 | return NULL; |
| 386 | |
| 387 | } |
| 388 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 389 | /* Releases a pool item back to the operating system and atomically updates |
| 390 | * the allocation counter. |
| 391 | */ |
| 392 | void pool_put_to_os(struct pool_head *pool, void *ptr) |
| 393 | { |
Willy Tarreau | 9192d20 | 2022-12-08 17:47:59 +0100 | [diff] [blame] | 394 | if (pool_debugging & POOL_DBG_UAF) |
| 395 | pool_free_area_uaf(ptr, pool->alloc_sz); |
| 396 | else |
| 397 | pool_free_area(ptr, pool->alloc_sz); |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 398 | _HA_ATOMIC_DEC(&pool->allocated); |
| 399 | } |
| 400 | |
Willy Tarreau | 8fe726f | 2021-04-15 18:20:12 +0200 | [diff] [blame] | 401 | /* Tries to allocate an object for the pool <pool> using the system's allocator |
| 402 | * and directly returns it. The pool's counters are updated but the object is |
| 403 | * 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] | 404 | */ |
| 405 | void *pool_alloc_nocache(struct pool_head *pool) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 406 | { |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 407 | void *ptr = NULL; |
| 408 | |
Willy Tarreau | 1384364 | 2021-04-17 16:57:25 +0200 | [diff] [blame] | 409 | ptr = pool_get_from_os(pool); |
| 410 | if (!ptr) |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 411 | return NULL; |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 412 | |
Willy Tarreau | 2aa14ce | 2022-12-19 17:26:25 +0100 | [diff] [blame] | 413 | swrate_add_scaled_opportunistic(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 414 | _HA_ATOMIC_INC(&pool->used); |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 415 | |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 416 | /* keep track of where the element was allocated from */ |
Willy Tarreau | 8c49270 | 2022-01-01 17:10:50 +0100 | [diff] [blame] | 417 | POOL_DEBUG_SET_MARK(pool, ptr); |
Willy Tarreau | f70fdde | 2022-01-25 15:56:50 +0100 | [diff] [blame] | 418 | POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL); |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 419 | return ptr; |
| 420 | } |
| 421 | |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 422 | /* Release a pool item back to the OS and keeps the pool's counters up to date. |
| 423 | * This is always defined even when pools are not enabled (their usage stats |
| 424 | * are maintained). |
| 425 | */ |
| 426 | void pool_free_nocache(struct pool_head *pool, void *ptr) |
| 427 | { |
| 428 | _HA_ATOMIC_DEC(&pool->used); |
Willy Tarreau | 2aa14ce | 2022-12-19 17:26:25 +0100 | [diff] [blame] | 429 | swrate_add_opportunistic(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used); |
Willy Tarreau | 45e4e28 | 2021-04-17 17:48:40 +0200 | [diff] [blame] | 430 | pool_put_to_os(pool, ptr); |
| 431 | } |
| 432 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 433 | |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 434 | /* Updates <pch>'s fill_pattern and fills the free area after <item> with it, |
| 435 | * up to <size> bytes. The item part is left untouched. |
| 436 | */ |
| 437 | void pool_fill_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size) |
| 438 | { |
| 439 | ulong *ptr = (ulong *)item; |
| 440 | uint ofs; |
| 441 | ulong u; |
| 442 | |
| 443 | if (size <= sizeof(*item)) |
| 444 | return; |
| 445 | |
| 446 | /* Upgrade the fill_pattern to change about half of the bits |
| 447 | * (to be sure to catch static flag corruption), and apply it. |
| 448 | */ |
| 449 | u = pch->fill_pattern += ~0UL / 3; // 0x55...55 |
| 450 | ofs = sizeof(*item) / sizeof(*ptr); |
| 451 | while (ofs < size / sizeof(*ptr)) |
| 452 | ptr[ofs++] = u; |
| 453 | } |
| 454 | |
| 455 | /* check for a pool_cache_item integrity after extracting it from the cache. It |
| 456 | * must have been previously initialized using pool_fill_pattern(). If any |
| 457 | * corruption is detected, the function provokes an immediate crash. |
| 458 | */ |
| 459 | void pool_check_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size) |
| 460 | { |
| 461 | const ulong *ptr = (const ulong *)item; |
| 462 | uint ofs; |
| 463 | ulong u; |
| 464 | |
| 465 | if (size <= sizeof(*item)) |
| 466 | return; |
| 467 | |
| 468 | /* let's check that all words past *item are equal */ |
| 469 | ofs = sizeof(*item) / sizeof(*ptr); |
| 470 | u = ptr[ofs++]; |
| 471 | while (ofs < size / sizeof(*ptr)) { |
| 472 | if (unlikely(ptr[ofs] != u)) |
| 473 | ABORT_NOW(); |
| 474 | ofs++; |
| 475 | } |
| 476 | } |
| 477 | |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 478 | /* removes up to <count> items from the end of the local pool cache <ph> for |
| 479 | * pool <pool>. The shared pool is refilled with these objects in the limit |
| 480 | * of the number of acceptable objects, and the rest will be released to the |
| 481 | * 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] | 482 | * the local cache. The counters are automatically updated. Must not be used |
| 483 | * with pools disabled. |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 484 | */ |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 485 | 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] | 486 | { |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 487 | struct pool_cache_item *item; |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 488 | struct pool_item *pi, *head = NULL; |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 489 | uint released = 0; |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 490 | uint cluster = 0; |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 491 | uint to_free_max; |
| 492 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 493 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 494 | |
Willy Tarreau | dff3b06 | 2022-02-22 09:21:13 +0100 | [diff] [blame] | 495 | /* Note: this will be zero when global pools are disabled */ |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 496 | to_free_max = pool_releasable(pool); |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 497 | |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 498 | while (released < count && !LIST_ISEMPTY(&ph->list)) { |
Willy Tarreau | d5ec100 | 2022-01-02 12:40:14 +0100 | [diff] [blame] | 499 | item = LIST_PREV(&ph->list, typeof(item), by_pool); |
Willy Tarreau | e2830ad | 2022-02-09 16:23:55 +0100 | [diff] [blame] | 500 | BUG_ON(&item->by_pool == &ph->list); |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 501 | if (unlikely(pool_debugging & POOL_DBG_INTEGRITY)) |
| 502 | pool_check_pattern(ph, item, pool->size); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 503 | LIST_DELETE(&item->by_pool); |
| 504 | LIST_DELETE(&item->by_lru); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 505 | |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 506 | if (to_free_max > released || cluster) { |
Willy Tarreau | dff3b06 | 2022-02-22 09:21:13 +0100 | [diff] [blame] | 507 | /* will never match when global pools are disabled */ |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 508 | pi = (struct pool_item *)item; |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 509 | pi->next = NULL; |
| 510 | pi->down = head; |
| 511 | head = pi; |
| 512 | cluster++; |
| 513 | if (cluster >= CONFIG_HAP_POOL_CLUSTER_SIZE) { |
| 514 | /* enough to make a cluster */ |
| 515 | pool_put_to_shared_cache(pool, head, cluster); |
| 516 | cluster = 0; |
| 517 | head = NULL; |
| 518 | } |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 519 | } else |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 520 | pool_free_nocache(pool, item); |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 521 | |
| 522 | released++; |
Willy Tarreau | 361e31e | 2022-01-02 00:27:06 +0100 | [diff] [blame] | 523 | } |
| 524 | |
Willy Tarreau | 1513c54 | 2022-01-02 17:53:02 +0100 | [diff] [blame] | 525 | /* incomplete cluster left */ |
| 526 | if (cluster) |
| 527 | pool_put_to_shared_cache(pool, head, cluster); |
| 528 | |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 529 | ph->count -= released; |
| 530 | pool_cache_count -= released; |
| 531 | pool_cache_bytes -= released * pool->size; |
| 532 | } |
| 533 | |
| 534 | /* Evicts some of the oldest objects from one local cache, until its number of |
| 535 | * objects is no more than 16+1/8 of the total number of locally cached objects |
| 536 | * or the total size of the local cache is no more than 75% of its maximum (i.e. |
| 537 | * 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] | 538 | * 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] | 539 | * Must not be used when pools are disabled. |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 540 | */ |
Willy Tarreau | c895c44 | 2022-02-09 16:19:24 +0100 | [diff] [blame] | 541 | void pool_evict_from_local_cache(struct pool_head *pool, int full) |
Willy Tarreau | a0b5831 | 2022-01-02 17:19:14 +0100 | [diff] [blame] | 542 | { |
| 543 | struct pool_cache_head *ph = &pool->cache[tid]; |
| 544 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 545 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 546 | |
Willy Tarreau | c895c44 | 2022-02-09 16:19:24 +0100 | [diff] [blame] | 547 | while ((ph->count && full) || |
| 548 | (ph->count >= CONFIG_HAP_POOL_CLUSTER_SIZE && |
| 549 | ph->count >= 16 + pool_cache_count / 8 && |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 550 | pool_cache_bytes > global.tune.pool_cache_size * 3 / 4)) { |
Willy Tarreau | 43937e9 | 2022-01-02 17:24:55 +0100 | [diff] [blame] | 551 | pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE); |
Willy Tarreau | 8721203 | 2021-04-19 08:14:03 +0200 | [diff] [blame] | 552 | } |
| 553 | } |
| 554 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 555 | /* 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] | 556 | * global pool. Must not be used when pools are disabled. |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 557 | */ |
| 558 | void pool_evict_from_local_caches() |
| 559 | { |
| 560 | struct pool_cache_item *item; |
| 561 | struct pool_cache_head *ph; |
| 562 | struct pool_head *pool; |
| 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 | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 566 | do { |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 567 | 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] | 568 | BUG_ON(&item->by_lru == &th_ctx->pool_lru_head); |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 569 | /* note: by definition we remove oldest objects so they also are the |
| 570 | * oldest in their own pools, thus their next is the pool's head. |
| 571 | */ |
| 572 | ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list); |
Willy Tarreau | 49bb5d4 | 2022-02-09 16:33:22 +0100 | [diff] [blame] | 573 | BUG_ON(ph->tid != tid); |
| 574 | |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 575 | pool = container_of(ph - tid, struct pool_head, cache); |
Willy Tarreau | 49bb5d4 | 2022-02-09 16:33:22 +0100 | [diff] [blame] | 576 | BUG_ON(pool != ph->pool); |
| 577 | |
Willy Tarreau | 43937e9 | 2022-01-02 17:24:55 +0100 | [diff] [blame] | 578 | pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE); |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 579 | } while (pool_cache_bytes > global.tune.pool_cache_size * 7 / 8); |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 580 | } |
Willy Tarreau | 0bae075 | 2021-03-02 20:05:09 +0100 | [diff] [blame] | 581 | |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 582 | /* Frees an object to the local cache, possibly pushing oldest objects to the |
| 583 | * shared cache, which itself may decide to release some of them to the OS. |
| 584 | * 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] | 585 | * guaranteed to be released from the users' perpective. A caller address may |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 586 | * be passed and stored into the area when DEBUG_POOL_TRACING is set. Must not |
| 587 | * be used with pools disabled. |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 588 | */ |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 589 | 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] | 590 | { |
| 591 | struct pool_cache_item *item = (struct pool_cache_item *)ptr; |
| 592 | struct pool_cache_head *ph = &pool->cache[tid]; |
| 593 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 594 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 595 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 596 | LIST_INSERT(&ph->list, &item->by_pool); |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 597 | LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru); |
Willy Tarreau | add43fa | 2022-01-24 15:52:51 +0100 | [diff] [blame] | 598 | POOL_DEBUG_TRACE_CALLER(pool, item, caller); |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 599 | ph->count++; |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 600 | if (unlikely(pool_debugging & POOL_DBG_INTEGRITY)) |
| 601 | pool_fill_pattern(ph, item, pool->size); |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 602 | pool_cache_count++; |
| 603 | pool_cache_bytes += pool->size; |
| 604 | |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 605 | if (unlikely(pool_cache_bytes > global.tune.pool_cache_size * 3 / 4)) { |
Willy Tarreau | 43937e9 | 2022-01-02 17:24:55 +0100 | [diff] [blame] | 606 | 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] | 607 | pool_evict_from_local_cache(pool, 0); |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 608 | if (pool_cache_bytes > global.tune.pool_cache_size) |
Willy Tarreau | b2a853d | 2021-04-19 11:49:26 +0200 | [diff] [blame] | 609 | pool_evict_from_local_caches(); |
| 610 | } |
| 611 | } |
| 612 | |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 613 | /* Tries to refill the local cache <pch> from the shared one for pool <pool>. |
| 614 | * This is only used when pools are in use and shared pools are enabled. No |
| 615 | * malloc() is attempted, and poisonning is never performed. The purpose is to |
| 616 | * 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] | 617 | * the cache has enough objects for its use. Must not be used when pools are |
| 618 | * disabled. |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 619 | */ |
| 620 | void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_head *pch) |
| 621 | { |
| 622 | struct pool_cache_item *item; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 623 | struct pool_item *ret, *down; |
| 624 | uint count; |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 625 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 626 | BUG_ON(pool_debugging & POOL_DBG_NO_CACHE); |
| 627 | |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 628 | /* we'll need to reference the first element to figure the next one. We |
| 629 | * must temporarily lock it so that nobody allocates then releases it, |
| 630 | * or the dereference could fail. |
| 631 | */ |
| 632 | ret = _HA_ATOMIC_LOAD(&pool->free_list); |
| 633 | do { |
| 634 | while (unlikely(ret == POOL_BUSY)) { |
| 635 | __ha_cpu_relax(); |
| 636 | ret = _HA_ATOMIC_LOAD(&pool->free_list); |
| 637 | } |
| 638 | if (ret == NULL) |
| 639 | return; |
| 640 | } while (unlikely((ret = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY)); |
| 641 | |
| 642 | if (unlikely(ret == NULL)) { |
| 643 | HA_ATOMIC_STORE(&pool->free_list, NULL); |
| 644 | return; |
| 645 | } |
| 646 | |
| 647 | /* this releases the lock */ |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 648 | HA_ATOMIC_STORE(&pool->free_list, ret->next); |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 649 | |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 650 | /* now store the retrieved object(s) into the local cache */ |
| 651 | count = 0; |
| 652 | for (; ret; ret = down) { |
| 653 | down = ret->down; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 654 | item = (struct pool_cache_item *)ret; |
Willy Tarreau | f70fdde | 2022-01-25 15:56:50 +0100 | [diff] [blame] | 655 | POOL_DEBUG_TRACE_CALLER(pool, item, NULL); |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 656 | LIST_INSERT(&pch->list, &item->by_pool); |
| 657 | LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru); |
| 658 | count++; |
Willy Tarreau | 6f3c7f6 | 2022-02-21 18:42:53 +0100 | [diff] [blame] | 659 | if (unlikely(pool_debugging & POOL_DBG_INTEGRITY)) |
| 660 | pool_fill_pattern(pch, item, pool->size); |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 661 | } |
| 662 | HA_ATOMIC_ADD(&pool->used, count); |
| 663 | pch->count += count; |
| 664 | pool_cache_count += count; |
| 665 | pool_cache_bytes += count * pool->size; |
Willy Tarreau | afe2c4a | 2021-12-30 17:09:31 +0100 | [diff] [blame] | 666 | } |
| 667 | |
Willy Tarreau | 337410c | 2022-01-02 15:15:54 +0100 | [diff] [blame] | 668 | /* Adds pool item cluster <item> to the shared cache, which contains <count> |
| 669 | * elements. The caller is advised to first check using pool_releasable() if |
| 670 | * it's wise to add this series of objects there. Both the pool and the item's |
| 671 | * head must be valid. |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 672 | */ |
Willy Tarreau | 337410c | 2022-01-02 15:15:54 +0100 | [diff] [blame] | 673 | 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] | 674 | { |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 675 | struct pool_item *free_list; |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 676 | |
Willy Tarreau | 337410c | 2022-01-02 15:15:54 +0100 | [diff] [blame] | 677 | _HA_ATOMIC_SUB(&pool->used, count); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 678 | free_list = _HA_ATOMIC_LOAD(&pool->free_list); |
| 679 | do { |
| 680 | while (unlikely(free_list == POOL_BUSY)) { |
| 681 | __ha_cpu_relax(); |
| 682 | free_list = _HA_ATOMIC_LOAD(&pool->free_list); |
| 683 | } |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 684 | _HA_ATOMIC_STORE(&item->next, free_list); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 685 | __ha_barrier_atomic_store(); |
| 686 | } while (!_HA_ATOMIC_CAS(&pool->free_list, &free_list, item)); |
| 687 | __ha_barrier_atomic_store(); |
Willy Tarreau | 2aa14ce | 2022-12-19 17:26:25 +0100 | [diff] [blame] | 688 | swrate_add_opportunistic(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used); |
Willy Tarreau | b46674a | 2021-12-30 17:37:33 +0100 | [diff] [blame] | 689 | } |
| 690 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 691 | /* |
| 692 | * This function frees whatever can be freed in pool <pool>. |
| 693 | */ |
| 694 | void pool_flush(struct pool_head *pool) |
| 695 | { |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 696 | struct pool_item *next, *temp, *down; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 697 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 698 | if (!pool || (pool_debugging & (POOL_DBG_NO_CACHE|POOL_DBG_NO_GLOBAL))) |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 699 | return; |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 700 | |
| 701 | /* The loop below atomically detaches the head of the free list and |
| 702 | * replaces it with a NULL. Then the list can be released. |
| 703 | */ |
| 704 | next = pool->free_list; |
Willy Tarreau | d5ebde5 | 2024-02-10 12:29:53 +0100 | [diff] [blame] | 705 | while (1) { |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 706 | while (unlikely(next == POOL_BUSY)) { |
| 707 | __ha_cpu_relax(); |
| 708 | next = _HA_ATOMIC_LOAD(&pool->free_list); |
| 709 | } |
Willy Tarreau | d5ebde5 | 2024-02-10 12:29:53 +0100 | [diff] [blame] | 710 | |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 711 | if (next == NULL) |
Willy Tarreau | d5ebde5 | 2024-02-10 12:29:53 +0100 | [diff] [blame] | 712 | break; |
| 713 | |
| 714 | next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY); |
| 715 | if (next != POOL_BUSY) { |
| 716 | HA_ATOMIC_STORE(&pool->free_list, NULL); |
| 717 | break; |
| 718 | } |
| 719 | } |
Willy Tarreau | 2a4523f | 2021-06-09 18:59:58 +0200 | [diff] [blame] | 720 | |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 721 | while (next) { |
| 722 | temp = next; |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 723 | next = temp->next; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 724 | for (; temp; temp = down) { |
| 725 | down = temp->down; |
| 726 | pool_put_to_os(pool, temp); |
| 727 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 728 | } |
Willy Tarreau | c239cde | 2021-06-10 06:54:22 +0200 | [diff] [blame] | 729 | /* here, we should have pool->allocated == pool->used */ |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 730 | } |
| 731 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 732 | /* |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 733 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 734 | * the minimum thresholds imposed by owners. It makes sure to be alone to |
| 735 | * run by using thread_isolate(). <pool_ctx> is unused. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 736 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 737 | void pool_gc(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 738 | { |
| 739 | struct pool_head *entry; |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 740 | int isolated = thread_isolated(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 741 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 742 | if (!isolated) |
| 743 | thread_isolate(); |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 744 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 745 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 746 | struct pool_item *temp, *down; |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 747 | |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 748 | while (entry->free_list && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 749 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Olivier Houchard | 51d9339 | 2020-03-12 19:05:39 +0100 | [diff] [blame] | 750 | temp = entry->free_list; |
Willy Tarreau | c16ed3b | 2022-01-01 18:22:20 +0100 | [diff] [blame] | 751 | entry->free_list = temp->next; |
Willy Tarreau | 148160b | 2022-01-02 14:35:57 +0100 | [diff] [blame] | 752 | for (; temp; temp = down) { |
| 753 | down = temp->down; |
| 754 | pool_put_to_os(entry, temp); |
| 755 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 756 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 757 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 758 | |
Willy Tarreau | ea3323f | 2021-09-15 10:38:21 +0200 | [diff] [blame] | 759 | trim_all_pools(); |
Willy Tarreau | 26ed183 | 2021-06-10 08:40:16 +0200 | [diff] [blame] | 760 | |
Willy Tarreau | c0e2ff2 | 2020-04-24 06:15:24 +0200 | [diff] [blame] | 761 | if (!isolated) |
| 762 | thread_release(); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 763 | } |
Willy Tarreau | b8498e9 | 2021-04-18 10:23:02 +0200 | [diff] [blame] | 764 | |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 765 | /* |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 766 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 767 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 768 | * the next element in the list. <flags> is a binary-OR of POOL_F_* flags. |
| 769 | * Prefer using pool_alloc() which does the right thing without flags. |
| 770 | */ |
| 771 | void *__pool_alloc(struct pool_head *pool, unsigned int flags) |
| 772 | { |
| 773 | void *p = NULL; |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 774 | void *caller = __builtin_return_address(0); |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 775 | |
Willy Tarreau | 8d0273e | 2022-02-21 17:16:22 +0100 | [diff] [blame] | 776 | if (unlikely(pool_debugging & POOL_DBG_FAIL_ALLOC)) |
| 777 | if (!(flags & POOL_F_NO_FAIL) && mem_should_fail(pool)) |
| 778 | return NULL; |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 779 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 780 | if (likely(!(pool_debugging & POOL_DBG_NO_CACHE)) && !p) |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 781 | p = pool_get_from_cache(pool, caller); |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 782 | |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 783 | if (unlikely(!p)) |
| 784 | p = pool_alloc_nocache(pool); |
| 785 | |
| 786 | if (likely(p)) { |
Willy Tarreau | facfad2 | 2022-08-17 09:12:53 +0200 | [diff] [blame] | 787 | #ifdef USE_MEMORY_PROFILING |
| 788 | if (unlikely(profiling & HA_PROF_MEMORY)) { |
| 789 | struct memprof_stats *bin; |
| 790 | |
| 791 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_P_ALLOC); |
| 792 | _HA_ATOMIC_ADD(&bin->alloc_calls, 1); |
| 793 | _HA_ATOMIC_ADD(&bin->alloc_tot, pool->size); |
Willy Tarreau | 42b180d | 2022-08-17 09:35:16 +0200 | [diff] [blame] | 794 | _HA_ATOMIC_STORE(&bin->info, pool); |
Willy Tarreau | facfad2 | 2022-08-17 09:12:53 +0200 | [diff] [blame] | 795 | } |
| 796 | #endif |
Willy Tarreau | d392973 | 2022-01-24 16:09:29 +0100 | [diff] [blame] | 797 | if (unlikely(flags & POOL_F_MUST_ZERO)) |
| 798 | memset(p, 0, pool->size); |
Willy Tarreau | ef301b7 | 2022-02-23 14:15:18 +0100 | [diff] [blame] | 799 | 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] | 800 | memset(p, mem_poison_byte, pool->size); |
| 801 | } |
| 802 | return p; |
| 803 | } |
| 804 | |
| 805 | /* |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 806 | * Puts a memory area back to the corresponding pool. <ptr> be valid. Using |
| 807 | * pool_free() is preferred. |
| 808 | */ |
| 809 | void __pool_free(struct pool_head *pool, void *ptr) |
| 810 | { |
Willy Tarreau | 0271822 | 2022-02-23 10:10:33 +0100 | [diff] [blame] | 811 | const void *caller = __builtin_return_address(0); |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 812 | |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 813 | /* we'll get late corruption if we refill to the wrong pool or double-free */ |
| 814 | POOL_DEBUG_CHECK_MARK(pool, ptr); |
Willy Tarreau | 27c8da1 | 2022-02-09 16:49:16 +0100 | [diff] [blame] | 815 | POOL_DEBUG_RESET_MARK(pool, ptr); |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 816 | |
Willy Tarreau | facfad2 | 2022-08-17 09:12:53 +0200 | [diff] [blame] | 817 | #ifdef USE_MEMORY_PROFILING |
| 818 | if (unlikely(profiling & HA_PROF_MEMORY) && ptr) { |
| 819 | struct memprof_stats *bin; |
| 820 | |
| 821 | bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_P_FREE); |
| 822 | _HA_ATOMIC_ADD(&bin->free_calls, 1); |
| 823 | _HA_ATOMIC_ADD(&bin->free_tot, pool->size); |
Willy Tarreau | 42b180d | 2022-08-17 09:35:16 +0200 | [diff] [blame] | 824 | _HA_ATOMIC_STORE(&bin->info, pool); |
Willy Tarreau | facfad2 | 2022-08-17 09:12:53 +0200 | [diff] [blame] | 825 | } |
| 826 | #endif |
| 827 | |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 828 | if (unlikely((pool_debugging & POOL_DBG_NO_CACHE) || |
| 829 | global.tune.pool_cache_size < pool->size)) { |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 830 | pool_free_nocache(pool, ptr); |
| 831 | return; |
| 832 | } |
| 833 | |
Willy Tarreau | 0e2a5b4 | 2022-01-24 15:51:50 +0100 | [diff] [blame] | 834 | pool_put_to_cache(pool, ptr, caller); |
Willy Tarreau | 15c322c | 2022-01-24 11:51:43 +0100 | [diff] [blame] | 835 | } |
| 836 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 837 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 838 | * This function destroys a pool by freeing it completely, unless it's still |
| 839 | * in use. This should be called only under extreme circumstances. It always |
| 840 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 841 | * pointer, otherwise it returns the pool. |
| 842 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 843 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 844 | void *pool_destroy(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 845 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 846 | if (pool) { |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 847 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) |
| 848 | pool_evict_from_local_cache(pool, 1); |
| 849 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 850 | pool_flush(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 851 | if (pool->used) |
| 852 | return pool; |
| 853 | pool->users--; |
| 854 | if (!pool->users) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 855 | LIST_DELETE(&pool->list); |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 856 | /* note that if used == 0, the cache is empty */ |
Willy Tarreau | f9eba78 | 2022-03-03 18:31:54 +0100 | [diff] [blame] | 857 | free(pool->base_addr); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 858 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 859 | } |
| 860 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 861 | } |
| 862 | |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 863 | /* This destroys all pools on exit. It is *not* thread safe. */ |
| 864 | void pool_destroy_all() |
| 865 | { |
| 866 | struct pool_head *entry, *back; |
| 867 | |
Willy Tarreau | 243e68b | 2022-04-27 11:33:13 +0200 | [diff] [blame] | 868 | list_for_each_entry_safe(entry, back, &pools, list) { |
| 869 | /* there's only one occurrence of each pool in the list, |
| 870 | * and we're existing instead of looping on the whole |
| 871 | * list just to decrement users, force it to 1 here. |
| 872 | */ |
| 873 | entry->users = 1; |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 874 | pool_destroy(entry); |
Willy Tarreau | 243e68b | 2022-04-27 11:33:13 +0200 | [diff] [blame] | 875 | } |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 876 | } |
| 877 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 878 | /* used by qsort in "show pools" to sort by name */ |
| 879 | static int cmp_dump_pools_name(const void *a, const void *b) |
| 880 | { |
| 881 | const struct pool_dump_info *l = (const struct pool_dump_info *)a; |
| 882 | const struct pool_dump_info *r = (const struct pool_dump_info *)b; |
| 883 | |
| 884 | return strcmp(l->entry->name, r->entry->name); |
| 885 | } |
| 886 | |
| 887 | /* used by qsort in "show pools" to sort by item size */ |
| 888 | static int cmp_dump_pools_size(const void *a, const void *b) |
| 889 | { |
| 890 | const struct pool_dump_info *l = (const struct pool_dump_info *)a; |
| 891 | const struct pool_dump_info *r = (const struct pool_dump_info *)b; |
| 892 | |
| 893 | if (l->entry->size > r->entry->size) |
| 894 | return -1; |
| 895 | else if (l->entry->size < r->entry->size) |
| 896 | return 1; |
| 897 | else |
| 898 | return 0; |
| 899 | } |
| 900 | |
| 901 | /* used by qsort in "show pools" to sort by usage */ |
| 902 | static int cmp_dump_pools_usage(const void *a, const void *b) |
| 903 | { |
| 904 | const struct pool_dump_info *l = (const struct pool_dump_info *)a; |
| 905 | const struct pool_dump_info *r = (const struct pool_dump_info *)b; |
| 906 | |
| 907 | if (l->alloc_bytes > r->alloc_bytes) |
| 908 | return -1; |
| 909 | else if (l->alloc_bytes < r->alloc_bytes) |
| 910 | return 1; |
| 911 | else |
| 912 | return 0; |
| 913 | } |
| 914 | |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 915 | /* will not dump more than this number of entries. Anything beyond this will |
| 916 | * likely not fit into a regular output buffer anyway. |
| 917 | */ |
| 918 | #define POOLS_MAX_DUMPED_ENTRIES 1024 |
| 919 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 920 | /* This function dumps memory usage information into the trash buffer. |
| 921 | * It may sort by a criterion if <by_what> is non-zero, and limit the |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 922 | * number of output lines if <max> is non-zero. It may limit only to |
| 923 | * pools whose names start with <pfx> if <pfx> is non-null. |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 924 | */ |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 925 | void dump_pools_to_trash(int by_what, int max, const char *pfx) |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 926 | { |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 927 | struct pool_dump_info pool_info[POOLS_MAX_DUMPED_ENTRIES]; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 928 | struct pool_head *entry; |
Willy Tarreau | 0c5e989 | 2022-11-17 11:08:03 +0100 | [diff] [blame] | 929 | unsigned long long allocated, used; |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 930 | int nbpools, i; |
Willy Tarreau | 0c5e989 | 2022-11-17 11:08:03 +0100 | [diff] [blame] | 931 | unsigned long long cached_bytes = 0; |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 932 | uint cached = 0; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 933 | |
| 934 | allocated = used = nbpools = 0; |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 935 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 936 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 937 | if (nbpools >= POOLS_MAX_DUMPED_ENTRIES) |
| 938 | break; |
| 939 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 940 | /* do not dump unused entries when sorting by usage */ |
| 941 | if (by_what == 3 && !entry->allocated) |
| 942 | continue; |
| 943 | |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 944 | /* verify the pool name if a prefix is requested */ |
| 945 | if (pfx && strncmp(entry->name, pfx, strlen(pfx)) != 0) |
| 946 | continue; |
| 947 | |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 948 | if (!(pool_debugging & POOL_DBG_NO_CACHE)) { |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 949 | for (cached = i = 0; i < global.nbthread; i++) |
| 950 | cached += entry->cache[i].count; |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 951 | } |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 952 | pool_info[nbpools].entry = entry; |
| 953 | pool_info[nbpools].alloc_items = entry->allocated; |
| 954 | pool_info[nbpools].alloc_bytes = (ulong)entry->size * entry->allocated; |
| 955 | pool_info[nbpools].used_items = entry->used; |
| 956 | pool_info[nbpools].cached_items = cached; |
| 957 | pool_info[nbpools].need_avg = swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES); |
| 958 | pool_info[nbpools].failed_items = entry->failed; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 959 | nbpools++; |
| 960 | } |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 961 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 962 | if (by_what == 1) /* sort by name */ |
| 963 | qsort(pool_info, nbpools, sizeof(pool_info[0]), cmp_dump_pools_name); |
| 964 | else if (by_what == 2) /* sort by item size */ |
| 965 | qsort(pool_info, nbpools, sizeof(pool_info[0]), cmp_dump_pools_size); |
| 966 | else if (by_what == 3) /* sort by total usage */ |
| 967 | qsort(pool_info, nbpools, sizeof(pool_info[0]), cmp_dump_pools_usage); |
| 968 | |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 969 | chunk_printf(&trash, "Dumping pools usage"); |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 970 | if (!max || max >= POOLS_MAX_DUMPED_ENTRIES) |
| 971 | max = POOLS_MAX_DUMPED_ENTRIES; |
| 972 | if (nbpools >= max) |
| 973 | chunk_appendf(&trash, " (limited to the first %u entries)", max); |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 974 | chunk_appendf(&trash, ". Use SIGQUIT to flush them.\n"); |
| 975 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 976 | for (i = 0; i < nbpools && i < max; i++) { |
Willy Tarreau | 224adf2 | 2022-11-21 09:02:41 +0100 | [diff] [blame] | 977 | chunk_appendf(&trash, " - Pool %s (%lu bytes) : %lu allocated (%lu bytes), %lu used" |
| 978 | " (~%lu by thread caches)" |
| 979 | ", needed_avg %lu, %lu failures, %u users, @%p%s\n", |
| 980 | pool_info[i].entry->name, (ulong)pool_info[i].entry->size, |
| 981 | pool_info[i].alloc_items, pool_info[i].alloc_bytes, |
| 982 | pool_info[i].used_items, pool_info[i].cached_items, |
| 983 | pool_info[i].need_avg, pool_info[i].failed_items, |
| 984 | pool_info[i].entry->users, pool_info[i].entry, |
| 985 | (pool_info[i].entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
| 986 | |
| 987 | cached_bytes += pool_info[i].cached_items * (ulong)pool_info[i].entry->size; |
| 988 | allocated += pool_info[i].alloc_items * (ulong)pool_info[i].entry->size; |
| 989 | used += pool_info[i].used_items * (ulong)pool_info[i].entry->size; |
| 990 | } |
| 991 | |
Willy Tarreau | 0c5e989 | 2022-11-17 11:08:03 +0100 | [diff] [blame] | 992 | chunk_appendf(&trash, "Total: %d pools, %llu bytes allocated, %llu used" |
| 993 | " (~%llu by thread caches)" |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 994 | ".\n", |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 995 | nbpools, allocated, used, cached_bytes |
Willy Tarreau | 1b4a714 | 2021-10-07 16:29:31 +0200 | [diff] [blame] | 996 | ); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 997 | } |
| 998 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 999 | /* Dump statistics on pools usage. */ |
| 1000 | void dump_pools(void) |
| 1001 | { |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 1002 | dump_pools_to_trash(0, 0, NULL); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1003 | qfprintf(stderr, "%s", trash.area); |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 1004 | } |
| 1005 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1006 | /* This function returns the total number of failed pool allocations */ |
| 1007 | int pool_total_failures() |
| 1008 | { |
| 1009 | struct pool_head *entry; |
| 1010 | int failed = 0; |
| 1011 | |
| 1012 | list_for_each_entry(entry, &pools, list) |
| 1013 | failed += entry->failed; |
| 1014 | return failed; |
| 1015 | } |
| 1016 | |
| 1017 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
Christopher Faulet | c960a3b | 2022-12-22 11:05:48 +0100 | [diff] [blame] | 1018 | unsigned long long pool_total_allocated() |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1019 | { |
| 1020 | struct pool_head *entry; |
Christopher Faulet | c960a3b | 2022-12-22 11:05:48 +0100 | [diff] [blame] | 1021 | unsigned long long allocated = 0; |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1022 | |
| 1023 | list_for_each_entry(entry, &pools, list) |
Christopher Faulet | c960a3b | 2022-12-22 11:05:48 +0100 | [diff] [blame] | 1024 | allocated += entry->allocated * (ullong)entry->size; |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1025 | return allocated; |
| 1026 | } |
| 1027 | |
| 1028 | /* This function returns the total amount of memory used in pools (in bytes) */ |
Christopher Faulet | c960a3b | 2022-12-22 11:05:48 +0100 | [diff] [blame] | 1029 | unsigned long long pool_total_used() |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1030 | { |
| 1031 | struct pool_head *entry; |
Christopher Faulet | c960a3b | 2022-12-22 11:05:48 +0100 | [diff] [blame] | 1032 | unsigned long long used = 0; |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1033 | |
| 1034 | list_for_each_entry(entry, &pools, list) |
Christopher Faulet | c960a3b | 2022-12-22 11:05:48 +0100 | [diff] [blame] | 1035 | used += entry->used * (ullong)entry->size; |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 1036 | return used; |
| 1037 | } |
| 1038 | |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 1039 | /* This function parses a string made of a set of debugging features as |
| 1040 | * specified after -dM on the command line, and will set pool_debugging |
| 1041 | * accordingly. On success it returns a strictly positive value. It may zero |
| 1042 | * with the first warning in <err>, -1 with a help message in <err>, or -2 with |
| 1043 | * the first error in <err> return the first error in <err>. <err> is undefined |
| 1044 | * on success, and will be non-null and locally allocated on help/error/warning. |
| 1045 | * The caller must free it. Warnings are used to report features that were not |
| 1046 | * enabled at build time, and errors are used to report unknown features. |
| 1047 | */ |
| 1048 | int pool_parse_debugging(const char *str, char **err) |
| 1049 | { |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 1050 | struct ist args; |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 1051 | char *end; |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 1052 | uint new_dbg; |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 1053 | int v; |
| 1054 | |
| 1055 | |
| 1056 | /* if it's empty or starts with a number, it's the mem poisonning byte */ |
| 1057 | v = strtol(str, &end, 0); |
| 1058 | if (!*end || *end == ',') { |
| 1059 | mem_poison_byte = *str ? v : 'P'; |
| 1060 | if (mem_poison_byte >= 0) |
| 1061 | pool_debugging |= POOL_DBG_POISON; |
| 1062 | else |
| 1063 | pool_debugging &= ~POOL_DBG_POISON; |
| 1064 | str = end; |
| 1065 | } |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 1066 | |
| 1067 | new_dbg = pool_debugging; |
| 1068 | |
| 1069 | for (args = ist(str); istlen(args); args = istadv(istfind(args, ','), 1)) { |
| 1070 | struct ist feat = iststop(args, ','); |
| 1071 | |
| 1072 | if (!istlen(feat)) |
| 1073 | continue; |
| 1074 | |
| 1075 | if (isteq(feat, ist("help"))) { |
| 1076 | ha_free(err); |
| 1077 | memprintf(err, |
| 1078 | "-dM alone enables memory poisonning with byte 0x50 on allocation. A numeric\n" |
| 1079 | "value may be appended immediately after -dM to use another value (0 supported).\n" |
| 1080 | "Then an optional list of comma-delimited keywords may be appended to set or\n" |
| 1081 | "clear some debugging options ('*' marks the current setting):\n\n" |
| 1082 | " set clear description\n" |
| 1083 | " -----------------+-----------------+-----------------------------------------\n"); |
| 1084 | |
| 1085 | for (v = 0; dbg_options[v].flg; v++) { |
| 1086 | memprintf(err, "%s %c %-15s|%c %-15s| %s\n", |
| 1087 | *err, |
| 1088 | (pool_debugging & dbg_options[v].flg) ? '*' : ' ', |
| 1089 | dbg_options[v].set, |
| 1090 | (pool_debugging & dbg_options[v].flg) ? ' ' : '*', |
| 1091 | dbg_options[v].clr, |
| 1092 | dbg_options[v].hlp); |
| 1093 | } |
Willy Tarreau | b634987 | 2022-12-08 18:42:51 +0100 | [diff] [blame] | 1094 | |
| 1095 | memprintf(err, |
| 1096 | "%s -----------------+-----------------+-----------------------------------------\n" |
| 1097 | "Examples:\n" |
| 1098 | " Disable merging and enable poisonning with byte 'P': -dM0x50,no-merge\n" |
| 1099 | " Randomly fail allocations: -dMfail\n" |
| 1100 | " Detect out-of-bound corruptions: -dMno-merge,tag\n" |
| 1101 | " Detect post-free cache corruptions: -dMno-merge,cold-first,integrity,caller\n" |
| 1102 | " Detect all cache corruptions: -dMno-merge,cold-first,integrity,tag,caller\n" |
Willy Tarreau | 9192d20 | 2022-12-08 17:47:59 +0100 | [diff] [blame] | 1103 | " Detect UAF (disables cache, very slow): -dMuaf\n" |
| 1104 | " Detect post-cache UAF: -dMuaf,cache,no-merge,cold-first,integrity,tag,caller\n" |
Willy Tarreau | b634987 | 2022-12-08 18:42:51 +0100 | [diff] [blame] | 1105 | " Detect post-free cache corruptions: -dMno-merge,cold-first,integrity,caller\n", |
| 1106 | *err); |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 1107 | return -1; |
| 1108 | } |
| 1109 | |
| 1110 | for (v = 0; dbg_options[v].flg; v++) { |
| 1111 | if (isteq(feat, ist(dbg_options[v].set))) { |
| 1112 | new_dbg |= dbg_options[v].flg; |
Willy Tarreau | 9192d20 | 2022-12-08 17:47:59 +0100 | [diff] [blame] | 1113 | /* UAF implicitly disables caching, but it's |
| 1114 | * still possible to forcefully re-enable it. |
| 1115 | */ |
| 1116 | if (dbg_options[v].flg == POOL_DBG_UAF) |
| 1117 | new_dbg |= POOL_DBG_NO_CACHE; |
Willy Tarreau | 0c4348c | 2023-03-21 09:24:53 +0100 | [diff] [blame] | 1118 | /* fail should preset the tune.fail-alloc ratio to 1% */ |
| 1119 | if (dbg_options[v].flg == POOL_DBG_FAIL_ALLOC) |
| 1120 | mem_fail_rate = 1; |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 1121 | break; |
| 1122 | } |
| 1123 | else if (isteq(feat, ist(dbg_options[v].clr))) { |
| 1124 | new_dbg &= ~dbg_options[v].flg; |
Willy Tarreau | 0c4348c | 2023-03-21 09:24:53 +0100 | [diff] [blame] | 1125 | /* no-fail should reset the tune.fail-alloc ratio */ |
| 1126 | if (dbg_options[v].flg == POOL_DBG_FAIL_ALLOC) |
| 1127 | mem_fail_rate = 0; |
Willy Tarreau | f4b79c4 | 2022-02-23 15:20:53 +0100 | [diff] [blame] | 1128 | break; |
| 1129 | } |
| 1130 | } |
| 1131 | |
| 1132 | if (!dbg_options[v].flg) { |
| 1133 | memprintf(err, "unknown pool debugging feature <%.*s>", (int)istlen(feat), istptr(feat)); |
| 1134 | return -2; |
| 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | pool_debugging = new_dbg; |
Willy Tarreau | 1408b1f | 2022-02-18 18:54:40 +0100 | [diff] [blame] | 1139 | return 1; |
| 1140 | } |
| 1141 | |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 1142 | /* parse a "show pools" command. It returns 1 on failure, 0 if it starts to dump. */ |
| 1143 | static int cli_parse_show_pools(char **args, char *payload, struct appctx *appctx, void *private) |
| 1144 | { |
| 1145 | struct show_pools_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 1146 | int arg; |
| 1147 | |
| 1148 | for (arg = 2; *args[arg]; arg++) { |
| 1149 | if (strcmp(args[arg], "byname") == 0) { |
| 1150 | ctx->by_what = 1; // sort output by name |
| 1151 | } |
| 1152 | else if (strcmp(args[arg], "bysize") == 0) { |
| 1153 | ctx->by_what = 2; // sort output by item size |
| 1154 | } |
| 1155 | else if (strcmp(args[arg], "byusage") == 0) { |
| 1156 | ctx->by_what = 3; // sort output by total allocated size |
| 1157 | } |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 1158 | else if (strcmp(args[arg], "match") == 0 && *args[arg+1]) { |
| 1159 | ctx->prefix = strdup(args[arg+1]); // only pools starting with this |
| 1160 | arg++; |
| 1161 | } |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 1162 | else if (isdigit((unsigned char)*args[arg])) { |
| 1163 | ctx->maxcnt = atoi(args[arg]); // number of entries to dump |
| 1164 | } |
| 1165 | else |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 1166 | return cli_err(appctx, "Expects either 'byname', 'bysize', 'byusage', 'match <pfx>', or a max number of output lines.\n"); |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 1167 | } |
| 1168 | return 0; |
| 1169 | } |
| 1170 | |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 1171 | /* release the "show pools" context */ |
| 1172 | static void cli_release_show_pools(struct appctx *appctx) |
| 1173 | { |
| 1174 | struct show_pools_ctx *ctx = appctx->svcctx; |
| 1175 | |
| 1176 | ha_free(&ctx->prefix); |
| 1177 | } |
| 1178 | |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1179 | /* This function dumps memory usage information onto the stream connector's |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1180 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 1181 | * completion. No state is used. |
| 1182 | */ |
| 1183 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 1184 | { |
Willy Tarreau | 2fba08f | 2022-11-21 09:34:02 +0100 | [diff] [blame] | 1185 | struct show_pools_ctx *ctx = appctx->svcctx; |
| 1186 | |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 1187 | dump_pools_to_trash(ctx->by_what, ctx->maxcnt, ctx->prefix); |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1188 | if (applet_putchk(appctx, &trash) == -1) |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1189 | return 0; |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1190 | return 1; |
| 1191 | } |
| 1192 | |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 1193 | /* callback used to create early pool <name> of size <size> and store the |
| 1194 | * resulting pointer into <ptr>. If the allocation fails, it quits with after |
| 1195 | * emitting an error message. |
| 1196 | */ |
| 1197 | void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size) |
| 1198 | { |
| 1199 | *ptr = create_pool(name, size, MEM_F_SHARED); |
| 1200 | if (!*ptr) { |
| 1201 | ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n", |
| 1202 | name, size, strerror(errno)); |
| 1203 | exit(1); |
| 1204 | } |
| 1205 | } |
| 1206 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1207 | /* Initializes all per-thread arrays on startup */ |
| 1208 | static void init_pools() |
| 1209 | { |
Willy Tarreau | 9f3129e | 2021-04-17 00:31:38 +0200 | [diff] [blame] | 1210 | int thr; |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1211 | |
| 1212 | for (thr = 0; thr < MAX_THREADS; thr++) { |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 1213 | LIST_INIT(&ha_thread_ctx[thr].pool_lru_head); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1214 | } |
Willy Tarreau | e981631 | 2022-02-22 16:23:09 +0100 | [diff] [blame] | 1215 | |
Willy Tarreau | 157e393 | 2021-09-15 10:05:48 +0200 | [diff] [blame] | 1216 | detect_allocator(); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 1217 | } |
| 1218 | |
| 1219 | INITCALL0(STG_PREPARE, init_pools); |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 1220 | |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 1221 | /* Report in build options if trim is supported */ |
| 1222 | static void pools_register_build_options(void) |
| 1223 | { |
Willy Tarreau | 1751db1 | 2023-03-22 18:01:41 +0100 | [diff] [blame] | 1224 | if (!using_default_allocator) { |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 1225 | char *ptr = NULL; |
Willy Tarreau | 1751db1 | 2023-03-22 18:01:41 +0100 | [diff] [blame] | 1226 | memprintf(&ptr, "Running with a replaced memory allocator (e.g. via LD_PRELOAD)."); |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 1227 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 1751db1 | 2023-03-22 18:01:41 +0100 | [diff] [blame] | 1228 | mark_tainted(TAINTED_REPLACED_MEM_ALLOCATOR); |
Willy Tarreau | 845b560 | 2021-09-15 10:41:24 +0200 | [diff] [blame] | 1229 | } |
| 1230 | } |
| 1231 | INITCALL0(STG_REGISTER, pools_register_build_options); |
| 1232 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1233 | /* register cli keywords */ |
| 1234 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 7583c36 | 2022-11-21 10:02:29 +0100 | [diff] [blame] | 1235 | { { "show", "pools", NULL }, "show pools [by*] [match <pfx>] [nb] : report information about the memory pools usage", cli_parse_show_pools, cli_io_handler_dump_pools, cli_release_show_pools }, |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1236 | {{},} |
| 1237 | }}; |
| 1238 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1239 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1240 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1241 | |
| 1242 | /* config parser for global "tune.fail-alloc" */ |
| 1243 | 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] | 1244 | const struct proxy *defpx, const char *file, int line, |
| 1245 | char **err) |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1246 | { |
| 1247 | if (too_many_args(1, args, err, NULL)) |
| 1248 | return -1; |
| 1249 | mem_fail_rate = atoi(args[1]); |
| 1250 | if (mem_fail_rate < 0 || mem_fail_rate > 100) { |
| 1251 | memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]); |
| 1252 | return -1; |
| 1253 | } |
| 1254 | return 0; |
| 1255 | } |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1256 | |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 1257 | /* config parser for global "tune.memory.hot-size" */ |
| 1258 | static int mem_parse_global_hot_size(char **args, int section_type, struct proxy *curpx, |
| 1259 | const struct proxy *defpx, const char *file, int line, |
| 1260 | char **err) |
| 1261 | { |
| 1262 | long size; |
| 1263 | |
| 1264 | if (too_many_args(1, args, err, NULL)) |
| 1265 | return -1; |
| 1266 | |
| 1267 | size = atol(args[1]); |
| 1268 | if (size <= 0) { |
| 1269 | memprintf(err, "'%s' expects a strictly positive value.", args[0]); |
| 1270 | return -1; |
| 1271 | } |
| 1272 | |
| 1273 | global.tune.pool_cache_size = size; |
| 1274 | return 0; |
| 1275 | } |
| 1276 | |
Willy Tarreau | c4e56dc | 2022-03-08 10:41:40 +0100 | [diff] [blame] | 1277 | /* config parser for global "no-memory-trimming" */ |
| 1278 | static int mem_parse_global_no_mem_trim(char **args, int section_type, struct proxy *curpx, |
| 1279 | const struct proxy *defpx, const char *file, int line, |
| 1280 | char **err) |
| 1281 | { |
| 1282 | if (too_many_args(0, args, err, NULL)) |
| 1283 | return -1; |
| 1284 | disable_trim = 1; |
| 1285 | return 0; |
| 1286 | } |
| 1287 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1288 | /* register global config keywords */ |
| 1289 | static struct cfg_kw_list mem_cfg_kws = {ILH, { |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1290 | { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc }, |
Willy Tarreau | 284cfc6 | 2022-12-19 08:15:57 +0100 | [diff] [blame] | 1291 | { CFG_GLOBAL, "tune.memory.hot-size", mem_parse_global_hot_size }, |
Willy Tarreau | c4e56dc | 2022-03-08 10:41:40 +0100 | [diff] [blame] | 1292 | { CFG_GLOBAL, "no-memory-trimming", mem_parse_global_no_mem_trim }, |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 1293 | { 0, NULL, NULL } |
| 1294 | }}; |
| 1295 | |
| 1296 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws); |
| 1297 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 1298 | /* |
| 1299 | * Local variables: |
| 1300 | * c-indent-level: 8 |
| 1301 | * c-basic-offset: 8 |
| 1302 | * End: |
| 1303 | */ |