blob: b3520d744f156a324638bcc040bdbf171fcbc7e2 [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
13#include <sys/mman.h>
Willy Tarreau7107c8b2018-11-26 11:44:35 +010014#include <errno.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020015
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020016#include <haproxy/activity.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020017#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020018#include <haproxy/applet-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020019#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020020#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020021#include <haproxy/cli.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020022#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020023#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020024#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/pool.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020026#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020027#include <haproxy/stream_interface.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020029#include <haproxy/tools.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020030
Willy Tarreau50e608d2007-05-13 18:26:08 +020031
Willy Tarreau7f0165e2018-11-26 17:09:46 +010032/* These ones are initialized per-thread on startup by init_pools() */
Willy Tarreaue18db9e2018-10-16 10:28:54 +020033THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
34THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
35
Willy Tarreau9f699952022-02-18 18:31:53 +010036static struct list pools __read_mostly = LIST_HEAD_INIT(pools);
Willy Tarreauef301b72022-02-23 14:15:18 +010037int mem_poison_byte __read_mostly = 'P';
Willy Tarreau8d0273e2022-02-21 17:16:22 +010038uint pool_debugging __read_mostly = /* set of POOL_DBG_* flags */
Olivier Houcharddc21ff72019-01-29 15:20:16 +010039#ifdef DEBUG_FAIL_ALLOC
Willy Tarreau8d0273e2022-02-21 17:16:22 +010040 POOL_DBG_FAIL_ALLOC |
Olivier Houcharddc21ff72019-01-29 15:20:16 +010041#endif
Willy Tarreaufd8b7372022-02-21 17:31:50 +010042#ifdef DEBUG_DONT_SHARE_POOLS
43 POOL_DBG_DONT_MERGE |
44#endif
Willy Tarreaud3470e12022-02-21 18:30:25 +010045#ifdef DEBUG_POOL_INTEGRITY
46 POOL_DBG_COLD_FIRST |
47#endif
Willy Tarreau6f3c7f62022-02-21 18:42:53 +010048#ifdef DEBUG_POOL_INTEGRITY
49 POOL_DBG_INTEGRITY |
50#endif
Willy Tarreaudff3b062022-02-22 09:21:13 +010051#ifdef CONFIG_HAP_NO_GLOBAL_POOLS
52 POOL_DBG_NO_GLOBAL |
53#endif
Willy Tarreaue9816312022-02-22 16:23:09 +010054#ifndef CONFIG_HAP_POOLS
55 POOL_DBG_NO_CACHE |
56#endif
Willy Tarreau02718222022-02-23 10:10:33 +010057#if defined(DEBUG_POOL_TRACING)
58 POOL_DBG_CALLER |
59#endif
Willy Tarreau13d77752022-02-23 10:20:37 +010060#if defined(DEBUG_MEMORY_POOLS)
61 POOL_DBG_TAG |
62#endif
Willy Tarreau8d0273e2022-02-21 17:16:22 +010063 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +010064
Willy Tarreauf4b79c42022-02-23 15:20:53 +010065static const struct {
66 uint flg;
67 const char *set;
68 const char *clr;
69 const char *hlp;
70} dbg_options[] = {
71 /* flg, set, clr, hlp */
72 { POOL_DBG_FAIL_ALLOC, "fail", "no-fail", "randomly fail allocations" },
73 { POOL_DBG_DONT_MERGE, "no-merge", "merge", "disable merging of similar pools" },
74 { POOL_DBG_COLD_FIRST, "cold-first", "hot-first", "pick cold objects first" },
75 { POOL_DBG_INTEGRITY, "integrity", "no-integrity", "enable cache integrity checks" },
76 { POOL_DBG_NO_GLOBAL, "no-global", "global", "disable global shared cache" },
77 { POOL_DBG_NO_CACHE, "no-cache", "cache", "disable thread-local cache" },
78 { POOL_DBG_CALLER, "caller", "no-caller", "save caller information in cache" },
79 { POOL_DBG_TAG, "tag", "no-tag", "add tag at end of allocated objects" },
80 { POOL_DBG_POISON, "poison", "no-poison", "poison newly allocated objects" },
81 { 0 /* end */ }
82};
83
Willy Tarreau8d0273e2022-02-21 17:16:22 +010084static int mem_fail_rate __read_mostly = 0;
Willy Tarreau9f699952022-02-18 18:31:53 +010085static int using_default_allocator __read_mostly = 1;
David Carliered232142021-11-25 16:09:45 +000086static int(*my_mallctl)(const char *, void *, size_t *, void *, size_t) = NULL;
Willy Tarreau157e3932021-09-15 10:05:48 +020087
Willy Tarreau0d93a812021-12-23 09:26:30 +010088/* ask the allocator to trim memory pools.
89 * This must run under thread isolation so that competing threads trying to
90 * allocate or release memory do not prevent the allocator from completing
91 * its job. We just have to be careful as callers might already be isolated
92 * themselves.
93 */
Willy Tarreauea3323f2021-09-15 10:38:21 +020094static void trim_all_pools(void)
95{
Willy Tarreau0d93a812021-12-23 09:26:30 +010096 int isolated = thread_isolated();
97
98 if (!isolated)
99 thread_isolate();
100
David Carlierd450ff62021-11-25 16:14:38 +0000101 if (my_mallctl) {
102 unsigned int i, narenas = 0;
103 size_t len = sizeof(narenas);
104
105 if (my_mallctl("arenas.narenas", &narenas, &len, NULL, 0) == 0) {
106 for (i = 0; i < narenas; i ++) {
107 char mib[32] = {0};
108 snprintf(mib, sizeof(mib), "arena.%u.purge", i);
109 (void)my_mallctl(mib, NULL, NULL, NULL, 0);
110 }
111 }
112 } else {
David Carliered232142021-11-25 16:09:45 +0000113#if defined(HA_HAVE_MALLOC_TRIM)
David Carlierd450ff62021-11-25 16:14:38 +0000114 if (using_default_allocator)
115 malloc_trim(0);
David CARLIERb1e190a2021-11-26 20:44:44 +0000116#elif defined(HA_HAVE_MALLOC_ZONE)
117 if (using_default_allocator) {
118 vm_address_t *zones;
119 unsigned int i, nzones;
120
121 if (malloc_get_all_zones(0, NULL, &zones, &nzones) == KERN_SUCCESS) {
122 for (i = 0; i < nzones; i ++) {
123 malloc_zone_t *zone = (malloc_zone_t *)zones[i];
124
125 /* we cannot purge anonymous zones */
126 if (zone->zone_name)
127 malloc_zone_pressure_relief(zone, 0);
128 }
129 }
130 }
David Carliered232142021-11-25 16:09:45 +0000131#endif
David Carlierd450ff62021-11-25 16:14:38 +0000132 }
Willy Tarreau0d93a812021-12-23 09:26:30 +0100133
134 if (!isolated)
135 thread_release();
Willy Tarreauea3323f2021-09-15 10:38:21 +0200136}
137
Willy Tarreau157e3932021-09-15 10:05:48 +0200138/* check if we're using the same allocator as the one that provides
139 * malloc_trim() and mallinfo(). The principle is that on glibc, both
140 * malloc_trim() and mallinfo() are provided, and using mallinfo() we
141 * can check if malloc() is performed through glibc or any other one
David Carliered232142021-11-25 16:09:45 +0000142 * the executable was linked against (e.g. jemalloc). Prior to this we
143 * have to check whether we're running on jemalloc by verifying if the
144 * mallctl() function is provided. Its pointer will be used later.
Willy Tarreau157e3932021-09-15 10:05:48 +0200145 */
146static void detect_allocator(void)
147{
Willy Tarreau781f07a2021-11-26 15:55:55 +0100148#if defined(__ELF__)
David Carliered232142021-11-25 16:09:45 +0000149 extern int mallctl(const char *, void *, size_t *, void *, size_t) __attribute__((weak));
150
151 my_mallctl = mallctl;
Willy Tarreau781f07a2021-11-26 15:55:55 +0100152#endif
David Carliered232142021-11-25 16:09:45 +0000153
154 if (!my_mallctl) {
155 my_mallctl = get_sym_curr_addr("mallctl");
156 using_default_allocator = (my_mallctl == NULL);
157 }
158
159 if (!my_mallctl) {
160#if defined(HA_HAVE_MALLOC_TRIM)
Willy 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 Tarreau845b5602021-09-15 10:41:24 +0200186}
187
188static int is_trim_enabled(void)
189{
David Carliered232142021-11-25 16:09:45 +0000190 return using_default_allocator;
Willy Tarreau157e3932021-09-15 10:05:48 +0200191}
Willy Tarreauea3323f2021-09-15 10:38:21 +0200192
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100193static int mem_should_fail(const struct pool_head *pool)
194{
195 int ret = 0;
196
197 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
198 if (mem_fail_rate > statistical_prng_range(100))
199 ret = 1;
200 else
201 ret = 0;
202 }
203 return ret;
204}
205
Willy Tarreau50e608d2007-05-13 18:26:08 +0200206/* Try to find an existing shared pool with the same characteristics and
207 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +0100208 * is available for a new creation. Two flags are supported :
209 * - MEM_F_SHARED to indicate that the pool may be shared with other users
210 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +0200211 */
212struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
213{
Willy Tarreau42705d02022-02-23 10:03:11 +0100214 unsigned int extra_mark, extra_caller, extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200215 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200216 struct pool_head *entry;
217 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200218 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200219 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200220
Willy Tarreauac421112015-10-28 15:09:29 +0100221 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +0200222 * that the malloc() function will never return such a small size,
223 * let's round the size up to something slightly bigger, in order to
224 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +0100225 * This extra (void *) is not accounted for in the size computation
226 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +0200227 *
228 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200229 */
230
Willy Tarreau13d77752022-02-23 10:20:37 +0100231 extra_mark = (pool_debugging & POOL_DBG_TAG) ? POOL_EXTRA_MARK : 0;
Willy Tarreau02718222022-02-23 10:10:33 +0100232 extra_caller = (pool_debugging & POOL_DBG_CALLER) ? POOL_EXTRA_CALLER : 0;
Willy Tarreau42705d02022-02-23 10:03:11 +0100233 extra = extra_mark + extra_caller;
234
Willy Tarreau581bf812016-01-25 02:19:13 +0100235 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +0200236 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau42705d02022-02-23 10:03:11 +0100237 size = ((size + extra + align - 1) & -align) - extra;
Willy Tarreau581bf812016-01-25 02:19:13 +0100238 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200239
Willy Tarreaue9816312022-02-22 16:23:09 +0100240 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
241 /* we'll store two lists there, we need the room for this. This is
242 * guaranteed by the test above, except if MEM_F_EXACT is set, or if
243 * the only EXTRA part is in fact the one that's stored in the cache
244 * in addition to the pci struct.
245 */
Willy Tarreau42705d02022-02-23 10:03:11 +0100246 if (size + extra - extra_caller < sizeof(struct pool_cache_item))
247 size = sizeof(struct pool_cache_item) + extra_caller - extra;
Willy Tarreaue9816312022-02-22 16:23:09 +0100248 }
249
Christopher Fauletb349e482017-08-29 09:52:38 +0200250 /* TODO: thread: we do not lock pool list for now because all pools are
251 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200252 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200253 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200254
255 list_for_each_entry(entry, &pools, list) {
256 if (entry->size == size) {
257 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500258 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200259 * before which we will insert a new one.
260 */
Willy Tarreaufd8b7372022-02-21 17:31:50 +0100261 if ((flags & entry->flags & MEM_F_SHARED) &&
262 (!(pool_debugging & POOL_DBG_DONT_MERGE) ||
263 strcmp(name, entry->name) == 0)) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200264 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200265 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200266 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200267 break;
268 }
269 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200270 else if (entry->size > size) {
271 /* insert before this one */
272 start = &entry->list;
273 break;
274 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200275 }
276
277 if (!pool) {
Willy Tarreaue81248c2022-03-02 17:59:04 +0100278 void *pool_addr;
Willy Tarreau0a93b642018-10-16 07:58:39 +0200279
Willy Tarreaue81248c2022-03-02 17:59:04 +0100280 pool_addr = calloc(1, sizeof(*pool) + __alignof__(*pool));
281 if (!pool_addr)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200282 return NULL;
Willy Tarreaue81248c2022-03-02 17:59:04 +0100283
284 /* always provide an aligned pool */
285 pool = (struct pool_head*)((((size_t)pool_addr) + __alignof__(*pool)) & -(size_t)__alignof__(*pool));
286 pool->base_addr = pool_addr; // keep it, it's the address to free later
287
Willy Tarreau50e608d2007-05-13 18:26:08 +0200288 if (name)
289 strlcpy2(pool->name, name, sizeof(pool->name));
Willy Tarreau42705d02022-02-23 10:03:11 +0100290 pool->alloc_sz = size + extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200291 pool->size = size;
292 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200293 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200294
Willy Tarreaue9816312022-02-22 16:23:09 +0100295 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
296 /* update per-thread pool cache if necessary */
297 for (thr = 0; thr < MAX_THREADS; thr++) {
298 LIST_INIT(&pool->cache[thr].list);
299 pool->cache[thr].tid = thr;
300 pool->cache[thr].pool = pool;
301 }
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200302 }
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100303 }
304 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200305 return pool;
306}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100307
Willy Tarreau13843642021-04-17 16:57:25 +0200308/* Tries to allocate an object for the pool <pool> using the system's allocator
309 * and directly returns it. The pool's allocated counter is checked and updated,
Willy Tarreau8715dec2021-06-10 17:31:48 +0200310 * but no other checks are performed.
Willy Tarreau13843642021-04-17 16:57:25 +0200311 */
312void *pool_get_from_os(struct pool_head *pool)
313{
314 if (!pool->limit || pool->allocated < pool->limit) {
Willy Tarreau96d5bc72022-02-23 08:57:59 +0100315 void *ptr = pool_alloc_area(pool->alloc_sz);
Willy Tarreau13843642021-04-17 16:57:25 +0200316 if (ptr) {
317 _HA_ATOMIC_INC(&pool->allocated);
318 return ptr;
319 }
320 _HA_ATOMIC_INC(&pool->failed);
321 }
322 activity[tid].pool_fail++;
323 return NULL;
324
325}
326
Willy Tarreau45e4e282021-04-17 17:48:40 +0200327/* Releases a pool item back to the operating system and atomically updates
328 * the allocation counter.
329 */
330void pool_put_to_os(struct pool_head *pool, void *ptr)
331{
Willy Tarreau9a7aa3b2021-06-10 17:20:19 +0200332#ifdef DEBUG_UAF
333 /* This object will be released for real in order to detect a use after
334 * free. We also force a write to the area to ensure we crash on double
335 * free or free of a const area.
336 */
337 *(uint32_t *)ptr = 0xDEADADD4;
338#endif /* DEBUG_UAF */
339
Willy Tarreau96d5bc72022-02-23 08:57:59 +0100340 pool_free_area(ptr, pool->alloc_sz);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200341 _HA_ATOMIC_DEC(&pool->allocated);
342}
343
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200344/* Tries to allocate an object for the pool <pool> using the system's allocator
345 * and directly returns it. The pool's counters are updated but the object is
346 * never cached, so this is usable with and without local or shared caches.
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200347 */
348void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100349{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100350 void *ptr = NULL;
351
Willy Tarreau13843642021-04-17 16:57:25 +0200352 ptr = pool_get_from_os(pool);
353 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100354 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100355
Willy Tarreau13843642021-04-17 16:57:25 +0200356 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200357 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100358
Willy Tarreau0bae0752021-03-02 20:05:09 +0100359 /* keep track of where the element was allocated from */
Willy Tarreau8c492702022-01-01 17:10:50 +0100360 POOL_DEBUG_SET_MARK(pool, ptr);
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100361 POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100362 return ptr;
363}
364
Willy Tarreau45e4e282021-04-17 17:48:40 +0200365/* Release a pool item back to the OS and keeps the pool's counters up to date.
366 * This is always defined even when pools are not enabled (their usage stats
367 * are maintained).
368 */
369void pool_free_nocache(struct pool_head *pool, void *ptr)
370{
371 _HA_ATOMIC_DEC(&pool->used);
372 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
373 pool_put_to_os(pool, ptr);
374}
375
Willy Tarreaub8498e92021-04-18 10:23:02 +0200376
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100377/* Updates <pch>'s fill_pattern and fills the free area after <item> with it,
378 * up to <size> bytes. The item part is left untouched.
379 */
380void pool_fill_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size)
381{
382 ulong *ptr = (ulong *)item;
383 uint ofs;
384 ulong u;
385
386 if (size <= sizeof(*item))
387 return;
388
389 /* Upgrade the fill_pattern to change about half of the bits
390 * (to be sure to catch static flag corruption), and apply it.
391 */
392 u = pch->fill_pattern += ~0UL / 3; // 0x55...55
393 ofs = sizeof(*item) / sizeof(*ptr);
394 while (ofs < size / sizeof(*ptr))
395 ptr[ofs++] = u;
396}
397
398/* check for a pool_cache_item integrity after extracting it from the cache. It
399 * must have been previously initialized using pool_fill_pattern(). If any
400 * corruption is detected, the function provokes an immediate crash.
401 */
402void pool_check_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size)
403{
404 const ulong *ptr = (const ulong *)item;
405 uint ofs;
406 ulong u;
407
408 if (size <= sizeof(*item))
409 return;
410
411 /* let's check that all words past *item are equal */
412 ofs = sizeof(*item) / sizeof(*ptr);
413 u = ptr[ofs++];
414 while (ofs < size / sizeof(*ptr)) {
415 if (unlikely(ptr[ofs] != u))
416 ABORT_NOW();
417 ofs++;
418 }
419}
420
Willy Tarreaua0b58312022-01-02 17:19:14 +0100421/* removes up to <count> items from the end of the local pool cache <ph> for
422 * pool <pool>. The shared pool is refilled with these objects in the limit
423 * of the number of acceptable objects, and the rest will be released to the
424 * OS. It is not a problem is <count> is larger than the number of objects in
Willy Tarreaue9816312022-02-22 16:23:09 +0100425 * the local cache. The counters are automatically updated. Must not be used
426 * with pools disabled.
Willy Tarreau87212032021-04-19 08:14:03 +0200427 */
Willy Tarreaua0b58312022-01-02 17:19:14 +0100428static void pool_evict_last_items(struct pool_head *pool, struct pool_cache_head *ph, uint count)
Willy Tarreau87212032021-04-19 08:14:03 +0200429{
Willy Tarreau87212032021-04-19 08:14:03 +0200430 struct pool_cache_item *item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100431 struct pool_item *pi, *head = NULL;
Willy Tarreaua0b58312022-01-02 17:19:14 +0100432 uint released = 0;
Willy Tarreau1513c542022-01-02 17:53:02 +0100433 uint cluster = 0;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100434 uint to_free_max;
435
Willy Tarreaue9816312022-02-22 16:23:09 +0100436 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
437
Willy Tarreaudff3b062022-02-22 09:21:13 +0100438 /* Note: this will be zero when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100439 to_free_max = pool_releasable(pool);
Willy Tarreau87212032021-04-19 08:14:03 +0200440
Willy Tarreaua0b58312022-01-02 17:19:14 +0100441 while (released < count && !LIST_ISEMPTY(&ph->list)) {
Willy Tarreaud5ec1002022-01-02 12:40:14 +0100442 item = LIST_PREV(&ph->list, typeof(item), by_pool);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100443 BUG_ON(&item->by_pool == &ph->list);
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100444 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
445 pool_check_pattern(ph, item, pool->size);
Willy Tarreau2b718102021-04-21 07:32:39 +0200446 LIST_DELETE(&item->by_pool);
447 LIST_DELETE(&item->by_lru);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100448
Willy Tarreau1513c542022-01-02 17:53:02 +0100449 if (to_free_max > released || cluster) {
Willy Tarreaudff3b062022-02-22 09:21:13 +0100450 /* will never match when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100451 pi = (struct pool_item *)item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100452 pi->next = NULL;
453 pi->down = head;
454 head = pi;
455 cluster++;
456 if (cluster >= CONFIG_HAP_POOL_CLUSTER_SIZE) {
457 /* enough to make a cluster */
458 pool_put_to_shared_cache(pool, head, cluster);
459 cluster = 0;
460 head = NULL;
461 }
Willy Tarreau361e31e2022-01-02 00:27:06 +0100462 } else
Willy Tarreaub46674a2021-12-30 17:37:33 +0100463 pool_free_nocache(pool, item);
Willy Tarreau1513c542022-01-02 17:53:02 +0100464
465 released++;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100466 }
467
Willy Tarreau1513c542022-01-02 17:53:02 +0100468 /* incomplete cluster left */
469 if (cluster)
470 pool_put_to_shared_cache(pool, head, cluster);
471
Willy Tarreaua0b58312022-01-02 17:19:14 +0100472 ph->count -= released;
473 pool_cache_count -= released;
474 pool_cache_bytes -= released * pool->size;
475}
476
477/* Evicts some of the oldest objects from one local cache, until its number of
478 * objects is no more than 16+1/8 of the total number of locally cached objects
479 * or the total size of the local cache is no more than 75% of its maximum (i.e.
480 * we don't want a single cache to use all the cache for itself). For this, the
Willy Tarreauc895c442022-02-09 16:19:24 +0100481 * list is scanned in reverse. If <full> is non-null, all objects are evicted.
Willy Tarreaue9816312022-02-22 16:23:09 +0100482 * Must not be used when pools are disabled.
Willy Tarreaua0b58312022-01-02 17:19:14 +0100483 */
Willy Tarreauc895c442022-02-09 16:19:24 +0100484void pool_evict_from_local_cache(struct pool_head *pool, int full)
Willy Tarreaua0b58312022-01-02 17:19:14 +0100485{
486 struct pool_cache_head *ph = &pool->cache[tid];
487
Willy Tarreaue9816312022-02-22 16:23:09 +0100488 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
489
Willy Tarreauc895c442022-02-09 16:19:24 +0100490 while ((ph->count && full) ||
491 (ph->count >= CONFIG_HAP_POOL_CLUSTER_SIZE &&
492 ph->count >= 16 + pool_cache_count / 8 &&
493 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100494 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreau87212032021-04-19 08:14:03 +0200495 }
496}
497
Willy Tarreaub8498e92021-04-18 10:23:02 +0200498/* Evicts some of the oldest objects from the local cache, pushing them to the
Willy Tarreaue9816312022-02-22 16:23:09 +0100499 * global pool. Must not be used when pools are disabled.
Willy Tarreaub8498e92021-04-18 10:23:02 +0200500 */
501void pool_evict_from_local_caches()
502{
503 struct pool_cache_item *item;
504 struct pool_cache_head *ph;
505 struct pool_head *pool;
506
Willy Tarreaue9816312022-02-22 16:23:09 +0100507 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
508
Willy Tarreaub8498e92021-04-18 10:23:02 +0200509 do {
Willy Tarreaub4e34762021-09-30 19:02:18 +0200510 item = LIST_PREV(&th_ctx->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100511 BUG_ON(&item->by_lru == &th_ctx->pool_lru_head);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200512 /* note: by definition we remove oldest objects so they also are the
513 * oldest in their own pools, thus their next is the pool's head.
514 */
515 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100516 BUG_ON(ph->tid != tid);
517
Willy Tarreaub8498e92021-04-18 10:23:02 +0200518 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100519 BUG_ON(pool != ph->pool);
520
Willy Tarreau43937e92022-01-02 17:24:55 +0100521 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200522 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
523}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100524
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200525/* Frees an object to the local cache, possibly pushing oldest objects to the
526 * shared cache, which itself may decide to release some of them to the OS.
527 * While it is unspecified what the object becomes past this point, it is
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100528 * guaranteed to be released from the users' perpective. A caller address may
Willy Tarreaue9816312022-02-22 16:23:09 +0100529 * be passed and stored into the area when DEBUG_POOL_TRACING is set. Must not
530 * be used with pools disabled.
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200531 */
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100532void pool_put_to_cache(struct pool_head *pool, void *ptr, const void *caller)
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200533{
534 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
535 struct pool_cache_head *ph = &pool->cache[tid];
536
Willy Tarreaue9816312022-02-22 16:23:09 +0100537 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
538
Willy Tarreau2b718102021-04-21 07:32:39 +0200539 LIST_INSERT(&ph->list, &item->by_pool);
Willy Tarreaub4e34762021-09-30 19:02:18 +0200540 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100541 POOL_DEBUG_TRACE_CALLER(pool, item, caller);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200542 ph->count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100543 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
544 pool_fill_pattern(ph, item, pool->size);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200545 pool_cache_count++;
546 pool_cache_bytes += pool->size;
547
548 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100549 if (ph->count >= 16 + pool_cache_count / 8 + CONFIG_HAP_POOL_CLUSTER_SIZE)
Willy Tarreauc895c442022-02-09 16:19:24 +0100550 pool_evict_from_local_cache(pool, 0);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200551 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
552 pool_evict_from_local_caches();
553 }
554}
555
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100556/* Tries to refill the local cache <pch> from the shared one for pool <pool>.
557 * This is only used when pools are in use and shared pools are enabled. No
558 * malloc() is attempted, and poisonning is never performed. The purpose is to
559 * get the fastest possible refilling so that the caller can easily check if
Willy Tarreaue9816312022-02-22 16:23:09 +0100560 * the cache has enough objects for its use. Must not be used when pools are
561 * disabled.
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100562 */
563void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_head *pch)
564{
565 struct pool_cache_item *item;
Willy Tarreau148160b2022-01-02 14:35:57 +0100566 struct pool_item *ret, *down;
567 uint count;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100568
Willy Tarreaue9816312022-02-22 16:23:09 +0100569 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
570
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100571 /* we'll need to reference the first element to figure the next one. We
572 * must temporarily lock it so that nobody allocates then releases it,
573 * or the dereference could fail.
574 */
575 ret = _HA_ATOMIC_LOAD(&pool->free_list);
576 do {
577 while (unlikely(ret == POOL_BUSY)) {
578 __ha_cpu_relax();
579 ret = _HA_ATOMIC_LOAD(&pool->free_list);
580 }
581 if (ret == NULL)
582 return;
583 } while (unlikely((ret = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
584
585 if (unlikely(ret == NULL)) {
586 HA_ATOMIC_STORE(&pool->free_list, NULL);
587 return;
588 }
589
590 /* this releases the lock */
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100591 HA_ATOMIC_STORE(&pool->free_list, ret->next);
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100592
Willy Tarreau148160b2022-01-02 14:35:57 +0100593 /* now store the retrieved object(s) into the local cache */
594 count = 0;
595 for (; ret; ret = down) {
596 down = ret->down;
Willy Tarreau148160b2022-01-02 14:35:57 +0100597 item = (struct pool_cache_item *)ret;
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100598 POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
Willy Tarreau148160b2022-01-02 14:35:57 +0100599 LIST_INSERT(&pch->list, &item->by_pool);
600 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
601 count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100602 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
603 pool_fill_pattern(pch, item, pool->size);
Willy Tarreau148160b2022-01-02 14:35:57 +0100604 }
605 HA_ATOMIC_ADD(&pool->used, count);
606 pch->count += count;
607 pool_cache_count += count;
608 pool_cache_bytes += count * pool->size;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100609}
610
Willy Tarreau337410c2022-01-02 15:15:54 +0100611/* Adds pool item cluster <item> to the shared cache, which contains <count>
612 * elements. The caller is advised to first check using pool_releasable() if
613 * it's wise to add this series of objects there. Both the pool and the item's
614 * head must be valid.
Willy Tarreaub46674a2021-12-30 17:37:33 +0100615 */
Willy Tarreau337410c2022-01-02 15:15:54 +0100616void pool_put_to_shared_cache(struct pool_head *pool, struct pool_item *item, uint count)
Willy Tarreaub46674a2021-12-30 17:37:33 +0100617{
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100618 struct pool_item *free_list;
Willy Tarreaub46674a2021-12-30 17:37:33 +0100619
Willy Tarreau337410c2022-01-02 15:15:54 +0100620 _HA_ATOMIC_SUB(&pool->used, count);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100621 free_list = _HA_ATOMIC_LOAD(&pool->free_list);
622 do {
623 while (unlikely(free_list == POOL_BUSY)) {
624 __ha_cpu_relax();
625 free_list = _HA_ATOMIC_LOAD(&pool->free_list);
626 }
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100627 _HA_ATOMIC_STORE(&item->next, free_list);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100628 __ha_barrier_atomic_store();
629 } while (!_HA_ATOMIC_CAS(&pool->free_list, &free_list, item));
630 __ha_barrier_atomic_store();
631 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
632}
633
Olivier Houchardcf975d42018-01-24 18:38:31 +0100634/*
635 * This function frees whatever can be freed in pool <pool>.
636 */
637void pool_flush(struct pool_head *pool)
638{
Willy Tarreau148160b2022-01-02 14:35:57 +0100639 struct pool_item *next, *temp, *down;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100640
Willy Tarreaue9816312022-02-22 16:23:09 +0100641 if (!pool || (pool_debugging & (POOL_DBG_NO_CACHE|POOL_DBG_NO_GLOBAL)))
Olivier Houchardcf975d42018-01-24 18:38:31 +0100642 return;
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200643
644 /* The loop below atomically detaches the head of the free list and
645 * replaces it with a NULL. Then the list can be released.
646 */
647 next = pool->free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100648 do {
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200649 while (unlikely(next == POOL_BUSY)) {
650 __ha_cpu_relax();
651 next = _HA_ATOMIC_LOAD(&pool->free_list);
652 }
653 if (next == NULL)
654 return;
655 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
656 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100657 __ha_barrier_atomic_store();
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200658
Olivier Houchardcf975d42018-01-24 18:38:31 +0100659 while (next) {
660 temp = next;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100661 next = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100662 for (; temp; temp = down) {
663 down = temp->down;
664 pool_put_to_os(pool, temp);
665 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100666 }
Willy Tarreauc239cde2021-06-10 06:54:22 +0200667 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100668}
669
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200670/*
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200671 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200672 * the minimum thresholds imposed by owners. It makes sure to be alone to
673 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200674 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100675void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200676{
677 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200678 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200679
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200680 if (!isolated)
681 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200682
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200683 list_for_each_entry(entry, &pools, list) {
Willy Tarreau148160b2022-01-02 14:35:57 +0100684 struct pool_item *temp, *down;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100685
Olivier Houchard51d93392020-03-12 19:05:39 +0100686 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100687 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100688 temp = entry->free_list;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100689 entry->free_list = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100690 for (; temp; temp = down) {
691 down = temp->down;
692 pool_put_to_os(entry, temp);
693 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200694 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200695 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200696
Willy Tarreauea3323f2021-09-15 10:38:21 +0200697 trim_all_pools();
Willy Tarreau26ed1832021-06-10 08:40:16 +0200698
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200699 if (!isolated)
700 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200701}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200702
Willy Tarreau15c322c2022-01-24 11:51:43 +0100703/*
Willy Tarreaud3929732022-01-24 16:09:29 +0100704 * Returns a pointer to type <type> taken from the pool <pool_type> or
705 * dynamically allocated. In the first case, <pool_type> is updated to point to
706 * the next element in the list. <flags> is a binary-OR of POOL_F_* flags.
707 * Prefer using pool_alloc() which does the right thing without flags.
708 */
709void *__pool_alloc(struct pool_head *pool, unsigned int flags)
710{
711 void *p = NULL;
Willy Tarreau02718222022-02-23 10:10:33 +0100712 void *caller = __builtin_return_address(0);
Willy Tarreaud3929732022-01-24 16:09:29 +0100713
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100714 if (unlikely(pool_debugging & POOL_DBG_FAIL_ALLOC))
715 if (!(flags & POOL_F_NO_FAIL) && mem_should_fail(pool))
716 return NULL;
Willy Tarreaud3929732022-01-24 16:09:29 +0100717
Willy Tarreaue9816312022-02-22 16:23:09 +0100718 if (likely(!(pool_debugging & POOL_DBG_NO_CACHE)) && !p)
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100719 p = pool_get_from_cache(pool, caller);
Willy Tarreaue9816312022-02-22 16:23:09 +0100720
Willy Tarreaud3929732022-01-24 16:09:29 +0100721 if (unlikely(!p))
722 p = pool_alloc_nocache(pool);
723
724 if (likely(p)) {
725 if (unlikely(flags & POOL_F_MUST_ZERO))
726 memset(p, 0, pool->size);
Willy Tarreauef301b72022-02-23 14:15:18 +0100727 else if (unlikely(!(flags & POOL_F_NO_POISON) && (pool_debugging & POOL_DBG_POISON)))
Willy Tarreaud3929732022-01-24 16:09:29 +0100728 memset(p, mem_poison_byte, pool->size);
729 }
730 return p;
731}
732
733/*
Willy Tarreau15c322c2022-01-24 11:51:43 +0100734 * Puts a memory area back to the corresponding pool. <ptr> be valid. Using
735 * pool_free() is preferred.
736 */
737void __pool_free(struct pool_head *pool, void *ptr)
738{
Willy Tarreau02718222022-02-23 10:10:33 +0100739 const void *caller = __builtin_return_address(0);
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100740
Willy Tarreau15c322c2022-01-24 11:51:43 +0100741 /* we'll get late corruption if we refill to the wrong pool or double-free */
742 POOL_DEBUG_CHECK_MARK(pool, ptr);
Willy Tarreau27c8da12022-02-09 16:49:16 +0100743 POOL_DEBUG_RESET_MARK(pool, ptr);
Willy Tarreaue9816312022-02-22 16:23:09 +0100744
745 if (unlikely(pool_debugging & POOL_DBG_NO_CACHE)) {
746 pool_free_nocache(pool, ptr);
747 return;
748 }
749
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100750 pool_put_to_cache(pool, ptr, caller);
Willy Tarreau15c322c2022-01-24 11:51:43 +0100751}
752
Willy Tarreauf14d1902021-10-05 18:14:11 +0200753
754#ifdef DEBUG_UAF
755
756/************* use-after-free allocator *************/
757
758/* allocates an area of size <size> and returns it. The semantics are similar
759 * to those of malloc(). However the allocation is rounded up to 4kB so that a
760 * full page is allocated. This ensures the object can be freed alone so that
761 * future dereferences are easily detected. The returned object is always
762 * 16-bytes aligned to avoid issues with unaligned structure objects. In case
763 * some padding is added, the area's start address is copied at the end of the
764 * padding to help detect underflows.
765 */
766void *pool_alloc_area_uaf(size_t size)
767{
768 size_t pad = (4096 - size) & 0xFF0;
Willy Tarreauf14d1902021-10-05 18:14:11 +0200769 void *ret;
770
Willy Tarreauf14d1902021-10-05 18:14:11 +0200771 ret = mmap(NULL, (size + 4095) & -4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
772 if (ret != MAP_FAILED) {
773 /* let's dereference the page before returning so that the real
774 * allocation in the system is performed without holding the lock.
775 */
776 *(int *)ret = 0;
777 if (pad >= sizeof(void *))
778 *(void **)(ret + pad - sizeof(void *)) = ret + pad;
779 ret += pad;
780 } else {
781 ret = NULL;
782 }
Willy Tarreauf14d1902021-10-05 18:14:11 +0200783 return ret;
784}
785
786/* frees an area <area> of size <size> allocated by pool_alloc_area(). The
787 * semantics are identical to free() except that the size must absolutely match
788 * the one passed to pool_alloc_area(). In case some padding is added, the
789 * area's start address is compared to the one at the end of the padding, and
790 * a segfault is triggered if they don't match, indicating an underflow.
791 */
792void pool_free_area_uaf(void *area, size_t size)
793{
794 size_t pad = (4096 - size) & 0xFF0;
795
796 if (pad >= sizeof(void *) && *(void **)(area - sizeof(void *)) != area)
797 ABORT_NOW();
798
Willy Tarreauf14d1902021-10-05 18:14:11 +0200799 munmap(area - pad, (size + 4095) & -4096);
Willy Tarreauf14d1902021-10-05 18:14:11 +0200800}
801
802#endif /* DEBUG_UAF */
803
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200804/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200805 * This function destroys a pool by freeing it completely, unless it's still
806 * in use. This should be called only under extreme circumstances. It always
807 * returns NULL if the resulting pool is empty, easing the clearing of the old
808 * pointer, otherwise it returns the pool.
809 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200810 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100811void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200812{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200813 if (pool) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100814 if (!(pool_debugging & POOL_DBG_NO_CACHE))
815 pool_evict_from_local_cache(pool, 1);
816
Willy Tarreaubafbe012017-11-24 17:34:44 +0100817 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200818 if (pool->used)
819 return pool;
820 pool->users--;
821 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200822 LIST_DELETE(&pool->list);
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200823 /* note that if used == 0, the cache is empty */
Willy Tarreauf9eba782022-03-03 18:31:54 +0100824 free(pool->base_addr);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200825 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200826 }
827 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200828}
829
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100830/* This destroys all pools on exit. It is *not* thread safe. */
831void pool_destroy_all()
832{
833 struct pool_head *entry, *back;
834
835 list_for_each_entry_safe(entry, back, &pools, list)
836 pool_destroy(entry);
837}
838
Willy Tarreau12833bb2014-01-28 16:49:56 +0100839/* This function dumps memory usage information into the trash buffer. */
840void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200841{
842 struct pool_head *entry;
843 unsigned long allocated, used;
844 int nbpools;
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200845 unsigned long cached_bytes = 0;
846 uint cached = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200847
848 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100849 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200850 list_for_each_entry(entry, &pools, list) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100851 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
852 int i;
853 for (cached = i = 0; i < global.nbthread; i++)
854 cached += entry->cache[i].count;
855 cached_bytes += cached * entry->size;
856 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200857 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200858 " (~%u by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200859 ", needed_avg %u, %u failures, %u users, @%p%s\n",
860 entry->name, entry->size, entry->allocated,
861 entry->size * entry->allocated, entry->used,
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200862 cached,
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200863 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
864 entry->users, entry,
865 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200866
867 allocated += entry->allocated * entry->size;
868 used += entry->used * entry->size;
869 nbpools++;
870 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200871 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200872 " (~%lu by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200873 ".\n",
Willy Tarreaue9816312022-02-22 16:23:09 +0100874 nbpools, allocated, used, cached_bytes
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200875 );
Willy Tarreau50e608d2007-05-13 18:26:08 +0200876}
877
Willy Tarreau12833bb2014-01-28 16:49:56 +0100878/* Dump statistics on pools usage. */
879void dump_pools(void)
880{
881 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200882 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100883}
884
Willy Tarreau58102cf2015-10-28 16:24:21 +0100885/* This function returns the total number of failed pool allocations */
886int pool_total_failures()
887{
888 struct pool_head *entry;
889 int failed = 0;
890
891 list_for_each_entry(entry, &pools, list)
892 failed += entry->failed;
893 return failed;
894}
895
896/* This function returns the total amount of memory allocated in pools (in bytes) */
897unsigned long pool_total_allocated()
898{
899 struct pool_head *entry;
900 unsigned long allocated = 0;
901
902 list_for_each_entry(entry, &pools, list)
903 allocated += entry->allocated * entry->size;
904 return allocated;
905}
906
907/* This function returns the total amount of memory used in pools (in bytes) */
908unsigned long pool_total_used()
909{
910 struct pool_head *entry;
911 unsigned long used = 0;
912
913 list_for_each_entry(entry, &pools, list)
914 used += entry->used * entry->size;
915 return used;
916}
917
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100918/* This function parses a string made of a set of debugging features as
919 * specified after -dM on the command line, and will set pool_debugging
920 * accordingly. On success it returns a strictly positive value. It may zero
921 * with the first warning in <err>, -1 with a help message in <err>, or -2 with
922 * the first error in <err> return the first error in <err>. <err> is undefined
923 * on success, and will be non-null and locally allocated on help/error/warning.
924 * The caller must free it. Warnings are used to report features that were not
925 * enabled at build time, and errors are used to report unknown features.
926 */
927int pool_parse_debugging(const char *str, char **err)
928{
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100929 struct ist args;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100930 char *end;
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100931 uint new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100932 int v;
933
934
935 /* if it's empty or starts with a number, it's the mem poisonning byte */
936 v = strtol(str, &end, 0);
937 if (!*end || *end == ',') {
938 mem_poison_byte = *str ? v : 'P';
939 if (mem_poison_byte >= 0)
940 pool_debugging |= POOL_DBG_POISON;
941 else
942 pool_debugging &= ~POOL_DBG_POISON;
943 str = end;
944 }
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100945
946 new_dbg = pool_debugging;
947
948 for (args = ist(str); istlen(args); args = istadv(istfind(args, ','), 1)) {
949 struct ist feat = iststop(args, ',');
950
951 if (!istlen(feat))
952 continue;
953
954 if (isteq(feat, ist("help"))) {
955 ha_free(err);
956 memprintf(err,
957 "-dM alone enables memory poisonning with byte 0x50 on allocation. A numeric\n"
958 "value may be appended immediately after -dM to use another value (0 supported).\n"
959 "Then an optional list of comma-delimited keywords may be appended to set or\n"
960 "clear some debugging options ('*' marks the current setting):\n\n"
961 " set clear description\n"
962 " -----------------+-----------------+-----------------------------------------\n");
963
964 for (v = 0; dbg_options[v].flg; v++) {
965 memprintf(err, "%s %c %-15s|%c %-15s| %s\n",
966 *err,
967 (pool_debugging & dbg_options[v].flg) ? '*' : ' ',
968 dbg_options[v].set,
969 (pool_debugging & dbg_options[v].flg) ? ' ' : '*',
970 dbg_options[v].clr,
971 dbg_options[v].hlp);
972 }
973 return -1;
974 }
975
976 for (v = 0; dbg_options[v].flg; v++) {
977 if (isteq(feat, ist(dbg_options[v].set))) {
978 new_dbg |= dbg_options[v].flg;
979 break;
980 }
981 else if (isteq(feat, ist(dbg_options[v].clr))) {
982 new_dbg &= ~dbg_options[v].flg;
983 break;
984 }
985 }
986
987 if (!dbg_options[v].flg) {
988 memprintf(err, "unknown pool debugging feature <%.*s>", (int)istlen(feat), istptr(feat));
989 return -2;
990 }
991 }
992
993 pool_debugging = new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100994 return 1;
995}
996
William Lallemande7ed8852016-11-19 02:25:36 +0100997/* This function dumps memory usage information onto the stream interface's
998 * read buffer. It returns 0 as long as it does not complete, non-zero upon
999 * completion. No state is used.
1000 */
1001static int cli_io_handler_dump_pools(struct appctx *appctx)
1002{
Christopher Faulet86e1c332021-12-20 17:09:39 +01001003 struct stream_interface *si = cs_si(appctx->owner);
William Lallemande7ed8852016-11-19 02:25:36 +01001004
1005 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +02001006 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001007 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +01001008 return 0;
1009 }
1010 return 1;
1011}
1012
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001013/* callback used to create early pool <name> of size <size> and store the
1014 * resulting pointer into <ptr>. If the allocation fails, it quits with after
1015 * emitting an error message.
1016 */
1017void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
1018{
1019 *ptr = create_pool(name, size, MEM_F_SHARED);
1020 if (!*ptr) {
1021 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
1022 name, size, strerror(errno));
1023 exit(1);
1024 }
1025}
1026
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001027/* Initializes all per-thread arrays on startup */
1028static void init_pools()
1029{
Willy Tarreau9f3129e2021-04-17 00:31:38 +02001030 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001031
1032 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreaub4e34762021-09-30 19:02:18 +02001033 LIST_INIT(&ha_thread_ctx[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001034 }
Willy Tarreaue9816312022-02-22 16:23:09 +01001035
Willy Tarreau157e3932021-09-15 10:05:48 +02001036 detect_allocator();
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001037}
1038
1039INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001040
Willy Tarreau845b5602021-09-15 10:41:24 +02001041/* Report in build options if trim is supported */
1042static void pools_register_build_options(void)
1043{
1044 if (is_trim_enabled()) {
1045 char *ptr = NULL;
1046 memprintf(&ptr, "Support for malloc_trim() is enabled.");
1047 hap_register_build_opts(ptr, 1);
1048 }
1049}
1050INITCALL0(STG_REGISTER, pools_register_build_options);
1051
William Lallemande7ed8852016-11-19 02:25:36 +01001052/* register cli keywords */
1053static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001054 { { "show", "pools", NULL }, "show pools : report information about the memory pools usage", NULL, cli_io_handler_dump_pools },
William Lallemande7ed8852016-11-19 02:25:36 +01001055 {{},}
1056}};
1057
Willy Tarreau0108d902018-11-25 19:14:37 +01001058INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +01001059
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001060
1061/* config parser for global "tune.fail-alloc" */
1062static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +01001063 const struct proxy *defpx, const char *file, int line,
1064 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001065{
1066 if (too_many_args(1, args, err, NULL))
1067 return -1;
1068 mem_fail_rate = atoi(args[1]);
1069 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
1070 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
1071 return -1;
1072 }
1073 return 0;
1074}
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001075
1076/* register global config keywords */
1077static struct cfg_kw_list mem_cfg_kws = {ILH, {
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001078 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001079 { 0, NULL, NULL }
1080}};
1081
1082INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
1083
Willy Tarreau50e608d2007-05-13 18:26:08 +02001084/*
1085 * Local variables:
1086 * c-indent-level: 8
1087 * c-basic-offset: 8
1088 * End:
1089 */