blob: c69143a089499df5c7ba9d239e2e8cf7e9a45133 [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 Tarreau50e608d2007-05-13 18:26:08 +020043/* Try to find an existing shared pool with the same characteristics and
44 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +010045 * is available for a new creation. Two flags are supported :
46 * - MEM_F_SHARED to indicate that the pool may be shared with other users
47 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +020048 */
49struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
50{
51 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020052 struct pool_head *entry;
53 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +020054 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +020055 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +020056
Willy Tarreauac421112015-10-28 15:09:29 +010057 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +020058 * that the malloc() function will never return such a small size,
59 * let's round the size up to something slightly bigger, in order to
60 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +010061 * This extra (void *) is not accounted for in the size computation
62 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +020063 *
64 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +020065 */
66
Willy Tarreau581bf812016-01-25 02:19:13 +010067 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +020068 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +010069 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
70 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020071
Christopher Fauletb349e482017-08-29 09:52:38 +020072 /* TODO: thread: we do not lock pool list for now because all pools are
73 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020074 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +020075 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020076
77 list_for_each_entry(entry, &pools, list) {
78 if (entry->size == size) {
79 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +050080 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020081 * before which we will insert a new one.
82 */
Willy Tarreau1ab6c0b2021-05-05 07:29:01 +020083 if ((flags & entry->flags & MEM_F_SHARED)
84#ifdef DEBUG_DONT_SHARE_POOLS
85 && strcmp(name, entry->name) == 0
86#endif
87 ) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020088 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +020089 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020090 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +020091 break;
92 }
93 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020094 else if (entry->size > size) {
95 /* insert before this one */
96 start = &entry->list;
97 break;
98 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020099 }
100
101 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +0200102 if (!pool)
103 pool = calloc(1, sizeof(*pool));
104
Willy Tarreau50e608d2007-05-13 18:26:08 +0200105 if (!pool)
106 return NULL;
107 if (name)
108 strlcpy2(pool->name, name, sizeof(pool->name));
109 pool->size = size;
110 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200111 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200112
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200113#ifdef CONFIG_HAP_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200114 /* update per-thread pool cache if necessary */
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200115 for (thr = 0; thr < MAX_THREADS; thr++) {
116 LIST_INIT(&pool->cache[thr].list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200117 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200118#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100119 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100120 }
121 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200122 return pool;
123}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100124
Willy Tarreau13843642021-04-17 16:57:25 +0200125/* Tries to allocate an object for the pool <pool> using the system's allocator
126 * and directly returns it. The pool's allocated counter is checked and updated,
127 * but no other checks are performed. The pool's lock is not used and is not a
128 * problem either.
129 */
130void *pool_get_from_os(struct pool_head *pool)
131{
132 if (!pool->limit || pool->allocated < pool->limit) {
133 void *ptr = pool_alloc_area(pool->size + POOL_EXTRA);
134 if (ptr) {
135 _HA_ATOMIC_INC(&pool->allocated);
136 return ptr;
137 }
138 _HA_ATOMIC_INC(&pool->failed);
139 }
140 activity[tid].pool_fail++;
141 return NULL;
142
143}
144
Willy Tarreau45e4e282021-04-17 17:48:40 +0200145/* Releases a pool item back to the operating system and atomically updates
146 * the allocation counter.
147 */
148void pool_put_to_os(struct pool_head *pool, void *ptr)
149{
Willy Tarreau9a7aa3b2021-06-10 17:20:19 +0200150#ifdef DEBUG_UAF
151 /* This object will be released for real in order to detect a use after
152 * free. We also force a write to the area to ensure we crash on double
153 * free or free of a const area.
154 */
155 *(uint32_t *)ptr = 0xDEADADD4;
156#endif /* DEBUG_UAF */
157
Willy Tarreau45e4e282021-04-17 17:48:40 +0200158 pool_free_area(ptr, pool->size + POOL_EXTRA);
159 _HA_ATOMIC_DEC(&pool->allocated);
160}
161
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200162/* Tries to allocate an object for the pool <pool> using the system's allocator
163 * and directly returns it. The pool's counters are updated but the object is
164 * never cached, so this is usable with and without local or shared caches.
165 * This may be called with or without the pool lock held, so it must not use
166 * the pool's lock.
167 */
168void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100169{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100170 void *ptr = NULL;
171
Willy Tarreau13843642021-04-17 16:57:25 +0200172 ptr = pool_get_from_os(pool);
173 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100174 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100175
Willy Tarreau13843642021-04-17 16:57:25 +0200176 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200177 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100178
179#ifdef DEBUG_MEMORY_POOLS
180 /* keep track of where the element was allocated from */
181 *POOL_LINK(pool, ptr) = (void *)pool;
182#endif
183 return ptr;
184}
185
Willy Tarreau45e4e282021-04-17 17:48:40 +0200186/* Release a pool item back to the OS and keeps the pool's counters up to date.
187 * This is always defined even when pools are not enabled (their usage stats
188 * are maintained).
189 */
190void pool_free_nocache(struct pool_head *pool, void *ptr)
191{
192 _HA_ATOMIC_DEC(&pool->used);
193 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
194 pool_put_to_os(pool, ptr);
195}
196
Willy Tarreaub8498e92021-04-18 10:23:02 +0200197
198#ifdef CONFIG_HAP_POOLS
199
Willy Tarreau87212032021-04-19 08:14:03 +0200200/* Evicts some of the oldest objects from one local cache, until its number of
201 * objects is no more than 16+1/8 of the total number of locally cached objects
202 * or the total size of the local cache is no more than 75% of its maximum (i.e.
203 * we don't want a single cache to use all the cache for itself). For this, the
204 * list is scanned in reverse.
205 */
206void pool_evict_from_local_cache(struct pool_head *pool)
207{
208 struct pool_cache_head *ph = &pool->cache[tid];
209 struct pool_cache_item *item;
Willy Tarreau87212032021-04-19 08:14:03 +0200210
211 while (ph->count >= 16 + pool_cache_count / 8 &&
212 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4) {
213 item = LIST_NEXT(&ph->list, typeof(item), by_pool);
214 ph->count--;
215 pool_cache_bytes -= pool->size;
216 pool_cache_count--;
Willy Tarreau2b718102021-04-21 07:32:39 +0200217 LIST_DELETE(&item->by_pool);
218 LIST_DELETE(&item->by_lru);
Willy Tarreau87212032021-04-19 08:14:03 +0200219 pool_put_to_shared_cache(pool, item);
220 }
221}
222
Willy Tarreaub8498e92021-04-18 10:23:02 +0200223/* Evicts some of the oldest objects from the local cache, pushing them to the
224 * global pool.
225 */
226void pool_evict_from_local_caches()
227{
228 struct pool_cache_item *item;
229 struct pool_cache_head *ph;
230 struct pool_head *pool;
231
232 do {
233 item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru);
234 /* note: by definition we remove oldest objects so they also are the
235 * oldest in their own pools, thus their next is the pool's head.
236 */
237 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
238 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau2b718102021-04-21 07:32:39 +0200239 LIST_DELETE(&item->by_pool);
240 LIST_DELETE(&item->by_lru);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200241 ph->count--;
242 pool_cache_count--;
243 pool_cache_bytes -= pool->size;
244 pool_put_to_shared_cache(pool, item);
245 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
246}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100247
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200248/* Frees an object to the local cache, possibly pushing oldest objects to the
249 * shared cache, which itself may decide to release some of them to the OS.
250 * While it is unspecified what the object becomes past this point, it is
251 * guaranteed to be released from the users' perpective.
252 */
253void pool_put_to_cache(struct pool_head *pool, void *ptr)
254{
255 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
256 struct pool_cache_head *ph = &pool->cache[tid];
257
Willy Tarreau2b718102021-04-21 07:32:39 +0200258 LIST_INSERT(&ph->list, &item->by_pool);
259 LIST_INSERT(&ti->pool_lru_head, &item->by_lru);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200260 ph->count++;
261 pool_cache_count++;
262 pool_cache_bytes += pool->size;
263
264 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
265 if (ph->count >= 16 + pool_cache_count / 8)
266 pool_evict_from_local_cache(pool);
267 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
268 pool_evict_from_local_caches();
269 }
270}
271
Willy Tarreaueb3cc292021-04-15 18:13:13 +0200272#if defined(CONFIG_HAP_NO_GLOBAL_POOLS)
273
Willy Tarreau0bae0752021-03-02 20:05:09 +0100274/* legacy stuff */
275void pool_flush(struct pool_head *pool)
276{
277}
278
279/* This function might ask the malloc library to trim its buffers. */
280void pool_gc(struct pool_head *pool_ctx)
281{
282#if defined(HA_HAVE_MALLOC_TRIM)
283 malloc_trim(0);
284#endif
285}
286
287#elif defined(CONFIG_HAP_LOCKLESS_POOLS)
288
Olivier Houchardcf975d42018-01-24 18:38:31 +0100289/*
290 * This function frees whatever can be freed in pool <pool>.
291 */
292void pool_flush(struct pool_head *pool)
293{
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100294 struct pool_free_list cmp, new;
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200295 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100296
297 if (!pool)
298 return;
Willy Tarreau21072b92020-05-29 17:23:05 +0200299 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100300 do {
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100301 cmp.free_list = pool->free_list;
302 cmp.seq = pool->seq;
303 new.free_list = NULL;
304 new.seq = cmp.seq + 1;
305 } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new));
Olivier Houchard20872762019-03-08 18:53:35 +0100306 __ha_barrier_atomic_store();
Willy Tarreau21072b92020-05-29 17:23:05 +0200307 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100308 next = cmp.free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100309 while (next) {
310 temp = next;
311 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200312 pool_put_to_os(pool, temp);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100313 }
Willy Tarreauc239cde2021-06-10 06:54:22 +0200314 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100315}
316
317/*
318 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200319 * the minimum thresholds imposed by owners. It makes sure to be alone to
320 * run by using thread_isolate(). <pool_ctx> is unused.
Olivier Houchardcf975d42018-01-24 18:38:31 +0100321 */
322void pool_gc(struct pool_head *pool_ctx)
323{
Olivier Houchardcf975d42018-01-24 18:38:31 +0100324 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200325 int isolated = thread_isolated();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100326
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200327 if (!isolated)
328 thread_isolate();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100329
330 list_for_each_entry(entry, &pools, list) {
331 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
332 struct pool_free_list cmp, new;
333
334 cmp.seq = entry->seq;
335 __ha_barrier_load();
336 cmp.free_list = entry->free_list;
337 __ha_barrier_load();
338 if (cmp.free_list == NULL)
339 break;
340 new.free_list = *POOL_LINK(entry, cmp.free_list);
341 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200342 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100343 continue;
Willy Tarreau45e4e282021-04-17 17:48:40 +0200344 pool_put_to_os(entry, cmp.free_list);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100345 }
346 }
347
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200348 if (!isolated)
349 thread_release();
Willy Tarreau88366c22020-11-03 15:53:34 +0100350
351#if defined(HA_HAVE_MALLOC_TRIM)
352 malloc_trim(0);
353#endif
Olivier Houchardcf975d42018-01-24 18:38:31 +0100354}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200355
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100356#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200357
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200358/*
359 * This function frees whatever can be freed in pool <pool>.
360 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100361void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200362{
Willy Tarreauc8891432021-06-10 07:13:04 +0200363 void *temp, **next;
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200364
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200365 if (!pool)
366 return;
367
Willy Tarreauc8891432021-06-10 07:13:04 +0200368 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
369 next = pool->free_list;
370 pool->free_list = NULL;
371 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
372
373 while (next) {
374 temp = next;
375 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200376 pool_put_to_os(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200377 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200378 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200379}
380
381/*
382 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200383 * the minimum thresholds imposed by owners. It makes sure to be alone to
384 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200385 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100386void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200387{
388 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200389 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200390
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200391 if (!isolated)
392 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200393
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200394 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100395 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200396 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100397 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100398 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100399 temp = entry->free_list;
400 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200401 pool_put_to_os(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200402 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200403 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200404
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200405 if (!isolated)
406 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200407}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200408#endif /* CONFIG_HAP_LOCKLESS_POOLS */
409
410#else /* CONFIG_HAP_POOLS */
411
412/* legacy stuff */
413void pool_flush(struct pool_head *pool)
414{
415}
416
417/* This function might ask the malloc library to trim its buffers. */
418void pool_gc(struct pool_head *pool_ctx)
419{
420#if defined(HA_HAVE_MALLOC_TRIM)
421 malloc_trim(0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100422#endif
Willy Tarreaub8498e92021-04-18 10:23:02 +0200423}
424
425#endif /* CONFIG_HAP_POOLS */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200426
427/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200428 * This function destroys a pool by freeing it completely, unless it's still
429 * in use. This should be called only under extreme circumstances. It always
430 * returns NULL if the resulting pool is empty, easing the clearing of the old
431 * pointer, otherwise it returns the pool.
432 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200433 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100434void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200435{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200436 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100437 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200438 if (pool->used)
439 return pool;
440 pool->users--;
441 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200442 LIST_DELETE(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100443#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100444 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100445#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200446 /* note that if used == 0, the cache is empty */
447 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200448 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200449 }
450 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200451}
452
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100453/* This destroys all pools on exit. It is *not* thread safe. */
454void pool_destroy_all()
455{
456 struct pool_head *entry, *back;
457
458 list_for_each_entry_safe(entry, back, &pools, list)
459 pool_destroy(entry);
460}
461
Willy Tarreau12833bb2014-01-28 16:49:56 +0100462/* This function dumps memory usage information into the trash buffer. */
463void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200464{
465 struct pool_head *entry;
466 unsigned long allocated, used;
467 int nbpools;
468
469 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100470 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200471 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100472#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100473 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100474#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200475 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 +0200476 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200477 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200478 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200479 entry->users, entry,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200480 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200481
482 allocated += entry->allocated * entry->size;
483 used += entry->used * entry->size;
484 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100485#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100486 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100487#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200488 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100489 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200490 nbpools, allocated, used);
491}
492
Willy Tarreau12833bb2014-01-28 16:49:56 +0100493/* Dump statistics on pools usage. */
494void dump_pools(void)
495{
496 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200497 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100498}
499
Willy Tarreau58102cf2015-10-28 16:24:21 +0100500/* This function returns the total number of failed pool allocations */
501int pool_total_failures()
502{
503 struct pool_head *entry;
504 int failed = 0;
505
506 list_for_each_entry(entry, &pools, list)
507 failed += entry->failed;
508 return failed;
509}
510
511/* This function returns the total amount of memory allocated in pools (in bytes) */
512unsigned long pool_total_allocated()
513{
514 struct pool_head *entry;
515 unsigned long allocated = 0;
516
517 list_for_each_entry(entry, &pools, list)
518 allocated += entry->allocated * entry->size;
519 return allocated;
520}
521
522/* This function returns the total amount of memory used in pools (in bytes) */
523unsigned long pool_total_used()
524{
525 struct pool_head *entry;
526 unsigned long used = 0;
527
528 list_for_each_entry(entry, &pools, list)
529 used += entry->used * entry->size;
530 return used;
531}
532
William Lallemande7ed8852016-11-19 02:25:36 +0100533/* This function dumps memory usage information onto the stream interface's
534 * read buffer. It returns 0 as long as it does not complete, non-zero upon
535 * completion. No state is used.
536 */
537static int cli_io_handler_dump_pools(struct appctx *appctx)
538{
539 struct stream_interface *si = appctx->owner;
540
541 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200542 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100543 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100544 return 0;
545 }
546 return 1;
547}
548
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100549/* callback used to create early pool <name> of size <size> and store the
550 * resulting pointer into <ptr>. If the allocation fails, it quits with after
551 * emitting an error message.
552 */
553void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
554{
555 *ptr = create_pool(name, size, MEM_F_SHARED);
556 if (!*ptr) {
557 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
558 name, size, strerror(errno));
559 exit(1);
560 }
561}
562
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100563/* Initializes all per-thread arrays on startup */
564static void init_pools()
565{
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200566#ifdef CONFIG_HAP_POOLS
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200567 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100568
569 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200570 LIST_INIT(&ha_thread_info[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100571 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200572#endif
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100573}
574
575INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100576
William Lallemande7ed8852016-11-19 02:25:36 +0100577/* register cli keywords */
578static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200579 { { "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 +0100580 {{},}
581}};
582
Willy Tarreau0108d902018-11-25 19:14:37 +0100583INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100584
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100585#ifdef DEBUG_FAIL_ALLOC
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100586
587int mem_should_fail(const struct pool_head *pool)
588{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100589 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100590
591 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau20f88ab2021-04-17 15:50:28 +0200592 if (mem_fail_rate > statistical_prng_range(100))
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100593 ret = 1;
594 else
595 ret = 0;
596 }
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100597 return ret;
598
599}
600
601/* config parser for global "tune.fail-alloc" */
602static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100603 const struct proxy *defpx, const char *file, int line,
604 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100605{
606 if (too_many_args(1, args, err, NULL))
607 return -1;
608 mem_fail_rate = atoi(args[1]);
609 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
610 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
611 return -1;
612 }
613 return 0;
614}
615#endif
616
617/* register global config keywords */
618static struct cfg_kw_list mem_cfg_kws = {ILH, {
619#ifdef DEBUG_FAIL_ALLOC
620 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
621#endif
622 { 0, NULL, NULL }
623}};
624
625INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
626
Willy Tarreau50e608d2007-05-13 18:26:08 +0200627/*
628 * Local variables:
629 * c-indent-level: 8
630 * c-basic-offset: 8
631 * End:
632 */