blob: 70095021ad3fbe21d2e86c330b60e7b45218a820 [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 */
83 if (flags & entry->flags & MEM_F_SHARED) {
84 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +020085 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020086 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +020087 break;
88 }
89 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020090 else if (entry->size > size) {
91 /* insert before this one */
92 start = &entry->list;
93 break;
94 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020095 }
96
97 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +020098 if (!pool)
99 pool = calloc(1, sizeof(*pool));
100
Willy Tarreau50e608d2007-05-13 18:26:08 +0200101 if (!pool)
102 return NULL;
103 if (name)
104 strlcpy2(pool->name, name, sizeof(pool->name));
105 pool->size = size;
106 pool->flags = flags;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200107 LIST_ADDQ(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200108
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200109#ifdef CONFIG_HAP_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200110 /* update per-thread pool cache if necessary */
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200111 for (thr = 0; thr < MAX_THREADS; thr++) {
112 LIST_INIT(&pool->cache[thr].list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200113 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200114#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100115 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100116 }
117 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200118 return pool;
119}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100120
Willy Tarreau13843642021-04-17 16:57:25 +0200121/* Tries to allocate an object for the pool <pool> using the system's allocator
122 * and directly returns it. The pool's allocated counter is checked and updated,
123 * but no other checks are performed. The pool's lock is not used and is not a
124 * problem either.
125 */
126void *pool_get_from_os(struct pool_head *pool)
127{
128 if (!pool->limit || pool->allocated < pool->limit) {
129 void *ptr = pool_alloc_area(pool->size + POOL_EXTRA);
130 if (ptr) {
131 _HA_ATOMIC_INC(&pool->allocated);
132 return ptr;
133 }
134 _HA_ATOMIC_INC(&pool->failed);
135 }
136 activity[tid].pool_fail++;
137 return NULL;
138
139}
140
Willy Tarreau45e4e282021-04-17 17:48:40 +0200141/* Releases a pool item back to the operating system and atomically updates
142 * the allocation counter.
143 */
144void pool_put_to_os(struct pool_head *pool, void *ptr)
145{
146 pool_free_area(ptr, pool->size + POOL_EXTRA);
147 _HA_ATOMIC_DEC(&pool->allocated);
148}
149
Willy Tarreau8fe726f2021-04-15 18:20:12 +0200150/* Tries to allocate an object for the pool <pool> using the system's allocator
151 * and directly returns it. The pool's counters are updated but the object is
152 * never cached, so this is usable with and without local or shared caches.
153 * This may be called with or without the pool lock held, so it must not use
154 * the pool's lock.
155 */
156void *pool_alloc_nocache(struct pool_head *pool)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100157{
Willy Tarreau0bae0752021-03-02 20:05:09 +0100158 void *ptr = NULL;
159
Willy Tarreau13843642021-04-17 16:57:25 +0200160 ptr = pool_get_from_os(pool);
161 if (!ptr)
Willy Tarreau0bae0752021-03-02 20:05:09 +0100162 return NULL;
Willy Tarreau0bae0752021-03-02 20:05:09 +0100163
Willy Tarreau13843642021-04-17 16:57:25 +0200164 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used, POOL_AVG_SAMPLES/4);
Willy Tarreau4781b152021-04-06 13:53:36 +0200165 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100166
167#ifdef DEBUG_MEMORY_POOLS
168 /* keep track of where the element was allocated from */
169 *POOL_LINK(pool, ptr) = (void *)pool;
170#endif
171 return ptr;
172}
173
Willy Tarreau45e4e282021-04-17 17:48:40 +0200174/* Release a pool item back to the OS and keeps the pool's counters up to date.
175 * This is always defined even when pools are not enabled (their usage stats
176 * are maintained).
177 */
178void pool_free_nocache(struct pool_head *pool, void *ptr)
179{
180 _HA_ATOMIC_DEC(&pool->used);
181 swrate_add(&pool->needed_avg, POOL_AVG_SAMPLES, pool->used);
182 pool_put_to_os(pool, ptr);
183}
184
Willy Tarreaub8498e92021-04-18 10:23:02 +0200185
186#ifdef CONFIG_HAP_POOLS
187
Willy Tarreau87212032021-04-19 08:14:03 +0200188/* Evicts some of the oldest objects from one local cache, until its number of
189 * objects is no more than 16+1/8 of the total number of locally cached objects
190 * or the total size of the local cache is no more than 75% of its maximum (i.e.
191 * we don't want a single cache to use all the cache for itself). For this, the
192 * list is scanned in reverse.
193 */
194void pool_evict_from_local_cache(struct pool_head *pool)
195{
196 struct pool_cache_head *ph = &pool->cache[tid];
197 struct pool_cache_item *item;
Willy Tarreau87212032021-04-19 08:14:03 +0200198
199 while (ph->count >= 16 + pool_cache_count / 8 &&
200 pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4) {
201 item = LIST_NEXT(&ph->list, typeof(item), by_pool);
202 ph->count--;
203 pool_cache_bytes -= pool->size;
204 pool_cache_count--;
205 LIST_DEL(&item->by_pool);
206 LIST_DEL(&item->by_lru);
207 pool_put_to_shared_cache(pool, item);
208 }
209}
210
Willy Tarreaub8498e92021-04-18 10:23:02 +0200211/* Evicts some of the oldest objects from the local cache, pushing them to the
212 * global pool.
213 */
214void pool_evict_from_local_caches()
215{
216 struct pool_cache_item *item;
217 struct pool_cache_head *ph;
218 struct pool_head *pool;
219
220 do {
221 item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru);
222 /* note: by definition we remove oldest objects so they also are the
223 * oldest in their own pools, thus their next is the pool's head.
224 */
225 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
226 pool = container_of(ph - tid, struct pool_head, cache);
227 LIST_DEL(&item->by_pool);
228 LIST_DEL(&item->by_lru);
229 ph->count--;
230 pool_cache_count--;
231 pool_cache_bytes -= pool->size;
232 pool_put_to_shared_cache(pool, item);
233 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
234}
Willy Tarreau0bae0752021-03-02 20:05:09 +0100235
Willy Tarreaub2a853d2021-04-19 11:49:26 +0200236/* Frees an object to the local cache, possibly pushing oldest objects to the
237 * shared cache, which itself may decide to release some of them to the OS.
238 * While it is unspecified what the object becomes past this point, it is
239 * guaranteed to be released from the users' perpective.
240 */
241void pool_put_to_cache(struct pool_head *pool, void *ptr)
242{
243 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
244 struct pool_cache_head *ph = &pool->cache[tid];
245
246 LIST_ADD(&ph->list, &item->by_pool);
247 LIST_ADD(&ti->pool_lru_head, &item->by_lru);
248 ph->count++;
249 pool_cache_count++;
250 pool_cache_bytes += pool->size;
251
252 if (unlikely(pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 3 / 4)) {
253 if (ph->count >= 16 + pool_cache_count / 8)
254 pool_evict_from_local_cache(pool);
255 if (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE)
256 pool_evict_from_local_caches();
257 }
258}
259
Willy Tarreaueb3cc292021-04-15 18:13:13 +0200260#if defined(CONFIG_HAP_NO_GLOBAL_POOLS)
261
Willy Tarreau0bae0752021-03-02 20:05:09 +0100262/* legacy stuff */
263void pool_flush(struct pool_head *pool)
264{
265}
266
267/* This function might ask the malloc library to trim its buffers. */
268void pool_gc(struct pool_head *pool_ctx)
269{
270#if defined(HA_HAVE_MALLOC_TRIM)
271 malloc_trim(0);
272#endif
273}
274
275#elif defined(CONFIG_HAP_LOCKLESS_POOLS)
276
Olivier Houchardcf975d42018-01-24 18:38:31 +0100277/*
278 * This function frees whatever can be freed in pool <pool>.
279 */
280void pool_flush(struct pool_head *pool)
281{
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100282 struct pool_free_list cmp, new;
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200283 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100284
285 if (!pool)
286 return;
Willy Tarreau21072b92020-05-29 17:23:05 +0200287 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100288 do {
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100289 cmp.free_list = pool->free_list;
290 cmp.seq = pool->seq;
291 new.free_list = NULL;
292 new.seq = cmp.seq + 1;
293 } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new));
Olivier Houchard20872762019-03-08 18:53:35 +0100294 __ha_barrier_atomic_store();
Willy Tarreau21072b92020-05-29 17:23:05 +0200295 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100296 next = cmp.free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100297 while (next) {
298 temp = next;
299 next = *POOL_LINK(pool, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200300 pool_put_to_os(pool, temp);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100301 }
302 pool->free_list = next;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100303 /* here, we should have pool->allocate == pool->used */
304}
305
306/*
307 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200308 * the minimum thresholds imposed by owners. It makes sure to be alone to
309 * run by using thread_isolate(). <pool_ctx> is unused.
Olivier Houchardcf975d42018-01-24 18:38:31 +0100310 */
311void pool_gc(struct pool_head *pool_ctx)
312{
Olivier Houchardcf975d42018-01-24 18:38:31 +0100313 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200314 int isolated = thread_isolated();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100315
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200316 if (!isolated)
317 thread_isolate();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100318
319 list_for_each_entry(entry, &pools, list) {
320 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
321 struct pool_free_list cmp, new;
322
323 cmp.seq = entry->seq;
324 __ha_barrier_load();
325 cmp.free_list = entry->free_list;
326 __ha_barrier_load();
327 if (cmp.free_list == NULL)
328 break;
329 new.free_list = *POOL_LINK(entry, cmp.free_list);
330 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200331 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100332 continue;
Willy Tarreau45e4e282021-04-17 17:48:40 +0200333 pool_put_to_os(entry, cmp.free_list);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100334 }
335 }
336
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200337 if (!isolated)
338 thread_release();
Willy Tarreau88366c22020-11-03 15:53:34 +0100339
340#if defined(HA_HAVE_MALLOC_TRIM)
341 malloc_trim(0);
342#endif
Olivier Houchardcf975d42018-01-24 18:38:31 +0100343}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200344
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100345#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200346
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200347/*
348 * This function frees whatever can be freed in pool <pool>.
349 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100350void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200351{
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200352 void *temp;
353
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200354 if (!pool)
355 return;
356
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200357 while (1) {
358 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
359 temp = pool->free_list;
360 if (!temp) {
361 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
362 break;
363 }
364 pool->free_list = *POOL_LINK(pool, temp);
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200365 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200366 pool_put_to_os(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200367 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200368 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200369}
370
371/*
372 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200373 * the minimum thresholds imposed by owners. It makes sure to be alone to
374 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200375 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100376void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200377{
378 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200379 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200380
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200381 if (!isolated)
382 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200383
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200384 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100385 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200386 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100387 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100388 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100389 temp = entry->free_list;
390 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreau45e4e282021-04-17 17:48:40 +0200391 pool_put_to_os(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200392 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200393 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200394
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200395 if (!isolated)
396 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200397}
Willy Tarreaub8498e92021-04-18 10:23:02 +0200398#endif /* CONFIG_HAP_LOCKLESS_POOLS */
399
400#else /* CONFIG_HAP_POOLS */
401
402/* legacy stuff */
403void pool_flush(struct pool_head *pool)
404{
405}
406
407/* This function might ask the malloc library to trim its buffers. */
408void pool_gc(struct pool_head *pool_ctx)
409{
410#if defined(HA_HAVE_MALLOC_TRIM)
411 malloc_trim(0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100412#endif
Willy Tarreaub8498e92021-04-18 10:23:02 +0200413}
414
415#endif /* CONFIG_HAP_POOLS */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200416
417/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200418 * This function destroys a pool by freeing it completely, unless it's still
419 * in use. This should be called only under extreme circumstances. It always
420 * returns NULL if the resulting pool is empty, easing the clearing of the old
421 * pointer, otherwise it returns the pool.
422 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200423 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100424void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200425{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200426 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100427 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200428 if (pool->used)
429 return pool;
430 pool->users--;
431 if (!pool->users) {
432 LIST_DEL(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100433#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100434 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100435#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200436 /* note that if used == 0, the cache is empty */
437 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200438 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200439 }
440 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200441}
442
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100443/* This destroys all pools on exit. It is *not* thread safe. */
444void pool_destroy_all()
445{
446 struct pool_head *entry, *back;
447
448 list_for_each_entry_safe(entry, back, &pools, list)
449 pool_destroy(entry);
450}
451
Willy Tarreau12833bb2014-01-28 16:49:56 +0100452/* This function dumps memory usage information into the trash buffer. */
453void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200454{
455 struct pool_head *entry;
456 unsigned long allocated, used;
457 int nbpools;
458
459 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100460 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200461 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100462#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100463 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100464#endif
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200465 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 +0200466 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200467 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200468 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200469 entry->users, entry,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200470 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200471
472 allocated += entry->allocated * entry->size;
473 used += entry->used * entry->size;
474 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100475#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100476 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100477#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200478 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100479 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200480 nbpools, allocated, used);
481}
482
Willy Tarreau12833bb2014-01-28 16:49:56 +0100483/* Dump statistics on pools usage. */
484void dump_pools(void)
485{
486 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200487 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100488}
489
Willy Tarreau58102cf2015-10-28 16:24:21 +0100490/* This function returns the total number of failed pool allocations */
491int pool_total_failures()
492{
493 struct pool_head *entry;
494 int failed = 0;
495
496 list_for_each_entry(entry, &pools, list)
497 failed += entry->failed;
498 return failed;
499}
500
501/* This function returns the total amount of memory allocated in pools (in bytes) */
502unsigned long pool_total_allocated()
503{
504 struct pool_head *entry;
505 unsigned long allocated = 0;
506
507 list_for_each_entry(entry, &pools, list)
508 allocated += entry->allocated * entry->size;
509 return allocated;
510}
511
512/* This function returns the total amount of memory used in pools (in bytes) */
513unsigned long pool_total_used()
514{
515 struct pool_head *entry;
516 unsigned long used = 0;
517
518 list_for_each_entry(entry, &pools, list)
519 used += entry->used * entry->size;
520 return used;
521}
522
William Lallemande7ed8852016-11-19 02:25:36 +0100523/* This function dumps memory usage information onto the stream interface's
524 * read buffer. It returns 0 as long as it does not complete, non-zero upon
525 * completion. No state is used.
526 */
527static int cli_io_handler_dump_pools(struct appctx *appctx)
528{
529 struct stream_interface *si = appctx->owner;
530
531 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200532 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100533 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100534 return 0;
535 }
536 return 1;
537}
538
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100539/* callback used to create early pool <name> of size <size> and store the
540 * resulting pointer into <ptr>. If the allocation fails, it quits with after
541 * emitting an error message.
542 */
543void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
544{
545 *ptr = create_pool(name, size, MEM_F_SHARED);
546 if (!*ptr) {
547 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
548 name, size, strerror(errno));
549 exit(1);
550 }
551}
552
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100553/* Initializes all per-thread arrays on startup */
554static void init_pools()
555{
Willy Tarreau2d6f6282021-04-15 16:24:00 +0200556#ifdef CONFIG_HAP_POOLS
Willy Tarreau9f3129e2021-04-17 00:31:38 +0200557 int thr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100558
559 for (thr = 0; thr < MAX_THREADS; thr++) {
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200560 LIST_INIT(&ha_thread_info[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100561 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200562#endif
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100563}
564
565INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100566
William Lallemande7ed8852016-11-19 02:25:36 +0100567/* register cli keywords */
568static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaue9ecec82016-12-16 18:55:23 +0100569 { { "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 +0100570 {{},}
571}};
572
Willy Tarreau0108d902018-11-25 19:14:37 +0100573INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100574
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100575#ifdef DEBUG_FAIL_ALLOC
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100576
577int mem_should_fail(const struct pool_head *pool)
578{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100579 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100580
581 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau20f88ab2021-04-17 15:50:28 +0200582 if (mem_fail_rate > statistical_prng_range(100))
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100583 ret = 1;
584 else
585 ret = 0;
586 }
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100587 return ret;
588
589}
590
591/* config parser for global "tune.fail-alloc" */
592static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100593 const struct proxy *defpx, const char *file, int line,
594 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100595{
596 if (too_many_args(1, args, err, NULL))
597 return -1;
598 mem_fail_rate = atoi(args[1]);
599 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
600 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
601 return -1;
602 }
603 return 0;
604}
605#endif
606
607/* register global config keywords */
608static struct cfg_kw_list mem_cfg_kws = {ILH, {
609#ifdef DEBUG_FAIL_ALLOC
610 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
611#endif
612 { 0, NULL, NULL }
613}};
614
615INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
616
Willy Tarreau50e608d2007-05-13 18:26:08 +0200617/*
618 * Local variables:
619 * c-indent-level: 8
620 * c-basic-offset: 8
621 * End:
622 */