blob: 0e33cd353fa61dd3efdf4744fc989cf08f776b59 [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 Tarreau0a93b642018-10-16 07:58:39 +0200278 if (!pool)
279 pool = calloc(1, sizeof(*pool));
280
Willy Tarreau50e608d2007-05-13 18:26:08 +0200281 if (!pool)
282 return NULL;
283 if (name)
284 strlcpy2(pool->name, name, sizeof(pool->name));
Willy Tarreau42705d02022-02-23 10:03:11 +0100285 pool->alloc_sz = size + extra;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200286 pool->size = size;
287 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200288 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200289
Willy Tarreaue9816312022-02-22 16:23:09 +0100290 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
291 /* update per-thread pool cache if necessary */
292 for (thr = 0; thr < MAX_THREADS; thr++) {
293 LIST_INIT(&pool->cache[thr].list);
294 pool->cache[thr].tid = thr;
295 pool->cache[thr].pool = pool;
296 }
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200297 }
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100298 }
299 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200300 return pool;
301}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100302
Willy Tarreau13843642021-04-17 16:57:25 +0200303/* Tries to allocate an object for the pool <pool> using the system's allocator
304 * and directly returns it. The pool's allocated counter is checked and updated,
Willy Tarreau8715dec2021-06-10 17:31:48 +0200305 * but no other checks are performed.
Willy Tarreau13843642021-04-17 16:57:25 +0200306 */
307void *pool_get_from_os(struct pool_head *pool)
308{
309 if (!pool->limit || pool->allocated < pool->limit) {
Willy Tarreau96d5bc72022-02-23 08:57:59 +0100310 void *ptr = pool_alloc_area(pool->alloc_sz);
Willy Tarreau13843642021-04-17 16:57:25 +0200311 if (ptr) {
312 _HA_ATOMIC_INC(&pool->allocated);
313 return ptr;
314 }
315 _HA_ATOMIC_INC(&pool->failed);
316 }
317 activity[tid].pool_fail++;
318 return NULL;
319
320}
321
Willy Tarreau45e4e282021-04-17 17:48:40 +0200322/* Releases a pool item back to the operating system and atomically updates
323 * the allocation counter.
324 */
325void pool_put_to_os(struct pool_head *pool, void *ptr)
326{
Willy Tarreau9a7aa3b2021-06-10 17:20:19 +0200327#ifdef DEBUG_UAF
328 /* This object will be released for real in order to detect a use after
329 * free. We also force a write to the area to ensure we crash on double
330 * free or free of a const area.
331 */
332 *(uint32_t *)ptr = 0xDEADADD4;
333#endif /* DEBUG_UAF */
334
Willy Tarreau96d5bc72022-02-23 08:57:59 +0100335 pool_free_area(ptr, pool->alloc_sz);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200336 _HA_ATOMIC_DEC(&pool->allocated);
337}
338
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200339/* Tries to allocate an object for the pool <pool> using the system's allocator
340 * and directly returns it. The pool's counters are updated but the object is
341 * never cached, so this is usable with and without local or shared caches.
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200342 */
343void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100344{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100345 void *ptr = NULL;
346
Willy Tarreau13843642021-04-17 16:57:25 +0200347 ptr = pool_get_from_os(pool);
348 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100349 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100350
Willy Tarreau13843642021-04-17 16:57:25 +0200351 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200352 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100353
Willy Tarreau0bae0752021-03-02 20:05:09 +0100354 /* keep track of where the element was allocated from */
Willy Tarreau8c492702022-01-01 17:10:50 +0100355 POOL_DEBUG_SET_MARK(pool, ptr);
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100356 POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100357 return ptr;
358}
359
Willy Tarreau45e4e282021-04-17 17:48:40 +0200360/* Release a pool item back to the OS and keeps the pool's counters up to date.
361 * This is always defined even when pools are not enabled (their usage stats
362 * are maintained).
363 */
364void pool_free_nocache(struct pool_head *pool, void *ptr)
365{
366 _HA_ATOMIC_DEC(&pool->used);
367 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
368 pool_put_to_os(pool, ptr);
369}
370
Willy Tarreaub8498e92021-04-18 10:23:02 +0200371
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100372/* Updates <pch>'s fill_pattern and fills the free area after <item> with it,
373 * up to <size> bytes. The item part is left untouched.
374 */
375void pool_fill_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size)
376{
377 ulong *ptr = (ulong *)item;
378 uint ofs;
379 ulong u;
380
381 if (size <= sizeof(*item))
382 return;
383
384 /* Upgrade the fill_pattern to change about half of the bits
385 * (to be sure to catch static flag corruption), and apply it.
386 */
387 u = pch->fill_pattern += ~0UL / 3; // 0x55...55
388 ofs = sizeof(*item) / sizeof(*ptr);
389 while (ofs < size / sizeof(*ptr))
390 ptr[ofs++] = u;
391}
392
393/* check for a pool_cache_item integrity after extracting it from the cache. It
394 * must have been previously initialized using pool_fill_pattern(). If any
395 * corruption is detected, the function provokes an immediate crash.
396 */
397void pool_check_pattern(struct pool_cache_head *pch, struct pool_cache_item *item, uint size)
398{
399 const ulong *ptr = (const ulong *)item;
400 uint ofs;
401 ulong u;
402
403 if (size <= sizeof(*item))
404 return;
405
406 /* let's check that all words past *item are equal */
407 ofs = sizeof(*item) / sizeof(*ptr);
408 u = ptr[ofs++];
409 while (ofs < size / sizeof(*ptr)) {
410 if (unlikely(ptr[ofs] != u))
411 ABORT_NOW();
412 ofs++;
413 }
414}
415
Willy Tarreaua0b58312022-01-02 17:19:14 +0100416/* removes up to <count> items from the end of the local pool cache <ph> for
417 * pool <pool>. The shared pool is refilled with these objects in the limit
418 * of the number of acceptable objects, and the rest will be released to the
419 * OS. It is not a problem is <count> is larger than the number of objects in
Willy Tarreaue9816312022-02-22 16:23:09 +0100420 * the local cache. The counters are automatically updated. Must not be used
421 * with pools disabled.
Willy Tarreau87212032021-04-19 08:14:03 +0200422 */
Willy Tarreaua0b58312022-01-02 17:19:14 +0100423static void pool_evict_last_items(struct pool_head *pool, struct pool_cache_head *ph, uint count)
Willy Tarreau87212032021-04-19 08:14:03 +0200424{
Willy Tarreau87212032021-04-19 08:14:03 +0200425 struct pool_cache_item *item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100426 struct pool_item *pi, *head = NULL;
Willy Tarreaua0b58312022-01-02 17:19:14 +0100427 uint released = 0;
Willy Tarreau1513c542022-01-02 17:53:02 +0100428 uint cluster = 0;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100429 uint to_free_max;
430
Willy Tarreaue9816312022-02-22 16:23:09 +0100431 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
432
Willy Tarreaudff3b062022-02-22 09:21:13 +0100433 /* Note: this will be zero when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100434 to_free_max = pool_releasable(pool);
Willy Tarreau87212032021-04-19 08:14:03 +0200435
Willy Tarreaua0b58312022-01-02 17:19:14 +0100436 while (released < count && !LIST_ISEMPTY(&ph->list)) {
Willy Tarreaud5ec1002022-01-02 12:40:14 +0100437 item = LIST_PREV(&ph->list, typeof(item), by_pool);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100438 BUG_ON(&item->by_pool == &ph->list);
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100439 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
440 pool_check_pattern(ph, item, pool->size);
Willy Tarreau2b718102021-04-21 07:32:39 +0200441 LIST_DELETE(&item->by_pool);
442 LIST_DELETE(&item->by_lru);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100443
Willy Tarreau1513c542022-01-02 17:53:02 +0100444 if (to_free_max > released || cluster) {
Willy Tarreaudff3b062022-02-22 09:21:13 +0100445 /* will never match when global pools are disabled */
Willy Tarreau361e31e2022-01-02 00:27:06 +0100446 pi = (struct pool_item *)item;
Willy Tarreau1513c542022-01-02 17:53:02 +0100447 pi->next = NULL;
448 pi->down = head;
449 head = pi;
450 cluster++;
451 if (cluster >= CONFIG_HAP_POOL_CLUSTER_SIZE) {
452 /* enough to make a cluster */
453 pool_put_to_shared_cache(pool, head, cluster);
454 cluster = 0;
455 head = NULL;
456 }
Willy Tarreau361e31e2022-01-02 00:27:06 +0100457 } else
Willy Tarreaub46674a2021-12-30 17:37:33 +0100458 pool_free_nocache(pool, item);
Willy Tarreau1513c542022-01-02 17:53:02 +0100459
460 released++;
Willy Tarreau361e31e2022-01-02 00:27:06 +0100461 }
462
Willy Tarreau1513c542022-01-02 17:53:02 +0100463 /* incomplete cluster left */
464 if (cluster)
465 pool_put_to_shared_cache(pool, head, cluster);
466
Willy Tarreaua0b58312022-01-02 17:19:14 +0100467 ph->count -= released;
468 pool_cache_count -= released;
469 pool_cache_bytes -= released * pool->size;
470}
471
472/* Evicts some of the oldest objects from one local cache, until its number of
473 * objects is no more than 16+1/8 of the total number of locally cached objects
474 * or the total size of the local cache is no more than 75% of its maximum (i.e.
475 * we don't want a single cache to use all the cache for itself). For this, the
Willy Tarreauc895c442022-02-09 16:19:24 +0100476 * list is scanned in reverse. If <full> is non-null, all objects are evicted.
Willy Tarreaue9816312022-02-22 16:23:09 +0100477 * Must not be used when pools are disabled.
Willy Tarreaua0b58312022-01-02 17:19:14 +0100478 */
Willy Tarreauc895c442022-02-09 16:19:24 +0100479void pool_evict_from_local_cache(struct pool_head *pool, int full)
Willy Tarreaua0b58312022-01-02 17:19:14 +0100480{
481 struct pool_cache_head *ph = &pool->cache[tid];
482
Willy Tarreaue9816312022-02-22 16:23:09 +0100483 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
484
Willy Tarreauc895c442022-02-09 16:19:24 +0100485 while ((ph->count && full) ||
486 (ph->count >= CONFIG_HAP_POOL_CLUSTER_SIZE &&
487 ph->count >= 16 + pool_cache_count / 8 &&
488 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100489 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreau87212032021-04-19 08:14:03 +0200490 }
491}
492
Willy Tarreaub8498e92021-04-18 10:23:02 +0200493/* Evicts some of the oldest objects from the local cache, pushing them to the
Willy Tarreaue9816312022-02-22 16:23:09 +0100494 * global pool. Must not be used when pools are disabled.
Willy Tarreaub8498e92021-04-18 10:23:02 +0200495 */
496void pool_evict_from_local_caches()
497{
498 struct pool_cache_item *item;
499 struct pool_cache_head *ph;
500 struct pool_head *pool;
501
Willy Tarreaue9816312022-02-22 16:23:09 +0100502 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
503
Willy Tarreaub8498e92021-04-18 10:23:02 +0200504 do {
Willy Tarreaub4e34762021-09-30 19:02:18 +0200505 item = LIST_PREV(&th_ctx->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreaue2830ad2022-02-09 16:23:55 +0100506 BUG_ON(&item->by_lru == &th_ctx->pool_lru_head);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200507 /* note: by definition we remove oldest objects so they also are the
508 * oldest in their own pools, thus their next is the pool's head.
509 */
510 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100511 BUG_ON(ph->tid != tid);
512
Willy Tarreaub8498e92021-04-18 10:23:02 +0200513 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau49bb5d42022-02-09 16:33:22 +0100514 BUG_ON(pool != ph->pool);
515
Willy Tarreau43937e92022-01-02 17:24:55 +0100516 pool_evict_last_items(pool, ph, CONFIG_HAP_POOL_CLUSTER_SIZE);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200517 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
518}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100519
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200520/* Frees an object to the local cache, possibly pushing oldest objects to the
521 * shared cache, which itself may decide to release some of them to the OS.
522 * While it is unspecified what the object becomes past this point, it is
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100523 * guaranteed to be released from the users' perpective. A caller address may
Willy Tarreaue9816312022-02-22 16:23:09 +0100524 * be passed and stored into the area when DEBUG_POOL_TRACING is set. Must not
525 * be used with pools disabled.
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200526 */
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100527void pool_put_to_cache(struct pool_head *pool, void *ptr, const void *caller)
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200528{
529 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
530 struct pool_cache_head *ph = &pool->cache[tid];
531
Willy Tarreaue9816312022-02-22 16:23:09 +0100532 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
533
Willy Tarreau2b718102021-04-21 07:32:39 +0200534 LIST_INSERT(&ph->list, &item->by_pool);
Willy Tarreaub4e34762021-09-30 19:02:18 +0200535 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
Willy Tarreauadd43fa2022-01-24 15:52:51 +0100536 POOL_DEBUG_TRACE_CALLER(pool, item, caller);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200537 ph->count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100538 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
539 pool_fill_pattern(ph, item, pool->size);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200540 pool_cache_count++;
541 pool_cache_bytes += pool->size;
542
543 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau43937e92022-01-02 17:24:55 +0100544 if (ph->count >= 16 + pool_cache_count / 8 + CONFIG_HAP_POOL_CLUSTER_SIZE)
Willy Tarreauc895c442022-02-09 16:19:24 +0100545 pool_evict_from_local_cache(pool, 0);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200546 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
547 pool_evict_from_local_caches();
548 }
549}
550
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100551/* Tries to refill the local cache <pch> from the shared one for pool <pool>.
552 * This is only used when pools are in use and shared pools are enabled. No
553 * malloc() is attempted, and poisonning is never performed. The purpose is to
554 * get the fastest possible refilling so that the caller can easily check if
Willy Tarreaue9816312022-02-22 16:23:09 +0100555 * the cache has enough objects for its use. Must not be used when pools are
556 * disabled.
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100557 */
558void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_head *pch)
559{
560 struct pool_cache_item *item;
Willy Tarreau148160b2022-01-02 14:35:57 +0100561 struct pool_item *ret, *down;
562 uint count;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100563
Willy Tarreaue9816312022-02-22 16:23:09 +0100564 BUG_ON(pool_debugging & POOL_DBG_NO_CACHE);
565
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100566 /* we'll need to reference the first element to figure the next one. We
567 * must temporarily lock it so that nobody allocates then releases it,
568 * or the dereference could fail.
569 */
570 ret = _HA_ATOMIC_LOAD(&pool->free_list);
571 do {
572 while (unlikely(ret == POOL_BUSY)) {
573 __ha_cpu_relax();
574 ret = _HA_ATOMIC_LOAD(&pool->free_list);
575 }
576 if (ret == NULL)
577 return;
578 } while (unlikely((ret = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
579
580 if (unlikely(ret == NULL)) {
581 HA_ATOMIC_STORE(&pool->free_list, NULL);
582 return;
583 }
584
585 /* this releases the lock */
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100586 HA_ATOMIC_STORE(&pool->free_list, ret->next);
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100587
Willy Tarreau148160b2022-01-02 14:35:57 +0100588 /* now store the retrieved object(s) into the local cache */
589 count = 0;
590 for (; ret; ret = down) {
591 down = ret->down;
Willy Tarreau148160b2022-01-02 14:35:57 +0100592 item = (struct pool_cache_item *)ret;
Willy Tarreauf70fdde2022-01-25 15:56:50 +0100593 POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
Willy Tarreau148160b2022-01-02 14:35:57 +0100594 LIST_INSERT(&pch->list, &item->by_pool);
595 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
596 count++;
Willy Tarreau6f3c7f62022-02-21 18:42:53 +0100597 if (unlikely(pool_debugging & POOL_DBG_INTEGRITY))
598 pool_fill_pattern(pch, item, pool->size);
Willy Tarreau148160b2022-01-02 14:35:57 +0100599 }
600 HA_ATOMIC_ADD(&pool->used, count);
601 pch->count += count;
602 pool_cache_count += count;
603 pool_cache_bytes += count * pool->size;
Willy Tarreauafe2c4a2021-12-30 17:09:31 +0100604}
605
Willy Tarreau337410c2022-01-02 15:15:54 +0100606/* Adds pool item cluster <item> to the shared cache, which contains <count>
607 * elements. The caller is advised to first check using pool_releasable() if
608 * it's wise to add this series of objects there. Both the pool and the item's
609 * head must be valid.
Willy Tarreaub46674a2021-12-30 17:37:33 +0100610 */
Willy Tarreau337410c2022-01-02 15:15:54 +0100611void pool_put_to_shared_cache(struct pool_head *pool, struct pool_item *item, uint count)
Willy Tarreaub46674a2021-12-30 17:37:33 +0100612{
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100613 struct pool_item *free_list;
Willy Tarreaub46674a2021-12-30 17:37:33 +0100614
Willy Tarreau337410c2022-01-02 15:15:54 +0100615 _HA_ATOMIC_SUB(&pool->used, count);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100616 free_list = _HA_ATOMIC_LOAD(&pool->free_list);
617 do {
618 while (unlikely(free_list == POOL_BUSY)) {
619 __ha_cpu_relax();
620 free_list = _HA_ATOMIC_LOAD(&pool->free_list);
621 }
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100622 _HA_ATOMIC_STORE(&item->next, free_list);
Willy Tarreaub46674a2021-12-30 17:37:33 +0100623 __ha_barrier_atomic_store();
624 } while (!_HA_ATOMIC_CAS(&pool->free_list, &free_list, item));
625 __ha_barrier_atomic_store();
626 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
627}
628
Olivier Houchardcf975d42018-01-24 18:38:31 +0100629/*
630 * This function frees whatever can be freed in pool <pool>.
631 */
632void pool_flush(struct pool_head *pool)
633{
Willy Tarreau148160b2022-01-02 14:35:57 +0100634 struct pool_item *next, *temp, *down;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100635
Willy Tarreaue9816312022-02-22 16:23:09 +0100636 if (!pool || (pool_debugging & (POOL_DBG_NO_CACHE|POOL_DBG_NO_GLOBAL)))
Olivier Houchardcf975d42018-01-24 18:38:31 +0100637 return;
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200638
639 /* The loop below atomically detaches the head of the free list and
640 * replaces it with a NULL. Then the list can be released.
641 */
642 next = pool->free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100643 do {
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200644 while (unlikely(next == POOL_BUSY)) {
645 __ha_cpu_relax();
646 next = _HA_ATOMIC_LOAD(&pool->free_list);
647 }
648 if (next == NULL)
649 return;
650 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
651 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100652 __ha_barrier_atomic_store();
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200653
Olivier Houchardcf975d42018-01-24 18:38:31 +0100654 while (next) {
655 temp = next;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100656 next = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100657 for (; temp; temp = down) {
658 down = temp->down;
659 pool_put_to_os(pool, temp);
660 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100661 }
Willy Tarreauc239cde2021-06-10 06:54:22 +0200662 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100663}
664
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200665/*
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200666 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200667 * the minimum thresholds imposed by owners. It makes sure to be alone to
668 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200669 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100670void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200671{
672 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200673 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200674
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200675 if (!isolated)
676 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200677
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200678 list_for_each_entry(entry, &pools, list) {
Willy Tarreau148160b2022-01-02 14:35:57 +0100679 struct pool_item *temp, *down;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100680
Olivier Houchard51d93392020-03-12 19:05:39 +0100681 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100682 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100683 temp = entry->free_list;
Willy Tarreauc16ed3b2022-01-01 18:22:20 +0100684 entry->free_list = temp->next;
Willy Tarreau148160b2022-01-02 14:35:57 +0100685 for (; temp; temp = down) {
686 down = temp->down;
687 pool_put_to_os(entry, temp);
688 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200689 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200690 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200691
Willy Tarreauea3323f2021-09-15 10:38:21 +0200692 trim_all_pools();
Willy Tarreau26ed1832021-06-10 08:40:16 +0200693
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200694 if (!isolated)
695 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200696}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200697
Willy Tarreau15c322c2022-01-24 11:51:43 +0100698/*
Willy Tarreaud3929732022-01-24 16:09:29 +0100699 * Returns a pointer to type <type> taken from the pool <pool_type> or
700 * dynamically allocated. In the first case, <pool_type> is updated to point to
701 * the next element in the list. <flags> is a binary-OR of POOL_F_* flags.
702 * Prefer using pool_alloc() which does the right thing without flags.
703 */
704void *__pool_alloc(struct pool_head *pool, unsigned int flags)
705{
706 void *p = NULL;
Willy Tarreau02718222022-02-23 10:10:33 +0100707 void *caller = __builtin_return_address(0);
Willy Tarreaud3929732022-01-24 16:09:29 +0100708
Willy Tarreau8d0273e2022-02-21 17:16:22 +0100709 if (unlikely(pool_debugging & POOL_DBG_FAIL_ALLOC))
710 if (!(flags & POOL_F_NO_FAIL) && mem_should_fail(pool))
711 return NULL;
Willy Tarreaud3929732022-01-24 16:09:29 +0100712
Willy Tarreaue9816312022-02-22 16:23:09 +0100713 if (likely(!(pool_debugging & POOL_DBG_NO_CACHE)) && !p)
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100714 p = pool_get_from_cache(pool, caller);
Willy Tarreaue9816312022-02-22 16:23:09 +0100715
Willy Tarreaud3929732022-01-24 16:09:29 +0100716 if (unlikely(!p))
717 p = pool_alloc_nocache(pool);
718
719 if (likely(p)) {
720 if (unlikely(flags & POOL_F_MUST_ZERO))
721 memset(p, 0, pool->size);
Willy Tarreauef301b72022-02-23 14:15:18 +0100722 else if (unlikely(!(flags & POOL_F_NO_POISON) && (pool_debugging & POOL_DBG_POISON)))
Willy Tarreaud3929732022-01-24 16:09:29 +0100723 memset(p, mem_poison_byte, pool->size);
724 }
725 return p;
726}
727
728/*
Willy Tarreau15c322c2022-01-24 11:51:43 +0100729 * Puts a memory area back to the corresponding pool. <ptr> be valid. Using
730 * pool_free() is preferred.
731 */
732void __pool_free(struct pool_head *pool, void *ptr)
733{
Willy Tarreau02718222022-02-23 10:10:33 +0100734 const void *caller = __builtin_return_address(0);
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100735
Willy Tarreau15c322c2022-01-24 11:51:43 +0100736 /* we'll get late corruption if we refill to the wrong pool or double-free */
737 POOL_DEBUG_CHECK_MARK(pool, ptr);
Willy Tarreau27c8da12022-02-09 16:49:16 +0100738 POOL_DEBUG_RESET_MARK(pool, ptr);
Willy Tarreaue9816312022-02-22 16:23:09 +0100739
740 if (unlikely(pool_debugging & POOL_DBG_NO_CACHE)) {
741 pool_free_nocache(pool, ptr);
742 return;
743 }
744
Willy Tarreau0e2a5b42022-01-24 15:51:50 +0100745 pool_put_to_cache(pool, ptr, caller);
Willy Tarreau15c322c2022-01-24 11:51:43 +0100746}
747
Willy Tarreauf14d1902021-10-05 18:14:11 +0200748
749#ifdef DEBUG_UAF
750
751/************* use-after-free allocator *************/
752
753/* allocates an area of size <size> and returns it. The semantics are similar
754 * to those of malloc(). However the allocation is rounded up to 4kB so that a
755 * full page is allocated. This ensures the object can be freed alone so that
756 * future dereferences are easily detected. The returned object is always
757 * 16-bytes aligned to avoid issues with unaligned structure objects. In case
758 * some padding is added, the area's start address is copied at the end of the
759 * padding to help detect underflows.
760 */
761void *pool_alloc_area_uaf(size_t size)
762{
763 size_t pad = (4096 - size) & 0xFF0;
Willy Tarreauf14d1902021-10-05 18:14:11 +0200764 void *ret;
765
Willy Tarreauf14d1902021-10-05 18:14:11 +0200766 ret = mmap(NULL, (size + 4095) & -4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
767 if (ret != MAP_FAILED) {
768 /* let's dereference the page before returning so that the real
769 * allocation in the system is performed without holding the lock.
770 */
771 *(int *)ret = 0;
772 if (pad >= sizeof(void *))
773 *(void **)(ret + pad - sizeof(void *)) = ret + pad;
774 ret += pad;
775 } else {
776 ret = NULL;
777 }
Willy Tarreauf14d1902021-10-05 18:14:11 +0200778 return ret;
779}
780
781/* frees an area <area> of size <size> allocated by pool_alloc_area(). The
782 * semantics are identical to free() except that the size must absolutely match
783 * the one passed to pool_alloc_area(). In case some padding is added, the
784 * area's start address is compared to the one at the end of the padding, and
785 * a segfault is triggered if they don't match, indicating an underflow.
786 */
787void pool_free_area_uaf(void *area, size_t size)
788{
789 size_t pad = (4096 - size) & 0xFF0;
790
791 if (pad >= sizeof(void *) && *(void **)(area - sizeof(void *)) != area)
792 ABORT_NOW();
793
Willy Tarreauf14d1902021-10-05 18:14:11 +0200794 munmap(area - pad, (size + 4095) & -4096);
Willy Tarreauf14d1902021-10-05 18:14:11 +0200795}
796
797#endif /* DEBUG_UAF */
798
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200799/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200800 * This function destroys a pool by freeing it completely, unless it's still
801 * in use. This should be called only under extreme circumstances. It always
802 * returns NULL if the resulting pool is empty, easing the clearing of the old
803 * pointer, otherwise it returns the pool.
804 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200805 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100806void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200807{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200808 if (pool) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100809 if (!(pool_debugging & POOL_DBG_NO_CACHE))
810 pool_evict_from_local_cache(pool, 1);
811
Willy Tarreaubafbe012017-11-24 17:34:44 +0100812 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200813 if (pool->used)
814 return pool;
815 pool->users--;
816 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200817 LIST_DELETE(&pool->list);
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200818 /* note that if used == 0, the cache is empty */
819 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200820 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200821 }
822 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200823}
824
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100825/* This destroys all pools on exit. It is *not* thread safe. */
826void pool_destroy_all()
827{
828 struct pool_head *entry, *back;
829
830 list_for_each_entry_safe(entry, back, &pools, list)
831 pool_destroy(entry);
832}
833
Willy Tarreau12833bb2014-01-28 16:49:56 +0100834/* This function dumps memory usage information into the trash buffer. */
835void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200836{
837 struct pool_head *entry;
838 unsigned long allocated, used;
839 int nbpools;
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200840 unsigned long cached_bytes = 0;
841 uint cached = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200842
843 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100844 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200845 list_for_each_entry(entry, &pools, list) {
Willy Tarreaue9816312022-02-22 16:23:09 +0100846 if (!(pool_debugging & POOL_DBG_NO_CACHE)) {
847 int i;
848 for (cached = i = 0; i < global.nbthread; i++)
849 cached += entry->cache[i].count;
850 cached_bytes += cached * entry->size;
851 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200852 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200853 " (~%u by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200854 ", needed_avg %u, %u failures, %u users, @%p%s\n",
855 entry->name, entry->size, entry->allocated,
856 entry->size * entry->allocated, entry->used,
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200857 cached,
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200858 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
859 entry->users, entry,
860 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200861
862 allocated += entry->allocated * entry->size;
863 used += entry->used * entry->size;
864 nbpools++;
865 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200866 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200867 " (~%lu by thread caches)"
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200868 ".\n",
Willy Tarreaue9816312022-02-22 16:23:09 +0100869 nbpools, allocated, used, cached_bytes
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200870 );
Willy Tarreau50e608d2007-05-13 18:26:08 +0200871}
872
Willy Tarreau12833bb2014-01-28 16:49:56 +0100873/* Dump statistics on pools usage. */
874void dump_pools(void)
875{
876 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200877 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100878}
879
Willy Tarreau58102cf2015-10-28 16:24:21 +0100880/* This function returns the total number of failed pool allocations */
881int pool_total_failures()
882{
883 struct pool_head *entry;
884 int failed = 0;
885
886 list_for_each_entry(entry, &pools, list)
887 failed += entry->failed;
888 return failed;
889}
890
891/* This function returns the total amount of memory allocated in pools (in bytes) */
892unsigned long pool_total_allocated()
893{
894 struct pool_head *entry;
895 unsigned long allocated = 0;
896
897 list_for_each_entry(entry, &pools, list)
898 allocated += entry->allocated * entry->size;
899 return allocated;
900}
901
902/* This function returns the total amount of memory used in pools (in bytes) */
903unsigned long pool_total_used()
904{
905 struct pool_head *entry;
906 unsigned long used = 0;
907
908 list_for_each_entry(entry, &pools, list)
909 used += entry->used * entry->size;
910 return used;
911}
912
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100913/* This function parses a string made of a set of debugging features as
914 * specified after -dM on the command line, and will set pool_debugging
915 * accordingly. On success it returns a strictly positive value. It may zero
916 * with the first warning in <err>, -1 with a help message in <err>, or -2 with
917 * the first error in <err> return the first error in <err>. <err> is undefined
918 * on success, and will be non-null and locally allocated on help/error/warning.
919 * The caller must free it. Warnings are used to report features that were not
920 * enabled at build time, and errors are used to report unknown features.
921 */
922int pool_parse_debugging(const char *str, char **err)
923{
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100924 struct ist args;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100925 char *end;
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100926 uint new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100927 int v;
928
929
930 /* if it's empty or starts with a number, it's the mem poisonning byte */
931 v = strtol(str, &end, 0);
932 if (!*end || *end == ',') {
933 mem_poison_byte = *str ? v : 'P';
934 if (mem_poison_byte >= 0)
935 pool_debugging |= POOL_DBG_POISON;
936 else
937 pool_debugging &= ~POOL_DBG_POISON;
938 str = end;
939 }
Willy Tarreauf4b79c42022-02-23 15:20:53 +0100940
941 new_dbg = pool_debugging;
942
943 for (args = ist(str); istlen(args); args = istadv(istfind(args, ','), 1)) {
944 struct ist feat = iststop(args, ',');
945
946 if (!istlen(feat))
947 continue;
948
949 if (isteq(feat, ist("help"))) {
950 ha_free(err);
951 memprintf(err,
952 "-dM alone enables memory poisonning with byte 0x50 on allocation. A numeric\n"
953 "value may be appended immediately after -dM to use another value (0 supported).\n"
954 "Then an optional list of comma-delimited keywords may be appended to set or\n"
955 "clear some debugging options ('*' marks the current setting):\n\n"
956 " set clear description\n"
957 " -----------------+-----------------+-----------------------------------------\n");
958
959 for (v = 0; dbg_options[v].flg; v++) {
960 memprintf(err, "%s %c %-15s|%c %-15s| %s\n",
961 *err,
962 (pool_debugging & dbg_options[v].flg) ? '*' : ' ',
963 dbg_options[v].set,
964 (pool_debugging & dbg_options[v].flg) ? ' ' : '*',
965 dbg_options[v].clr,
966 dbg_options[v].hlp);
967 }
968 return -1;
969 }
970
971 for (v = 0; dbg_options[v].flg; v++) {
972 if (isteq(feat, ist(dbg_options[v].set))) {
973 new_dbg |= dbg_options[v].flg;
974 break;
975 }
976 else if (isteq(feat, ist(dbg_options[v].clr))) {
977 new_dbg &= ~dbg_options[v].flg;
978 break;
979 }
980 }
981
982 if (!dbg_options[v].flg) {
983 memprintf(err, "unknown pool debugging feature <%.*s>", (int)istlen(feat), istptr(feat));
984 return -2;
985 }
986 }
987
988 pool_debugging = new_dbg;
Willy Tarreau1408b1f2022-02-18 18:54:40 +0100989 return 1;
990}
991
William Lallemande7ed8852016-11-19 02:25:36 +0100992/* This function dumps memory usage information onto the stream interface's
993 * read buffer. It returns 0 as long as it does not complete, non-zero upon
994 * completion. No state is used.
995 */
996static int cli_io_handler_dump_pools(struct appctx *appctx)
997{
998 struct stream_interface *si = appctx->owner;
999
1000 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +02001001 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001002 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +01001003 return 0;
1004 }
1005 return 1;
1006}
1007
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001008/* callback used to create early pool <name> of size <size> and store the
1009 * resulting pointer into <ptr>. If the allocation fails, it quits with after
1010 * emitting an error message.
1011 */
1012void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
1013{
1014 *ptr = create_pool(name, size, MEM_F_SHARED);
1015 if (!*ptr) {
1016 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
1017 name, size, strerror(errno));
1018 exit(1);
1019 }
1020}
1021
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001022/* Initializes all per-thread arrays on startup */
1023static void init_pools()
1024{
Willy Tarreau9f3129e2021-04-17 00:31:38 +02001025 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001026
1027 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreaub4e34762021-09-30 19:02:18 +02001028 LIST_INIT(&ha_thread_ctx[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001029 }
Willy Tarreaue9816312022-02-22 16:23:09 +01001030
Willy Tarreau157e3932021-09-15 10:05:48 +02001031 detect_allocator();
Willy Tarreau7f0165e2018-11-26 17:09:46 +01001032}
1033
1034INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +01001035
Willy Tarreau845b5602021-09-15 10:41:24 +02001036/* Report in build options if trim is supported */
1037static void pools_register_build_options(void)
1038{
1039 if (is_trim_enabled()) {
1040 char *ptr = NULL;
1041 memprintf(&ptr, "Support for malloc_trim() is enabled.");
1042 hap_register_build_opts(ptr, 1);
1043 }
1044}
1045INITCALL0(STG_REGISTER, pools_register_build_options);
1046
William Lallemande7ed8852016-11-19 02:25:36 +01001047/* register cli keywords */
1048static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001049 { { "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 +01001050 {{},}
1051}};
1052
Willy Tarreau0108d902018-11-25 19:14:37 +01001053INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +01001054
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001055
1056/* config parser for global "tune.fail-alloc" */
1057static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +01001058 const struct proxy *defpx, const char *file, int line,
1059 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001060{
1061 if (too_many_args(1, args, err, NULL))
1062 return -1;
1063 mem_fail_rate = atoi(args[1]);
1064 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
1065 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
1066 return -1;
1067 }
1068 return 0;
1069}
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001070
1071/* register global config keywords */
1072static struct cfg_kw_list mem_cfg_kws = {ILH, {
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001073 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
Olivier Houcharddc21ff72019-01-29 15:20:16 +01001074 { 0, NULL, NULL }
1075}};
1076
1077INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
1078
Willy Tarreau50e608d2007-05-13 18:26:08 +02001079/*
1080 * Local variables:
1081 * c-indent-level: 8
1082 * c-basic-offset: 8
1083 * End:
1084 */