blob: 4d1d7d2ec6fc1b97b4d942fc76de04c0ac2a52b4 [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 Tarreau2d6f6282021-04-15 16:24:00 +020032#ifdef CONFIG_HAP_POOLS
Willy Tarreau7f0165e2018-11-26 17:09:46 +010033/* These ones are initialized per-thread on startup by init_pools() */
Willy Tarreaue18db9e2018-10-16 10:28:54 +020034THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
35THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
Willy Tarreaued891fd2020-06-01 19:00:28 +020036#endif
Willy Tarreaue18db9e2018-10-16 10:28:54 +020037
Willy Tarreau50e608d2007-05-13 18:26:08 +020038static struct list pools = LIST_HEAD_INIT(pools);
Willy Tarreau067ac9f2015-10-08 14:12:13 +020039int mem_poison_byte = -1;
Willy Tarreau50e608d2007-05-13 18:26:08 +020040
Olivier Houcharddc21ff72019-01-29 15:20:16 +010041#ifdef DEBUG_FAIL_ALLOC
42static int mem_fail_rate = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +010043#endif
44
David Carliered232142021-11-25 16:09:45 +000045static int using_default_allocator = 1;
46static int(*my_mallctl)(const char *, void *, size_t *, void *, size_t) = NULL;
Willy Tarreau157e3932021-09-15 10:05:48 +020047
Willy Tarreauea3323f2021-09-15 10:38:21 +020048/* ask the allocator to trim memory pools */
49static void trim_all_pools(void)
50{
David Carlierd450ff62021-11-25 16:14:38 +000051 if (my_mallctl) {
52 unsigned int i, narenas = 0;
53 size_t len = sizeof(narenas);
54
55 if (my_mallctl("arenas.narenas", &narenas, &len, NULL, 0) == 0) {
56 for (i = 0; i < narenas; i ++) {
57 char mib[32] = {0};
58 snprintf(mib, sizeof(mib), "arena.%u.purge", i);
59 (void)my_mallctl(mib, NULL, NULL, NULL, 0);
60 }
61 }
62 } else {
David Carliered232142021-11-25 16:09:45 +000063#if defined(HA_HAVE_MALLOC_TRIM)
David Carlierd450ff62021-11-25 16:14:38 +000064 if (using_default_allocator)
65 malloc_trim(0);
David Carliered232142021-11-25 16:09:45 +000066#endif
David Carlierd450ff62021-11-25 16:14:38 +000067 }
Willy Tarreauea3323f2021-09-15 10:38:21 +020068}
69
Willy Tarreau157e3932021-09-15 10:05:48 +020070/* check if we're using the same allocator as the one that provides
71 * malloc_trim() and mallinfo(). The principle is that on glibc, both
72 * malloc_trim() and mallinfo() are provided, and using mallinfo() we
73 * can check if malloc() is performed through glibc or any other one
David Carliered232142021-11-25 16:09:45 +000074 * the executable was linked against (e.g. jemalloc). Prior to this we
75 * have to check whether we're running on jemalloc by verifying if the
76 * mallctl() function is provided. Its pointer will be used later.
Willy Tarreau157e3932021-09-15 10:05:48 +020077 */
78static void detect_allocator(void)
79{
Willy Tarreau781f07a2021-11-26 15:55:55 +010080#if defined(__ELF__)
David Carliered232142021-11-25 16:09:45 +000081 extern int mallctl(const char *, void *, size_t *, void *, size_t) __attribute__((weak));
82
83 my_mallctl = mallctl;
Willy Tarreau781f07a2021-11-26 15:55:55 +010084#endif
David Carliered232142021-11-25 16:09:45 +000085
86 if (!my_mallctl) {
87 my_mallctl = get_sym_curr_addr("mallctl");
88 using_default_allocator = (my_mallctl == NULL);
89 }
90
91 if (!my_mallctl) {
92#if defined(HA_HAVE_MALLOC_TRIM)
Willy Tarreauc2afb862021-09-16 09:18:21 +020093#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +000094 struct mallinfo2 mi1, mi2;
Willy Tarreauc2afb862021-09-16 09:18:21 +020095#else
David Carliered232142021-11-25 16:09:45 +000096 struct mallinfo mi1, mi2;
Willy Tarreauc2afb862021-09-16 09:18:21 +020097#endif
David Carliered232142021-11-25 16:09:45 +000098 void *ptr;
Willy Tarreau157e3932021-09-15 10:05:48 +020099
Willy Tarreauc2afb862021-09-16 09:18:21 +0200100#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000101 mi1 = mallinfo2();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200102#else
David Carliered232142021-11-25 16:09:45 +0000103 mi1 = mallinfo();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200104#endif
David Carliered232142021-11-25 16:09:45 +0000105 ptr = DISGUISE(malloc(1));
Willy Tarreauc2afb862021-09-16 09:18:21 +0200106#ifdef HA_HAVE_MALLINFO2
David Carliered232142021-11-25 16:09:45 +0000107 mi2 = mallinfo2();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200108#else
David Carliered232142021-11-25 16:09:45 +0000109 mi2 = mallinfo();
Willy Tarreauc2afb862021-09-16 09:18:21 +0200110#endif
David Carliered232142021-11-25 16:09:45 +0000111 free(DISGUISE(ptr));
Willy Tarreauea3323f2021-09-15 10:38:21 +0200112
David Carliered232142021-11-25 16:09:45 +0000113 using_default_allocator = !!memcmp(&mi1, &mi2, sizeof(mi1));
114#endif
115 }
Willy Tarreau845b5602021-09-15 10:41:24 +0200116}
117
118static int is_trim_enabled(void)
119{
David Carliered232142021-11-25 16:09:45 +0000120 return using_default_allocator;
Willy Tarreau157e3932021-09-15 10:05:48 +0200121}
Willy Tarreauea3323f2021-09-15 10:38:21 +0200122
Willy Tarreau50e608d2007-05-13 18:26:08 +0200123/* Try to find an existing shared pool with the same characteristics and
124 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +0100125 * is available for a new creation. Two flags are supported :
126 * - MEM_F_SHARED to indicate that the pool may be shared with other users
127 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +0200128 */
129struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
130{
131 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200132 struct pool_head *entry;
133 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200134 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200135 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200136
Willy Tarreauac421112015-10-28 15:09:29 +0100137 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +0200138 * that the malloc() function will never return such a small size,
139 * let's round the size up to something slightly bigger, in order to
140 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +0100141 * This extra (void *) is not accounted for in the size computation
142 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +0200143 *
144 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200145 */
146
Willy Tarreau581bf812016-01-25 02:19:13 +0100147 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +0200148 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +0100149 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
150 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200151
Christopher Fauletb349e482017-08-29 09:52:38 +0200152 /* TODO: thread: we do not lock pool list for now because all pools are
153 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200154 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200155 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200156
157 list_for_each_entry(entry, &pools, list) {
158 if (entry->size == size) {
159 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500160 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200161 * before which we will insert a new one.
162 */
Willy Tarreau1ab6c0b2021-05-05 07:29:01 +0200163 if ((flags & entry->flags & MEM_F_SHARED)
164#ifdef DEBUG_DONT_SHARE_POOLS
165 && strcmp(name, entry->name) == 0
166#endif
167 ) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200168 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200169 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200170 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200171 break;
172 }
173 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200174 else if (entry->size > size) {
175 /* insert before this one */
176 start = &entry->list;
177 break;
178 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200179 }
180
181 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +0200182 if (!pool)
183 pool = calloc(1, sizeof(*pool));
184
Willy Tarreau50e608d2007-05-13 18:26:08 +0200185 if (!pool)
186 return NULL;
187 if (name)
188 strlcpy2(pool->name, name, sizeof(pool->name));
189 pool->size = size;
190 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200191 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200192
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200193#ifdef CONFIG_HAP_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200194 /* update per-thread pool cache if necessary */
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200195 for (thr = 0; thr < MAX_THREADS; thr++) {
196 LIST_INIT(&pool->cache[thr].list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200197 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200198#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100199 }
200 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200201 return pool;
202}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100203
Willy Tarreau13843642021-04-17 16:57:25 +0200204/* Tries to allocate an object for the pool <pool> using the system's allocator
205 * and directly returns it. The pool's allocated counter is checked and updated,
Willy Tarreau8715dec2021-06-10 17:31:48 +0200206 * but no other checks are performed.
Willy Tarreau13843642021-04-17 16:57:25 +0200207 */
208void *pool_get_from_os(struct pool_head *pool)
209{
210 if (!pool->limit || pool->allocated < pool->limit) {
211 void *ptr = pool_alloc_area(pool->size + POOL_EXTRA);
212 if (ptr) {
213 _HA_ATOMIC_INC(&pool->allocated);
214 return ptr;
215 }
216 _HA_ATOMIC_INC(&pool->failed);
217 }
218 activity[tid].pool_fail++;
219 return NULL;
220
221}
222
Willy Tarreau45e4e282021-04-17 17:48:40 +0200223/* Releases a pool item back to the operating system and atomically updates
224 * the allocation counter.
225 */
226void pool_put_to_os(struct pool_head *pool, void *ptr)
227{
Willy Tarreau9a7aa3b2021-06-10 17:20:19 +0200228#ifdef DEBUG_UAF
229 /* This object will be released for real in order to detect a use after
230 * free. We also force a write to the area to ensure we crash on double
231 * free or free of a const area.
232 */
233 *(uint32_t *)ptr = 0xDEADADD4;
234#endif /* DEBUG_UAF */
235
Willy Tarreau45e4e282021-04-17 17:48:40 +0200236 pool_free_area(ptr, pool->size + POOL_EXTRA);
237 _HA_ATOMIC_DEC(&pool->allocated);
238}
239
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200240/* Tries to allocate an object for the pool <pool> using the system's allocator
241 * and directly returns it. The pool's counters are updated but the object is
242 * never cached, so this is usable with and without local or shared caches.
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200243 */
244void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100245{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100246 void *ptr = NULL;
247
Willy Tarreau13843642021-04-17 16:57:25 +0200248 ptr = pool_get_from_os(pool);
249 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100250 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100251
Willy Tarreau13843642021-04-17 16:57:25 +0200252 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200253 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100254
255#ifdef DEBUG_MEMORY_POOLS
256 /* keep track of where the element was allocated from */
257 *POOL_LINK(pool, ptr) = (void *)pool;
258#endif
259 return ptr;
260}
261
Willy Tarreau45e4e282021-04-17 17:48:40 +0200262/* Release a pool item back to the OS and keeps the pool's counters up to date.
263 * This is always defined even when pools are not enabled (their usage stats
264 * are maintained).
265 */
266void pool_free_nocache(struct pool_head *pool, void *ptr)
267{
268 _HA_ATOMIC_DEC(&pool->used);
269 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
270 pool_put_to_os(pool, ptr);
271}
272
Willy Tarreaub8498e92021-04-18 10:23:02 +0200273
274#ifdef CONFIG_HAP_POOLS
275
Willy Tarreau87212032021-04-19 08:14:03 +0200276/* Evicts some of the oldest objects from one local cache, until its number of
277 * objects is no more than 16+1/8 of the total number of locally cached objects
278 * or the total size of the local cache is no more than 75% of its maximum (i.e.
279 * we don't want a single cache to use all the cache for itself). For this, the
280 * list is scanned in reverse.
281 */
282void pool_evict_from_local_cache(struct pool_head *pool)
283{
284 struct pool_cache_head *ph = &pool->cache[tid];
285 struct pool_cache_item *item;
Willy Tarreau87212032021-04-19 08:14:03 +0200286
287 while (ph->count >= 16 + pool_cache_count / 8 &&
288 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4) {
289 item = LIST_NEXT(&ph->list, typeof(item), by_pool);
290 ph->count--;
291 pool_cache_bytes -= pool->size;
292 pool_cache_count--;
Willy Tarreau2b718102021-04-21 07:32:39 +0200293 LIST_DELETE(&item->by_pool);
294 LIST_DELETE(&item->by_lru);
Willy Tarreau87212032021-04-19 08:14:03 +0200295 pool_put_to_shared_cache(pool, item);
296 }
297}
298
Willy Tarreaub8498e92021-04-18 10:23:02 +0200299/* Evicts some of the oldest objects from the local cache, pushing them to the
300 * global pool.
301 */
302void pool_evict_from_local_caches()
303{
304 struct pool_cache_item *item;
305 struct pool_cache_head *ph;
306 struct pool_head *pool;
307
308 do {
Willy Tarreaub4e34762021-09-30 19:02:18 +0200309 item = LIST_PREV(&th_ctx->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200310 /* note: by definition we remove oldest objects so they also are the
311 * oldest in their own pools, thus their next is the pool's head.
312 */
313 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
314 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau2b718102021-04-21 07:32:39 +0200315 LIST_DELETE(&item->by_pool);
316 LIST_DELETE(&item->by_lru);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200317 ph->count--;
318 pool_cache_count--;
319 pool_cache_bytes -= pool->size;
320 pool_put_to_shared_cache(pool, item);
321 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
322}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100323
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200324/* Frees an object to the local cache, possibly pushing oldest objects to the
325 * shared cache, which itself may decide to release some of them to the OS.
326 * While it is unspecified what the object becomes past this point, it is
327 * guaranteed to be released from the users' perpective.
328 */
329void pool_put_to_cache(struct pool_head *pool, void *ptr)
330{
331 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
332 struct pool_cache_head *ph = &pool->cache[tid];
333
Willy Tarreau2b718102021-04-21 07:32:39 +0200334 LIST_INSERT(&ph->list, &item->by_pool);
Willy Tarreaub4e34762021-09-30 19:02:18 +0200335 LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200336 ph->count++;
337 pool_cache_count++;
338 pool_cache_bytes += pool->size;
339
340 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
341 if (ph->count >= 16 + pool_cache_count / 8)
342 pool_evict_from_local_cache(pool);
343 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
344 pool_evict_from_local_caches();
345 }
346}
347
Willy Tarreaueb3cc292021-04-15 18:13:13 +0200348#if defined(CONFIG_HAP_NO_GLOBAL_POOLS)
349
Willy Tarreau0bae0752021-03-02 20:05:09 +0100350/* legacy stuff */
351void pool_flush(struct pool_head *pool)
352{
353}
354
355/* This function might ask the malloc library to trim its buffers. */
356void pool_gc(struct pool_head *pool_ctx)
357{
Willy Tarreauea3323f2021-09-15 10:38:21 +0200358 trim_all_pools();
Willy Tarreau0bae0752021-03-02 20:05:09 +0100359}
360
Willy Tarreau9b3ed512021-06-10 10:21:35 +0200361#else /* CONFIG_HAP_NO_GLOBAL_POOLS */
362
Olivier Houchardcf975d42018-01-24 18:38:31 +0100363/*
364 * This function frees whatever can be freed in pool <pool>.
365 */
366void pool_flush(struct pool_head *pool)
367{
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200368 void *next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100369
370 if (!pool)
371 return;
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200372
373 /* The loop below atomically detaches the head of the free list and
374 * replaces it with a NULL. Then the list can be released.
375 */
376 next = pool->free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100377 do {
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200378 while (unlikely(next == POOL_BUSY)) {
379 __ha_cpu_relax();
380 next = _HA_ATOMIC_LOAD(&pool->free_list);
381 }
382 if (next == NULL)
383 return;
384 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
385 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100386 __ha_barrier_atomic_store();
Willy Tarreau2a4523f2021-06-09 18:59:58 +0200387
Olivier Houchardcf975d42018-01-24 18:38:31 +0100388 while (next) {
389 temp = next;
390 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200391 pool_put_to_os(pool, temp);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100392 }
Willy Tarreauc239cde2021-06-10 06:54:22 +0200393 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100394}
395
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200396/*
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200397 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200398 * the minimum thresholds imposed by owners. It makes sure to be alone to
399 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200400 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100401void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200402{
403 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200404 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200405
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200406 if (!isolated)
407 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200408
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200409 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100410 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200411 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100412 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100413 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100414 temp = entry->free_list;
415 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200416 pool_put_to_os(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200417 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200418 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200419
Willy Tarreauea3323f2021-09-15 10:38:21 +0200420 trim_all_pools();
Willy Tarreau26ed1832021-06-10 08:40:16 +0200421
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200422 if (!isolated)
423 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200424}
Willy Tarreau9b3ed512021-06-10 10:21:35 +0200425#endif /* CONFIG_HAP_NO_GLOBAL_POOLS */
Willy Tarreaub8498e92021-04-18 10:23:02 +0200426
427#else /* CONFIG_HAP_POOLS */
428
429/* legacy stuff */
430void pool_flush(struct pool_head *pool)
431{
432}
433
434/* This function might ask the malloc library to trim its buffers. */
435void pool_gc(struct pool_head *pool_ctx)
436{
Willy Tarreauea3323f2021-09-15 10:38:21 +0200437 trim_all_pools();
Willy Tarreaub8498e92021-04-18 10:23:02 +0200438}
439
440#endif /* CONFIG_HAP_POOLS */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200441
Willy Tarreauf14d1902021-10-05 18:14:11 +0200442
443#ifdef DEBUG_UAF
444
445/************* use-after-free allocator *************/
446
447/* allocates an area of size <size> and returns it. The semantics are similar
448 * to those of malloc(). However the allocation is rounded up to 4kB so that a
449 * full page is allocated. This ensures the object can be freed alone so that
450 * future dereferences are easily detected. The returned object is always
451 * 16-bytes aligned to avoid issues with unaligned structure objects. In case
452 * some padding is added, the area's start address is copied at the end of the
453 * padding to help detect underflows.
454 */
455void *pool_alloc_area_uaf(size_t size)
456{
457 size_t pad = (4096 - size) & 0xFF0;
Willy Tarreauf14d1902021-10-05 18:14:11 +0200458 void *ret;
459
Willy Tarreauf14d1902021-10-05 18:14:11 +0200460 ret = mmap(NULL, (size + 4095) & -4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
461 if (ret != MAP_FAILED) {
462 /* let's dereference the page before returning so that the real
463 * allocation in the system is performed without holding the lock.
464 */
465 *(int *)ret = 0;
466 if (pad >= sizeof(void *))
467 *(void **)(ret + pad - sizeof(void *)) = ret + pad;
468 ret += pad;
469 } else {
470 ret = NULL;
471 }
Willy Tarreauf14d1902021-10-05 18:14:11 +0200472 return ret;
473}
474
475/* frees an area <area> of size <size> allocated by pool_alloc_area(). The
476 * semantics are identical to free() except that the size must absolutely match
477 * the one passed to pool_alloc_area(). In case some padding is added, the
478 * area's start address is compared to the one at the end of the padding, and
479 * a segfault is triggered if they don't match, indicating an underflow.
480 */
481void pool_free_area_uaf(void *area, size_t size)
482{
483 size_t pad = (4096 - size) & 0xFF0;
484
485 if (pad >= sizeof(void *) && *(void **)(area - sizeof(void *)) != area)
486 ABORT_NOW();
487
Willy Tarreauf14d1902021-10-05 18:14:11 +0200488 munmap(area - pad, (size + 4095) & -4096);
Willy Tarreauf14d1902021-10-05 18:14:11 +0200489}
490
491#endif /* DEBUG_UAF */
492
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200493/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200494 * This function destroys a pool by freeing it completely, unless it's still
495 * in use. This should be called only under extreme circumstances. It always
496 * returns NULL if the resulting pool is empty, easing the clearing of the old
497 * pointer, otherwise it returns the pool.
498 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200499 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100500void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200501{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200502 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100503 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200504 if (pool->used)
505 return pool;
506 pool->users--;
507 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200508 LIST_DELETE(&pool->list);
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200509 /* note that if used == 0, the cache is empty */
510 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200511 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200512 }
513 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200514}
515
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100516/* This destroys all pools on exit. It is *not* thread safe. */
517void pool_destroy_all()
518{
519 struct pool_head *entry, *back;
520
521 list_for_each_entry_safe(entry, back, &pools, list)
522 pool_destroy(entry);
523}
524
Willy Tarreau12833bb2014-01-28 16:49:56 +0100525/* This function dumps memory usage information into the trash buffer. */
526void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200527{
528 struct pool_head *entry;
529 unsigned long allocated, used;
530 int nbpools;
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200531#ifdef CONFIG_HAP_POOLS
532 unsigned long cached_bytes = 0;
533 uint cached = 0;
534#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200535
536 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100537 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200538 list_for_each_entry(entry, &pools, list) {
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200539#ifdef CONFIG_HAP_POOLS
540 int i;
541 for (cached = i = 0; i < global.nbthread; i++)
542 cached += entry->cache[i].count;
543 cached_bytes += cached * entry->size;
544#endif
545 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used"
546#ifdef CONFIG_HAP_POOLS
547 " (~%u by thread caches)"
548#endif
549 ", needed_avg %u, %u failures, %u users, @%p%s\n",
550 entry->name, entry->size, entry->allocated,
551 entry->size * entry->allocated, entry->used,
552#ifdef CONFIG_HAP_POOLS
553 cached,
554#endif
555 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
556 entry->users, entry,
557 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200558
559 allocated += entry->allocated * entry->size;
560 used += entry->used * entry->size;
561 nbpools++;
562 }
Willy Tarreau1b4a7142021-10-07 16:29:31 +0200563 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used"
564#ifdef CONFIG_HAP_POOLS
565 " (~%lu by thread caches)"
566#endif
567 ".\n",
568 nbpools, allocated, used
569#ifdef CONFIG_HAP_POOLS
570 , cached_bytes
571#endif
572 );
Willy Tarreau50e608d2007-05-13 18:26:08 +0200573}
574
Willy Tarreau12833bb2014-01-28 16:49:56 +0100575/* Dump statistics on pools usage. */
576void dump_pools(void)
577{
578 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200579 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100580}
581
Willy Tarreau58102cf2015-10-28 16:24:21 +0100582/* This function returns the total number of failed pool allocations */
583int pool_total_failures()
584{
585 struct pool_head *entry;
586 int failed = 0;
587
588 list_for_each_entry(entry, &pools, list)
589 failed += entry->failed;
590 return failed;
591}
592
593/* This function returns the total amount of memory allocated in pools (in bytes) */
594unsigned long pool_total_allocated()
595{
596 struct pool_head *entry;
597 unsigned long allocated = 0;
598
599 list_for_each_entry(entry, &pools, list)
600 allocated += entry->allocated * entry->size;
601 return allocated;
602}
603
604/* This function returns the total amount of memory used in pools (in bytes) */
605unsigned long pool_total_used()
606{
607 struct pool_head *entry;
608 unsigned long used = 0;
609
610 list_for_each_entry(entry, &pools, list)
611 used += entry->used * entry->size;
612 return used;
613}
614
William Lallemande7ed8852016-11-19 02:25:36 +0100615/* This function dumps memory usage information onto the stream interface's
616 * read buffer. It returns 0 as long as it does not complete, non-zero upon
617 * completion. No state is used.
618 */
619static int cli_io_handler_dump_pools(struct appctx *appctx)
620{
621 struct stream_interface *si = appctx->owner;
622
623 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200624 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100625 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100626 return 0;
627 }
628 return 1;
629}
630
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100631/* callback used to create early pool <name> of size <size> and store the
632 * resulting pointer into <ptr>. If the allocation fails, it quits with after
633 * emitting an error message.
634 */
635void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
636{
637 *ptr = create_pool(name, size, MEM_F_SHARED);
638 if (!*ptr) {
639 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
640 name, size, strerror(errno));
641 exit(1);
642 }
643}
644
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100645/* Initializes all per-thread arrays on startup */
646static void init_pools()
647{
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200648#ifdef CONFIG_HAP_POOLS
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200649 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100650
651 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreaub4e34762021-09-30 19:02:18 +0200652 LIST_INIT(&ha_thread_ctx[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100653 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200654#endif
Willy Tarreau157e3932021-09-15 10:05:48 +0200655 detect_allocator();
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100656}
657
658INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100659
Willy Tarreau845b5602021-09-15 10:41:24 +0200660/* Report in build options if trim is supported */
661static void pools_register_build_options(void)
662{
663 if (is_trim_enabled()) {
664 char *ptr = NULL;
665 memprintf(&ptr, "Support for malloc_trim() is enabled.");
666 hap_register_build_opts(ptr, 1);
667 }
668}
669INITCALL0(STG_REGISTER, pools_register_build_options);
670
William Lallemande7ed8852016-11-19 02:25:36 +0100671/* register cli keywords */
672static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200673 { { "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 +0100674 {{},}
675}};
676
Willy Tarreau0108d902018-11-25 19:14:37 +0100677INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100678
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100679#ifdef DEBUG_FAIL_ALLOC
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100680
681int mem_should_fail(const struct pool_head *pool)
682{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100683 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100684
685 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau20f88ab2021-04-17 15:50:28 +0200686 if (mem_fail_rate > statistical_prng_range(100))
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100687 ret = 1;
688 else
689 ret = 0;
690 }
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100691 return ret;
692
693}
694
695/* config parser for global "tune.fail-alloc" */
696static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100697 const struct proxy *defpx, const char *file, int line,
698 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100699{
700 if (too_many_args(1, args, err, NULL))
701 return -1;
702 mem_fail_rate = atoi(args[1]);
703 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
704 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
705 return -1;
706 }
707 return 0;
708}
709#endif
710
711/* register global config keywords */
712static struct cfg_kw_list mem_cfg_kws = {ILH, {
713#ifdef DEBUG_FAIL_ALLOC
714 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
715#endif
716 { 0, NULL, NULL }
717}};
718
719INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
720
Willy Tarreau50e608d2007-05-13 18:26:08 +0200721/*
722 * Local variables:
723 * c-indent-level: 8
724 * c-basic-offset: 8
725 * End:
726 */