blob: bc568d22567e08c26be970bf33bfdad201c21e58 [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;
41static int mem_should_fail(const struct pool_head *);
42#endif
43
Willy Tarreau50e608d2007-05-13 18:26:08 +020044/* Try to find an existing shared pool with the same characteristics and
45 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +010046 * is available for a new creation. Two flags are supported :
47 * - MEM_F_SHARED to indicate that the pool may be shared with other users
48 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +020049 */
50struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
51{
52 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020053 struct pool_head *entry;
54 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +020055 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +020056 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +020057
Willy Tarreauac421112015-10-28 15:09:29 +010058 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +020059 * that the malloc() function will never return such a small size,
60 * let's round the size up to something slightly bigger, in order to
61 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +010062 * This extra (void *) is not accounted for in the size computation
63 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +020064 *
65 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +020066 */
67
Willy Tarreau581bf812016-01-25 02:19:13 +010068 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +020069 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +010070 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
71 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020072
Christopher Fauletb349e482017-08-29 09:52:38 +020073 /* TODO: thread: we do not lock pool list for now because all pools are
74 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020075 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +020076 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020077
78 list_for_each_entry(entry, &pools, list) {
79 if (entry->size == size) {
80 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +050081 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020082 * before which we will insert a new one.
83 */
84 if (flags & entry->flags & MEM_F_SHARED) {
85 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +020086 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020087 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +020088 break;
89 }
90 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020091 else if (entry->size > size) {
92 /* insert before this one */
93 start = &entry->list;
94 break;
95 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020096 }
97
98 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +020099 if (!pool)
100 pool = calloc(1, sizeof(*pool));
101
Willy Tarreau50e608d2007-05-13 18:26:08 +0200102 if (!pool)
103 return NULL;
104 if (name)
105 strlcpy2(pool->name, name, sizeof(pool->name));
106 pool->size = size;
107 pool->flags = flags;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200108 LIST_ADDQ(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200109
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200110#ifdef CONFIG_HAP_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200111 /* update per-thread pool cache if necessary */
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200112 for (thr = 0; thr < MAX_THREADS; thr++) {
113 LIST_INIT(&pool->cache[thr].list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200114 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200115#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100116 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100117 }
118 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200119 return pool;
120}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100121
Willy Tarreau13843642021-04-17 16:57:25 +0200122/* Tries to allocate an object for the pool <pool> using the system's allocator
123 * and directly returns it. The pool's allocated counter is checked and updated,
124 * but no other checks are performed. The pool's lock is not used and is not a
125 * problem either.
126 */
127void *pool_get_from_os(struct pool_head *pool)
128{
129 if (!pool->limit || pool->allocated < pool->limit) {
130 void *ptr = pool_alloc_area(pool->size + POOL_EXTRA);
131 if (ptr) {
132 _HA_ATOMIC_INC(&pool->allocated);
133 return ptr;
134 }
135 _HA_ATOMIC_INC(&pool->failed);
136 }
137 activity[tid].pool_fail++;
138 return NULL;
139
140}
141
Willy Tarreau45e4e282021-04-17 17:48:40 +0200142/* Releases a pool item back to the operating system and atomically updates
143 * the allocation counter.
144 */
145void pool_put_to_os(struct pool_head *pool, void *ptr)
146{
147 pool_free_area(ptr, pool->size + POOL_EXTRA);
148 _HA_ATOMIC_DEC(&pool->allocated);
149}
150
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200151/* Tries to allocate an object for the pool <pool> using the system's allocator
152 * and directly returns it. The pool's counters are updated but the object is
153 * never cached, so this is usable with and without local or shared caches.
154 * This may be called with or without the pool lock held, so it must not use
155 * the pool's lock.
156 */
157void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100158{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100159 void *ptr = NULL;
160
Willy Tarreau13843642021-04-17 16:57:25 +0200161 ptr = pool_get_from_os(pool);
162 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100163 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100164
Willy Tarreau13843642021-04-17 16:57:25 +0200165 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200166 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100167
168#ifdef DEBUG_MEMORY_POOLS
169 /* keep track of where the element was allocated from */
170 *POOL_LINK(pool, ptr) = (void *)pool;
171#endif
172 return ptr;
173}
174
Willy Tarreau45e4e282021-04-17 17:48:40 +0200175/* Release a pool item back to the OS and keeps the pool's counters up to date.
176 * This is always defined even when pools are not enabled (their usage stats
177 * are maintained).
178 */
179void pool_free_nocache(struct pool_head *pool, void *ptr)
180{
181 _HA_ATOMIC_DEC(&pool->used);
182 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
183 pool_put_to_os(pool, ptr);
184}
185
Willy Tarreaub8498e92021-04-18 10:23:02 +0200186
187#ifdef CONFIG_HAP_POOLS
188
Willy Tarreau87212032021-04-19 08:14:03 +0200189/* Evicts some of the oldest objects from one local cache, until its number of
190 * objects is no more than 16+1/8 of the total number of locally cached objects
191 * or the total size of the local cache is no more than 75% of its maximum (i.e.
192 * we don't want a single cache to use all the cache for itself). For this, the
193 * list is scanned in reverse.
194 */
195void pool_evict_from_local_cache(struct pool_head *pool)
196{
197 struct pool_cache_head *ph = &pool->cache[tid];
198 struct pool_cache_item *item;
Willy Tarreau87212032021-04-19 08:14:03 +0200199
200 while (ph->count >= 16 + pool_cache_count / 8 &&
201 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4) {
202 item = LIST_NEXT(&ph->list, typeof(item), by_pool);
203 ph->count--;
204 pool_cache_bytes -= pool->size;
205 pool_cache_count--;
206 LIST_DEL(&item->by_pool);
207 LIST_DEL(&item->by_lru);
208 pool_put_to_shared_cache(pool, item);
209 }
210}
211
Willy Tarreaub8498e92021-04-18 10:23:02 +0200212/* Evicts some of the oldest objects from the local cache, pushing them to the
213 * global pool.
214 */
215void pool_evict_from_local_caches()
216{
217 struct pool_cache_item *item;
218 struct pool_cache_head *ph;
219 struct pool_head *pool;
220
221 do {
222 item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru);
223 /* note: by definition we remove oldest objects so they also are the
224 * oldest in their own pools, thus their next is the pool's head.
225 */
226 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
227 pool = container_of(ph - tid, struct pool_head, cache);
228 LIST_DEL(&item->by_pool);
229 LIST_DEL(&item->by_lru);
230 ph->count--;
231 pool_cache_count--;
232 pool_cache_bytes -= pool->size;
233 pool_put_to_shared_cache(pool, item);
234 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
235}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100236
Willy Tarreaueb3cc292021-04-15 18:13:13 +0200237#if defined(CONFIG_HAP_NO_GLOBAL_POOLS)
238
Willy Tarreau0bae0752021-03-02 20:05:09 +0100239/* legacy stuff */
240void pool_flush(struct pool_head *pool)
241{
242}
243
244/* This function might ask the malloc library to trim its buffers. */
245void pool_gc(struct pool_head *pool_ctx)
246{
247#if defined(HA_HAVE_MALLOC_TRIM)
248 malloc_trim(0);
249#endif
250}
251
252#elif defined(CONFIG_HAP_LOCKLESS_POOLS)
253
Olivier Houchardcf975d42018-01-24 18:38:31 +0100254/*
255 * This function frees whatever can be freed in pool <pool>.
256 */
257void pool_flush(struct pool_head *pool)
258{
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100259 struct pool_free_list cmp, new;
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200260 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100261
262 if (!pool)
263 return;
Willy Tarreau21072b92020-05-29 17:23:05 +0200264 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100265 do {
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100266 cmp.free_list = pool->free_list;
267 cmp.seq = pool->seq;
268 new.free_list = NULL;
269 new.seq = cmp.seq + 1;
270 } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new));
Olivier Houchard20872762019-03-08 18:53:35 +0100271 __ha_barrier_atomic_store();
Willy Tarreau21072b92020-05-29 17:23:05 +0200272 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100273 next = cmp.free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100274 while (next) {
275 temp = next;
276 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200277 pool_put_to_os(pool, temp);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100278 }
279 pool->free_list = next;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100280 /* here, we should have pool->allocate == pool->used */
281}
282
283/*
284 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200285 * the minimum thresholds imposed by owners. It makes sure to be alone to
286 * run by using thread_isolate(). <pool_ctx> is unused.
Olivier Houchardcf975d42018-01-24 18:38:31 +0100287 */
288void pool_gc(struct pool_head *pool_ctx)
289{
Olivier Houchardcf975d42018-01-24 18:38:31 +0100290 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200291 int isolated = thread_isolated();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100292
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200293 if (!isolated)
294 thread_isolate();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100295
296 list_for_each_entry(entry, &pools, list) {
297 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
298 struct pool_free_list cmp, new;
299
300 cmp.seq = entry->seq;
301 __ha_barrier_load();
302 cmp.free_list = entry->free_list;
303 __ha_barrier_load();
304 if (cmp.free_list == NULL)
305 break;
306 new.free_list = *POOL_LINK(entry, cmp.free_list);
307 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200308 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100309 continue;
Willy Tarreau45e4e282021-04-17 17:48:40 +0200310 pool_put_to_os(entry, cmp.free_list);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100311 }
312 }
313
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200314 if (!isolated)
315 thread_release();
Willy Tarreau88366c22020-11-03 15:53:34 +0100316
317#if defined(HA_HAVE_MALLOC_TRIM)
318 malloc_trim(0);
319#endif
Olivier Houchardcf975d42018-01-24 18:38:31 +0100320}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200321
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100322#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200323
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200324/*
325 * This function frees whatever can be freed in pool <pool>.
326 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100327void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200328{
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200329 void *temp;
330
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200331 if (!pool)
332 return;
333
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200334 while (1) {
335 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
336 temp = pool->free_list;
337 if (!temp) {
338 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
339 break;
340 }
341 pool->free_list = *POOL_LINK(pool, temp);
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200342 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200343 pool_put_to_os(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200344 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200345 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200346}
347
348/*
349 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200350 * the minimum thresholds imposed by owners. It makes sure to be alone to
351 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200352 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100353void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200354{
355 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200356 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200357
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200358 if (!isolated)
359 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200360
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200361 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100362 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200363 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100364 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100365 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100366 temp = entry->free_list;
367 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200368 pool_put_to_os(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200369 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200370 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200371
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200372 if (!isolated)
373 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200374}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200375#endif /* CONFIG_HAP_LOCKLESS_POOLS */
376
377#else /* CONFIG_HAP_POOLS */
378
379/* legacy stuff */
380void pool_flush(struct pool_head *pool)
381{
382}
383
384/* This function might ask the malloc library to trim its buffers. */
385void pool_gc(struct pool_head *pool_ctx)
386{
387#if defined(HA_HAVE_MALLOC_TRIM)
388 malloc_trim(0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100389#endif
Willy Tarreaub8498e92021-04-18 10:23:02 +0200390}
391
392#endif /* CONFIG_HAP_POOLS */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200393
394/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200395 * This function destroys a pool by freeing it completely, unless it's still
396 * in use. This should be called only under extreme circumstances. It always
397 * returns NULL if the resulting pool is empty, easing the clearing of the old
398 * pointer, otherwise it returns the pool.
399 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200400 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100401void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200402{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200403 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100404 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200405 if (pool->used)
406 return pool;
407 pool->users--;
408 if (!pool->users) {
409 LIST_DEL(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100410#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100411 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100412#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200413 /* note that if used == 0, the cache is empty */
414 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200415 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200416 }
417 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200418}
419
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100420/* This destroys all pools on exit. It is *not* thread safe. */
421void pool_destroy_all()
422{
423 struct pool_head *entry, *back;
424
425 list_for_each_entry_safe(entry, back, &pools, list)
426 pool_destroy(entry);
427}
428
Willy Tarreau12833bb2014-01-28 16:49:56 +0100429/* This function dumps memory usage information into the trash buffer. */
430void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200431{
432 struct pool_head *entry;
433 unsigned long allocated, used;
434 int nbpools;
435
436 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100437 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200438 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100439#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100440 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100441#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200442 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 +0200443 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200444 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200445 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200446 entry->users, entry,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200447 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200448
449 allocated += entry->allocated * entry->size;
450 used += entry->used * entry->size;
451 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100452#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100453 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100454#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200455 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100456 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200457 nbpools, allocated, used);
458}
459
Willy Tarreau12833bb2014-01-28 16:49:56 +0100460/* Dump statistics on pools usage. */
461void dump_pools(void)
462{
463 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200464 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100465}
466
Willy Tarreau58102cf2015-10-28 16:24:21 +0100467/* This function returns the total number of failed pool allocations */
468int pool_total_failures()
469{
470 struct pool_head *entry;
471 int failed = 0;
472
473 list_for_each_entry(entry, &pools, list)
474 failed += entry->failed;
475 return failed;
476}
477
478/* This function returns the total amount of memory allocated in pools (in bytes) */
479unsigned long pool_total_allocated()
480{
481 struct pool_head *entry;
482 unsigned long allocated = 0;
483
484 list_for_each_entry(entry, &pools, list)
485 allocated += entry->allocated * entry->size;
486 return allocated;
487}
488
489/* This function returns the total amount of memory used in pools (in bytes) */
490unsigned long pool_total_used()
491{
492 struct pool_head *entry;
493 unsigned long used = 0;
494
495 list_for_each_entry(entry, &pools, list)
496 used += entry->used * entry->size;
497 return used;
498}
499
William Lallemande7ed8852016-11-19 02:25:36 +0100500/* This function dumps memory usage information onto the stream interface's
501 * read buffer. It returns 0 as long as it does not complete, non-zero upon
502 * completion. No state is used.
503 */
504static int cli_io_handler_dump_pools(struct appctx *appctx)
505{
506 struct stream_interface *si = appctx->owner;
507
508 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200509 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100510 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100511 return 0;
512 }
513 return 1;
514}
515
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100516/* callback used to create early pool <name> of size <size> and store the
517 * resulting pointer into <ptr>. If the allocation fails, it quits with after
518 * emitting an error message.
519 */
520void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
521{
522 *ptr = create_pool(name, size, MEM_F_SHARED);
523 if (!*ptr) {
524 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
525 name, size, strerror(errno));
526 exit(1);
527 }
528}
529
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100530/* Initializes all per-thread arrays on startup */
531static void init_pools()
532{
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200533#ifdef CONFIG_HAP_POOLS
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200534 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100535
536 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200537 LIST_INIT(&ha_thread_info[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100538 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200539#endif
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100540}
541
542INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100543
William Lallemande7ed8852016-11-19 02:25:36 +0100544/* register cli keywords */
545static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaue9ecec82016-12-16 18:55:23 +0100546 { { "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 +0100547 {{},}
548}};
549
Willy Tarreau0108d902018-11-25 19:14:37 +0100550INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100551
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100552#ifdef DEBUG_FAIL_ALLOC
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100553
554int mem_should_fail(const struct pool_head *pool)
555{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100556 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100557
558 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau20f88ab2021-04-17 15:50:28 +0200559 if (mem_fail_rate > statistical_prng_range(100))
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100560 ret = 1;
561 else
562 ret = 0;
563 }
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100564 return ret;
565
566}
567
568/* config parser for global "tune.fail-alloc" */
569static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100570 const struct proxy *defpx, const char *file, int line,
571 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100572{
573 if (too_many_args(1, args, err, NULL))
574 return -1;
575 mem_fail_rate = atoi(args[1]);
576 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
577 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
578 return -1;
579 }
580 return 0;
581}
582#endif
583
584/* register global config keywords */
585static struct cfg_kw_list mem_cfg_kws = {ILH, {
586#ifdef DEBUG_FAIL_ALLOC
587 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
588#endif
589 { 0, NULL, NULL }
590}};
591
592INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
593
Willy Tarreau50e608d2007-05-13 18:26:08 +0200594/*
595 * Local variables:
596 * c-indent-level: 8
597 * c-basic-offset: 8
598 * End:
599 */