blob: fe10badbd875401a7bd520e97f5c04c2d7ee30e4 [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;
Willy Tarreauc4e56dc2022-03-08 10:41:40 +010086static int disable_trim __read_mostly = 0;
David Carliered232142021-11-25 16:09:45 +000087static int(*my_mallctl)(const char *, void *, size_t *, void *, size_t) = NULL;
Willy Tarreau157e3932021-09-15 10:05:48 +020088
Willy Tarreau0d93a812021-12-23 09:26:30 +010089/* ask the allocator to trim memory pools.
90 * This must run under thread isolation so that competing threads trying to
91 * allocate or release memory do not prevent the allocator from completing
92 * its job. We just have to be careful as callers might already be isolated
93 * themselves.
94 */
Willy Tarreauea3323f2021-09-15 10:38:21 +020095static void trim_all_pools(void)
96{
Willy Tarreau0d93a812021-12-23 09:26:30 +010097 int isolated = thread_isolated();
98
Willy Tarreauc4e56dc2022-03-08 10:41:40 +010099 if (disable_trim)
100 return;
101
Willy Tarreau0d93a812021-12-23 09:26:30 +0100102 if (!isolated)
103 thread_isolate();
104
David Carlierd450ff62021-11-25 16:14:38 +0000105 if (my_mallctl) {
106 unsigned int i, narenas = 0;
107 size_t len = sizeof(narenas);
108
109 if (my_mallctl("arenas.narenas", &narenas, &len, NULL, 0) == 0) {
110 for (i = 0; i < narenas; i ++) {
111 char mib[32] = {0};
112 snprintf(mib, sizeof(mib), "arena.%u.purge", i);
113 (void)my_mallctl(mib, NULL, NULL, NULL, 0);
114 }
115 }
116 } else {
David Carliered232142021-11-25 16:09:45 +0000117#if defined(HA_HAVE_MALLOC_TRIM)
David Carlierd450ff62021-11-25 16:14:38 +0000118 if (using_default_allocator)
119 malloc_trim(0);
David CARLIERb1e190a2021-11-26 20:44:44 +0000120#elif defined(HA_HAVE_MALLOC_ZONE)
121 if (using_default_allocator) {
122 vm_address_t *zones;
123 unsigned int i, nzones;
124
125 if (malloc_get_all_zones(0, NULL, &zones, &nzones) == KERN_SUCCESS) {
126 for (i = 0; i < nzones; i ++) {
127 malloc_zone_t *zone = (malloc_zone_t *)zones[i];
128
129 /* we cannot purge anonymous zones */
130 if (zone->zone_name)
131 malloc_zone_pressure_relief(zone, 0);
132 }
133 }
134 }
David Carliered232142021-11-25 16:09:45 +0000135#endif
David Carlierd450ff62021-11-25 16:14:38 +0000136 }
Willy Tarreau0d93a812021-12-23 09:26:30 +0100137
138 if (!isolated)
139 thread_release();
Willy Tarreauea3323f2021-09-15 10:38:21 +0200140}
141
Willy Tarreau157e3932021-09-15 10:05:48 +0200142/* check if we're using the same allocator as the one that provides
143 * malloc_trim() and mallinfo(). The principle is that on glibc, both
144 * malloc_trim() and mallinfo() are provided, and using mallinfo() we
145 * can check if malloc() is performed through glibc or any other one
David Carliered232142021-11-25 16:09:45 +0000146 * the executable was linked against (e.g. jemalloc). Prior to this we
147 * have to check whether we're running on jemalloc by verifying if the
148 * mallctl() function is provided. Its pointer will be used later.
Willy Tarreau157e3932021-09-15 10:05:48 +0200149 */
150static void detect_allocator(void)
151{
Willy Tarreau781f07a2021-11-26 15:55:55 +0100152#if defined(__ELF__)
David Carliered232142021-11-25 16:09:45 +0000153 extern int mallctl(const char *, void *, size_t *, void *, size_t) __attribute__((weak));
154
155 my_mallctl = mallctl;
Willy Tarreau781f07a2021-11-26 15:55:55 +0100156#endif
David Carliered232142021-11-25 16:09:45 +0000157
158 if (!my_mallctl) {
159 my_mallctl = get_sym_curr_addr("mallctl");
160 using_default_allocator = (my_mallctl == NULL);
161 }
162
163 if (!my_mallctl) {
164#if defined(HA_HAVE_MALLOC_TRIM)
Willy Tarreauc2afb862021-09-16 09:18:21 +0200165#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000166 struct mallinfo2 mi1, mi2;
Willy Tarreauc2afb862021-09-16 09:18:21 +0200167#else
David Carliered232142021-11-25 16:09:45 +0000168 struct mallinfo mi1, mi2;
Willy Tarreauc2afb862021-09-16 09:18:21 +0200169#endif
David Carliered232142021-11-25 16:09:45 +0000170 void *ptr;
Willy Tarreau157e3932021-09-15 10:05:48 +0200171
Willy Tarreauc2afb862021-09-16 09:18:21 +0200172#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000173 mi1 = mallinfo2();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200174#else
David Carliered232142021-11-25 16:09:45 +0000175 mi1 = mallinfo();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200176#endif
David Carliered232142021-11-25 16:09:45 +0000177 ptr = DISGUISE(malloc(1));
Willy Tarreauc2afb862021-09-16 09:18:21 +0200178#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000179 mi2 = mallinfo2();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200180#else
David Carliered232142021-11-25 16:09:45 +0000181 mi2 = mallinfo();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200182#endif
David Carliered232142021-11-25 16:09:45 +0000183 free(DISGUISE(ptr));
Willy Tarreauea3323f2021-09-15 10:38:21 +0200184
David Carliered232142021-11-25 16:09:45 +0000185 using_default_allocator = !!memcmp(&mi1, &mi2, sizeof(mi1));
David CARLIERb1e190a2021-11-26 20:44:44 +0000186#elif defined(HA_HAVE_MALLOC_ZONE)
187 using_default_allocator = (malloc_default_zone() != NULL);
David Carliered232142021-11-25 16:09:45 +0000188#endif
189 }
Willy Tarreau845b5602021-09-15 10:41:24 +0200190}
191
192static int is_trim_enabled(void)
193{
David Carliered232142021-11-25 16:09:45 +0000194 return using_default_allocator;
Willy Tarreau157e3932021-09-15 10:05:48 +0200195}
Willy Tarreauea3323f2021-09-15 10:38:21 +0200196
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100197static int mem_should_fail(const struct pool_head *pool)
198{
199 int ret = 0;
200
201 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
202 if (mem_fail_rate > statistical_prng_range(100))
203 ret = 1;
204 else
205 ret = 0;
206 }
207 return ret;
208}
209
Willy Tarreau50e608d2007-05-13 18:26:08 +0200210/* Try to find an existing shared pool with the same characteristics and
211 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +0100212 * is available for a new creation. Two flags are supported :
213 * - MEM_F_SHARED to indicate that the pool may be shared with other users
214 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +0200215 */
216struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
217{
Willy Tarreau42705d02022-02-23 10:03:11 +0100218 unsigned int extra_mark, extra_caller, extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200219 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200220 struct pool_head *entry;
221 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200222 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200223 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200224
Willy Tarreauac421112015-10-28 15:09:29 +0100225 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +0200226 * that the malloc() function will never return such a small size,
227 * let's round the size up to something slightly bigger, in order to
228 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +0100229 * This extra (void *) is not accounted for in the size computation
230 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +0200231 *
232 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200233 */
234
Willy Tarreau13d77752022-02-23 10:20:37 +0100235 extra_mark = (pool_debugging & POOL_DBG_TAG) ? POOL_EXTRA_MARK : 0;
Willy Tarreau02718222022-02-23 10:10:33 +0100236 extra_caller = (pool_debugging & POOL_DBG_CALLER) ? POOL_EXTRA_CALLER : 0;
Willy Tarreau42705d02022-02-23 10:03:11 +0100237 extra = extra_mark + extra_caller;
238
Willy Tarreau581bf812016-01-25 02:19:13 +0100239 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +0200240 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau42705d02022-02-23 10:03:11 +0100241 size = ((size + extra + align - 1) & -align) - extra;
Willy Tarreau581bf812016-01-25 02:19:13 +0100242 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200243
Willy Tarreaue9816312022-02-22 16:23:09 +0100244 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
245 /* we'll store two lists there, we need the room for this. This is
246 * guaranteed by the test above, except if MEM_F_EXACT is set, or if
247 * the only EXTRA part is in fact the one that's stored in the cache
248 * in addition to the pci struct.
249 */
Willy Tarreau42705d02022-02-23 10:03:11 +0100250 if (size + extra - extra_caller < sizeof(struct pool_cache_item))
251 size = sizeof(struct pool_cache_item) + extra_caller - extra;
Willy Tarreaue9816312022-02-22 16:23:09 +0100252 }
253
Christopher Fauletb349e482017-08-29 09:52:38 +0200254 /* TODO: thread: we do not lock pool list for now because all pools are
255 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200256 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200257 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200258
259 list_for_each_entry(entry, &pools, list) {
260 if (entry->size == size) {
261 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500262 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200263 * before which we will insert a new one.
264 */
Willy Tarreaufd8b7372022-02-21 17:31:50 +0100265 if ((flags & entry->flags & MEM_F_SHARED) &&
266 (!(pool_debugging & POOL_DBG_DONT_MERGE) ||
267 strcmp(name, entry->name) == 0)) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200268 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200269 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200270 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200271 break;
272 }
273 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200274 else if (entry->size > size) {
275 /* insert before this one */
276 start = &entry->list;
277 break;
278 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200279 }
280
281 if (!pool) {
Willy Tarreaue81248c2022-03-02 17:59:04 +0100282 void *pool_addr;
Willy Tarreau0a93b642018-10-16 07:58:39 +0200283
Willy Tarreaue81248c2022-03-02 17:59:04 +0100284 pool_addr = calloc(1, sizeof(*pool) + __alignof__(*pool));
285 if (!pool_addr)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200286 return NULL;
Willy Tarreaue81248c2022-03-02 17:59:04 +0100287
288 /* always provide an aligned pool */
289 pool = (struct pool_head*)((((size_t)pool_addr) + __alignof__(*pool)) & -(size_t)__alignof__(*pool));
290 pool->base_addr = pool_addr; // keep it, it's the address to free later
291
Willy Tarreau50e608d2007-05-13 18:26:08 +0200292 if (name)
293 strlcpy2(pool->name, name, sizeof(pool->name));
Willy Tarreau42705d02022-02-23 10:03:11 +0100294 pool->alloc_sz = size + extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200295 pool->size = size;
296 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200297 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200298
Willy Tarreaue9816312022-02-22 16:23:09 +0100299 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
300 /* update per-thread pool cache if necessary */
301 for (thr = 0; thr < MAX_THREADS; thr++) {
302 LIST_INIT(&pool->cache[thr].list);
303 pool->cache[thr].tid = thr;
304 pool->cache[thr].pool = pool;
305 }
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200306 }
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100307 }
308 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200309 return pool;
310}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100311
Willy Tarreau13843642021-04-17 16:57:25 +0200312/* Tries to allocate an object for the pool <pool> using the system's allocator
313 * and directly returns it. The pool's allocated counter is checked and updated,
Willy Tarreau8715dec2021-06-10 17:31:48 +0200314 * but no other checks are performed.
Willy Tarreau13843642021-04-17 16:57:25 +0200315 */
316void *pool_get_from_os(struct pool_head *pool)
317{
318 if (!pool->limit || pool->allocated < pool->limit) {
Willy Tarreau96d5bc72022-02-23 08:57:59 +0100319 void *ptr = pool_alloc_area(pool->alloc_sz);
Willy Tarreau13843642021-04-17 16:57:25 +0200320 if (ptr) {
321 _HA_ATOMIC_INC(&pool->allocated);
322 return ptr;
323 }
324 _HA_ATOMIC_INC(&pool->failed);
325 }
326 activity[tid].pool_fail++;
327 return NULL;
328
329}
330
Willy Tarreau45e4e282021-04-17 17:48:40 +0200331/* Releases a pool item back to the operating system and atomically updates
332 * the allocation counter.
333 */
334void pool_put_to_os(struct pool_head *pool, void *ptr)
335{
Willy Tarreau9a7aa3b2021-06-10 17:20:19 +0200336#ifdef DEBUG_UAF
337 /* This object will be released for real in order to detect a use after
338 * free. We also force a write to the area to ensure we crash on double
339 * free or free of a const area.
340 */
341 *(uint32_t *)ptr = 0xDEADADD4;
342#endif /* DEBUG_UAF */
343
Willy Tarreau96d5bc72022-02-23 08:57:59 +0100344 pool_free_area(ptr, pool->alloc_sz);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200345 _HA_ATOMIC_DEC(&pool->allocated);
346}
347
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200348/* Tries to allocate an object for the pool <pool> using the system's allocator
349 * and directly returns it. The pool's counters are updated but the object is
350 * never cached, so this is usable with and without local or shared caches.
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200351 */
352void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100353{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100354 void *ptr = NULL;
355
Willy Tarreau13843642021-04-17 16:57:25 +0200356 ptr = pool_get_from_os(pool);
357 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100358 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100359
Willy Tarreau13843642021-04-17 16:57:25 +0200360 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200361 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100362
Willy Tarreau0bae0752021-03-02 20:05:09 +0100363 /* keep track of where the element was allocated from */
Willy Tarreau8c492702022-01-01 17:10:50 +0100364 POOL_DEBUG_SET_MARK(pool, ptr);
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100365 POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100366 return ptr;
367}
368
Willy Tarreau45e4e282021-04-17 17:48:40 +0200369/* Release a pool item back to the OS and keeps the pool's counters up to date.
370 * This is always defined even when pools are not enabled (their usage stats
371 * are maintained).
372 */
373void pool_free_nocache(struct pool_head *pool, void *ptr)
374{
375 _HA_ATOMIC_DEC(&pool->used);
376 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
377 pool_put_to_os(pool, ptr);
378}
379
Willy Tarreaub8498e92021-04-18 10:23:02 +0200380
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100381/* Updates <pch>'s fill_pattern and fills the free area after <item> with it,
382 * up to <size> bytes. The item part is left untouched.
383 */
384void pool_fill_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size)
385{
386 ulong *ptr = (ulong *)item;
387 uint ofs;
388 ulong u;
389
390 if (size <= sizeof(*item))
391 return;
392
393 /* Upgrade the fill_pattern to change about half of the bits
394 * (to be sure to catch static flag corruption), and apply it.
395 */
396 u = pch->fill_pattern += ~0UL / 3; // 0x55...55
397 ofs = sizeof(*item) / sizeof(*ptr);
398 while (ofs < size / sizeof(*ptr))
399 ptr[ofs++] = u;
400}
401
402/* check for a pool_cache_item integrity after extracting it from the cache. It
403 * must have been previously initialized using pool_fill_pattern(). If any
404 * corruption is detected, the function provokes an immediate crash.
405 */
406void pool_check_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size)
407{
408 const ulong *ptr = (const ulong *)item;
409 uint ofs;
410 ulong u;
411
412 if (size <= sizeof(*item))
413 return;
414
415 /* let's check that all words past *item are equal */
416 ofs = sizeof(*item) / sizeof(*ptr);
417 u = ptr[ofs++];
418 while (ofs < size / sizeof(*ptr)) {
419 if (unlikely(ptr[ofs] != u))
420 ABORT_NOW();
421 ofs++;
422 }
423}
424
Willy Tarreaua0b58312022-01-02 17:19:14 +0100425/* removes up to <count> items from the end of the local pool cache <ph> for
426 * pool <pool>. The shared pool is refilled with these objects in the limit
427 * of the number of acceptable objects, and the rest will be released to the
428 * OS. It is not a problem is <count> is larger than the number of objects in
Willy Tarreaue9816312022-02-22 16:23:09 +0100429 * the local cache. The counters are automatically updated. Must not be used
430 * with pools disabled.
Willy Tarreau87212032021-04-19 08:14:03 +0200431 */
Willy Tarreaua0b58312022-01-02 17:19:14 +0100432static void pool_evict_last_items(struct pool_head *pool, struct pool_cache_head *ph, uint count)
Willy Tarreau87212032021-04-19 08:14:03 +0200433{
Willy Tarreau87212032021-04-19 08:14:03 +0200434 struct pool_cache_item *item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100435 struct pool_item *pi, *head = NULL;
Willy Tarreaua0b58312022-01-02 17:19:14 +0100436 uint released = 0;
Willy Tarreau1513c542022-01-02 17:53:02 +0100437 uint cluster = 0;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100438 uint to_free_max;
439
Willy Tarreaue9816312022-02-22 16:23:09 +0100440 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
441
Willy Tarreaudff3b062022-02-22 09:21:13 +0100442 /* Note: this will be zero when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100443 to_free_max = pool_releasable(pool);
Willy Tarreau87212032021-04-19 08:14:03 +0200444
Willy Tarreaua0b58312022-01-02 17:19:14 +0100445 while (released < count && !LIST_ISEMPTY(&ph->list)) {
Willy Tarreaud5ec1002022-01-02 12:40:14 +0100446 item = LIST_PREV(&ph->list, typeof(item), by_pool);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100447 BUG_ON(&item->by_pool == &ph->list);
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100448 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
449 pool_check_pattern(ph, item, pool->size);
Willy Tarreau2b718102021-04-21 07:32:39 +0200450 LIST_DELETE(&item->by_pool);
451 LIST_DELETE(&item->by_lru);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100452
Willy Tarreau1513c542022-01-02 17:53:02 +0100453 if (to_free_max > released || cluster) {
Willy Tarreaudff3b062022-02-22 09:21:13 +0100454 /* will never match when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100455 pi = (struct pool_item *)item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100456 pi->next = NULL;
457 pi->down = head;
458 head = pi;
459 cluster++;
460 if (cluster >= CONFIG_HAP_POOL_CLUSTER_SIZE) {
461 /* enough to make a cluster */
462 pool_put_to_shared_cache(pool, head, cluster);
463 cluster = 0;
464 head = NULL;
465 }
Willy Tarreau361e31e2022-01-02 00:27:06 +0100466 } else
Willy Tarreaub46674a2021-12-30 17:37:33 +0100467 pool_free_nocache(pool, item);
Willy Tarreau1513c542022-01-02 17:53:02 +0100468
469 released++;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100470 }
471
Willy Tarreau1513c542022-01-02 17:53:02 +0100472 /* incomplete cluster left */
473 if (cluster)
474 pool_put_to_shared_cache(pool, head, cluster);
475
Willy Tarreaua0b58312022-01-02 17:19:14 +0100476 ph->count -= released;
477 pool_cache_count -= released;
478 pool_cache_bytes -= released * pool->size;
479}
480
481/* Evicts some of the oldest objects from one local cache, until its number of
482 * objects is no more than 16+1/8 of the total number of locally cached objects
483 * or the total size of the local cache is no more than 75% of its maximum (i.e.
484 * we don't want a single cache to use all the cache for itself). For this, the
Willy Tarreauc895c442022-02-09 16:19:24 +0100485 * list is scanned in reverse. If <full> is non-null, all objects are evicted.
Willy Tarreaue9816312022-02-22 16:23:09 +0100486 * Must not be used when pools are disabled.
Willy Tarreaua0b58312022-01-02 17:19:14 +0100487 */
Willy Tarreauc895c442022-02-09 16:19:24 +0100488void pool_evict_from_local_cache(struct pool_head *pool, int full)
Willy Tarreaua0b58312022-01-02 17:19:14 +0100489{
490 struct pool_cache_head *ph = &pool->cache[tid];
491
Willy Tarreaue9816312022-02-22 16:23:09 +0100492 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
493
Willy Tarreauc895c442022-02-09 16:19:24 +0100494 while ((ph->count && full) ||
495 (ph->count >= CONFIG_HAP_POOL_CLUSTER_SIZE &&
496 ph->count >= 16 + pool_cache_count / 8 &&
497 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100498 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreau87212032021-04-19 08:14:03 +0200499 }
500}
501
Willy Tarreaub8498e92021-04-18 10:23:02 +0200502/* Evicts some of the oldest objects from the local cache, pushing them to the
Willy Tarreaue9816312022-02-22 16:23:09 +0100503 * global pool. Must not be used when pools are disabled.
Willy Tarreaub8498e92021-04-18 10:23:02 +0200504 */
505void pool_evict_from_local_caches()
506{
507 struct pool_cache_item *item;
508 struct pool_cache_head *ph;
509 struct pool_head *pool;
510
Willy Tarreaue9816312022-02-22 16:23:09 +0100511 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
512
Willy Tarreaub8498e92021-04-18 10:23:02 +0200513 do {
Willy Tarreaub4e34762021-09-30 19:02:18 +0200514 item = LIST_PREV(&th_ctx->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100515 BUG_ON(&item->by_lru == &th_ctx->pool_lru_head);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200516 /* note: by definition we remove oldest objects so they also are the
517 * oldest in their own pools, thus their next is the pool's head.
518 */
519 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100520 BUG_ON(ph->tid != tid);
521
Willy Tarreaub8498e92021-04-18 10:23:02 +0200522 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100523 BUG_ON(pool != ph->pool);
524
Willy Tarreau43937e92022-01-02 17:24:55 +0100525 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200526 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
527}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100528
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200529/* Frees an object to the local cache, possibly pushing oldest objects to the
530 * shared cache, which itself may decide to release some of them to the OS.
531 * While it is unspecified what the object becomes past this point, it is
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100532 * guaranteed to be released from the users' perpective. A caller address may
Willy Tarreaue9816312022-02-22 16:23:09 +0100533 * be passed and stored into the area when DEBUG_POOL_TRACING is set. Must not
534 * be used with pools disabled.
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200535 */
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100536void pool_put_to_cache(struct pool_head *pool, void *ptr, const void *caller)
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200537{
538 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
539 struct pool_cache_head *ph = &pool->cache[tid];
540
Willy Tarreaue9816312022-02-22 16:23:09 +0100541 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
542
Willy Tarreau2b718102021-04-21 07:32:39 +0200543 LIST_INSERT(&ph->list, &item->by_pool);
Willy Tarreaub4e34762021-09-30 19:02:18 +0200544 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100545 POOL_DEBUG_TRACE_CALLER(pool, item, caller);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200546 ph->count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100547 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
548 pool_fill_pattern(ph, item, pool->size);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200549 pool_cache_count++;
550 pool_cache_bytes += pool->size;
551
552 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100553 if (ph->count >= 16 + pool_cache_count / 8 + CONFIG_HAP_POOL_CLUSTER_SIZE)
Willy Tarreauc895c442022-02-09 16:19:24 +0100554 pool_evict_from_local_cache(pool, 0);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200555 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
556 pool_evict_from_local_caches();
557 }
558}
559
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100560/* Tries to refill the local cache <pch> from the shared one for pool <pool>.
561 * This is only used when pools are in use and shared pools are enabled. No
562 * malloc() is attempted, and poisonning is never performed. The purpose is to
563 * get the fastest possible refilling so that the caller can easily check if
Willy Tarreaue9816312022-02-22 16:23:09 +0100564 * the cache has enough objects for its use. Must not be used when pools are
565 * disabled.
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100566 */
567void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_head *pch)
568{
569 struct pool_cache_item *item;
Willy Tarreau148160b2022-01-02 14:35:57 +0100570 struct pool_item *ret, *down;
571 uint count;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100572
Willy Tarreaue9816312022-02-22 16:23:09 +0100573 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
574
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100575 /* we'll need to reference the first element to figure the next one. We
576 * must temporarily lock it so that nobody allocates then releases it,
577 * or the dereference could fail.
578 */
579 ret = _HA_ATOMIC_LOAD(&pool->free_list);
580 do {
581 while (unlikely(ret == POOL_BUSY)) {
582 __ha_cpu_relax();
583 ret = _HA_ATOMIC_LOAD(&pool->free_list);
584 }
585 if (ret == NULL)
586 return;
587 } while (unlikely((ret = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
588
589 if (unlikely(ret == NULL)) {
590 HA_ATOMIC_STORE(&pool->free_list, NULL);
591 return;
592 }
593
594 /* this releases the lock */
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100595 HA_ATOMIC_STORE(&pool->free_list, ret->next);
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100596
Willy Tarreau148160b2022-01-02 14:35:57 +0100597 /* now store the retrieved object(s) into the local cache */
598 count = 0;
599 for (; ret; ret = down) {
600 down = ret->down;
Willy Tarreau148160b2022-01-02 14:35:57 +0100601 item = (struct pool_cache_item *)ret;
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100602 POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
Willy Tarreau148160b2022-01-02 14:35:57 +0100603 LIST_INSERT(&pch->list, &item->by_pool);
604 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
605 count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100606 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
607 pool_fill_pattern(pch, item, pool->size);
Willy Tarreau148160b2022-01-02 14:35:57 +0100608 }
609 HA_ATOMIC_ADD(&pool->used, count);
610 pch->count += count;
611 pool_cache_count += count;
612 pool_cache_bytes += count * pool->size;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100613}
614
Willy Tarreau337410c2022-01-02 15:15:54 +0100615/* Adds pool item cluster <item> to the shared cache, which contains <count>
616 * elements. The caller is advised to first check using pool_releasable() if
617 * it's wise to add this series of objects there. Both the pool and the item's
618 * head must be valid.
Willy Tarreaub46674a2021-12-30 17:37:33 +0100619 */
Willy Tarreau337410c2022-01-02 15:15:54 +0100620void pool_put_to_shared_cache(struct pool_head *pool, struct pool_item *item, uint count)
Willy Tarreaub46674a2021-12-30 17:37:33 +0100621{
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100622 struct pool_item *free_list;
Willy Tarreaub46674a2021-12-30 17:37:33 +0100623
Willy Tarreau337410c2022-01-02 15:15:54 +0100624 _HA_ATOMIC_SUB(&pool->used, count);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100625 free_list = _HA_ATOMIC_LOAD(&pool->free_list);
626 do {
627 while (unlikely(free_list == POOL_BUSY)) {
628 __ha_cpu_relax();
629 free_list = _HA_ATOMIC_LOAD(&pool->free_list);
630 }
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100631 _HA_ATOMIC_STORE(&item->next, free_list);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100632 __ha_barrier_atomic_store();
633 } while (!_HA_ATOMIC_CAS(&pool->free_list, &free_list, item));
634 __ha_barrier_atomic_store();
635 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
636}
637
Olivier Houchardcf975d42018-01-24 18:38:31 +0100638/*
639 * This function frees whatever can be freed in pool <pool>.
640 */
641void pool_flush(struct pool_head *pool)
642{
Willy Tarreau148160b2022-01-02 14:35:57 +0100643 struct pool_item *next, *temp, *down;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100644
Willy Tarreaue9816312022-02-22 16:23:09 +0100645 if (!pool || (pool_debugging & (POOL_DBG_NO_CACHE|POOL_DBG_NO_GLOBAL)))
Olivier Houchardcf975d42018-01-24 18:38:31 +0100646 return;
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200647
648 /* The loop below atomically detaches the head of the free list and
649 * replaces it with a NULL. Then the list can be released.
650 */
651 next = pool->free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100652 do {
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200653 while (unlikely(next == POOL_BUSY)) {
654 __ha_cpu_relax();
655 next = _HA_ATOMIC_LOAD(&pool->free_list);
656 }
657 if (next == NULL)
658 return;
659 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
660 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100661 __ha_barrier_atomic_store();
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200662
Olivier Houchardcf975d42018-01-24 18:38:31 +0100663 while (next) {
664 temp = next;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100665 next = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100666 for (; temp; temp = down) {
667 down = temp->down;
668 pool_put_to_os(pool, temp);
669 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100670 }
Willy Tarreauc239cde2021-06-10 06:54:22 +0200671 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100672}
673
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200674/*
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200675 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200676 * the minimum thresholds imposed by owners. It makes sure to be alone to
677 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200678 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100679void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200680{
681 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200682 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200683
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200684 if (!isolated)
685 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200686
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200687 list_for_each_entry(entry, &pools, list) {
Willy Tarreau148160b2022-01-02 14:35:57 +0100688 struct pool_item *temp, *down;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100689
Olivier Houchard51d93392020-03-12 19:05:39 +0100690 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100691 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100692 temp = entry->free_list;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100693 entry->free_list = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100694 for (; temp; temp = down) {
695 down = temp->down;
696 pool_put_to_os(entry, temp);
697 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200698 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200699 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200700
Willy Tarreauea3323f2021-09-15 10:38:21 +0200701 trim_all_pools();
Willy Tarreau26ed1832021-06-10 08:40:16 +0200702
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200703 if (!isolated)
704 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200705}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200706
Willy Tarreau15c322c2022-01-24 11:51:43 +0100707/*
Willy Tarreaud3929732022-01-24 16:09:29 +0100708 * Returns a pointer to type <type> taken from the pool <pool_type> or
709 * dynamically allocated. In the first case, <pool_type> is updated to point to
710 * the next element in the list. <flags> is a binary-OR of POOL_F_* flags.
711 * Prefer using pool_alloc() which does the right thing without flags.
712 */
713void *__pool_alloc(struct pool_head *pool, unsigned int flags)
714{
715 void *p = NULL;
Willy Tarreau02718222022-02-23 10:10:33 +0100716 void *caller = __builtin_return_address(0);
Willy Tarreaud3929732022-01-24 16:09:29 +0100717
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100718 if (unlikely(pool_debugging & POOL_DBG_FAIL_ALLOC))
719 if (!(flags & POOL_F_NO_FAIL) && mem_should_fail(pool))
720 return NULL;
Willy Tarreaud3929732022-01-24 16:09:29 +0100721
Willy Tarreaue9816312022-02-22 16:23:09 +0100722 if (likely(!(pool_debugging & POOL_DBG_NO_CACHE)) && !p)
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100723 p = pool_get_from_cache(pool, caller);
Willy Tarreaue9816312022-02-22 16:23:09 +0100724
Willy Tarreaud3929732022-01-24 16:09:29 +0100725 if (unlikely(!p))
726 p = pool_alloc_nocache(pool);
727
728 if (likely(p)) {
729 if (unlikely(flags & POOL_F_MUST_ZERO))
730 memset(p, 0, pool->size);
Willy Tarreauef301b72022-02-23 14:15:18 +0100731 else if (unlikely(!(flags & POOL_F_NO_POISON) && (pool_debugging & POOL_DBG_POISON)))
Willy Tarreaud3929732022-01-24 16:09:29 +0100732 memset(p, mem_poison_byte, pool->size);
733 }
734 return p;
735}
736
737/*
Willy Tarreau15c322c2022-01-24 11:51:43 +0100738 * Puts a memory area back to the corresponding pool. <ptr> be valid. Using
739 * pool_free() is preferred.
740 */
741void __pool_free(struct pool_head *pool, void *ptr)
742{
Willy Tarreau02718222022-02-23 10:10:33 +0100743 const void *caller = __builtin_return_address(0);
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100744
Willy Tarreau15c322c2022-01-24 11:51:43 +0100745 /* we'll get late corruption if we refill to the wrong pool or double-free */
746 POOL_DEBUG_CHECK_MARK(pool, ptr);
Willy Tarreau27c8da12022-02-09 16:49:16 +0100747 POOL_DEBUG_RESET_MARK(pool, ptr);
Willy Tarreaue9816312022-02-22 16:23:09 +0100748
749 if (unlikely(pool_debugging & POOL_DBG_NO_CACHE)) {
750 pool_free_nocache(pool, ptr);
751 return;
752 }
753
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100754 pool_put_to_cache(pool, ptr, caller);
Willy Tarreau15c322c2022-01-24 11:51:43 +0100755}
756
Willy Tarreauf14d1902021-10-05 18:14:11 +0200757
758#ifdef DEBUG_UAF
759
760/************* use-after-free allocator *************/
761
762/* allocates an area of size <size> and returns it. The semantics are similar
763 * to those of malloc(). However the allocation is rounded up to 4kB so that a
764 * full page is allocated. This ensures the object can be freed alone so that
765 * future dereferences are easily detected. The returned object is always
766 * 16-bytes aligned to avoid issues with unaligned structure objects. In case
767 * some padding is added, the area's start address is copied at the end of the
768 * padding to help detect underflows.
769 */
770void *pool_alloc_area_uaf(size_t size)
771{
772 size_t pad = (4096 - size) & 0xFF0;
Willy Tarreauf14d1902021-10-05 18:14:11 +0200773 void *ret;
774
Willy Tarreauf14d1902021-10-05 18:14:11 +0200775 ret = mmap(NULL, (size + 4095) & -4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
776 if (ret != MAP_FAILED) {
777 /* let's dereference the page before returning so that the real
778 * allocation in the system is performed without holding the lock.
779 */
780 *(int *)ret = 0;
781 if (pad >= sizeof(void *))
782 *(void **)(ret + pad - sizeof(void *)) = ret + pad;
783 ret += pad;
784 } else {
785 ret = NULL;
786 }
Willy Tarreauf14d1902021-10-05 18:14:11 +0200787 return ret;
788}
789
790/* frees an area <area> of size <size> allocated by pool_alloc_area(). The
791 * semantics are identical to free() except that the size must absolutely match
792 * the one passed to pool_alloc_area(). In case some padding is added, the
793 * area's start address is compared to the one at the end of the padding, and
794 * a segfault is triggered if they don't match, indicating an underflow.
795 */
796void pool_free_area_uaf(void *area, size_t size)
797{
798 size_t pad = (4096 - size) & 0xFF0;
799
800 if (pad >= sizeof(void *) && *(void **)(area - sizeof(void *)) != area)
801 ABORT_NOW();
802
Willy Tarreauf14d1902021-10-05 18:14:11 +0200803 munmap(area - pad, (size + 4095) & -4096);
Willy Tarreauf14d1902021-10-05 18:14:11 +0200804}
805
806#endif /* DEBUG_UAF */
807
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200808/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200809 * This function destroys a pool by freeing it completely, unless it's still
810 * in use. This should be called only under extreme circumstances. It always
811 * returns NULL if the resulting pool is empty, easing the clearing of the old
812 * pointer, otherwise it returns the pool.
813 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200814 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100815void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200816{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200817 if (pool) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100818 if (!(pool_debugging & POOL_DBG_NO_CACHE))
819 pool_evict_from_local_cache(pool, 1);
820
Willy Tarreaubafbe012017-11-24 17:34:44 +0100821 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200822 if (pool->used)
823 return pool;
824 pool->users--;
825 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200826 LIST_DELETE(&pool->list);
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200827 /* note that if used == 0, the cache is empty */
Willy Tarreauf9eba782022-03-03 18:31:54 +0100828 free(pool->base_addr);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200829 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200830 }
831 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200832}
833
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100834/* This destroys all pools on exit. It is *not* thread safe. */
835void pool_destroy_all()
836{
837 struct pool_head *entry, *back;
838
839 list_for_each_entry_safe(entry, back, &pools, list)
840 pool_destroy(entry);
841}
842
Willy Tarreau12833bb2014-01-28 16:49:56 +0100843/* This function dumps memory usage information into the trash buffer. */
844void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200845{
846 struct pool_head *entry;
847 unsigned long allocated, used;
848 int nbpools;
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200849 unsigned long cached_bytes = 0;
850 uint cached = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200851
852 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100853 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200854 list_for_each_entry(entry, &pools, list) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100855 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
856 int i;
857 for (cached = i = 0; i < global.nbthread; i++)
858 cached += entry->cache[i].count;
859 cached_bytes += cached * entry->size;
860 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200861 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200862 " (~%u by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200863 ", needed_avg %u, %u failures, %u users, @%p%s\n",
864 entry->name, entry->size, entry->allocated,
865 entry->size * entry->allocated, entry->used,
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200866 cached,
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200867 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
868 entry->users, entry,
869 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200870
871 allocated += entry->allocated * entry->size;
872 used += entry->used * entry->size;
873 nbpools++;
874 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200875 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200876 " (~%lu by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200877 ".\n",
Willy Tarreaue9816312022-02-22 16:23:09 +0100878 nbpools, allocated, used, cached_bytes
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200879 );
Willy Tarreau50e608d2007-05-13 18:26:08 +0200880}
881
Willy Tarreau12833bb2014-01-28 16:49:56 +0100882/* Dump statistics on pools usage. */
883void dump_pools(void)
884{
885 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200886 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100887}
888
Willy Tarreau58102cf2015-10-28 16:24:21 +0100889/* This function returns the total number of failed pool allocations */
890int pool_total_failures()
891{
892 struct pool_head *entry;
893 int failed = 0;
894
895 list_for_each_entry(entry, &pools, list)
896 failed += entry->failed;
897 return failed;
898}
899
900/* This function returns the total amount of memory allocated in pools (in bytes) */
901unsigned long pool_total_allocated()
902{
903 struct pool_head *entry;
904 unsigned long allocated = 0;
905
906 list_for_each_entry(entry, &pools, list)
907 allocated += entry->allocated * entry->size;
908 return allocated;
909}
910
911/* This function returns the total amount of memory used in pools (in bytes) */
912unsigned long pool_total_used()
913{
914 struct pool_head *entry;
915 unsigned long used = 0;
916
917 list_for_each_entry(entry, &pools, list)
918 used += entry->used * entry->size;
919 return used;
920}
921
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100922/* This function parses a string made of a set of debugging features as
923 * specified after -dM on the command line, and will set pool_debugging
924 * accordingly. On success it returns a strictly positive value. It may zero
925 * with the first warning in <err>, -1 with a help message in <err>, or -2 with
926 * the first error in <err> return the first error in <err>. <err> is undefined
927 * on success, and will be non-null and locally allocated on help/error/warning.
928 * The caller must free it. Warnings are used to report features that were not
929 * enabled at build time, and errors are used to report unknown features.
930 */
931int pool_parse_debugging(const char *str, char **err)
932{
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100933 struct ist args;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100934 char *end;
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100935 uint new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100936 int v;
937
938
939 /* if it's empty or starts with a number, it's the mem poisonning byte */
940 v = strtol(str, &end, 0);
941 if (!*end || *end == ',') {
942 mem_poison_byte = *str ? v : 'P';
943 if (mem_poison_byte >= 0)
944 pool_debugging |= POOL_DBG_POISON;
945 else
946 pool_debugging &= ~POOL_DBG_POISON;
947 str = end;
948 }
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100949
950 new_dbg = pool_debugging;
951
952 for (args = ist(str); istlen(args); args = istadv(istfind(args, ','), 1)) {
953 struct ist feat = iststop(args, ',');
954
955 if (!istlen(feat))
956 continue;
957
958 if (isteq(feat, ist("help"))) {
959 ha_free(err);
960 memprintf(err,
961 "-dM alone enables memory poisonning with byte 0x50 on allocation. A numeric\n"
962 "value may be appended immediately after -dM to use another value (0 supported).\n"
963 "Then an optional list of comma-delimited keywords may be appended to set or\n"
964 "clear some debugging options ('*' marks the current setting):\n\n"
965 " set clear description\n"
966 " -----------------+-----------------+-----------------------------------------\n");
967
968 for (v = 0; dbg_options[v].flg; v++) {
969 memprintf(err, "%s %c %-15s|%c %-15s| %s\n",
970 *err,
971 (pool_debugging & dbg_options[v].flg) ? '*' : ' ',
972 dbg_options[v].set,
973 (pool_debugging & dbg_options[v].flg) ? ' ' : '*',
974 dbg_options[v].clr,
975 dbg_options[v].hlp);
976 }
977 return -1;
978 }
979
980 for (v = 0; dbg_options[v].flg; v++) {
981 if (isteq(feat, ist(dbg_options[v].set))) {
982 new_dbg |= dbg_options[v].flg;
983 break;
984 }
985 else if (isteq(feat, ist(dbg_options[v].clr))) {
986 new_dbg &= ~dbg_options[v].flg;
987 break;
988 }
989 }
990
991 if (!dbg_options[v].flg) {
992 memprintf(err, "unknown pool debugging feature <%.*s>", (int)istlen(feat), istptr(feat));
993 return -2;
994 }
995 }
996
997 pool_debugging = new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100998 return 1;
999}
1000
William Lallemande7ed8852016-11-19 02:25:36 +01001001/* This function dumps memory usage information onto the stream interface's
1002 * read buffer. It returns 0 as long as it does not complete, non-zero upon
1003 * completion. No state is used.
1004 */
1005static int cli_io_handler_dump_pools(struct appctx *appctx)
1006{
Christopher Faulet86e1c332021-12-20 17:09:39 +01001007 struct stream_interface *si = cs_si(appctx->owner);
William Lallemande7ed8852016-11-19 02:25:36 +01001008
1009 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +02001010 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001011 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +01001012 return 0;
1013 }
1014 return 1;
1015}
1016
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001017/* callback used to create early pool <name> of size <size> and store the
1018 * resulting pointer into <ptr>. If the allocation fails, it quits with after
1019 * emitting an error message.
1020 */
1021void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
1022{
1023 *ptr = create_pool(name, size, MEM_F_SHARED);
1024 if (!*ptr) {
1025 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
1026 name, size, strerror(errno));
1027 exit(1);
1028 }
1029}
1030
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001031/* Initializes all per-thread arrays on startup */
1032static void init_pools()
1033{
Willy Tarreau9f3129e2021-04-17 00:31:38 +02001034 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001035
1036 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreaub4e34762021-09-30 19:02:18 +02001037 LIST_INIT(&ha_thread_ctx[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001038 }
Willy Tarreaue9816312022-02-22 16:23:09 +01001039
Willy Tarreau157e3932021-09-15 10:05:48 +02001040 detect_allocator();
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001041}
1042
1043INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001044
Willy Tarreau845b5602021-09-15 10:41:24 +02001045/* Report in build options if trim is supported */
1046static void pools_register_build_options(void)
1047{
1048 if (is_trim_enabled()) {
1049 char *ptr = NULL;
1050 memprintf(&ptr, "Support for malloc_trim() is enabled.");
1051 hap_register_build_opts(ptr, 1);
1052 }
1053}
1054INITCALL0(STG_REGISTER, pools_register_build_options);
1055
William Lallemande7ed8852016-11-19 02:25:36 +01001056/* register cli keywords */
1057static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001058 { { "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 +01001059 {{},}
1060}};
1061
Willy Tarreau0108d902018-11-25 19:14:37 +01001062INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +01001063
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001064
1065/* config parser for global "tune.fail-alloc" */
1066static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +01001067 const struct proxy *defpx, const char *file, int line,
1068 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001069{
1070 if (too_many_args(1, args, err, NULL))
1071 return -1;
1072 mem_fail_rate = atoi(args[1]);
1073 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
1074 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
1075 return -1;
1076 }
1077 return 0;
1078}
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001079
Willy Tarreauc4e56dc2022-03-08 10:41:40 +01001080/* config parser for global "no-memory-trimming" */
1081static int mem_parse_global_no_mem_trim(char **args, int section_type, struct proxy *curpx,
1082 const struct proxy *defpx, const char *file, int line,
1083 char **err)
1084{
1085 if (too_many_args(0, args, err, NULL))
1086 return -1;
1087 disable_trim = 1;
1088 return 0;
1089}
1090
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001091/* register global config keywords */
1092static struct cfg_kw_list mem_cfg_kws = {ILH, {
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001093 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
Willy Tarreauc4e56dc2022-03-08 10:41:40 +01001094 { CFG_GLOBAL, "no-memory-trimming", mem_parse_global_no_mem_trim },
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001095 { 0, NULL, NULL }
1096}};
1097
1098INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
1099
Willy Tarreau50e608d2007-05-13 18:26:08 +02001100/*
1101 * Local variables:
1102 * c-indent-level: 8
1103 * c-basic-offset: 8
1104 * End:
1105 */