blob: 292b27d13375d3c46cc76c87fa3aace99220b662 [file] [log] [blame]
Willy Tarreau50e608d2007-05-13 18:26:08 +02001/*
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 Tarreauf14d1902021-10-05 18:14:11 +020012
Willy Tarreau7107c8b2018-11-26 11:44:35 +010013#include <errno.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020014
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020015#include <haproxy/activity.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020016#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020017#include <haproxy/applet-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020018#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020019#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020020#include <haproxy/cli.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020021#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020022#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020023#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/pool.h>
Willy Tarreau76a97a92022-12-08 17:26:50 +010025#include <haproxy/pool-os.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020026#include <haproxy/sc_strm.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020027#include <haproxy/stats-t.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020028#include <haproxy/stconn.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020029#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020030#include <haproxy/tools.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020031
Willy Tarreau50e608d2007-05-13 18:26:08 +020032
Willy Tarreau7f0165e2018-11-26 17:09:46 +010033/* These ones are initialized per-thread on startup by init_pools() */
Willy Tarreaue18db9e2018-10-16 10:28:54 +020034THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
35THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
36
Willy Tarreau9f699952022-02-18 18:31:53 +010037static struct list pools __read_mostly = LIST_HEAD_INIT(pools);
Willy Tarreauef301b72022-02-23 14:15:18 +010038int mem_poison_byte __read_mostly = 'P';
Willy Tarreau8d0273e2022-02-21 17:16:22 +010039uint pool_debugging __read_mostly = /* set of POOL_DBG_* flags */
Olivier Houcharddc21ff72019-01-29 15:20:16 +010040#ifdef DEBUG_FAIL_ALLOC
Willy Tarreau8d0273e2022-02-21 17:16:22 +010041 POOL_DBG_FAIL_ALLOC |
Olivier Houcharddc21ff72019-01-29 15:20:16 +010042#endif
Willy Tarreaufd8b7372022-02-21 17:31:50 +010043#ifdef DEBUG_DONT_SHARE_POOLS
44 POOL_DBG_DONT_MERGE |
45#endif
Willy Tarreaud3470e12022-02-21 18:30:25 +010046#ifdef DEBUG_POOL_INTEGRITY
47 POOL_DBG_COLD_FIRST |
48#endif
Willy Tarreau6f3c7f62022-02-21 18:42:53 +010049#ifdef DEBUG_POOL_INTEGRITY
50 POOL_DBG_INTEGRITY |
51#endif
Willy Tarreaudff3b062022-02-22 09:21:13 +010052#ifdef CONFIG_HAP_NO_GLOBAL_POOLS
53 POOL_DBG_NO_GLOBAL |
54#endif
Willy Tarreau4da51bd2022-12-08 17:45:08 +010055#if defined(DEBUG_NO_POOLS) || defined(DEBUG_UAF)
Willy Tarreaue9816312022-02-22 16:23:09 +010056 POOL_DBG_NO_CACHE |
57#endif
Willy Tarreau02718222022-02-23 10:10:33 +010058#if defined(DEBUG_POOL_TRACING)
59 POOL_DBG_CALLER |
60#endif
Willy Tarreau13d77752022-02-23 10:20:37 +010061#if defined(DEBUG_MEMORY_POOLS)
62 POOL_DBG_TAG |
63#endif
Willy Tarreau9192d202022-12-08 17:47:59 +010064#if defined(DEBUG_UAF)
65 POOL_DBG_UAF |
66#endif
Willy Tarreau8d0273e2022-02-21 17:16:22 +010067 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +010068
Willy Tarreauf4b79c42022-02-23 15:20:53 +010069static 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 Tarreau9192d202022-12-08 17:47:59 +010085 { POOL_DBG_UAF, "uaf", "no-uaf", "enable use-after-free checks (slow)" },
Willy Tarreauf4b79c42022-02-23 15:20:53 +010086 { 0 /* end */ }
87};
88
Willy Tarreau224adf22022-11-21 09:02:41 +010089/* describes a snapshot of a pool line about to be dumped by "show pools" */
90struct 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 Tarreau2fba08f2022-11-21 09:34:02 +0100100/* context used by "show pools" */
101struct show_pools_ctx {
Willy Tarreau7583c362022-11-21 10:02:29 +0100102 char *prefix; /* if non-null, match this prefix name for the pool */
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100103 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 Tarreau8d0273e2022-02-21 17:16:22 +0100107static int mem_fail_rate __read_mostly = 0;
Willy Tarreau0c27ec52023-03-22 17:52:05 +0100108static int using_default_allocator __read_mostly = 1; // linked-in allocator or LD_PRELOADed one ?
Willy Tarreauc4e56dc2022-03-08 10:41:40 +0100109static int disable_trim __read_mostly = 0;
David Carliered232142021-11-25 16:09:45 +0000110static int(*my_mallctl)(const char *, void *, size_t *, void *, size_t) = NULL;
Willy Tarreaueaba76b2023-03-22 14:55:25 +0100111static int(*_malloc_trim)(size_t) = NULL;
Willy Tarreau157e3932021-09-15 10:05:48 +0200112
Willy Tarreau0d93a812021-12-23 09:26:30 +0100113/* 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 Tarreau7aee6832023-03-22 15:36:29 +0100119void trim_all_pools(void)
Willy Tarreauea3323f2021-09-15 10:38:21 +0200120{
Willy Tarreau0d93a812021-12-23 09:26:30 +0100121 int isolated = thread_isolated();
122
123 if (!isolated)
124 thread_isolate();
125
Willy Tarreau4138f152023-03-22 15:32:58 +0100126 malloc_trim(0);
Willy Tarreau0d93a812021-12-23 09:26:30 +0100127
128 if (!isolated)
129 thread_release();
Willy Tarreauea3323f2021-09-15 10:38:21 +0200130}
131
Willy Tarreau157e3932021-09-15 10:05:48 +0200132/* 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 Carliered232142021-11-25 16:09:45 +0000136 * 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 Tarreau157e3932021-09-15 10:05:48 +0200139 */
140static void detect_allocator(void)
141{
Willy Tarreau781f07a2021-11-26 15:55:55 +0100142#if defined(__ELF__)
David Carliered232142021-11-25 16:09:45 +0000143 extern int mallctl(const char *, void *, size_t *, void *, size_t) __attribute__((weak));
144
145 my_mallctl = mallctl;
Willy Tarreau781f07a2021-11-26 15:55:55 +0100146#endif
Willy Tarreau0c27ec52023-03-22 17:52:05 +0100147 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 Carliered232142021-11-25 16:09:45 +0000155 my_mallctl = get_sym_curr_addr("mallctl");
Willy Tarreau0c27ec52023-03-22 17:52:05 +0100156 using_default_allocator = (my_mallctl == NULL);
157 }
David Carliered232142021-11-25 16:09:45 +0000158
159 if (!my_mallctl) {
160#if defined(HA_HAVE_MALLOC_TRIM)
Willy Tarreauc2afb862021-09-16 09:18:21 +0200161#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000162 struct mallinfo2 mi1, mi2;
Willy Tarreauc2afb862021-09-16 09:18:21 +0200163#else
David Carliered232142021-11-25 16:09:45 +0000164 struct mallinfo mi1, mi2;
Willy Tarreauc2afb862021-09-16 09:18:21 +0200165#endif
David Carliered232142021-11-25 16:09:45 +0000166 void *ptr;
Willy Tarreau157e3932021-09-15 10:05:48 +0200167
Willy Tarreauc2afb862021-09-16 09:18:21 +0200168#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000169 mi1 = mallinfo2();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200170#else
David Carliered232142021-11-25 16:09:45 +0000171 mi1 = mallinfo();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200172#endif
David Carliered232142021-11-25 16:09:45 +0000173 ptr = DISGUISE(malloc(1));
Willy Tarreauc2afb862021-09-16 09:18:21 +0200174#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000175 mi2 = mallinfo2();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200176#else
David Carliered232142021-11-25 16:09:45 +0000177 mi2 = mallinfo();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200178#endif
David Carliered232142021-11-25 16:09:45 +0000179 free(DISGUISE(ptr));
Willy Tarreauea3323f2021-09-15 10:38:21 +0200180
David Carliered232142021-11-25 16:09:45 +0000181 using_default_allocator = !!memcmp(&mi1, &mi2, sizeof(mi1));
David CARLIERb1e190a2021-11-26 20:44:44 +0000182#elif defined(HA_HAVE_MALLOC_ZONE)
183 using_default_allocator = (malloc_default_zone() != NULL);
David Carliered232142021-11-25 16:09:45 +0000184#endif
185 }
Willy Tarreaueaba76b2023-03-22 14:55:25 +0100186
187 /* detect presence of malloc_trim() */
188 _malloc_trim = get_sym_next_addr("malloc_trim");
Willy Tarreau845b5602021-09-15 10:41:24 +0200189}
190
Willy Tarreaueaba76b2023-03-22 14:55:25 +0100191/* 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 */
194int malloc_trim(size_t pad)
195{
196 int ret = 0;
197
198 if (disable_trim)
199 return ret;
200
Willy Tarreau4138f152023-03-22 15:32:58 +0100201 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 Tarreaueaba76b2023-03-22 14:55:25 +0100224 /* we're typically on glibc and not overridden */
225 ret = _malloc_trim(pad);
226 }
Willy Tarreau4138f152023-03-22 15:32:58 +0100227#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 Tarreaueaba76b2023-03-22 14:55:25 +0100247 return ret;
248}
249
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100250static 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 Tarreau50e608d2007-05-13 18:26:08 +0200263/* 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 Tarreau581bf812016-01-25 02:19:13 +0100265 * 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 Tarreau50e608d2007-05-13 18:26:08 +0200268 */
269struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
270{
Willy Tarreau42705d02022-02-23 10:03:11 +0100271 unsigned int extra_mark, extra_caller, extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200272 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200273 struct pool_head *entry;
274 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200275 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200276 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200277
Willy Tarreauac421112015-10-28 15:09:29 +0100278 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +0200279 * 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 Tarreauac421112015-10-28 15:09:29 +0100282 * This extra (void *) is not accounted for in the size computation
283 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +0200284 *
285 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200286 */
287
Willy Tarreau13d77752022-02-23 10:20:37 +0100288 extra_mark = (pool_debugging & POOL_DBG_TAG) ? POOL_EXTRA_MARK : 0;
Willy Tarreau02718222022-02-23 10:10:33 +0100289 extra_caller = (pool_debugging & POOL_DBG_CALLER) ? POOL_EXTRA_CALLER : 0;
Willy Tarreau42705d02022-02-23 10:03:11 +0100290 extra = extra_mark + extra_caller;
291
Willy Tarreau581bf812016-01-25 02:19:13 +0100292 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +0200293 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau42705d02022-02-23 10:03:11 +0100294 size = ((size + extra + align - 1) & -align) - extra;
Willy Tarreau581bf812016-01-25 02:19:13 +0100295 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200296
Willy Tarreaue9816312022-02-22 16:23:09 +0100297 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 Tarreau42705d02022-02-23 10:03:11 +0100303 if (size + extra - extra_caller < sizeof(struct pool_cache_item))
304 size = sizeof(struct pool_cache_item) + extra_caller - extra;
Willy Tarreaue9816312022-02-22 16:23:09 +0100305 }
306
Christopher Fauletb349e482017-08-29 09:52:38 +0200307 /* TODO: thread: we do not lock pool list for now because all pools are
308 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200309 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200310 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200311
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 Shipitsin47d17182020-06-21 21:42:57 +0500315 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200316 * before which we will insert a new one.
317 */
Willy Tarreaufd8b7372022-02-21 17:31:50 +0100318 if ((flags & entry->flags & MEM_F_SHARED) &&
319 (!(pool_debugging & POOL_DBG_DONT_MERGE) ||
320 strcmp(name, entry->name) == 0)) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200321 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200322 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200323 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200324 break;
325 }
326 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200327 else if (entry->size > size) {
328 /* insert before this one */
329 start = &entry->list;
330 break;
331 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200332 }
333
334 if (!pool) {
Willy Tarreaue81248c2022-03-02 17:59:04 +0100335 void *pool_addr;
Willy Tarreau0a93b642018-10-16 07:58:39 +0200336
Willy Tarreaue81248c2022-03-02 17:59:04 +0100337 pool_addr = calloc(1, sizeof(*pool) + __alignof__(*pool));
338 if (!pool_addr)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200339 return NULL;
Willy Tarreaue81248c2022-03-02 17:59:04 +0100340
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 Tarreau50e608d2007-05-13 18:26:08 +0200345 if (name)
346 strlcpy2(pool->name, name, sizeof(pool->name));
Willy Tarreau42705d02022-02-23 10:03:11 +0100347 pool->alloc_sz = size + extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200348 pool->size = size;
349 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200350 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200351
Willy Tarreaue9816312022-02-22 16:23:09 +0100352 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 Faulet2f6d3c02019-06-25 21:45:59 +0200359 }
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100360 }
361 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200362 return pool;
363}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100364
Willy Tarreau13843642021-04-17 16:57:25 +0200365/* 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 Tarreau8715dec2021-06-10 17:31:48 +0200367 * but no other checks are performed.
Willy Tarreau13843642021-04-17 16:57:25 +0200368 */
369void *pool_get_from_os(struct pool_head *pool)
370{
371 if (!pool->limit || pool->allocated < pool->limit) {
Willy Tarreaua9563662022-12-08 15:30:49 +0100372 void *ptr;
Willy Tarreau9192d202022-12-08 17:47:59 +0100373
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 Tarreau13843642021-04-17 16:57:25 +0200378 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 Tarreau45e4e282021-04-17 17:48:40 +0200389/* Releases a pool item back to the operating system and atomically updates
390 * the allocation counter.
391 */
392void pool_put_to_os(struct pool_head *pool, void *ptr)
393{
Willy Tarreau9192d202022-12-08 17:47:59 +0100394 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 Tarreau45e4e282021-04-17 17:48:40 +0200398 _HA_ATOMIC_DEC(&pool->allocated);
399}
400
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200401/* 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 Tarreau8fe726f2021-04-15 18:20:12 +0200404 */
405void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100406{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100407 void *ptr = NULL;
408
Willy Tarreau13843642021-04-17 16:57:25 +0200409 ptr = pool_get_from_os(pool);
410 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100411 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100412
Willy Tarreau2aa14ce2022-12-19 17:26:25 +0100413 swrate_add_scaled_opportunistic(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200414 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100415
Willy Tarreau0bae0752021-03-02 20:05:09 +0100416 /* keep track of where the element was allocated from */
Willy Tarreau8c492702022-01-01 17:10:50 +0100417 POOL_DEBUG_SET_MARK(pool, ptr);
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100418 POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100419 return ptr;
420}
421
Willy Tarreau45e4e282021-04-17 17:48:40 +0200422/* 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 */
426void pool_free_nocache(struct pool_head *pool, void *ptr)
427{
428 _HA_ATOMIC_DEC(&pool->used);
Willy Tarreau2aa14ce2022-12-19 17:26:25 +0100429 swrate_add_opportunistic(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200430 pool_put_to_os(pool, ptr);
431}
432
Willy Tarreaub8498e92021-04-18 10:23:02 +0200433
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100434/* 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 */
437void 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 */
459void 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 Tarreaua0b58312022-01-02 17:19:14 +0100478/* 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 Tarreaue9816312022-02-22 16:23:09 +0100482 * the local cache. The counters are automatically updated. Must not be used
483 * with pools disabled.
Willy Tarreau87212032021-04-19 08:14:03 +0200484 */
Willy Tarreaua0b58312022-01-02 17:19:14 +0100485static void pool_evict_last_items(struct pool_head *pool, struct pool_cache_head *ph, uint count)
Willy Tarreau87212032021-04-19 08:14:03 +0200486{
Willy Tarreau87212032021-04-19 08:14:03 +0200487 struct pool_cache_item *item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100488 struct pool_item *pi, *head = NULL;
Willy Tarreaua0b58312022-01-02 17:19:14 +0100489 uint released = 0;
Willy Tarreau1513c542022-01-02 17:53:02 +0100490 uint cluster = 0;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100491 uint to_free_max;
492
Willy Tarreaue9816312022-02-22 16:23:09 +0100493 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
494
Willy Tarreaudff3b062022-02-22 09:21:13 +0100495 /* Note: this will be zero when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100496 to_free_max = pool_releasable(pool);
Willy Tarreau87212032021-04-19 08:14:03 +0200497
Willy Tarreaua0b58312022-01-02 17:19:14 +0100498 while (released < count && !LIST_ISEMPTY(&ph->list)) {
Willy Tarreaud5ec1002022-01-02 12:40:14 +0100499 item = LIST_PREV(&ph->list, typeof(item), by_pool);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100500 BUG_ON(&item->by_pool == &ph->list);
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100501 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
502 pool_check_pattern(ph, item, pool->size);
Willy Tarreau2b718102021-04-21 07:32:39 +0200503 LIST_DELETE(&item->by_pool);
504 LIST_DELETE(&item->by_lru);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100505
Willy Tarreau1513c542022-01-02 17:53:02 +0100506 if (to_free_max > released || cluster) {
Willy Tarreaudff3b062022-02-22 09:21:13 +0100507 /* will never match when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100508 pi = (struct pool_item *)item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100509 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 Tarreau361e31e2022-01-02 00:27:06 +0100519 } else
Willy Tarreaub46674a2021-12-30 17:37:33 +0100520 pool_free_nocache(pool, item);
Willy Tarreau1513c542022-01-02 17:53:02 +0100521
522 released++;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100523 }
524
Willy Tarreau1513c542022-01-02 17:53:02 +0100525 /* incomplete cluster left */
526 if (cluster)
527 pool_put_to_shared_cache(pool, head, cluster);
528
Willy Tarreaua0b58312022-01-02 17:19:14 +0100529 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 Tarreauc895c442022-02-09 16:19:24 +0100538 * list is scanned in reverse. If <full> is non-null, all objects are evicted.
Willy Tarreaue9816312022-02-22 16:23:09 +0100539 * Must not be used when pools are disabled.
Willy Tarreaua0b58312022-01-02 17:19:14 +0100540 */
Willy Tarreauc895c442022-02-09 16:19:24 +0100541void pool_evict_from_local_cache(struct pool_head *pool, int full)
Willy Tarreaua0b58312022-01-02 17:19:14 +0100542{
543 struct pool_cache_head *ph = &pool->cache[tid];
544
Willy Tarreaue9816312022-02-22 16:23:09 +0100545 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
546
Willy Tarreauc895c442022-02-09 16:19:24 +0100547 while ((ph->count && full) ||
548 (ph->count >= CONFIG_HAP_POOL_CLUSTER_SIZE &&
549 ph->count >= 16 + pool_cache_count / 8 &&
Willy Tarreau284cfc62022-12-19 08:15:57 +0100550 pool_cache_bytes > global.tune.pool_cache_size * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100551 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreau87212032021-04-19 08:14:03 +0200552 }
553}
554
Willy Tarreaub8498e92021-04-18 10:23:02 +0200555/* Evicts some of the oldest objects from the local cache, pushing them to the
Willy Tarreaue9816312022-02-22 16:23:09 +0100556 * global pool. Must not be used when pools are disabled.
Willy Tarreaub8498e92021-04-18 10:23:02 +0200557 */
558void 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 Tarreaue9816312022-02-22 16:23:09 +0100564 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
565
Willy Tarreaub8498e92021-04-18 10:23:02 +0200566 do {
Willy Tarreaub4e34762021-09-30 19:02:18 +0200567 item = LIST_PREV(&th_ctx->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100568 BUG_ON(&item->by_lru == &th_ctx->pool_lru_head);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200569 /* 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 Tarreau49bb5d42022-02-09 16:33:22 +0100573 BUG_ON(ph->tid != tid);
574
Willy Tarreaub8498e92021-04-18 10:23:02 +0200575 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100576 BUG_ON(pool != ph->pool);
577
Willy Tarreau43937e92022-01-02 17:24:55 +0100578 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreau284cfc62022-12-19 08:15:57 +0100579 } while (pool_cache_bytes > global.tune.pool_cache_size * 7 / 8);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200580}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100581
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200582/* 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 Tarreauadd43fa2022-01-24 15:52:51 +0100585 * guaranteed to be released from the users' perpective. A caller address may
Willy Tarreaue9816312022-02-22 16:23:09 +0100586 * be passed and stored into the area when DEBUG_POOL_TRACING is set. Must not
587 * be used with pools disabled.
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200588 */
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100589void pool_put_to_cache(struct pool_head *pool, void *ptr, const void *caller)
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200590{
591 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
592 struct pool_cache_head *ph = &pool->cache[tid];
593
Willy Tarreaue9816312022-02-22 16:23:09 +0100594 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
595
Willy Tarreau2b718102021-04-21 07:32:39 +0200596 LIST_INSERT(&ph->list, &item->by_pool);
Willy Tarreaub4e34762021-09-30 19:02:18 +0200597 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100598 POOL_DEBUG_TRACE_CALLER(pool, item, caller);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200599 ph->count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100600 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
601 pool_fill_pattern(ph, item, pool->size);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200602 pool_cache_count++;
603 pool_cache_bytes += pool->size;
604
Willy Tarreau284cfc62022-12-19 08:15:57 +0100605 if (unlikely(pool_cache_bytes > global.tune.pool_cache_size * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100606 if (ph->count >= 16 + pool_cache_count / 8 + CONFIG_HAP_POOL_CLUSTER_SIZE)
Willy Tarreauc895c442022-02-09 16:19:24 +0100607 pool_evict_from_local_cache(pool, 0);
Willy Tarreau284cfc62022-12-19 08:15:57 +0100608 if (pool_cache_bytes > global.tune.pool_cache_size)
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200609 pool_evict_from_local_caches();
610 }
611}
612
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100613/* 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 Tarreaue9816312022-02-22 16:23:09 +0100617 * the cache has enough objects for its use. Must not be used when pools are
618 * disabled.
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100619 */
620void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_head *pch)
621{
622 struct pool_cache_item *item;
Willy Tarreau148160b2022-01-02 14:35:57 +0100623 struct pool_item *ret, *down;
624 uint count;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100625
Willy Tarreaue9816312022-02-22 16:23:09 +0100626 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
627
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100628 /* 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 Tarreauc16ed3b2022-01-01 18:22:20 +0100648 HA_ATOMIC_STORE(&pool->free_list, ret->next);
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100649
Willy Tarreau148160b2022-01-02 14:35:57 +0100650 /* now store the retrieved object(s) into the local cache */
651 count = 0;
652 for (; ret; ret = down) {
653 down = ret->down;
Willy Tarreau148160b2022-01-02 14:35:57 +0100654 item = (struct pool_cache_item *)ret;
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100655 POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
Willy Tarreau148160b2022-01-02 14:35:57 +0100656 LIST_INSERT(&pch->list, &item->by_pool);
657 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
658 count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100659 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
660 pool_fill_pattern(pch, item, pool->size);
Willy Tarreau148160b2022-01-02 14:35:57 +0100661 }
662 HA_ATOMIC_ADD(&pool->used, count);
663 pch->count += count;
664 pool_cache_count += count;
665 pool_cache_bytes += count * pool->size;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100666}
667
Willy Tarreau337410c2022-01-02 15:15:54 +0100668/* 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 Tarreaub46674a2021-12-30 17:37:33 +0100672 */
Willy Tarreau337410c2022-01-02 15:15:54 +0100673void pool_put_to_shared_cache(struct pool_head *pool, struct pool_item *item, uint count)
Willy Tarreaub46674a2021-12-30 17:37:33 +0100674{
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100675 struct pool_item *free_list;
Willy Tarreaub46674a2021-12-30 17:37:33 +0100676
Willy Tarreau337410c2022-01-02 15:15:54 +0100677 _HA_ATOMIC_SUB(&pool->used, count);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100678 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 Tarreauc16ed3b2022-01-01 18:22:20 +0100684 _HA_ATOMIC_STORE(&item->next, free_list);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100685 __ha_barrier_atomic_store();
686 } while (!_HA_ATOMIC_CAS(&pool->free_list, &free_list, item));
687 __ha_barrier_atomic_store();
Willy Tarreau2aa14ce2022-12-19 17:26:25 +0100688 swrate_add_opportunistic(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100689}
690
Olivier Houchardcf975d42018-01-24 18:38:31 +0100691/*
692 * This function frees whatever can be freed in pool <pool>.
693 */
694void pool_flush(struct pool_head *pool)
695{
Willy Tarreau148160b2022-01-02 14:35:57 +0100696 struct pool_item *next, *temp, *down;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100697
Willy Tarreaue9816312022-02-22 16:23:09 +0100698 if (!pool || (pool_debugging & (POOL_DBG_NO_CACHE|POOL_DBG_NO_GLOBAL)))
Olivier Houchardcf975d42018-01-24 18:38:31 +0100699 return;
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200700
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;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100705 do {
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200706 while (unlikely(next == POOL_BUSY)) {
707 __ha_cpu_relax();
708 next = _HA_ATOMIC_LOAD(&pool->free_list);
709 }
710 if (next == NULL)
711 return;
712 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
713 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100714 __ha_barrier_atomic_store();
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200715
Olivier Houchardcf975d42018-01-24 18:38:31 +0100716 while (next) {
717 temp = next;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100718 next = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100719 for (; temp; temp = down) {
720 down = temp->down;
721 pool_put_to_os(pool, temp);
722 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100723 }
Willy Tarreauc239cde2021-06-10 06:54:22 +0200724 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100725}
726
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200727/*
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200728 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200729 * the minimum thresholds imposed by owners. It makes sure to be alone to
730 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200731 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100732void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200733{
734 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200735 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200736
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200737 if (!isolated)
738 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200739
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200740 list_for_each_entry(entry, &pools, list) {
Willy Tarreau148160b2022-01-02 14:35:57 +0100741 struct pool_item *temp, *down;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100742
Olivier Houchard51d93392020-03-12 19:05:39 +0100743 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100744 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100745 temp = entry->free_list;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100746 entry->free_list = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100747 for (; temp; temp = down) {
748 down = temp->down;
749 pool_put_to_os(entry, temp);
750 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200751 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200752 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200753
Willy Tarreauea3323f2021-09-15 10:38:21 +0200754 trim_all_pools();
Willy Tarreau26ed1832021-06-10 08:40:16 +0200755
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200756 if (!isolated)
757 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200758}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200759
Willy Tarreau15c322c2022-01-24 11:51:43 +0100760/*
Willy Tarreaud3929732022-01-24 16:09:29 +0100761 * Returns a pointer to type <type> taken from the pool <pool_type> or
762 * dynamically allocated. In the first case, <pool_type> is updated to point to
763 * the next element in the list. <flags> is a binary-OR of POOL_F_* flags.
764 * Prefer using pool_alloc() which does the right thing without flags.
765 */
766void *__pool_alloc(struct pool_head *pool, unsigned int flags)
767{
768 void *p = NULL;
Willy Tarreau02718222022-02-23 10:10:33 +0100769 void *caller = __builtin_return_address(0);
Willy Tarreaud3929732022-01-24 16:09:29 +0100770
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100771 if (unlikely(pool_debugging & POOL_DBG_FAIL_ALLOC))
772 if (!(flags & POOL_F_NO_FAIL) && mem_should_fail(pool))
773 return NULL;
Willy Tarreaud3929732022-01-24 16:09:29 +0100774
Willy Tarreaue9816312022-02-22 16:23:09 +0100775 if (likely(!(pool_debugging & POOL_DBG_NO_CACHE)) && !p)
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100776 p = pool_get_from_cache(pool, caller);
Willy Tarreaue9816312022-02-22 16:23:09 +0100777
Willy Tarreaud3929732022-01-24 16:09:29 +0100778 if (unlikely(!p))
779 p = pool_alloc_nocache(pool);
780
781 if (likely(p)) {
Willy Tarreaufacfad22022-08-17 09:12:53 +0200782#ifdef USE_MEMORY_PROFILING
783 if (unlikely(profiling & HA_PROF_MEMORY)) {
784 struct memprof_stats *bin;
785
786 bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_P_ALLOC);
787 _HA_ATOMIC_ADD(&bin->alloc_calls, 1);
788 _HA_ATOMIC_ADD(&bin->alloc_tot, pool->size);
Willy Tarreau42b180d2022-08-17 09:35:16 +0200789 _HA_ATOMIC_STORE(&bin->info, pool);
Willy Tarreaufacfad22022-08-17 09:12:53 +0200790 }
791#endif
Willy Tarreaud3929732022-01-24 16:09:29 +0100792 if (unlikely(flags & POOL_F_MUST_ZERO))
793 memset(p, 0, pool->size);
Willy Tarreauef301b72022-02-23 14:15:18 +0100794 else if (unlikely(!(flags & POOL_F_NO_POISON) && (pool_debugging & POOL_DBG_POISON)))
Willy Tarreaud3929732022-01-24 16:09:29 +0100795 memset(p, mem_poison_byte, pool->size);
796 }
797 return p;
798}
799
800/*
Willy Tarreau15c322c2022-01-24 11:51:43 +0100801 * Puts a memory area back to the corresponding pool. <ptr> be valid. Using
802 * pool_free() is preferred.
803 */
804void __pool_free(struct pool_head *pool, void *ptr)
805{
Willy Tarreau02718222022-02-23 10:10:33 +0100806 const void *caller = __builtin_return_address(0);
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100807
Willy Tarreau15c322c2022-01-24 11:51:43 +0100808 /* we'll get late corruption if we refill to the wrong pool or double-free */
809 POOL_DEBUG_CHECK_MARK(pool, ptr);
Willy Tarreau27c8da12022-02-09 16:49:16 +0100810 POOL_DEBUG_RESET_MARK(pool, ptr);
Willy Tarreaue9816312022-02-22 16:23:09 +0100811
Willy Tarreaufacfad22022-08-17 09:12:53 +0200812#ifdef USE_MEMORY_PROFILING
813 if (unlikely(profiling & HA_PROF_MEMORY) && ptr) {
814 struct memprof_stats *bin;
815
816 bin = memprof_get_bin(__builtin_return_address(0), MEMPROF_METH_P_FREE);
817 _HA_ATOMIC_ADD(&bin->free_calls, 1);
818 _HA_ATOMIC_ADD(&bin->free_tot, pool->size);
Willy Tarreau42b180d2022-08-17 09:35:16 +0200819 _HA_ATOMIC_STORE(&bin->info, pool);
Willy Tarreaufacfad22022-08-17 09:12:53 +0200820 }
821#endif
822
Willy Tarreau284cfc62022-12-19 08:15:57 +0100823 if (unlikely((pool_debugging & POOL_DBG_NO_CACHE) ||
824 global.tune.pool_cache_size < pool->size)) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100825 pool_free_nocache(pool, ptr);
826 return;
827 }
828
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100829 pool_put_to_cache(pool, ptr, caller);
Willy Tarreau15c322c2022-01-24 11:51:43 +0100830}
831
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200832/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200833 * This function destroys a pool by freeing it completely, unless it's still
834 * in use. This should be called only under extreme circumstances. It always
835 * returns NULL if the resulting pool is empty, easing the clearing of the old
836 * pointer, otherwise it returns the pool.
837 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200838 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100839void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200840{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200841 if (pool) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100842 if (!(pool_debugging & POOL_DBG_NO_CACHE))
843 pool_evict_from_local_cache(pool, 1);
844
Willy Tarreaubafbe012017-11-24 17:34:44 +0100845 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200846 if (pool->used)
847 return pool;
848 pool->users--;
849 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200850 LIST_DELETE(&pool->list);
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200851 /* note that if used == 0, the cache is empty */
Willy Tarreauf9eba782022-03-03 18:31:54 +0100852 free(pool->base_addr);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200853 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200854 }
855 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200856}
857
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100858/* This destroys all pools on exit. It is *not* thread safe. */
859void pool_destroy_all()
860{
861 struct pool_head *entry, *back;
862
Willy Tarreau243e68b2022-04-27 11:33:13 +0200863 list_for_each_entry_safe(entry, back, &pools, list) {
864 /* there's only one occurrence of each pool in the list,
865 * and we're existing instead of looping on the whole
866 * list just to decrement users, force it to 1 here.
867 */
868 entry->users = 1;
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100869 pool_destroy(entry);
Willy Tarreau243e68b2022-04-27 11:33:13 +0200870 }
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100871}
872
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100873/* used by qsort in "show pools" to sort by name */
874static int cmp_dump_pools_name(const void *a, const void *b)
875{
876 const struct pool_dump_info *l = (const struct pool_dump_info *)a;
877 const struct pool_dump_info *r = (const struct pool_dump_info *)b;
878
879 return strcmp(l->entry->name, r->entry->name);
880}
881
882/* used by qsort in "show pools" to sort by item size */
883static int cmp_dump_pools_size(const void *a, const void *b)
884{
885 const struct pool_dump_info *l = (const struct pool_dump_info *)a;
886 const struct pool_dump_info *r = (const struct pool_dump_info *)b;
887
888 if (l->entry->size > r->entry->size)
889 return -1;
890 else if (l->entry->size < r->entry->size)
891 return 1;
892 else
893 return 0;
894}
895
896/* used by qsort in "show pools" to sort by usage */
897static int cmp_dump_pools_usage(const void *a, const void *b)
898{
899 const struct pool_dump_info *l = (const struct pool_dump_info *)a;
900 const struct pool_dump_info *r = (const struct pool_dump_info *)b;
901
902 if (l->alloc_bytes > r->alloc_bytes)
903 return -1;
904 else if (l->alloc_bytes < r->alloc_bytes)
905 return 1;
906 else
907 return 0;
908}
909
Willy Tarreau224adf22022-11-21 09:02:41 +0100910/* will not dump more than this number of entries. Anything beyond this will
911 * likely not fit into a regular output buffer anyway.
912 */
913#define POOLS_MAX_DUMPED_ENTRIES 1024
914
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100915/* This function dumps memory usage information into the trash buffer.
916 * It may sort by a criterion if <by_what> is non-zero, and limit the
Willy Tarreau7583c362022-11-21 10:02:29 +0100917 * number of output lines if <max> is non-zero. It may limit only to
918 * pools whose names start with <pfx> if <pfx> is non-null.
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100919 */
Willy Tarreau7583c362022-11-21 10:02:29 +0100920void dump_pools_to_trash(int by_what, int max, const char *pfx)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200921{
Willy Tarreau224adf22022-11-21 09:02:41 +0100922 struct pool_dump_info pool_info[POOLS_MAX_DUMPED_ENTRIES];
Willy Tarreau50e608d2007-05-13 18:26:08 +0200923 struct pool_head *entry;
Willy Tarreau0c5e9892022-11-17 11:08:03 +0100924 unsigned long long allocated, used;
Willy Tarreau224adf22022-11-21 09:02:41 +0100925 int nbpools, i;
Willy Tarreau0c5e9892022-11-17 11:08:03 +0100926 unsigned long long cached_bytes = 0;
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200927 uint cached = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200928
929 allocated = used = nbpools = 0;
Willy Tarreau224adf22022-11-21 09:02:41 +0100930
Willy Tarreau50e608d2007-05-13 18:26:08 +0200931 list_for_each_entry(entry, &pools, list) {
Willy Tarreau224adf22022-11-21 09:02:41 +0100932 if (nbpools >= POOLS_MAX_DUMPED_ENTRIES)
933 break;
934
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100935 /* do not dump unused entries when sorting by usage */
936 if (by_what == 3 && !entry->allocated)
937 continue;
938
Willy Tarreau7583c362022-11-21 10:02:29 +0100939 /* verify the pool name if a prefix is requested */
940 if (pfx && strncmp(entry->name, pfx, strlen(pfx)) != 0)
941 continue;
942
Willy Tarreaue9816312022-02-22 16:23:09 +0100943 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100944 for (cached = i = 0; i < global.nbthread; i++)
945 cached += entry->cache[i].count;
Willy Tarreaue9816312022-02-22 16:23:09 +0100946 }
Willy Tarreau224adf22022-11-21 09:02:41 +0100947 pool_info[nbpools].entry = entry;
948 pool_info[nbpools].alloc_items = entry->allocated;
949 pool_info[nbpools].alloc_bytes = (ulong)entry->size * entry->allocated;
950 pool_info[nbpools].used_items = entry->used;
951 pool_info[nbpools].cached_items = cached;
952 pool_info[nbpools].need_avg = swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES);
953 pool_info[nbpools].failed_items = entry->failed;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200954 nbpools++;
955 }
Willy Tarreau224adf22022-11-21 09:02:41 +0100956
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100957 if (by_what == 1) /* sort by name */
958 qsort(pool_info, nbpools, sizeof(pool_info[0]), cmp_dump_pools_name);
959 else if (by_what == 2) /* sort by item size */
960 qsort(pool_info, nbpools, sizeof(pool_info[0]), cmp_dump_pools_size);
961 else if (by_what == 3) /* sort by total usage */
962 qsort(pool_info, nbpools, sizeof(pool_info[0]), cmp_dump_pools_usage);
963
Willy Tarreau224adf22022-11-21 09:02:41 +0100964 chunk_printf(&trash, "Dumping pools usage");
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100965 if (!max || max >= POOLS_MAX_DUMPED_ENTRIES)
966 max = POOLS_MAX_DUMPED_ENTRIES;
967 if (nbpools >= max)
968 chunk_appendf(&trash, " (limited to the first %u entries)", max);
Willy Tarreau224adf22022-11-21 09:02:41 +0100969 chunk_appendf(&trash, ". Use SIGQUIT to flush them.\n");
970
Willy Tarreau2fba08f2022-11-21 09:34:02 +0100971 for (i = 0; i < nbpools && i < max; i++) {
Willy Tarreau224adf22022-11-21 09:02:41 +0100972 chunk_appendf(&trash, " - Pool %s (%lu bytes) : %lu allocated (%lu bytes), %lu used"
973 " (~%lu by thread caches)"
974 ", needed_avg %lu, %lu failures, %u users, @%p%s\n",
975 pool_info[i].entry->name, (ulong)pool_info[i].entry->size,
976 pool_info[i].alloc_items, pool_info[i].alloc_bytes,
977 pool_info[i].used_items, pool_info[i].cached_items,
978 pool_info[i].need_avg, pool_info[i].failed_items,
979 pool_info[i].entry->users, pool_info[i].entry,
980 (pool_info[i].entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
981
982 cached_bytes += pool_info[i].cached_items * (ulong)pool_info[i].entry->size;
983 allocated += pool_info[i].alloc_items * (ulong)pool_info[i].entry->size;
984 used += pool_info[i].used_items * (ulong)pool_info[i].entry->size;
985 }
986
Willy Tarreau0c5e9892022-11-17 11:08:03 +0100987 chunk_appendf(&trash, "Total: %d pools, %llu bytes allocated, %llu used"
988 " (~%llu by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200989 ".\n",
Willy Tarreaue9816312022-02-22 16:23:09 +0100990 nbpools, allocated, used, cached_bytes
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200991 );
Willy Tarreau50e608d2007-05-13 18:26:08 +0200992}
993
Willy Tarreau12833bb2014-01-28 16:49:56 +0100994/* Dump statistics on pools usage. */
995void dump_pools(void)
996{
Willy Tarreau7583c362022-11-21 10:02:29 +0100997 dump_pools_to_trash(0, 0, NULL);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200998 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100999}
1000
Willy Tarreau58102cf2015-10-28 16:24:21 +01001001/* This function returns the total number of failed pool allocations */
1002int pool_total_failures()
1003{
1004 struct pool_head *entry;
1005 int failed = 0;
1006
1007 list_for_each_entry(entry, &pools, list)
1008 failed += entry->failed;
1009 return failed;
1010}
1011
1012/* This function returns the total amount of memory allocated in pools (in bytes) */
Christopher Fauletc960a3b2022-12-22 11:05:48 +01001013unsigned long long pool_total_allocated()
Willy Tarreau58102cf2015-10-28 16:24:21 +01001014{
1015 struct pool_head *entry;
Christopher Fauletc960a3b2022-12-22 11:05:48 +01001016 unsigned long long allocated = 0;
Willy Tarreau58102cf2015-10-28 16:24:21 +01001017
1018 list_for_each_entry(entry, &pools, list)
Christopher Fauletc960a3b2022-12-22 11:05:48 +01001019 allocated += entry->allocated * (ullong)entry->size;
Willy Tarreau58102cf2015-10-28 16:24:21 +01001020 return allocated;
1021}
1022
1023/* This function returns the total amount of memory used in pools (in bytes) */
Christopher Fauletc960a3b2022-12-22 11:05:48 +01001024unsigned long long pool_total_used()
Willy Tarreau58102cf2015-10-28 16:24:21 +01001025{
1026 struct pool_head *entry;
Christopher Fauletc960a3b2022-12-22 11:05:48 +01001027 unsigned long long used = 0;
Willy Tarreau58102cf2015-10-28 16:24:21 +01001028
1029 list_for_each_entry(entry, &pools, list)
Christopher Fauletc960a3b2022-12-22 11:05:48 +01001030 used += entry->used * (ullong)entry->size;
Willy Tarreau58102cf2015-10-28 16:24:21 +01001031 return used;
1032}
1033
Willy Tarreau1408b1f2022-02-18 18:54:40 +01001034/* This function parses a string made of a set of debugging features as
1035 * specified after -dM on the command line, and will set pool_debugging
1036 * accordingly. On success it returns a strictly positive value. It may zero
1037 * with the first warning in <err>, -1 with a help message in <err>, or -2 with
1038 * the first error in <err> return the first error in <err>. <err> is undefined
1039 * on success, and will be non-null and locally allocated on help/error/warning.
1040 * The caller must free it. Warnings are used to report features that were not
1041 * enabled at build time, and errors are used to report unknown features.
1042 */
1043int pool_parse_debugging(const char *str, char **err)
1044{
Willy Tarreauf4b79c42022-02-23 15:20:53 +01001045 struct ist args;
Willy Tarreau1408b1f2022-02-18 18:54:40 +01001046 char *end;
Willy Tarreauf4b79c42022-02-23 15:20:53 +01001047 uint new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +01001048 int v;
1049
1050
1051 /* if it's empty or starts with a number, it's the mem poisonning byte */
1052 v = strtol(str, &end, 0);
1053 if (!*end || *end == ',') {
1054 mem_poison_byte = *str ? v : 'P';
1055 if (mem_poison_byte >= 0)
1056 pool_debugging |= POOL_DBG_POISON;
1057 else
1058 pool_debugging &= ~POOL_DBG_POISON;
1059 str = end;
1060 }
Willy Tarreauf4b79c42022-02-23 15:20:53 +01001061
1062 new_dbg = pool_debugging;
1063
1064 for (args = ist(str); istlen(args); args = istadv(istfind(args, ','), 1)) {
1065 struct ist feat = iststop(args, ',');
1066
1067 if (!istlen(feat))
1068 continue;
1069
1070 if (isteq(feat, ist("help"))) {
1071 ha_free(err);
1072 memprintf(err,
1073 "-dM alone enables memory poisonning with byte 0x50 on allocation. A numeric\n"
1074 "value may be appended immediately after -dM to use another value (0 supported).\n"
1075 "Then an optional list of comma-delimited keywords may be appended to set or\n"
1076 "clear some debugging options ('*' marks the current setting):\n\n"
1077 " set clear description\n"
1078 " -----------------+-----------------+-----------------------------------------\n");
1079
1080 for (v = 0; dbg_options[v].flg; v++) {
1081 memprintf(err, "%s %c %-15s|%c %-15s| %s\n",
1082 *err,
1083 (pool_debugging & dbg_options[v].flg) ? '*' : ' ',
1084 dbg_options[v].set,
1085 (pool_debugging & dbg_options[v].flg) ? ' ' : '*',
1086 dbg_options[v].clr,
1087 dbg_options[v].hlp);
1088 }
Willy Tarreaub6349872022-12-08 18:42:51 +01001089
1090 memprintf(err,
1091 "%s -----------------+-----------------+-----------------------------------------\n"
1092 "Examples:\n"
1093 " Disable merging and enable poisonning with byte 'P': -dM0x50,no-merge\n"
1094 " Randomly fail allocations: -dMfail\n"
1095 " Detect out-of-bound corruptions: -dMno-merge,tag\n"
1096 " Detect post-free cache corruptions: -dMno-merge,cold-first,integrity,caller\n"
1097 " Detect all cache corruptions: -dMno-merge,cold-first,integrity,tag,caller\n"
Willy Tarreau9192d202022-12-08 17:47:59 +01001098 " Detect UAF (disables cache, very slow): -dMuaf\n"
1099 " Detect post-cache UAF: -dMuaf,cache,no-merge,cold-first,integrity,tag,caller\n"
Willy Tarreaub6349872022-12-08 18:42:51 +01001100 " Detect post-free cache corruptions: -dMno-merge,cold-first,integrity,caller\n",
1101 *err);
Willy Tarreauf4b79c42022-02-23 15:20:53 +01001102 return -1;
1103 }
1104
1105 for (v = 0; dbg_options[v].flg; v++) {
1106 if (isteq(feat, ist(dbg_options[v].set))) {
1107 new_dbg |= dbg_options[v].flg;
Willy Tarreau9192d202022-12-08 17:47:59 +01001108 /* UAF implicitly disables caching, but it's
1109 * still possible to forcefully re-enable it.
1110 */
1111 if (dbg_options[v].flg == POOL_DBG_UAF)
1112 new_dbg |= POOL_DBG_NO_CACHE;
Willy Tarreau0c4348c2023-03-21 09:24:53 +01001113 /* fail should preset the tune.fail-alloc ratio to 1% */
1114 if (dbg_options[v].flg == POOL_DBG_FAIL_ALLOC)
1115 mem_fail_rate = 1;
Willy Tarreauf4b79c42022-02-23 15:20:53 +01001116 break;
1117 }
1118 else if (isteq(feat, ist(dbg_options[v].clr))) {
1119 new_dbg &= ~dbg_options[v].flg;
Willy Tarreau0c4348c2023-03-21 09:24:53 +01001120 /* no-fail should reset the tune.fail-alloc ratio */
1121 if (dbg_options[v].flg == POOL_DBG_FAIL_ALLOC)
1122 mem_fail_rate = 0;
Willy Tarreauf4b79c42022-02-23 15:20:53 +01001123 break;
1124 }
1125 }
1126
1127 if (!dbg_options[v].flg) {
1128 memprintf(err, "unknown pool debugging feature <%.*s>", (int)istlen(feat), istptr(feat));
1129 return -2;
1130 }
1131 }
1132
1133 pool_debugging = new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +01001134 return 1;
1135}
1136
Willy Tarreau2fba08f2022-11-21 09:34:02 +01001137/* parse a "show pools" command. It returns 1 on failure, 0 if it starts to dump. */
1138static int cli_parse_show_pools(char **args, char *payload, struct appctx *appctx, void *private)
1139{
1140 struct show_pools_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1141 int arg;
1142
1143 for (arg = 2; *args[arg]; arg++) {
1144 if (strcmp(args[arg], "byname") == 0) {
1145 ctx->by_what = 1; // sort output by name
1146 }
1147 else if (strcmp(args[arg], "bysize") == 0) {
1148 ctx->by_what = 2; // sort output by item size
1149 }
1150 else if (strcmp(args[arg], "byusage") == 0) {
1151 ctx->by_what = 3; // sort output by total allocated size
1152 }
Willy Tarreau7583c362022-11-21 10:02:29 +01001153 else if (strcmp(args[arg], "match") == 0 && *args[arg+1]) {
1154 ctx->prefix = strdup(args[arg+1]); // only pools starting with this
1155 arg++;
1156 }
Willy Tarreau2fba08f2022-11-21 09:34:02 +01001157 else if (isdigit((unsigned char)*args[arg])) {
1158 ctx->maxcnt = atoi(args[arg]); // number of entries to dump
1159 }
1160 else
Willy Tarreau7583c362022-11-21 10:02:29 +01001161 return cli_err(appctx, "Expects either 'byname', 'bysize', 'byusage', 'match <pfx>', or a max number of output lines.\n");
Willy Tarreau2fba08f2022-11-21 09:34:02 +01001162 }
1163 return 0;
1164}
1165
Willy Tarreau7583c362022-11-21 10:02:29 +01001166/* release the "show pools" context */
1167static void cli_release_show_pools(struct appctx *appctx)
1168{
1169 struct show_pools_ctx *ctx = appctx->svcctx;
1170
1171 ha_free(&ctx->prefix);
1172}
1173
Willy Tarreau4596fe22022-05-17 19:07:51 +02001174/* This function dumps memory usage information onto the stream connector's
William Lallemande7ed8852016-11-19 02:25:36 +01001175 * read buffer. It returns 0 as long as it does not complete, non-zero upon
1176 * completion. No state is used.
1177 */
1178static int cli_io_handler_dump_pools(struct appctx *appctx)
1179{
Willy Tarreau2fba08f2022-11-21 09:34:02 +01001180 struct show_pools_ctx *ctx = appctx->svcctx;
1181
Willy Tarreau7583c362022-11-21 10:02:29 +01001182 dump_pools_to_trash(ctx->by_what, ctx->maxcnt, ctx->prefix);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001183 if (applet_putchk(appctx, &trash) == -1)
William Lallemande7ed8852016-11-19 02:25:36 +01001184 return 0;
William Lallemande7ed8852016-11-19 02:25:36 +01001185 return 1;
1186}
1187
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001188/* callback used to create early pool <name> of size <size> and store the
1189 * resulting pointer into <ptr>. If the allocation fails, it quits with after
1190 * emitting an error message.
1191 */
1192void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
1193{
1194 *ptr = create_pool(name, size, MEM_F_SHARED);
1195 if (!*ptr) {
1196 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
1197 name, size, strerror(errno));
1198 exit(1);
1199 }
1200}
1201
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001202/* Initializes all per-thread arrays on startup */
1203static void init_pools()
1204{
Willy Tarreau9f3129e2021-04-17 00:31:38 +02001205 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001206
1207 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreaub4e34762021-09-30 19:02:18 +02001208 LIST_INIT(&ha_thread_ctx[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001209 }
Willy Tarreaue9816312022-02-22 16:23:09 +01001210
Willy Tarreau157e3932021-09-15 10:05:48 +02001211 detect_allocator();
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001212}
1213
1214INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001215
Willy Tarreau845b5602021-09-15 10:41:24 +02001216/* Report in build options if trim is supported */
1217static void pools_register_build_options(void)
1218{
Willy Tarreau1751db12023-03-22 18:01:41 +01001219 if (!using_default_allocator) {
Willy Tarreau845b5602021-09-15 10:41:24 +02001220 char *ptr = NULL;
Willy Tarreau1751db12023-03-22 18:01:41 +01001221 memprintf(&ptr, "Running with a replaced memory allocator (e.g. via LD_PRELOAD).");
Willy Tarreau845b5602021-09-15 10:41:24 +02001222 hap_register_build_opts(ptr, 1);
Willy Tarreau1751db12023-03-22 18:01:41 +01001223 mark_tainted(TAINTED_REPLACED_MEM_ALLOCATOR);
Willy Tarreau845b5602021-09-15 10:41:24 +02001224 }
1225}
1226INITCALL0(STG_REGISTER, pools_register_build_options);
1227
William Lallemande7ed8852016-11-19 02:25:36 +01001228/* register cli keywords */
1229static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau7583c362022-11-21 10:02:29 +01001230 { { "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 Lallemande7ed8852016-11-19 02:25:36 +01001231 {{},}
1232}};
1233
Willy Tarreau0108d902018-11-25 19:14:37 +01001234INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +01001235
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001236
1237/* config parser for global "tune.fail-alloc" */
1238static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +01001239 const struct proxy *defpx, const char *file, int line,
1240 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001241{
1242 if (too_many_args(1, args, err, NULL))
1243 return -1;
1244 mem_fail_rate = atoi(args[1]);
1245 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
1246 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
1247 return -1;
1248 }
1249 return 0;
1250}
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001251
Willy Tarreau284cfc62022-12-19 08:15:57 +01001252/* config parser for global "tune.memory.hot-size" */
1253static int mem_parse_global_hot_size(char **args, int section_type, struct proxy *curpx,
1254 const struct proxy *defpx, const char *file, int line,
1255 char **err)
1256{
1257 long size;
1258
1259 if (too_many_args(1, args, err, NULL))
1260 return -1;
1261
1262 size = atol(args[1]);
1263 if (size <= 0) {
1264 memprintf(err, "'%s' expects a strictly positive value.", args[0]);
1265 return -1;
1266 }
1267
1268 global.tune.pool_cache_size = size;
1269 return 0;
1270}
1271
Willy Tarreauc4e56dc2022-03-08 10:41:40 +01001272/* config parser for global "no-memory-trimming" */
1273static int mem_parse_global_no_mem_trim(char **args, int section_type, struct proxy *curpx,
1274 const struct proxy *defpx, const char *file, int line,
1275 char **err)
1276{
1277 if (too_many_args(0, args, err, NULL))
1278 return -1;
1279 disable_trim = 1;
1280 return 0;
1281}
1282
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001283/* register global config keywords */
1284static struct cfg_kw_list mem_cfg_kws = {ILH, {
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001285 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
Willy Tarreau284cfc62022-12-19 08:15:57 +01001286 { CFG_GLOBAL, "tune.memory.hot-size", mem_parse_global_hot_size },
Willy Tarreauc4e56dc2022-03-08 10:41:40 +01001287 { CFG_GLOBAL, "no-memory-trimming", mem_parse_global_no_mem_trim },
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001288 { 0, NULL, NULL }
1289}};
1290
1291INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
1292
Willy Tarreau50e608d2007-05-13 18:26:08 +02001293/*
1294 * Local variables:
1295 * c-indent-level: 8
1296 * c-basic-offset: 8
1297 * End:
1298 */