blob: 4f2e1f03f9c2fe312560015f14b9848572813f92 [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 Tarreau7107c8b2018-11-26 11:44:35 +010012#include <errno.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020013
Willy Tarreaub2551052020-06-09 09:07:15 +020014#include <haproxy/activity-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020016#include <haproxy/applet-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020017#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020018#include <haproxy/channel.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020019#include <haproxy/cli.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020020#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020021#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020022#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/pool.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020024#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020025#include <haproxy/stream_interface.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020027#include <haproxy/tools.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020028
Willy Tarreau50e608d2007-05-13 18:26:08 +020029
Willy Tarreau2d6f6282021-04-15 16:24:00 +020030#ifdef CONFIG_HAP_POOLS
Willy Tarreau7f0165e2018-11-26 17:09:46 +010031/* These ones are initialized per-thread on startup by init_pools() */
Willy Tarreaue18db9e2018-10-16 10:28:54 +020032THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
33THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
Willy Tarreaued891fd2020-06-01 19:00:28 +020034#endif
Willy Tarreaue18db9e2018-10-16 10:28:54 +020035
Willy Tarreau50e608d2007-05-13 18:26:08 +020036static struct list pools = LIST_HEAD_INIT(pools);
Willy Tarreau067ac9f2015-10-08 14:12:13 +020037int mem_poison_byte = -1;
Willy Tarreau50e608d2007-05-13 18:26:08 +020038
Olivier Houcharddc21ff72019-01-29 15:20:16 +010039#ifdef DEBUG_FAIL_ALLOC
40static int mem_fail_rate = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +010041#endif
42
Willy Tarreau33298de2021-09-15 10:38:21 +020043#if defined(HA_HAVE_MALLOC_TRIM)
Willy Tarreau562bf202021-09-15 10:05:48 +020044static int using_libc_allocator = 0;
45
Willy Tarreau619a5112021-12-23 09:26:30 +010046/* ask the allocator to trim memory pools.
47 * This must run under thread isolation so that competing threads trying to
48 * allocate or release memory do not prevent the allocator from completing
49 * its job. We just have to be careful as callers might already be isolated
50 * themselves.
51 */
Willy Tarreau33298de2021-09-15 10:38:21 +020052static void trim_all_pools(void)
53{
Willy Tarreau619a5112021-12-23 09:26:30 +010054 int isolated = thread_isolated();
55
56 if (!isolated)
57 thread_isolate();
58
Willy Tarreau33298de2021-09-15 10:38:21 +020059 if (using_libc_allocator)
60 malloc_trim(0);
Willy Tarreau619a5112021-12-23 09:26:30 +010061
62 if (!isolated)
63 thread_release();
Willy Tarreau33298de2021-09-15 10:38:21 +020064}
65
Willy Tarreau562bf202021-09-15 10:05:48 +020066/* check if we're using the same allocator as the one that provides
67 * malloc_trim() and mallinfo(). The principle is that on glibc, both
68 * malloc_trim() and mallinfo() are provided, and using mallinfo() we
69 * can check if malloc() is performed through glibc or any other one
70 * the executable was linked against (e.g. jemalloc).
71 */
72static void detect_allocator(void)
73{
Willy Tarreau3bf75692021-09-16 09:18:21 +020074#ifdef HA_HAVE_MALLINFO2
75 struct mallinfo2 mi1, mi2;
76#else
Willy Tarreau562bf202021-09-15 10:05:48 +020077 struct mallinfo mi1, mi2;
Willy Tarreau3bf75692021-09-16 09:18:21 +020078#endif
Willy Tarreau562bf202021-09-15 10:05:48 +020079 void *ptr;
80
Willy Tarreau3bf75692021-09-16 09:18:21 +020081#ifdef HA_HAVE_MALLINFO2
82 mi1 = mallinfo2();
83#else
Willy Tarreau562bf202021-09-15 10:05:48 +020084 mi1 = mallinfo();
Willy Tarreau3bf75692021-09-16 09:18:21 +020085#endif
Willy Tarreau562bf202021-09-15 10:05:48 +020086 ptr = DISGUISE(malloc(1));
Willy Tarreau3bf75692021-09-16 09:18:21 +020087#ifdef HA_HAVE_MALLINFO2
88 mi2 = mallinfo2();
89#else
Willy Tarreau562bf202021-09-15 10:05:48 +020090 mi2 = mallinfo();
Willy Tarreau3bf75692021-09-16 09:18:21 +020091#endif
Willy Tarreau562bf202021-09-15 10:05:48 +020092 free(DISGUISE(ptr));
93
94 using_libc_allocator = !!memcmp(&mi1, &mi2, sizeof(mi1));
95}
Willy Tarreau33298de2021-09-15 10:38:21 +020096#else
97
98static void trim_all_pools(void)
99{
100}
Willy Tarreau562bf202021-09-15 10:05:48 +0200101
102static void detect_allocator(void)
103{
104}
Willy Tarreau33298de2021-09-15 10:38:21 +0200105#endif
106
Willy Tarreau50e608d2007-05-13 18:26:08 +0200107/* Try to find an existing shared pool with the same characteristics and
108 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +0100109 * is available for a new creation. Two flags are supported :
110 * - MEM_F_SHARED to indicate that the pool may be shared with other users
111 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +0200112 */
113struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
114{
115 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200116 struct pool_head *entry;
117 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200118 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200119 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200120
Willy Tarreauac421112015-10-28 15:09:29 +0100121 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +0200122 * that the malloc() function will never return such a small size,
123 * let's round the size up to something slightly bigger, in order to
124 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +0100125 * This extra (void *) is not accounted for in the size computation
126 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +0200127 *
128 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200129 */
130
Willy Tarreau581bf812016-01-25 02:19:13 +0100131 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +0200132 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +0100133 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
134 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200135
Christopher Fauletb349e482017-08-29 09:52:38 +0200136 /* TODO: thread: we do not lock pool list for now because all pools are
137 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200138 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200139 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200140
141 list_for_each_entry(entry, &pools, list) {
142 if (entry->size == size) {
143 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500144 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200145 * before which we will insert a new one.
146 */
Willy Tarreau1ab6c0b2021-05-05 07:29:01 +0200147 if ((flags & entry->flags & MEM_F_SHARED)
148#ifdef DEBUG_DONT_SHARE_POOLS
149 && strcmp(name, entry->name) == 0
150#endif
151 ) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200152 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200153 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200154 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200155 break;
156 }
157 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200158 else if (entry->size > size) {
159 /* insert before this one */
160 start = &entry->list;
161 break;
162 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200163 }
164
165 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +0200166 if (!pool)
167 pool = calloc(1, sizeof(*pool));
168
Willy Tarreau50e608d2007-05-13 18:26:08 +0200169 if (!pool)
170 return NULL;
171 if (name)
172 strlcpy2(pool->name, name, sizeof(pool->name));
173 pool->size = size;
174 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200175 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200176
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200177#ifdef CONFIG_HAP_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200178 /* update per-thread pool cache if necessary */
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200179 for (thr = 0; thr < MAX_THREADS; thr++) {
180 LIST_INIT(&pool->cache[thr].list);
Willy Tarreau674843a2022-02-09 16:33:22 +0100181 pool->cache[thr].tid = thr;
182 pool->cache[thr].pool = pool;
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200183 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200184#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100185 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100186 }
187 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200188 return pool;
189}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100190
Willy Tarreau13843642021-04-17 16:57:25 +0200191/* Tries to allocate an object for the pool <pool> using the system's allocator
192 * and directly returns it. The pool's allocated counter is checked and updated,
193 * but no other checks are performed. The pool's lock is not used and is not a
194 * problem either.
195 */
196void *pool_get_from_os(struct pool_head *pool)
197{
198 if (!pool->limit || pool->allocated < pool->limit) {
199 void *ptr = pool_alloc_area(pool->size + POOL_EXTRA);
200 if (ptr) {
201 _HA_ATOMIC_INC(&pool->allocated);
202 return ptr;
203 }
204 _HA_ATOMIC_INC(&pool->failed);
205 }
206 activity[tid].pool_fail++;
207 return NULL;
208
209}
210
Willy Tarreau45e4e282021-04-17 17:48:40 +0200211/* Releases a pool item back to the operating system and atomically updates
212 * the allocation counter.
213 */
214void pool_put_to_os(struct pool_head *pool, void *ptr)
215{
Willy Tarreau11e7af32021-06-10 17:20:19 +0200216#ifdef DEBUG_UAF
217 /* This object will be released for real in order to detect a use after
218 * free. We also force a write to the area to ensure we crash on double
219 * free or free of a const area.
220 */
221 *(uint32_t *)ptr = 0xDEADADD4;
222#endif /* DEBUG_UAF */
223
Willy Tarreau45e4e282021-04-17 17:48:40 +0200224 pool_free_area(ptr, pool->size + POOL_EXTRA);
225 _HA_ATOMIC_DEC(&pool->allocated);
226}
227
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200228/* Tries to allocate an object for the pool <pool> using the system's allocator
229 * and directly returns it. The pool's counters are updated but the object is
230 * never cached, so this is usable with and without local or shared caches.
231 * This may be called with or without the pool lock held, so it must not use
232 * the pool's lock.
233 */
234void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100235{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100236 void *ptr = NULL;
237
Willy Tarreau13843642021-04-17 16:57:25 +0200238 ptr = pool_get_from_os(pool);
239 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100240 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100241
Willy Tarreau13843642021-04-17 16:57:25 +0200242 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200243 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100244
245#ifdef DEBUG_MEMORY_POOLS
246 /* keep track of where the element was allocated from */
247 *POOL_LINK(pool, ptr) = (void *)pool;
248#endif
249 return ptr;
250}
251
Willy Tarreau45e4e282021-04-17 17:48:40 +0200252/* Release a pool item back to the OS and keeps the pool's counters up to date.
253 * This is always defined even when pools are not enabled (their usage stats
254 * are maintained).
255 */
256void pool_free_nocache(struct pool_head *pool, void *ptr)
257{
258 _HA_ATOMIC_DEC(&pool->used);
259 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
260 pool_put_to_os(pool, ptr);
261}
262
Willy Tarreaub8498e92021-04-18 10:23:02 +0200263
264#ifdef CONFIG_HAP_POOLS
265
Willy Tarreau87212032021-04-19 08:14:03 +0200266/* Evicts some of the oldest objects from one local cache, until its number of
267 * objects is no more than 16+1/8 of the total number of locally cached objects
268 * or the total size of the local cache is no more than 75% of its maximum (i.e.
269 * we don't want a single cache to use all the cache for itself). For this, the
270 * list is scanned in reverse.
271 */
Willy Tarreau9043da72022-02-09 16:19:24 +0100272void pool_evict_from_local_cache(struct pool_head *pool, int full)
Willy Tarreau87212032021-04-19 08:14:03 +0200273{
274 struct pool_cache_head *ph = &pool->cache[tid];
275 struct pool_cache_item *item;
Willy Tarreau87212032021-04-19 08:14:03 +0200276
Willy Tarreau9043da72022-02-09 16:19:24 +0100277 while ((ph->count && full) ||
278 (ph->count >= 16 + pool_cache_count / 8 &&
279 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
Willy Tarreau87212032021-04-19 08:14:03 +0200280 item = LIST_NEXT(&ph->list, typeof(item), by_pool);
Willy Tarreau9a3cd532022-02-09 16:23:55 +0100281 BUG_ON(&item->by_pool == &ph->list);
Willy Tarreau87212032021-04-19 08:14:03 +0200282 ph->count--;
283 pool_cache_bytes -= pool->size;
284 pool_cache_count--;
Willy Tarreauc2418432022-01-21 19:00:25 +0100285 pool_check_pattern(ph, item, pool->size);
Willy Tarreau2b718102021-04-21 07:32:39 +0200286 LIST_DELETE(&item->by_pool);
287 LIST_DELETE(&item->by_lru);
Willy Tarreau87212032021-04-19 08:14:03 +0200288 pool_put_to_shared_cache(pool, item);
289 }
290}
291
Willy Tarreaub8498e92021-04-18 10:23:02 +0200292/* Evicts some of the oldest objects from the local cache, pushing them to the
293 * global pool.
294 */
295void pool_evict_from_local_caches()
296{
297 struct pool_cache_item *item;
298 struct pool_cache_head *ph;
299 struct pool_head *pool;
300
301 do {
302 item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreau9a3cd532022-02-09 16:23:55 +0100303 BUG_ON(&item->by_lru == &ti->pool_lru_head);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200304 /* note: by definition we remove oldest objects so they also are the
305 * oldest in their own pools, thus their next is the pool's head.
306 */
307 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
Willy Tarreau674843a2022-02-09 16:33:22 +0100308 BUG_ON(ph->tid != tid);
309
Willy Tarreaub8498e92021-04-18 10:23:02 +0200310 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau674843a2022-02-09 16:33:22 +0100311 BUG_ON(pool != ph->pool);
312
Willy Tarreauc2418432022-01-21 19:00:25 +0100313 pool_check_pattern(ph, item, pool->size);
Willy Tarreau2b718102021-04-21 07:32:39 +0200314 LIST_DELETE(&item->by_pool);
315 LIST_DELETE(&item->by_lru);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200316 ph->count--;
317 pool_cache_count--;
318 pool_cache_bytes -= pool->size;
319 pool_put_to_shared_cache(pool, item);
320 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
321}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100322
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200323/* Frees an object to the local cache, possibly pushing oldest objects to the
324 * shared cache, which itself may decide to release some of them to the OS.
325 * While it is unspecified what the object becomes past this point, it is
326 * guaranteed to be released from the users' perpective.
327 */
328void pool_put_to_cache(struct pool_head *pool, void *ptr)
329{
330 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
331 struct pool_cache_head *ph = &pool->cache[tid];
332
Willy Tarreau2b718102021-04-21 07:32:39 +0200333 LIST_INSERT(&ph->list, &item->by_pool);
334 LIST_INSERT(&ti->pool_lru_head, &item->by_lru);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200335 ph->count++;
Willy Tarreauc2418432022-01-21 19:00:25 +0100336 pool_fill_pattern(ph, item, pool->size);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200337 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)
Willy Tarreau9043da72022-02-09 16:19:24 +0100342 pool_evict_from_local_cache(pool, 0);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200343 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 Tarreau33298de2021-09-15 10:38:21 +0200358 trim_all_pools();
Willy Tarreau0bae0752021-03-02 20:05:09 +0100359}
360
Willy Tarreaua206cf92021-06-10 10:21:35 +0200361#else /* CONFIG_HAP_NO_GLOBAL_POOLS */
362
363#if defined(CONFIG_HAP_LOCKLESS_POOLS)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100364
Olivier Houchardcf975d42018-01-24 18:38:31 +0100365/*
366 * This function frees whatever can be freed in pool <pool>.
367 */
368void pool_flush(struct pool_head *pool)
369{
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200370 void *next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100371
372 if (!pool)
373 return;
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200374
375 /* The loop below atomically detaches the head of the free list and
376 * replaces it with a NULL. Then the list can be released.
377 */
378 next = pool->free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100379 do {
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200380 while (unlikely(next == POOL_BUSY)) {
381 __ha_cpu_relax();
382 next = _HA_ATOMIC_LOAD(&pool->free_list);
383 }
384 if (next == NULL)
385 return;
386 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
387 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100388 __ha_barrier_atomic_store();
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200389
Olivier Houchardcf975d42018-01-24 18:38:31 +0100390 while (next) {
391 temp = next;
392 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200393 pool_put_to_os(pool, temp);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100394 }
Willy Tarreaucaf65552021-06-10 06:54:22 +0200395 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100396}
397
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100398#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200399
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200400/*
401 * This function frees whatever can be freed in pool <pool>.
402 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100403void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200404{
Willy Tarreauaf8120a2021-06-10 07:13:04 +0200405 void *temp, **next;
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200406
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200407 if (!pool)
408 return;
409
Willy Tarreauaf8120a2021-06-10 07:13:04 +0200410 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
411 next = pool->free_list;
412 pool->free_list = NULL;
413 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
414
415 while (next) {
416 temp = next;
417 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200418 pool_put_to_os(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200419 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200420 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200421}
422
Willy Tarreaua206cf92021-06-10 10:21:35 +0200423#endif /* CONFIG_HAP_LOCKLESS_POOLS */
424
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200425/*
426 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200427 * the minimum thresholds imposed by owners. It makes sure to be alone to
428 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200429 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100430void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200431{
432 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200433 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200434
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200435 if (!isolated)
436 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200437
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200438 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100439 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200440 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100441 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100442 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100443 temp = entry->free_list;
444 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200445 pool_put_to_os(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200446 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200447 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200448
Willy Tarreau33298de2021-09-15 10:38:21 +0200449 trim_all_pools();
Willy Tarreau46b515c2021-06-10 08:40:16 +0200450
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200451 if (!isolated)
452 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200453}
Willy Tarreaua206cf92021-06-10 10:21:35 +0200454#endif /* CONFIG_HAP_NO_GLOBAL_POOLS */
Willy Tarreaub8498e92021-04-18 10:23:02 +0200455
456#else /* CONFIG_HAP_POOLS */
457
458/* legacy stuff */
459void pool_flush(struct pool_head *pool)
460{
461}
462
463/* This function might ask the malloc library to trim its buffers. */
464void pool_gc(struct pool_head *pool_ctx)
465{
Willy Tarreau33298de2021-09-15 10:38:21 +0200466 trim_all_pools();
Willy Tarreaub8498e92021-04-18 10:23:02 +0200467}
468
469#endif /* CONFIG_HAP_POOLS */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200470
471/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200472 * This function destroys a pool by freeing it completely, unless it's still
473 * in use. This should be called only under extreme circumstances. It always
474 * returns NULL if the resulting pool is empty, easing the clearing of the old
475 * pointer, otherwise it returns the pool.
476 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200477 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100478void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200479{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200480 if (pool) {
Willy Tarreau9043da72022-02-09 16:19:24 +0100481#ifdef CONFIG_HAP_POOLS
482 pool_evict_from_local_cache(pool, 1);
483#endif
Willy Tarreaubafbe012017-11-24 17:34:44 +0100484 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200485 if (pool->used)
486 return pool;
487 pool->users--;
488 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200489 LIST_DELETE(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100490#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100491 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100492#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200493 /* note that if used == 0, the cache is empty */
494 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200495 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200496 }
497 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200498}
499
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100500/* This destroys all pools on exit. It is *not* thread safe. */
501void pool_destroy_all()
502{
503 struct pool_head *entry, *back;
504
505 list_for_each_entry_safe(entry, back, &pools, list)
506 pool_destroy(entry);
507}
508
Willy Tarreau12833bb2014-01-28 16:49:56 +0100509/* This function dumps memory usage information into the trash buffer. */
510void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200511{
512 struct pool_head *entry;
513 unsigned long allocated, used;
514 int nbpools;
515
516 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100517 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200518 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100519#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100520 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100521#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200522 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used, needed_avg %u, %u failures, %u users, @%p%s\n",
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200523 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200524 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200525 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200526 entry->users, entry,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200527 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200528
529 allocated += entry->allocated * entry->size;
530 used += entry->used * entry->size;
531 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100532#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100533 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100534#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200535 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100536 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200537 nbpools, allocated, used);
538}
539
Willy Tarreau12833bb2014-01-28 16:49:56 +0100540/* Dump statistics on pools usage. */
541void dump_pools(void)
542{
543 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200544 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100545}
546
Willy Tarreau58102cf2015-10-28 16:24:21 +0100547/* This function returns the total number of failed pool allocations */
548int pool_total_failures()
549{
550 struct pool_head *entry;
551 int failed = 0;
552
553 list_for_each_entry(entry, &pools, list)
554 failed += entry->failed;
555 return failed;
556}
557
558/* This function returns the total amount of memory allocated in pools (in bytes) */
559unsigned long pool_total_allocated()
560{
561 struct pool_head *entry;
562 unsigned long allocated = 0;
563
564 list_for_each_entry(entry, &pools, list)
565 allocated += entry->allocated * entry->size;
566 return allocated;
567}
568
569/* This function returns the total amount of memory used in pools (in bytes) */
570unsigned long pool_total_used()
571{
572 struct pool_head *entry;
573 unsigned long used = 0;
574
575 list_for_each_entry(entry, &pools, list)
576 used += entry->used * entry->size;
577 return used;
578}
579
William Lallemande7ed8852016-11-19 02:25:36 +0100580/* This function dumps memory usage information onto the stream interface's
581 * read buffer. It returns 0 as long as it does not complete, non-zero upon
582 * completion. No state is used.
583 */
584static int cli_io_handler_dump_pools(struct appctx *appctx)
585{
586 struct stream_interface *si = appctx->owner;
587
588 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200589 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100590 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100591 return 0;
592 }
593 return 1;
594}
595
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100596/* callback used to create early pool <name> of size <size> and store the
597 * resulting pointer into <ptr>. If the allocation fails, it quits with after
598 * emitting an error message.
599 */
600void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
601{
602 *ptr = create_pool(name, size, MEM_F_SHARED);
603 if (!*ptr) {
604 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
605 name, size, strerror(errno));
606 exit(1);
607 }
608}
609
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100610/* Initializes all per-thread arrays on startup */
611static void init_pools()
612{
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200613#ifdef CONFIG_HAP_POOLS
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200614 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100615
616 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200617 LIST_INIT(&ha_thread_info[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100618 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200619#endif
Willy Tarreau562bf202021-09-15 10:05:48 +0200620 detect_allocator();
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100621}
622
623INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100624
William Lallemande7ed8852016-11-19 02:25:36 +0100625/* register cli keywords */
626static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200627 { { "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 +0100628 {{},}
629}};
630
Willy Tarreau0108d902018-11-25 19:14:37 +0100631INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100632
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100633#ifdef DEBUG_FAIL_ALLOC
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100634
635int mem_should_fail(const struct pool_head *pool)
636{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100637 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100638
639 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau20f88ab2021-04-17 15:50:28 +0200640 if (mem_fail_rate > statistical_prng_range(100))
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100641 ret = 1;
642 else
643 ret = 0;
644 }
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100645 return ret;
646
647}
648
649/* config parser for global "tune.fail-alloc" */
650static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100651 const struct proxy *defpx, const char *file, int line,
652 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100653{
654 if (too_many_args(1, args, err, NULL))
655 return -1;
656 mem_fail_rate = atoi(args[1]);
657 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
658 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
659 return -1;
660 }
661 return 0;
662}
663#endif
664
665/* register global config keywords */
666static struct cfg_kw_list mem_cfg_kws = {ILH, {
667#ifdef DEBUG_FAIL_ALLOC
668 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
669#endif
670 { 0, NULL, NULL }
671}};
672
673INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
674
Willy Tarreau50e608d2007-05-13 18:26:08 +0200675/*
676 * Local variables:
677 * c-indent-level: 8
678 * c-basic-offset: 8
679 * End:
680 */