blob: 5afeb971d3c0db3b355c57b591963213e7682eb7 [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)
44/* ask the allocator to trim memory pools */
45static void trim_all_pools(void)
46{
47 if (using_libc_allocator)
48 malloc_trim(0);
49}
50
51#else
52
53static void trim_all_pools(void)
54{
55}
56#endif
57
Willy Tarreau50e608d2007-05-13 18:26:08 +020058/* Try to find an existing shared pool with the same characteristics and
59 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +010060 * is available for a new creation. Two flags are supported :
61 * - MEM_F_SHARED to indicate that the pool may be shared with other users
62 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +020063 */
64struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
65{
66 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020067 struct pool_head *entry;
68 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +020069 unsigned int align;
Willy Tarreau9f3129e2021-04-17 00:31:38 +020070 int thr __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +020071
Willy Tarreauac421112015-10-28 15:09:29 +010072 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +020073 * that the malloc() function will never return such a small size,
74 * let's round the size up to something slightly bigger, in order to
75 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +010076 * This extra (void *) is not accounted for in the size computation
77 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +020078 *
79 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +020080 */
81
Willy Tarreau581bf812016-01-25 02:19:13 +010082 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +020083 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +010084 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
85 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020086
Christopher Fauletb349e482017-08-29 09:52:38 +020087 /* TODO: thread: we do not lock pool list for now because all pools are
88 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020089 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +020090 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020091
92 list_for_each_entry(entry, &pools, list) {
93 if (entry->size == size) {
94 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +050095 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020096 * before which we will insert a new one.
97 */
Willy Tarreau1ab6c0b2021-05-05 07:29:01 +020098 if ((flags & entry->flags & MEM_F_SHARED)
99#ifdef DEBUG_DONT_SHARE_POOLS
100 && strcmp(name, entry->name) == 0
101#endif
102 ) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200103 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200104 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200105 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200106 break;
107 }
108 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200109 else if (entry->size > size) {
110 /* insert before this one */
111 start = &entry->list;
112 break;
113 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200114 }
115
116 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +0200117 if (!pool)
118 pool = calloc(1, sizeof(*pool));
119
Willy Tarreau50e608d2007-05-13 18:26:08 +0200120 if (!pool)
121 return NULL;
122 if (name)
123 strlcpy2(pool->name, name, sizeof(pool->name));
124 pool->size = size;
125 pool->flags = flags;
Willy Tarreau2b718102021-04-21 07:32:39 +0200126 LIST_APPEND(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200127
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200128#ifdef CONFIG_HAP_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200129 /* update per-thread pool cache if necessary */
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200130 for (thr = 0; thr < MAX_THREADS; thr++) {
131 LIST_INIT(&pool->cache[thr].list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200132 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200133#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100134 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100135 }
136 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200137 return pool;
138}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100139
Willy Tarreau13843642021-04-17 16:57:25 +0200140/* Tries to allocate an object for the pool <pool> using the system's allocator
141 * and directly returns it. The pool's allocated counter is checked and updated,
142 * but no other checks are performed. The pool's lock is not used and is not a
143 * problem either.
144 */
145void *pool_get_from_os(struct pool_head *pool)
146{
147 if (!pool->limit || pool->allocated < pool->limit) {
148 void *ptr = pool_alloc_area(pool->size + POOL_EXTRA);
149 if (ptr) {
150 _HA_ATOMIC_INC(&pool->allocated);
151 return ptr;
152 }
153 _HA_ATOMIC_INC(&pool->failed);
154 }
155 activity[tid].pool_fail++;
156 return NULL;
157
158}
159
Willy Tarreau45e4e282021-04-17 17:48:40 +0200160/* Releases a pool item back to the operating system and atomically updates
161 * the allocation counter.
162 */
163void pool_put_to_os(struct pool_head *pool, void *ptr)
164{
Willy Tarreau11e7af32021-06-10 17:20:19 +0200165#ifdef DEBUG_UAF
166 /* This object will be released for real in order to detect a use after
167 * free. We also force a write to the area to ensure we crash on double
168 * free or free of a const area.
169 */
170 *(uint32_t *)ptr = 0xDEADADD4;
171#endif /* DEBUG_UAF */
172
Willy Tarreau45e4e282021-04-17 17:48:40 +0200173 pool_free_area(ptr, pool->size + POOL_EXTRA);
174 _HA_ATOMIC_DEC(&pool->allocated);
175}
176
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200177/* Tries to allocate an object for the pool <pool> using the system's allocator
178 * and directly returns it. The pool's counters are updated but the object is
179 * never cached, so this is usable with and without local or shared caches.
180 * This may be called with or without the pool lock held, so it must not use
181 * the pool's lock.
182 */
183void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100184{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100185 void *ptr = NULL;
186
Willy Tarreau13843642021-04-17 16:57:25 +0200187 ptr = pool_get_from_os(pool);
188 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100189 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100190
Willy Tarreau13843642021-04-17 16:57:25 +0200191 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200192 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100193
194#ifdef DEBUG_MEMORY_POOLS
195 /* keep track of where the element was allocated from */
196 *POOL_LINK(pool, ptr) = (void *)pool;
197#endif
198 return ptr;
199}
200
Willy Tarreau45e4e282021-04-17 17:48:40 +0200201/* Release a pool item back to the OS and keeps the pool's counters up to date.
202 * This is always defined even when pools are not enabled (their usage stats
203 * are maintained).
204 */
205void pool_free_nocache(struct pool_head *pool, void *ptr)
206{
207 _HA_ATOMIC_DEC(&pool->used);
208 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
209 pool_put_to_os(pool, ptr);
210}
211
Willy Tarreaub8498e92021-04-18 10:23:02 +0200212
213#ifdef CONFIG_HAP_POOLS
214
Willy Tarreau87212032021-04-19 08:14:03 +0200215/* Evicts some of the oldest objects from one local cache, until its number of
216 * objects is no more than 16+1/8 of the total number of locally cached objects
217 * or the total size of the local cache is no more than 75% of its maximum (i.e.
218 * we don't want a single cache to use all the cache for itself). For this, the
219 * list is scanned in reverse.
220 */
221void pool_evict_from_local_cache(struct pool_head *pool)
222{
223 struct pool_cache_head *ph = &pool->cache[tid];
224 struct pool_cache_item *item;
Willy Tarreau87212032021-04-19 08:14:03 +0200225
226 while (ph->count >= 16 + pool_cache_count / 8 &&
227 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4) {
228 item = LIST_NEXT(&ph->list, typeof(item), by_pool);
229 ph->count--;
230 pool_cache_bytes -= pool->size;
231 pool_cache_count--;
Willy Tarreau2b718102021-04-21 07:32:39 +0200232 LIST_DELETE(&item->by_pool);
233 LIST_DELETE(&item->by_lru);
Willy Tarreau87212032021-04-19 08:14:03 +0200234 pool_put_to_shared_cache(pool, item);
235 }
236}
237
Willy Tarreaub8498e92021-04-18 10:23:02 +0200238/* Evicts some of the oldest objects from the local cache, pushing them to the
239 * global pool.
240 */
241void pool_evict_from_local_caches()
242{
243 struct pool_cache_item *item;
244 struct pool_cache_head *ph;
245 struct pool_head *pool;
246
247 do {
248 item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru);
249 /* note: by definition we remove oldest objects so they also are the
250 * oldest in their own pools, thus their next is the pool's head.
251 */
252 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
253 pool = container_of(ph - tid, struct pool_head, cache);
Willy Tarreau2b718102021-04-21 07:32:39 +0200254 LIST_DELETE(&item->by_pool);
255 LIST_DELETE(&item->by_lru);
Willy Tarreaub8498e92021-04-18 10:23:02 +0200256 ph->count--;
257 pool_cache_count--;
258 pool_cache_bytes -= pool->size;
259 pool_put_to_shared_cache(pool, item);
260 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
261}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100262
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200263/* Frees an object to the local cache, possibly pushing oldest objects to the
264 * shared cache, which itself may decide to release some of them to the OS.
265 * While it is unspecified what the object becomes past this point, it is
266 * guaranteed to be released from the users' perpective.
267 */
268void pool_put_to_cache(struct pool_head *pool, void *ptr)
269{
270 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
271 struct pool_cache_head *ph = &pool->cache[tid];
272
Willy Tarreau2b718102021-04-21 07:32:39 +0200273 LIST_INSERT(&ph->list, &item->by_pool);
274 LIST_INSERT(&ti->pool_lru_head, &item->by_lru);
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200275 ph->count++;
276 pool_cache_count++;
277 pool_cache_bytes += pool->size;
278
279 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
280 if (ph->count >= 16 + pool_cache_count / 8)
281 pool_evict_from_local_cache(pool);
282 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
283 pool_evict_from_local_caches();
284 }
285}
286
Willy Tarreaueb3cc292021-04-15 18:13:13 +0200287#if defined(CONFIG_HAP_NO_GLOBAL_POOLS)
288
Willy Tarreau0bae0752021-03-02 20:05:09 +0100289/* legacy stuff */
290void pool_flush(struct pool_head *pool)
291{
292}
293
294/* This function might ask the malloc library to trim its buffers. */
295void pool_gc(struct pool_head *pool_ctx)
296{
Willy Tarreau33298de2021-09-15 10:38:21 +0200297 trim_all_pools();
Willy Tarreau0bae0752021-03-02 20:05:09 +0100298}
299
Willy Tarreaua206cf92021-06-10 10:21:35 +0200300#else /* CONFIG_HAP_NO_GLOBAL_POOLS */
301
302#if defined(CONFIG_HAP_LOCKLESS_POOLS)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100303
Olivier Houchardcf975d42018-01-24 18:38:31 +0100304/*
305 * This function frees whatever can be freed in pool <pool>.
306 */
307void pool_flush(struct pool_head *pool)
308{
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200309 void *next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100310
311 if (!pool)
312 return;
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200313
314 /* The loop below atomically detaches the head of the free list and
315 * replaces it with a NULL. Then the list can be released.
316 */
317 next = pool->free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100318 do {
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200319 while (unlikely(next == POOL_BUSY)) {
320 __ha_cpu_relax();
321 next = _HA_ATOMIC_LOAD(&pool->free_list);
322 }
323 if (next == NULL)
324 return;
325 } while (unlikely((next = _HA_ATOMIC_XCHG(&pool->free_list, POOL_BUSY)) == POOL_BUSY));
326 _HA_ATOMIC_STORE(&pool->free_list, NULL);
Olivier Houchard20872762019-03-08 18:53:35 +0100327 __ha_barrier_atomic_store();
Willy Tarreaud0cc3762021-06-09 18:59:58 +0200328
Olivier Houchardcf975d42018-01-24 18:38:31 +0100329 while (next) {
330 temp = next;
331 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200332 pool_put_to_os(pool, temp);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100333 }
Willy Tarreaucaf65552021-06-10 06:54:22 +0200334 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100335}
336
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100337#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200338
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200339/*
340 * This function frees whatever can be freed in pool <pool>.
341 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100342void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200343{
Willy Tarreauaf8120a2021-06-10 07:13:04 +0200344 void *temp, **next;
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200345
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200346 if (!pool)
347 return;
348
Willy Tarreauaf8120a2021-06-10 07:13:04 +0200349 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
350 next = pool->free_list;
351 pool->free_list = NULL;
352 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
353
354 while (next) {
355 temp = next;
356 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200357 pool_put_to_os(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200358 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200359 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200360}
361
Willy Tarreaua206cf92021-06-10 10:21:35 +0200362#endif /* CONFIG_HAP_LOCKLESS_POOLS */
363
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200364/*
365 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200366 * the minimum thresholds imposed by owners. It makes sure to be alone to
367 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200368 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100369void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200370{
371 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200372 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200373
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200374 if (!isolated)
375 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200376
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200377 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100378 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200379 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100380 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100381 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100382 temp = entry->free_list;
383 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200384 pool_put_to_os(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200385 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200386 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200387
Willy Tarreau33298de2021-09-15 10:38:21 +0200388 trim_all_pools();
Willy Tarreau46b515c2021-06-10 08:40:16 +0200389
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200390 if (!isolated)
391 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200392}
Willy Tarreaua206cf92021-06-10 10:21:35 +0200393#endif /* CONFIG_HAP_NO_GLOBAL_POOLS */
Willy Tarreaub8498e92021-04-18 10:23:02 +0200394
395#else /* CONFIG_HAP_POOLS */
396
397/* legacy stuff */
398void pool_flush(struct pool_head *pool)
399{
400}
401
402/* This function might ask the malloc library to trim its buffers. */
403void pool_gc(struct pool_head *pool_ctx)
404{
Willy Tarreau33298de2021-09-15 10:38:21 +0200405 trim_all_pools();
Willy Tarreaub8498e92021-04-18 10:23:02 +0200406}
407
408#endif /* CONFIG_HAP_POOLS */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200409
410/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200411 * This function destroys a pool by freeing it completely, unless it's still
412 * in use. This should be called only under extreme circumstances. It always
413 * returns NULL if the resulting pool is empty, easing the clearing of the old
414 * pointer, otherwise it returns the pool.
415 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200416 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100417void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200418{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200419 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100420 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200421 if (pool->used)
422 return pool;
423 pool->users--;
424 if (!pool->users) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200425 LIST_DELETE(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100426#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100427 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100428#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200429 /* note that if used == 0, the cache is empty */
430 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200431 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200432 }
433 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200434}
435
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100436/* This destroys all pools on exit. It is *not* thread safe. */
437void pool_destroy_all()
438{
439 struct pool_head *entry, *back;
440
441 list_for_each_entry_safe(entry, back, &pools, list)
442 pool_destroy(entry);
443}
444
Willy Tarreau12833bb2014-01-28 16:49:56 +0100445/* This function dumps memory usage information into the trash buffer. */
446void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200447{
448 struct pool_head *entry;
449 unsigned long allocated, used;
450 int nbpools;
451
452 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100453 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200454 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100455#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100456 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100457#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200458 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 +0200459 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200460 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200461 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200462 entry->users, entry,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200463 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200464
465 allocated += entry->allocated * entry->size;
466 used += entry->used * entry->size;
467 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100468#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100469 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100470#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200471 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100472 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200473 nbpools, allocated, used);
474}
475
Willy Tarreau12833bb2014-01-28 16:49:56 +0100476/* Dump statistics on pools usage. */
477void dump_pools(void)
478{
479 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200480 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100481}
482
Willy Tarreau58102cf2015-10-28 16:24:21 +0100483/* This function returns the total number of failed pool allocations */
484int pool_total_failures()
485{
486 struct pool_head *entry;
487 int failed = 0;
488
489 list_for_each_entry(entry, &pools, list)
490 failed += entry->failed;
491 return failed;
492}
493
494/* This function returns the total amount of memory allocated in pools (in bytes) */
495unsigned long pool_total_allocated()
496{
497 struct pool_head *entry;
498 unsigned long allocated = 0;
499
500 list_for_each_entry(entry, &pools, list)
501 allocated += entry->allocated * entry->size;
502 return allocated;
503}
504
505/* This function returns the total amount of memory used in pools (in bytes) */
506unsigned long pool_total_used()
507{
508 struct pool_head *entry;
509 unsigned long used = 0;
510
511 list_for_each_entry(entry, &pools, list)
512 used += entry->used * entry->size;
513 return used;
514}
515
William Lallemande7ed8852016-11-19 02:25:36 +0100516/* This function dumps memory usage information onto the stream interface's
517 * read buffer. It returns 0 as long as it does not complete, non-zero upon
518 * completion. No state is used.
519 */
520static int cli_io_handler_dump_pools(struct appctx *appctx)
521{
522 struct stream_interface *si = appctx->owner;
523
524 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200525 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100526 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100527 return 0;
528 }
529 return 1;
530}
531
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100532/* callback used to create early pool <name> of size <size> and store the
533 * resulting pointer into <ptr>. If the allocation fails, it quits with after
534 * emitting an error message.
535 */
536void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
537{
538 *ptr = create_pool(name, size, MEM_F_SHARED);
539 if (!*ptr) {
540 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
541 name, size, strerror(errno));
542 exit(1);
543 }
544}
545
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100546/* Initializes all per-thread arrays on startup */
547static void init_pools()
548{
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200549#ifdef CONFIG_HAP_POOLS
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200550 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100551
552 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200553 LIST_INIT(&ha_thread_info[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100554 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200555#endif
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100556}
557
558INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100559
William Lallemande7ed8852016-11-19 02:25:36 +0100560/* register cli keywords */
561static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200562 { { "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 +0100563 {{},}
564}};
565
Willy Tarreau0108d902018-11-25 19:14:37 +0100566INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100567
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100568#ifdef DEBUG_FAIL_ALLOC
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100569
570int mem_should_fail(const struct pool_head *pool)
571{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100572 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100573
574 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau20f88ab2021-04-17 15:50:28 +0200575 if (mem_fail_rate > statistical_prng_range(100))
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100576 ret = 1;
577 else
578 ret = 0;
579 }
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100580 return ret;
581
582}
583
584/* config parser for global "tune.fail-alloc" */
585static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100586 const struct proxy *defpx, const char *file, int line,
587 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100588{
589 if (too_many_args(1, args, err, NULL))
590 return -1;
591 mem_fail_rate = atoi(args[1]);
592 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
593 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
594 return -1;
595 }
596 return 0;
597}
598#endif
599
600/* register global config keywords */
601static struct cfg_kw_list mem_cfg_kws = {ILH, {
602#ifdef DEBUG_FAIL_ALLOC
603 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
604#endif
605 { 0, NULL, NULL }
606}};
607
608INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
609
Willy Tarreau50e608d2007-05-13 18:26:08 +0200610/*
611 * Local variables:
612 * c-indent-level: 8
613 * c-basic-offset: 8
614 * End:
615 */