blob: 0227f36690a415d1cd92a17dd4e8feb39f4a9175 [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 Tarreaued891fd2020-06-01 19:00:28 +020030#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau0a93b642018-10-16 07:58:39 +020031/* These are the most common pools, expected to be initialized first. These
32 * ones are allocated from an array, allowing to map them to an index.
33 */
34struct pool_head pool_base_start[MAX_BASE_POOLS] = { };
35unsigned int pool_base_count = 0;
36
Willy Tarreau7f0165e2018-11-26 17:09:46 +010037/* These ones are initialized per-thread on startup by init_pools() */
38struct pool_cache_head pool_cache[MAX_THREADS][MAX_BASE_POOLS];
Willy Tarreaue18db9e2018-10-16 10:28:54 +020039THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
40THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
Willy Tarreaued891fd2020-06-01 19:00:28 +020041#endif
Willy Tarreaue18db9e2018-10-16 10:28:54 +020042
Willy Tarreau50e608d2007-05-13 18:26:08 +020043static struct list pools = LIST_HEAD_INIT(pools);
Willy Tarreau067ac9f2015-10-08 14:12:13 +020044int mem_poison_byte = -1;
Willy Tarreau50e608d2007-05-13 18:26:08 +020045
Olivier Houcharddc21ff72019-01-29 15:20:16 +010046#ifdef DEBUG_FAIL_ALLOC
47static int mem_fail_rate = 0;
48static int mem_should_fail(const struct pool_head *);
49#endif
50
Willy Tarreau50e608d2007-05-13 18:26:08 +020051/* Try to find an existing shared pool with the same characteristics and
52 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +010053 * is available for a new creation. Two flags are supported :
54 * - MEM_F_SHARED to indicate that the pool may be shared with other users
55 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +020056 */
57struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
58{
59 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020060 struct pool_head *entry;
61 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +020062 unsigned int align;
Willy Tarreaued891fd2020-06-01 19:00:28 +020063 int idx __maybe_unused;
Willy Tarreau50e608d2007-05-13 18:26:08 +020064
Willy Tarreauac421112015-10-28 15:09:29 +010065 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +020066 * that the malloc() function will never return such a small size,
67 * let's round the size up to something slightly bigger, in order to
68 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +010069 * This extra (void *) is not accounted for in the size computation
70 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +020071 *
72 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +020073 */
74
Willy Tarreau581bf812016-01-25 02:19:13 +010075 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +020076 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +010077 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
78 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020079
Christopher Fauletb349e482017-08-29 09:52:38 +020080 /* TODO: thread: we do not lock pool list for now because all pools are
81 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020082 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +020083 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020084
85 list_for_each_entry(entry, &pools, list) {
86 if (entry->size == size) {
87 /* either we can share this place and we take it, or
Ilya Shipitsin47d17182020-06-21 21:42:57 +050088 * we look for a shareable one or for the next position
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020089 * before which we will insert a new one.
90 */
91 if (flags & entry->flags & MEM_F_SHARED) {
92 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +020093 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020094 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +020095 break;
96 }
97 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020098 else if (entry->size > size) {
99 /* insert before this one */
100 start = &entry->list;
101 break;
102 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200103 }
104
105 if (!pool) {
Willy Tarreaued891fd2020-06-01 19:00:28 +0200106#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau0a93b642018-10-16 07:58:39 +0200107 if (pool_base_count < MAX_BASE_POOLS)
108 pool = &pool_base_start[pool_base_count++];
109
110 if (!pool) {
111 /* look for a freed entry */
112 for (entry = pool_base_start; entry != pool_base_start + MAX_BASE_POOLS; entry++) {
113 if (!entry->size) {
114 pool = entry;
115 break;
116 }
117 }
118 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200119#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200120
121 if (!pool)
122 pool = calloc(1, sizeof(*pool));
123
Willy Tarreau50e608d2007-05-13 18:26:08 +0200124 if (!pool)
125 return NULL;
126 if (name)
127 strlcpy2(pool->name, name, sizeof(pool->name));
128 pool->size = size;
129 pool->flags = flags;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200130 LIST_ADDQ(start, &pool->list);
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200131
Willy Tarreaued891fd2020-06-01 19:00:28 +0200132#ifdef CONFIG_HAP_LOCAL_POOLS
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200133 /* update per-thread pool cache if necessary */
134 idx = pool_get_index(pool);
135 if (idx >= 0) {
Willy Tarreaued891fd2020-06-01 19:00:28 +0200136 int thr;
137
Christopher Faulet2f6d3c02019-06-25 21:45:59 +0200138 for (thr = 0; thr < MAX_THREADS; thr++)
139 pool_cache[thr][idx].size = size;
140 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200141#endif
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100142 HA_SPIN_INIT(&pool->lock);
Olivier Houchard8af97eb2020-02-01 17:45:32 +0100143 }
144 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200145 return pool;
146}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100147
Willy Tarreaued891fd2020-06-01 19:00:28 +0200148#ifdef CONFIG_HAP_LOCAL_POOLS
149/* Evicts some of the oldest objects from the local cache, pushing them to the
150 * global pool.
151 */
152void pool_evict_from_cache()
153{
154 struct pool_cache_item *item;
155 struct pool_cache_head *ph;
156
157 do {
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200158 item = LIST_PREV(&ti->pool_lru_head, struct pool_cache_item *, by_lru);
Willy Tarreaued891fd2020-06-01 19:00:28 +0200159 /* note: by definition we remove oldest objects so they also are the
160 * oldest in their own pools, thus their next is the pool's head.
161 */
162 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
163 LIST_DEL(&item->by_pool);
164 LIST_DEL(&item->by_lru);
165 ph->count--;
166 pool_cache_count--;
167 pool_cache_bytes -= ph->size;
168 __pool_free(pool_base_start + (ph - pool_cache[tid]), item);
169 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
170}
171#endif
172
Willy Tarreau0bae0752021-03-02 20:05:09 +0100173#if defined(CONFIG_HAP_NO_GLOBAL_POOLS)
174
175/* simply fall back on the default OS' allocator */
176
177void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
178{
179 int allocated = pool->allocated;
180 int limit = pool->limit;
181 void *ptr = NULL;
182
183 if (limit && allocated >= limit) {
Willy Tarreau0bae0752021-03-02 20:05:09 +0100184 activity[tid].pool_fail++;
185 return NULL;
186 }
187
188 ptr = pool_alloc_area(pool->size + POOL_EXTRA);
189 if (!ptr) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200190 _HA_ATOMIC_INC(&pool->failed);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100191 activity[tid].pool_fail++;
192 return NULL;
193 }
194
Willy Tarreau4781b152021-04-06 13:53:36 +0200195 _HA_ATOMIC_INC(&pool->allocated);
196 _HA_ATOMIC_INC(&pool->used);
Willy Tarreau0bae0752021-03-02 20:05:09 +0100197
198#ifdef DEBUG_MEMORY_POOLS
199 /* keep track of where the element was allocated from */
200 *POOL_LINK(pool, ptr) = (void *)pool;
201#endif
202 return ptr;
203}
204
205/* legacy stuff */
206void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
207{
208 void *ptr;
209
210 ptr = __pool_refill_alloc(pool, avail);
211 return ptr;
212}
213
214/* legacy stuff */
215void pool_flush(struct pool_head *pool)
216{
217}
218
219/* This function might ask the malloc library to trim its buffers. */
220void pool_gc(struct pool_head *pool_ctx)
221{
222#if defined(HA_HAVE_MALLOC_TRIM)
223 malloc_trim(0);
224#endif
225}
226
227#elif defined(CONFIG_HAP_LOCKLESS_POOLS)
228
Olivier Houchardcf975d42018-01-24 18:38:31 +0100229/* Allocates new entries for pool <pool> until there are at least <avail> + 1
230 * available, then returns the last one for immediate use, so that at least
231 * <avail> are left available in the pool upon return. NULL is returned if the
232 * last entry could not be allocated. It's important to note that at least one
233 * allocation is always performed even if there are enough entries in the pool.
234 * A call to the garbage collector is performed at most once in case malloc()
235 * returns an error, before returning NULL.
236 */
237void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
238{
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200239 void *ptr = NULL, **free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100240 int failed = 0;
241 int size = pool->size;
242 int limit = pool->limit;
243 int allocated = pool->allocated, allocated_orig = allocated;
244
245 /* stop point */
246 avail += pool->used;
247
248 while (1) {
249 if (limit && allocated >= limit) {
Olivier Houchard20872762019-03-08 18:53:35 +0100250 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200251 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100252 return NULL;
253 }
254
Willy Tarreau606135a2020-06-01 12:35:03 +0200255 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->allocated, POOL_AVG_SAMPLES/4);
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200256
Willy Tarreau24aa1ee2020-05-30 18:56:17 +0200257 ptr = pool_alloc_area(size + POOL_EXTRA);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100258 if (!ptr) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200259 _HA_ATOMIC_INC(&pool->failed);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200260 if (failed) {
261 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100262 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200263 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100264 failed++;
265 pool_gc(pool);
266 continue;
267 }
268 if (++allocated > avail)
269 break;
270
271 free_list = pool->free_list;
272 do {
273 *POOL_LINK(pool, ptr) = free_list;
274 __ha_barrier_store();
Olivier Houchard20872762019-03-08 18:53:35 +0100275 } while (_HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr) == 0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100276 }
Olivier Houchard20872762019-03-08 18:53:35 +0100277 __ha_barrier_atomic_store();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100278
Olivier Houchard20872762019-03-08 18:53:35 +0100279 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
Willy Tarreau4781b152021-04-06 13:53:36 +0200280 _HA_ATOMIC_INC(&pool->used);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100281
282#ifdef DEBUG_MEMORY_POOLS
283 /* keep track of where the element was allocated from */
284 *POOL_LINK(pool, ptr) = (void *)pool;
285#endif
286 return ptr;
287}
288void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
289{
290 void *ptr;
291
292 ptr = __pool_refill_alloc(pool, avail);
293 return ptr;
294}
295/*
296 * This function frees whatever can be freed in pool <pool>.
297 */
298void pool_flush(struct pool_head *pool)
299{
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100300 struct pool_free_list cmp, new;
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200301 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100302 int removed = 0;
303
304 if (!pool)
305 return;
Willy Tarreau21072b92020-05-29 17:23:05 +0200306 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100307 do {
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100308 cmp.free_list = pool->free_list;
309 cmp.seq = pool->seq;
310 new.free_list = NULL;
311 new.seq = cmp.seq + 1;
312 } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new));
Olivier Houchard20872762019-03-08 18:53:35 +0100313 __ha_barrier_atomic_store();
Willy Tarreau21072b92020-05-29 17:23:05 +0200314 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Olivier Houchardb6fa08b2020-02-01 17:37:22 +0100315 next = cmp.free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100316 while (next) {
317 temp = next;
318 next = *POOL_LINK(pool, temp);
319 removed++;
Willy Tarreau24aa1ee2020-05-30 18:56:17 +0200320 pool_free_area(temp, pool->size + POOL_EXTRA);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100321 }
322 pool->free_list = next;
Olivier Houchard20872762019-03-08 18:53:35 +0100323 _HA_ATOMIC_SUB(&pool->allocated, removed);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100324 /* here, we should have pool->allocate == pool->used */
325}
326
327/*
328 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200329 * the minimum thresholds imposed by owners. It makes sure to be alone to
330 * run by using thread_isolate(). <pool_ctx> is unused.
Olivier Houchardcf975d42018-01-24 18:38:31 +0100331 */
332void pool_gc(struct pool_head *pool_ctx)
333{
Olivier Houchardcf975d42018-01-24 18:38:31 +0100334 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200335 int isolated = thread_isolated();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100336
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200337 if (!isolated)
338 thread_isolate();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100339
340 list_for_each_entry(entry, &pools, list) {
341 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
342 struct pool_free_list cmp, new;
343
344 cmp.seq = entry->seq;
345 __ha_barrier_load();
346 cmp.free_list = entry->free_list;
347 __ha_barrier_load();
348 if (cmp.free_list == NULL)
349 break;
350 new.free_list = *POOL_LINK(entry, cmp.free_list);
351 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200352 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100353 continue;
Willy Tarreau24aa1ee2020-05-30 18:56:17 +0200354 pool_free_area(cmp.free_list, entry->size + POOL_EXTRA);
Willy Tarreau4781b152021-04-06 13:53:36 +0200355 _HA_ATOMIC_DEC(&entry->allocated);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100356 }
357 }
358
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200359 if (!isolated)
360 thread_release();
Willy Tarreau88366c22020-11-03 15:53:34 +0100361
362#if defined(HA_HAVE_MALLOC_TRIM)
363 malloc_trim(0);
364#endif
Olivier Houchardcf975d42018-01-24 18:38:31 +0100365}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200366
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100367#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200368
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100369/* Allocates new entries for pool <pool> until there are at least <avail> + 1
370 * available, then returns the last one for immediate use, so that at least
371 * <avail> are left available in the pool upon return. NULL is returned if the
372 * last entry could not be allocated. It's important to note that at least one
373 * allocation is always performed even if there are enough entries in the pool.
374 * A call to the garbage collector is performed at most once in case malloc()
375 * returns an error, before returning NULL.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200376 */
Christopher Fauletb349e482017-08-29 09:52:38 +0200377void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200378{
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100379 void *ptr = NULL;
380 int failed = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200381
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100382#ifdef DEBUG_FAIL_ALLOC
383 if (mem_should_fail(pool))
384 return NULL;
385#endif
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100386 /* stop point */
387 avail += pool->used;
388
389 while (1) {
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200390 if (pool->limit && pool->allocated >= pool->limit) {
391 activity[tid].pool_fail++;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200392 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200393 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100394
Willy Tarreau606135a2020-06-01 12:35:03 +0200395 swrate_add_scaled(&pool->needed_avg, POOL_AVG_SAMPLES, pool->allocated, POOL_AVG_SAMPLES/4);
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200396 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreauf13322e2017-11-22 10:50:54 +0100397 ptr = pool_alloc_area(pool->size + POOL_EXTRA);
Willy Tarreau82867542019-07-04 11:48:16 +0200398#ifdef DEBUG_MEMORY_POOLS
399 /* keep track of where the element was allocated from. This
400 * is done out of the lock so that the system really allocates
401 * the data without harming other threads waiting on the lock.
402 */
403 if (ptr)
404 *POOL_LINK(pool, ptr) = (void *)pool;
405#endif
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200406 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100407 if (!ptr) {
Willy Tarreau58102cf2015-10-28 16:24:21 +0100408 pool->failed++;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200409 if (failed) {
410 activity[tid].pool_fail++;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100411 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200412 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100413 failed++;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100414 pool_gc(pool);
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100415 continue;
416 }
417 if (++pool->allocated > avail)
418 break;
419
Willy Tarreauac421112015-10-28 15:09:29 +0100420 *POOL_LINK(pool, ptr) = (void *)pool->free_list;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100421 pool->free_list = ptr;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200422 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200423 pool->used++;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100424 return ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200425}
Christopher Fauletb349e482017-08-29 09:52:38 +0200426void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
427{
428 void *ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200429
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100430 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200431 ptr = __pool_refill_alloc(pool, avail);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100432 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200433 return ptr;
434}
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200435/*
436 * This function frees whatever can be freed in pool <pool>.
437 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100438void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200439{
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200440 void *temp;
441
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200442 if (!pool)
443 return;
444
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200445 while (1) {
446 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
447 temp = pool->free_list;
448 if (!temp) {
449 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
450 break;
451 }
452 pool->free_list = *POOL_LINK(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200453 pool->allocated--;
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200454 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreauf13322e2017-11-22 10:50:54 +0100455 pool_free_area(temp, pool->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200456 }
Willy Tarreau3e853ea2019-07-04 11:30:00 +0200457 /* here, we should have pool->allocated == pool->used */
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200458}
459
460/*
461 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200462 * the minimum thresholds imposed by owners. It makes sure to be alone to
463 * run by using thread_isolate(). <pool_ctx> is unused.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200464 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100465void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200466{
467 struct pool_head *entry;
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200468 int isolated = thread_isolated();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200469
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200470 if (!isolated)
471 thread_isolate();
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200472
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200473 list_for_each_entry(entry, &pools, list) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100474 void *temp;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200475 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Olivier Houchard51d93392020-03-12 19:05:39 +0100476 while (entry->free_list &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100477 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Olivier Houchard51d93392020-03-12 19:05:39 +0100478 temp = entry->free_list;
479 entry->free_list = *POOL_LINK(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200480 entry->allocated--;
Willy Tarreauf13322e2017-11-22 10:50:54 +0100481 pool_free_area(temp, entry->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200482 }
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200483 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200484
Willy Tarreauc0e2ff22020-04-24 06:15:24 +0200485 if (!isolated)
486 thread_release();
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200487}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100488#endif
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200489
490/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200491 * This function destroys a pool by freeing it completely, unless it's still
492 * in use. This should be called only under extreme circumstances. It always
493 * returns NULL if the resulting pool is empty, easing the clearing of the old
494 * pointer, otherwise it returns the pool.
495 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200496 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100497void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200498{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200499 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100500 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200501 if (pool->used)
502 return pool;
503 pool->users--;
504 if (!pool->users) {
505 LIST_DEL(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100506#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100507 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100508#endif
Willy Tarreaued891fd2020-06-01 19:00:28 +0200509
510#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau0a93b642018-10-16 07:58:39 +0200511 if ((pool - pool_base_start) < MAX_BASE_POOLS)
512 memset(pool, 0, sizeof(*pool));
513 else
Willy Tarreaued891fd2020-06-01 19:00:28 +0200514#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200515 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200516 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200517 }
518 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200519}
520
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100521/* This destroys all pools on exit. It is *not* thread safe. */
522void pool_destroy_all()
523{
524 struct pool_head *entry, *back;
525
526 list_for_each_entry_safe(entry, back, &pools, list)
527 pool_destroy(entry);
528}
529
Willy Tarreau12833bb2014-01-28 16:49:56 +0100530/* This function dumps memory usage information into the trash buffer. */
531void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200532{
533 struct pool_head *entry;
534 unsigned long allocated, used;
535 int nbpools;
536
537 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100538 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200539 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100540#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100541 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100542#endif
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200543 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 +0200544 entry->name, entry->size, entry->allocated,
Willy Tarreaua1e4f8c2020-05-08 08:31:56 +0200545 entry->size * entry->allocated, entry->used,
Willy Tarreau606135a2020-06-01 12:35:03 +0200546 swrate_avg(entry->needed_avg, POOL_AVG_SAMPLES), entry->failed,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200547 entry->users, entry, (int)pool_get_index(entry),
548 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200549
550 allocated += entry->allocated * entry->size;
551 used += entry->used * entry->size;
552 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100553#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100554 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100555#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200556 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100557 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200558 nbpools, allocated, used);
559}
560
Willy Tarreau12833bb2014-01-28 16:49:56 +0100561/* Dump statistics on pools usage. */
562void dump_pools(void)
563{
564 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200565 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100566}
567
Willy Tarreau58102cf2015-10-28 16:24:21 +0100568/* This function returns the total number of failed pool allocations */
569int pool_total_failures()
570{
571 struct pool_head *entry;
572 int failed = 0;
573
574 list_for_each_entry(entry, &pools, list)
575 failed += entry->failed;
576 return failed;
577}
578
579/* This function returns the total amount of memory allocated in pools (in bytes) */
580unsigned long pool_total_allocated()
581{
582 struct pool_head *entry;
583 unsigned long allocated = 0;
584
585 list_for_each_entry(entry, &pools, list)
586 allocated += entry->allocated * entry->size;
587 return allocated;
588}
589
590/* This function returns the total amount of memory used in pools (in bytes) */
591unsigned long pool_total_used()
592{
593 struct pool_head *entry;
594 unsigned long used = 0;
595
596 list_for_each_entry(entry, &pools, list)
597 used += entry->used * entry->size;
598 return used;
599}
600
William Lallemande7ed8852016-11-19 02:25:36 +0100601/* This function dumps memory usage information onto the stream interface's
602 * read buffer. It returns 0 as long as it does not complete, non-zero upon
603 * completion. No state is used.
604 */
605static int cli_io_handler_dump_pools(struct appctx *appctx)
606{
607 struct stream_interface *si = appctx->owner;
608
609 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200610 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100611 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100612 return 0;
613 }
614 return 1;
615}
616
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100617/* callback used to create early pool <name> of size <size> and store the
618 * resulting pointer into <ptr>. If the allocation fails, it quits with after
619 * emitting an error message.
620 */
621void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
622{
623 *ptr = create_pool(name, size, MEM_F_SHARED);
624 if (!*ptr) {
625 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
626 name, size, strerror(errno));
627 exit(1);
628 }
629}
630
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100631/* Initializes all per-thread arrays on startup */
632static void init_pools()
633{
Willy Tarreaued891fd2020-06-01 19:00:28 +0200634#ifdef CONFIG_HAP_LOCAL_POOLS
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100635 int thr, idx;
636
637 for (thr = 0; thr < MAX_THREADS; thr++) {
638 for (idx = 0; idx < MAX_BASE_POOLS; idx++) {
639 LIST_INIT(&pool_cache[thr][idx].list);
640 pool_cache[thr][idx].size = 0;
641 }
Willy Tarreau20dc3cd2020-06-28 00:54:27 +0200642 LIST_INIT(&ha_thread_info[thr].pool_lru_head);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100643 }
Willy Tarreaued891fd2020-06-01 19:00:28 +0200644#endif
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100645}
646
647INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100648
William Lallemande7ed8852016-11-19 02:25:36 +0100649/* register cli keywords */
650static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaue9ecec82016-12-16 18:55:23 +0100651 { { "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 +0100652 {{},}
653}};
654
Willy Tarreau0108d902018-11-25 19:14:37 +0100655INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100656
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100657#ifdef DEBUG_FAIL_ALLOC
658#define MEM_FAIL_MAX_CHAR 32
659#define MEM_FAIL_MAX_STR 128
660static int mem_fail_cur_idx;
661static char mem_fail_str[MEM_FAIL_MAX_CHAR * MEM_FAIL_MAX_STR];
Willy Tarreauaf613e82020-06-05 08:40:51 +0200662__decl_thread(static HA_SPINLOCK_T mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100663
664int mem_should_fail(const struct pool_head *pool)
665{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100666 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100667 int n;
668
669 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau52bf8392020-03-08 00:42:37 +0100670 int randnb = ha_random() % 100;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100671
672 if (mem_fail_rate > randnb)
673 ret = 1;
674 else
675 ret = 0;
676 }
Olivier Houchard04f5fe82020-02-01 17:49:31 +0100677 HA_SPIN_LOCK(POOL_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100678 n = snprintf(&mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR],
679 MEM_FAIL_MAX_CHAR - 2,
680 "%d %.18s %d %d", mem_fail_cur_idx, pool->name, ret, tid);
681 while (n < MEM_FAIL_MAX_CHAR - 1)
682 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n++] = ' ';
683 if (mem_fail_cur_idx < MEM_FAIL_MAX_STR - 1)
684 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = '\n';
685 else
686 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = 0;
687 mem_fail_cur_idx++;
688 if (mem_fail_cur_idx == MEM_FAIL_MAX_STR)
689 mem_fail_cur_idx = 0;
Olivier Houchard04f5fe82020-02-01 17:49:31 +0100690 HA_SPIN_UNLOCK(POOL_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100691 return ret;
692
693}
694
695/* config parser for global "tune.fail-alloc" */
696static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
Amaury Denoyelle3b1c9a32021-03-22 11:21:36 +0100697 const struct proxy *defpx, const char *file, int line,
698 char **err)
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100699{
700 if (too_many_args(1, args, err, NULL))
701 return -1;
702 mem_fail_rate = atoi(args[1]);
703 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
704 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
705 return -1;
706 }
707 return 0;
708}
709#endif
710
711/* register global config keywords */
712static struct cfg_kw_list mem_cfg_kws = {ILH, {
713#ifdef DEBUG_FAIL_ALLOC
714 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
715#endif
716 { 0, NULL, NULL }
717}};
718
719INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
720
Willy Tarreau50e608d2007-05-13 18:26:08 +0200721/*
722 * Local variables:
723 * c-indent-level: 8
724 * c-basic-offset: 8
725 * End:
726 */