blob: 1e8e2f8637afb0777235a5a409bfdb1b2a767576 [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 Tarreau3f0f82e2020-06-04 19:42:41 +020014#include <haproxy/applet-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
William Lallemande7ed8852016-11-19 02:25:36 +010016#include <types/cli.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020017#include <haproxy/global.h>
William Lallemande7ed8852016-11-19 02:25:36 +010018#include <types/stats.h>
19
Olivier Houcharddc21ff72019-01-29 15:20:16 +010020#include <common/cfgparse.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020021#include <haproxy/thread.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020022#include <haproxy/pool.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020023#include <haproxy/list.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020024#include <haproxy/tools.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020025
Willy Tarreaua04ded52020-06-02 10:29:48 +020026#include <haproxy/activity-t.h>
Willy Tarreaua8b2ce02019-05-28 17:04:16 +020027
William Lallemande7ed8852016-11-19 02:25:36 +010028#include <proto/cli.h>
29#include <proto/channel.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020030#include <proto/log.h>
William Lallemande7ed8852016-11-19 02:25:36 +010031#include <proto/stream_interface.h>
32#include <proto/stats.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020033
Willy Tarreaued891fd2020-06-01 19:00:28 +020034#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau0a93b642018-10-16 07:58:39 +020035/* These are the most common pools, expected to be initialized first. These
36 * ones are allocated from an array, allowing to map them to an index.
37 */
38struct pool_head pool_base_start[MAX_BASE_POOLS] = { };
39unsigned int pool_base_count = 0;
40
Willy Tarreau7f0165e2018-11-26 17:09:46 +010041/* These ones are initialized per-thread on startup by init_pools() */
42struct pool_cache_head pool_cache[MAX_THREADS][MAX_BASE_POOLS];
Willy Tarreaufb117e62020-06-01 18:16:57 +020043struct list pool_lru_head[MAX_THREADS]; /* oldest objects */
Willy Tarreaue18db9e2018-10-16 10:28:54 +020044THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
45THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
Willy Tarreaued891fd2020-06-01 19:00:28 +020046#endif
Willy Tarreaue18db9e2018-10-16 10:28:54 +020047
Willy Tarreau50e608d2007-05-13 18:26:08 +020048static struct list pools = LIST_HEAD_INIT(pools);
Willy Tarreau067ac9f2015-10-08 14:12:13 +020049int mem_poison_byte = -1;
Willy Tarreau50e608d2007-05-13 18:26:08 +020050
Olivier Houcharddc21ff72019-01-29 15:20:16 +010051#ifdef DEBUG_FAIL_ALLOC
52static int mem_fail_rate = 0;
53static int mem_should_fail(const struct pool_head *);
54#endif
55
Willy Tarreau50e608d2007-05-13 18:26:08 +020056/* Try to find an existing shared pool with the same characteristics and
57 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +010058 * is available for a new creation. Two flags are supported :
59 * - MEM_F_SHARED to indicate that the pool may be shared with other users
60 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +020061 */
62struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
63{
64 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020065 struct pool_head *entry;
66 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +020067 unsigned int align;
Willy Tarreaued891fd2020-06-01 19:00:28 +020068 int idx __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +020069
Willy Tarreauac421112015-10-28 15:09:29 +010070 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +020071 * that the malloc() function will never return such a small size,
72 * let's round the size up to something slightly bigger, in order to
73 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +010074 * This extra (void *) is not accounted for in the size computation
75 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +020076 *
77 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +020078 */
79
Willy Tarreau581bf812016-01-25 02:19:13 +010080 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +020081 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +010082 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
83 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020084
Christopher Fauletb349e482017-08-29 09:52:38 +020085 /* TODO: thread: we do not lock pool list for now because all pools are
86 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020087 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +020088 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020089
90 list_for_each_entry(entry, &pools, list) {
91 if (entry->size == size) {
92 /* either we can share this place and we take it, or
93 * we look for a sharable one or for the next position
94 * before which we will insert a new one.
95 */
96 if (flags & entry->flags & MEM_F_SHARED) {
97 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +020098 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020099 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200100 break;
101 }
102 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200103 else if (entry->size > size) {
104 /* insert before this one */
105 start = &entry->list;
106 break;
107 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200108 }
109
110 if (!pool) {
Willy Tarreaued891fd2020-06-01 19:00:28 +0200111#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau0a93b642018-10-16 07:58:39 +0200112 if (pool_base_count < MAX_BASE_POOLS)
113 pool = &pool_base_start[pool_base_count++];
114
115 if (!pool) {
116 /* look for a freed entry */
117 for (entry = pool_base_start; entry != pool_base_start + MAX_BASE_POOLS; entry++) {
118 if (!entry->size) {
119 pool = entry;
120 break;
121 }
122 }
123 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200124#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200125
126 if (!pool)
127 pool = calloc(1, sizeof(*pool));
128
Willy Tarreau50e608d2007-05-13 18:26:08 +0200129 if (!pool)
130 return NULL;
131 if (name)
132 strlcpy2(pool->name, name, sizeof(pool->name));
133 pool->size = size;
134 pool->flags = flags;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200135 LIST_ADDQ(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200136
Willy Tarreaued891fd2020-06-01 19:00:28 +0200137#ifdef CONFIG_HAP_LOCAL_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200138 /* update per-thread pool cache if necessary */
139 idx = pool_get_index(pool);
140 if (idx >= 0) {
Willy Tarreaued891fd2020-06-01 19:00:28 +0200141 int thr;
142
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200143 for (thr = 0; thr < MAX_THREADS; thr++)
144 pool_cache[thr][idx].size = size;
145 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200146#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100147 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100148 }
149 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200150 return pool;
151}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100152
Willy Tarreaued891fd2020-06-01 19:00:28 +0200153#ifdef CONFIG_HAP_LOCAL_POOLS
154/* Evicts some of the oldest objects from the local cache, pushing them to the
155 * global pool.
156 */
157void pool_evict_from_cache()
158{
159 struct pool_cache_item *item;
160 struct pool_cache_head *ph;
161
162 do {
163 item = LIST_PREV(&pool_lru_head[tid], struct pool_cache_item *, by_lru);
164 /* note: by definition we remove oldest objects so they also are the
165 * oldest in their own pools, thus their next is the pool's head.
166 */
167 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
168 LIST_DEL(&item->by_pool);
169 LIST_DEL(&item->by_lru);
170 ph->count--;
171 pool_cache_count--;
172 pool_cache_bytes -= ph->size;
173 __pool_free(pool_base_start + (ph - pool_cache[tid]), item);
174 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
175}
176#endif
177
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100178#ifdef CONFIG_HAP_LOCKLESS_POOLS
Olivier Houchardcf975d42018-01-24 18:38:31 +0100179/* Allocates new entries for pool <pool> until there are at least <avail> + 1
180 * available, then returns the last one for immediate use, so that at least
181 * <avail> are left available in the pool upon return. NULL is returned if the
182 * last entry could not be allocated. It's important to note that at least one
183 * allocation is always performed even if there are enough entries in the pool.
184 * A call to the garbage collector is performed at most once in case malloc()
185 * returns an error, before returning NULL.
186 */
187void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
188{
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200189 void *ptr = NULL, **free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100190 int failed = 0;
191 int size = pool->size;
192 int limit = pool->limit;
193 int allocated = pool->allocated, allocated_orig = allocated;
194
195 /* stop point */
196 avail += pool->used;
197
198 while (1) {
199 if (limit && allocated >= limit) {
Olivier Houchard20872762019-03-08 18:53:35 +0100200 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200201 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100202 return NULL;
203 }
204
Willy Tarreau606135a2020-06-01 12:35:03 +0200205 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->allocated, POOL_AVG_SAMPLES/4);
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200206
Willy Tarreau24aa1ee2020-05-30 18:56:17 +0200207 ptr = pool_alloc_area(size + POOL_EXTRA);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100208 if (!ptr) {
Olivier Houchard20872762019-03-08 18:53:35 +0100209 _HA_ATOMIC_ADD(&pool->failed, 1);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200210 if (failed) {
211 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100212 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200213 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100214 failed++;
215 pool_gc(pool);
216 continue;
217 }
218 if (++allocated > avail)
219 break;
220
221 free_list = pool->free_list;
222 do {
223 *POOL_LINK(pool, ptr) = free_list;
224 __ha_barrier_store();
Olivier Houchard20872762019-03-08 18:53:35 +0100225 } while (_HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr) == 0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100226 }
Olivier Houchard20872762019-03-08 18:53:35 +0100227 __ha_barrier_atomic_store();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100228
Olivier Houchard20872762019-03-08 18:53:35 +0100229 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
230 _HA_ATOMIC_ADD(&pool->used, 1);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100231
232#ifdef DEBUG_MEMORY_POOLS
233 /* keep track of where the element was allocated from */
234 *POOL_LINK(pool, ptr) = (void *)pool;
235#endif
236 return ptr;
237}
238void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
239{
240 void *ptr;
241
242 ptr = __pool_refill_alloc(pool, avail);
243 return ptr;
244}
245/*
246 * This function frees whatever can be freed in pool <pool>.
247 */
248void pool_flush(struct pool_head *pool)
249{
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100250 struct pool_free_list cmp, new;
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200251 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100252 int removed = 0;
253
254 if (!pool)
255 return;
Willy Tarreau21072b92020-05-29 17:23:05 +0200256 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100257 do {
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100258 cmp.free_list = pool->free_list;
259 cmp.seq = pool->seq;
260 new.free_list = NULL;
261 new.seq = cmp.seq + 1;
262 } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new));
Olivier Houchard20872762019-03-08 18:53:35 +0100263 __ha_barrier_atomic_store();
Willy Tarreau21072b92020-05-29 17:23:05 +0200264 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100265 next = cmp.free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100266 while (next) {
267 temp = next;
268 next = *POOL_LINK(pool, temp);
269 removed++;
Willy Tarreau24aa1ee2020-05-30 18:56:17 +0200270 pool_free_area(temp, pool->size + POOL_EXTRA);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100271 }
272 pool->free_list = next;
Olivier Houchard20872762019-03-08 18:53:35 +0100273 _HA_ATOMIC_SUB(&pool->allocated, removed);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100274 /* here, we should have pool->allocate == pool->used */
275}
276
277/*
278 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200279 * the minimum thresholds imposed by owners. It makes sure to be alone to
280 * run by using thread_isolate(). <pool_ctx> is unused.
Olivier Houchardcf975d42018-01-24 18:38:31 +0100281 */
282void pool_gc(struct pool_head *pool_ctx)
283{
Olivier Houchardcf975d42018-01-24 18:38:31 +0100284 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200285 int isolated = thread_isolated();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100286
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200287 if (!isolated)
288 thread_isolate();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100289
290 list_for_each_entry(entry, &pools, list) {
291 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
292 struct pool_free_list cmp, new;
293
294 cmp.seq = entry->seq;
295 __ha_barrier_load();
296 cmp.free_list = entry->free_list;
297 __ha_barrier_load();
298 if (cmp.free_list == NULL)
299 break;
300 new.free_list = *POOL_LINK(entry, cmp.free_list);
301 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200302 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100303 continue;
Willy Tarreau24aa1ee2020-05-30 18:56:17 +0200304 pool_free_area(cmp.free_list, entry->size + POOL_EXTRA);
Olivier Houchard20872762019-03-08 18:53:35 +0100305 _HA_ATOMIC_SUB(&entry->allocated, 1);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100306 }
307 }
308
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200309 if (!isolated)
310 thread_release();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100311}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200312
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100313#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200314
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100315/* Allocates new entries for pool <pool> until there are at least <avail> + 1
316 * available, then returns the last one for immediate use, so that at least
317 * <avail> are left available in the pool upon return. NULL is returned if the
318 * last entry could not be allocated. It's important to note that at least one
319 * allocation is always performed even if there are enough entries in the pool.
320 * A call to the garbage collector is performed at most once in case malloc()
321 * returns an error, before returning NULL.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200322 */
Christopher Fauletb349e482017-08-29 09:52:38 +0200323void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200324{
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100325 void *ptr = NULL;
326 int failed = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200327
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100328#ifdef DEBUG_FAIL_ALLOC
329 if (mem_should_fail(pool))
330 return NULL;
331#endif
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100332 /* stop point */
333 avail += pool->used;
334
335 while (1) {
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200336 if (pool->limit && pool->allocated >= pool->limit) {
337 activity[tid].pool_fail++;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200338 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200339 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100340
Willy Tarreau606135a2020-06-01 12:35:03 +0200341 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->allocated, POOL_AVG_SAMPLES/4);
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200342 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreauf13322e2017-11-22 10:50:54 +0100343 ptr = pool_alloc_area(pool->size + POOL_EXTRA);
Willy Tarreau82867542019-07-04 11:48:16 +0200344#ifdef DEBUG_MEMORY_POOLS
345 /* keep track of where the element was allocated from. This
346 * is done out of the lock so that the system really allocates
347 * the data without harming other threads waiting on the lock.
348 */
349 if (ptr)
350 *POOL_LINK(pool, ptr) = (void *)pool;
351#endif
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200352 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100353 if (!ptr) {
Willy Tarreau58102cf2015-10-28 16:24:21 +0100354 pool->failed++;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200355 if (failed) {
356 activity[tid].pool_fail++;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100357 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200358 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100359 failed++;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100360 pool_gc(pool);
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100361 continue;
362 }
363 if (++pool->allocated > avail)
364 break;
365
Willy Tarreauac421112015-10-28 15:09:29 +0100366 *POOL_LINK(pool, ptr) = (void *)pool->free_list;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100367 pool->free_list = ptr;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200368 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200369 pool->used++;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100370 return ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200371}
Christopher Fauletb349e482017-08-29 09:52:38 +0200372void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
373{
374 void *ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200375
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100376 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200377 ptr = __pool_refill_alloc(pool, avail);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100378 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200379 return ptr;
380}
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200381/*
382 * This function frees whatever can be freed in pool <pool>.
383 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100384void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200385{
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200386 void *temp;
387
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200388 if (!pool)
389 return;
390
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200391 while (1) {
392 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
393 temp = pool->free_list;
394 if (!temp) {
395 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
396 break;
397 }
398 pool->free_list = *POOL_LINK(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200399 pool->allocated--;
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200400 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreauf13322e2017-11-22 10:50:54 +0100401 pool_free_area(temp, pool->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200402 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200403 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200404}
405
406/*
407 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200408 * the minimum thresholds imposed by owners. It makes sure to be alone to
409 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200410 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100411void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200412{
413 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200414 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200415
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200416 if (!isolated)
417 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200418
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200419 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100420 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200421 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100422 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100423 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100424 temp = entry->free_list;
425 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200426 entry->allocated--;
Willy Tarreauf13322e2017-11-22 10:50:54 +0100427 pool_free_area(temp, entry->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200428 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200429 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200430
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200431 if (!isolated)
432 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200433}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100434#endif
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200435
436/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200437 * This function destroys a pool by freeing it completely, unless it's still
438 * in use. This should be called only under extreme circumstances. It always
439 * returns NULL if the resulting pool is empty, easing the clearing of the old
440 * pointer, otherwise it returns the pool.
441 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200442 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100443void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200444{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200445 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100446 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200447 if (pool->used)
448 return pool;
449 pool->users--;
450 if (!pool->users) {
451 LIST_DEL(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100452#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100453 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100454#endif
Willy Tarreaued891fd2020-06-01 19:00:28 +0200455
456#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau0a93b642018-10-16 07:58:39 +0200457 if ((pool - pool_base_start) < MAX_BASE_POOLS)
458 memset(pool, 0, sizeof(*pool));
459 else
Willy Tarreaued891fd2020-06-01 19:00:28 +0200460#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200461 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200462 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200463 }
464 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200465}
466
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100467/* This destroys all pools on exit. It is *not* thread safe. */
468void pool_destroy_all()
469{
470 struct pool_head *entry, *back;
471
472 list_for_each_entry_safe(entry, back, &pools, list)
473 pool_destroy(entry);
474}
475
Willy Tarreau12833bb2014-01-28 16:49:56 +0100476/* This function dumps memory usage information into the trash buffer. */
477void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200478{
479 struct pool_head *entry;
480 unsigned long allocated, used;
481 int nbpools;
482
483 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100484 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200485 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100486#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100487 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100488#endif
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200489 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used, needed_avg %u, %u failures, %u users, @%p=%02d%s\n",
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200490 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200491 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200492 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200493 entry->users, entry, (int)pool_get_index(entry),
494 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200495
496 allocated += entry->allocated * entry->size;
497 used += entry->used * entry->size;
498 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100499#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100500 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100501#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200502 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100503 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200504 nbpools, allocated, used);
505}
506
Willy Tarreau12833bb2014-01-28 16:49:56 +0100507/* Dump statistics on pools usage. */
508void dump_pools(void)
509{
510 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200511 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100512}
513
Willy Tarreau58102cf2015-10-28 16:24:21 +0100514/* This function returns the total number of failed pool allocations */
515int pool_total_failures()
516{
517 struct pool_head *entry;
518 int failed = 0;
519
520 list_for_each_entry(entry, &pools, list)
521 failed += entry->failed;
522 return failed;
523}
524
525/* This function returns the total amount of memory allocated in pools (in bytes) */
526unsigned long pool_total_allocated()
527{
528 struct pool_head *entry;
529 unsigned long allocated = 0;
530
531 list_for_each_entry(entry, &pools, list)
532 allocated += entry->allocated * entry->size;
533 return allocated;
534}
535
536/* This function returns the total amount of memory used in pools (in bytes) */
537unsigned long pool_total_used()
538{
539 struct pool_head *entry;
540 unsigned long used = 0;
541
542 list_for_each_entry(entry, &pools, list)
543 used += entry->used * entry->size;
544 return used;
545}
546
William Lallemande7ed8852016-11-19 02:25:36 +0100547/* This function dumps memory usage information onto the stream interface's
548 * read buffer. It returns 0 as long as it does not complete, non-zero upon
549 * completion. No state is used.
550 */
551static int cli_io_handler_dump_pools(struct appctx *appctx)
552{
553 struct stream_interface *si = appctx->owner;
554
555 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200556 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100557 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100558 return 0;
559 }
560 return 1;
561}
562
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100563/* callback used to create early pool <name> of size <size> and store the
564 * resulting pointer into <ptr>. If the allocation fails, it quits with after
565 * emitting an error message.
566 */
567void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
568{
569 *ptr = create_pool(name, size, MEM_F_SHARED);
570 if (!*ptr) {
571 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
572 name, size, strerror(errno));
573 exit(1);
574 }
575}
576
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100577/* Initializes all per-thread arrays on startup */
578static void init_pools()
579{
Willy Tarreaued891fd2020-06-01 19:00:28 +0200580#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100581 int thr, idx;
582
583 for (thr = 0; thr < MAX_THREADS; thr++) {
584 for (idx = 0; idx < MAX_BASE_POOLS; idx++) {
585 LIST_INIT(&pool_cache[thr][idx].list);
586 pool_cache[thr][idx].size = 0;
587 }
588 LIST_INIT(&pool_lru_head[thr]);
589 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200590#endif
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100591}
592
593INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100594
William Lallemande7ed8852016-11-19 02:25:36 +0100595/* register cli keywords */
596static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaue9ecec82016-12-16 18:55:23 +0100597 { { "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 +0100598 {{},}
599}};
600
Willy Tarreau0108d902018-11-25 19:14:37 +0100601INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100602
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100603#ifdef DEBUG_FAIL_ALLOC
604#define MEM_FAIL_MAX_CHAR 32
605#define MEM_FAIL_MAX_STR 128
606static int mem_fail_cur_idx;
607static char mem_fail_str[MEM_FAIL_MAX_CHAR * MEM_FAIL_MAX_STR];
Willy Tarreauaf613e82020-06-05 08:40:51 +0200608__decl_thread(static HA_SPINLOCK_T mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100609
610int mem_should_fail(const struct pool_head *pool)
611{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100612 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100613 int n;
614
615 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau52bf8392020-03-08 00:42:37 +0100616 int randnb = ha_random() % 100;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100617
618 if (mem_fail_rate > randnb)
619 ret = 1;
620 else
621 ret = 0;
622 }
Olivier Houchard04f5fe82020-02-01 17:49:31 +0100623 HA_SPIN_LOCK(POOL_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100624 n = snprintf(&mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR],
625 MEM_FAIL_MAX_CHAR - 2,
626 "%d %.18s %d %d", mem_fail_cur_idx, pool->name, ret, tid);
627 while (n < MEM_FAIL_MAX_CHAR - 1)
628 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n++] = ' ';
629 if (mem_fail_cur_idx < MEM_FAIL_MAX_STR - 1)
630 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = '\n';
631 else
632 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = 0;
633 mem_fail_cur_idx++;
634 if (mem_fail_cur_idx == MEM_FAIL_MAX_STR)
635 mem_fail_cur_idx = 0;
Olivier Houchard04f5fe82020-02-01 17:49:31 +0100636 HA_SPIN_UNLOCK(POOL_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100637 return ret;
638
639}
640
641/* config parser for global "tune.fail-alloc" */
642static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
643 struct proxy *defpx, const char *file, int line,
644 char **err)
645{
646 if (too_many_args(1, args, err, NULL))
647 return -1;
648 mem_fail_rate = atoi(args[1]);
649 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
650 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
651 return -1;
652 }
653 return 0;
654}
655#endif
656
657/* register global config keywords */
658static struct cfg_kw_list mem_cfg_kws = {ILH, {
659#ifdef DEBUG_FAIL_ALLOC
660 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
661#endif
662 { 0, NULL, NULL }
663}};
664
665INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
666
Willy Tarreau50e608d2007-05-13 18:26:08 +0200667/*
668 * Local variables:
669 * c-indent-level: 8
670 * c-basic-offset: 8
671 * End:
672 */