blob: cc0dac71035f00a8612fb939e7f18b57e14b3766 [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
William Lallemande7ed8852016-11-19 02:25:36 +010014#include <types/applet.h>
15#include <types/cli.h>
Willy Tarreau12833bb2014-01-28 16:49:56 +010016#include <types/global.h>
William Lallemande7ed8852016-11-19 02:25:36 +010017#include <types/stats.h>
18
Olivier Houcharddc21ff72019-01-29 15:20:16 +010019#include <common/cfgparse.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020020#include <common/config.h>
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020021#include <common/debug.h>
Willy Tarreaue18db9e2018-10-16 10:28:54 +020022#include <common/hathreads.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010023#include <common/initcall.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020024#include <common/memory.h>
25#include <common/mini-clist.h>
26#include <common/standard.h>
27
Willy Tarreaua8b2ce02019-05-28 17:04:16 +020028#include <types/activity.h>
29
William Lallemande7ed8852016-11-19 02:25:36 +010030#include <proto/applet.h>
31#include <proto/cli.h>
32#include <proto/channel.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020033#include <proto/log.h>
William Lallemande7ed8852016-11-19 02:25:36 +010034#include <proto/stream_interface.h>
35#include <proto/stats.h>
Willy Tarreau50e608d2007-05-13 18:26:08 +020036
Willy Tarreau0a93b642018-10-16 07:58:39 +020037/* These are the most common pools, expected to be initialized first. These
38 * ones are allocated from an array, allowing to map them to an index.
39 */
40struct pool_head pool_base_start[MAX_BASE_POOLS] = { };
41unsigned int pool_base_count = 0;
42
Willy Tarreau7f0165e2018-11-26 17:09:46 +010043/* These ones are initialized per-thread on startup by init_pools() */
44struct pool_cache_head pool_cache[MAX_THREADS][MAX_BASE_POOLS];
45static struct list pool_lru_head[MAX_THREADS]; /* oldest objects */
Willy Tarreaue18db9e2018-10-16 10:28:54 +020046THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */
47THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */
48
Willy Tarreau50e608d2007-05-13 18:26:08 +020049static struct list pools = LIST_HEAD_INIT(pools);
Willy Tarreau067ac9f2015-10-08 14:12:13 +020050int mem_poison_byte = -1;
Willy Tarreau50e608d2007-05-13 18:26:08 +020051
Olivier Houcharddc21ff72019-01-29 15:20:16 +010052#ifdef DEBUG_FAIL_ALLOC
53static int mem_fail_rate = 0;
54static int mem_should_fail(const struct pool_head *);
55#endif
56
Willy Tarreau50e608d2007-05-13 18:26:08 +020057/* Try to find an existing shared pool with the same characteristics and
58 * returns it, otherwise creates this one. NULL is returned if no memory
Willy Tarreau581bf812016-01-25 02:19:13 +010059 * is available for a new creation. Two flags are supported :
60 * - MEM_F_SHARED to indicate that the pool may be shared with other users
61 * - MEM_F_EXACT to indicate that the size must not be rounded up
Willy Tarreau50e608d2007-05-13 18:26:08 +020062 */
63struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags)
64{
65 struct pool_head *pool;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020066 struct pool_head *entry;
67 struct list *start;
Willy Tarreau50e608d2007-05-13 18:26:08 +020068 unsigned int align;
Christopher Faulet77204fd2019-06-25 21:45:59 +020069 int thr, idx;
Willy Tarreau50e608d2007-05-13 18:26:08 +020070
Willy Tarreauac421112015-10-28 15:09:29 +010071 /* We need to store a (void *) at the end of the chunks. Since we know
Willy Tarreau50e608d2007-05-13 18:26:08 +020072 * that the malloc() function will never return such a small size,
73 * let's round the size up to something slightly bigger, in order to
74 * ease merging of entries. Note that the rounding is a power of two.
Willy Tarreauac421112015-10-28 15:09:29 +010075 * This extra (void *) is not accounted for in the size computation
76 * so that the visible parts outside are not affected.
Willy Tarreau30f931e2018-10-23 14:40:23 +020077 *
78 * Note: for the LRU cache, we need to store 2 doubly-linked lists.
Willy Tarreau50e608d2007-05-13 18:26:08 +020079 */
80
Willy Tarreau581bf812016-01-25 02:19:13 +010081 if (!(flags & MEM_F_EXACT)) {
Willy Tarreau30f931e2018-10-23 14:40:23 +020082 align = 4 * sizeof(void *); // 2 lists = 4 pointers min
Willy Tarreau581bf812016-01-25 02:19:13 +010083 size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA;
84 }
Willy Tarreau50e608d2007-05-13 18:26:08 +020085
Christopher Fauletb349e482017-08-29 09:52:38 +020086 /* TODO: thread: we do not lock pool list for now because all pools are
87 * created during HAProxy startup (so before threads creation) */
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020088 start = &pools;
Willy Tarreau50e608d2007-05-13 18:26:08 +020089 pool = NULL;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +020090
91 list_for_each_entry(entry, &pools, list) {
92 if (entry->size == size) {
93 /* either we can share this place and we take it, or
94 * we look for a sharable one or for the next position
95 * before which we will insert a new one.
96 */
Willy Tarreau49fa5bb2021-05-05 07:29:01 +020097 if ((flags & entry->flags & MEM_F_SHARED)
98#ifdef DEBUG_DONT_SHARE_POOLS
99 && strcmp(name, entry->name) == 0
100#endif
101 ) {
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200102 /* we can share this one */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200103 pool = entry;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200104 DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200105 break;
106 }
107 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200108 else if (entry->size > size) {
109 /* insert before this one */
110 start = &entry->list;
111 break;
112 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200113 }
114
115 if (!pool) {
Willy Tarreau0a93b642018-10-16 07:58:39 +0200116 if (pool_base_count < MAX_BASE_POOLS)
117 pool = &pool_base_start[pool_base_count++];
118
119 if (!pool) {
120 /* look for a freed entry */
121 for (entry = pool_base_start; entry != pool_base_start + MAX_BASE_POOLS; entry++) {
122 if (!entry->size) {
123 pool = entry;
124 break;
125 }
126 }
127 }
128
129 if (!pool)
130 pool = calloc(1, sizeof(*pool));
131
Willy Tarreau50e608d2007-05-13 18:26:08 +0200132 if (!pool)
133 return NULL;
134 if (name)
135 strlcpy2(pool->name, name, sizeof(pool->name));
136 pool->size = size;
137 pool->flags = flags;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200138 LIST_ADDQ(start, &pool->list);
Christopher Faulet77204fd2019-06-25 21:45:59 +0200139
140 /* update per-thread pool cache if necessary */
141 idx = pool_get_index(pool);
142 if (idx >= 0) {
143 for (thr = 0; thr < MAX_THREADS; thr++)
144 pool_cache[thr][idx].size = size;
145 }
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100146#ifndef CONFIG_HAP_LOCKLESS_POOLS
Olivier Houchard4a2d6bd2020-02-01 17:45:32 +0100147 HA_SPIN_INIT(&pool->lock);
Olivier Houchard4536b302020-02-01 17:49:31 +0100148#else
Olivier Houchard5dfbf2e2020-03-18 15:48:29 +0100149 HA_SPIN_INIT(&pool->flush_lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100150#endif
Olivier Houchard4a2d6bd2020-02-01 17:45:32 +0100151 }
152 pool->users++;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200153 return pool;
154}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100155
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100156#ifdef CONFIG_HAP_LOCKLESS_POOLS
Olivier Houchardcf975d42018-01-24 18:38:31 +0100157/* Allocates new entries for pool <pool> until there are at least <avail> + 1
158 * available, then returns the last one for immediate use, so that at least
159 * <avail> are left available in the pool upon return. NULL is returned if the
160 * last entry could not be allocated. It's important to note that at least one
161 * allocation is always performed even if there are enough entries in the pool.
162 * A call to the garbage collector is performed at most once in case malloc()
163 * returns an error, before returning NULL.
164 */
165void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
166{
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200167 void *ptr = NULL, **free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100168 int failed = 0;
169 int size = pool->size;
170 int limit = pool->limit;
171 int allocated = pool->allocated, allocated_orig = allocated;
172
173 /* stop point */
174 avail += pool->used;
175
176 while (1) {
177 if (limit && allocated >= limit) {
Olivier Houchard20872762019-03-08 18:53:35 +0100178 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200179 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100180 return NULL;
181 }
182
183 ptr = malloc(size + POOL_EXTRA);
184 if (!ptr) {
Olivier Houchard20872762019-03-08 18:53:35 +0100185 _HA_ATOMIC_ADD(&pool->failed, 1);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200186 if (failed) {
187 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100188 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200189 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100190 failed++;
191 pool_gc(pool);
192 continue;
193 }
194 if (++allocated > avail)
195 break;
196
197 free_list = pool->free_list;
198 do {
199 *POOL_LINK(pool, ptr) = free_list;
200 __ha_barrier_store();
Olivier Houchard20872762019-03-08 18:53:35 +0100201 } while (_HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr) == 0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100202 }
Olivier Houchard20872762019-03-08 18:53:35 +0100203 __ha_barrier_atomic_store();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100204
Olivier Houchard20872762019-03-08 18:53:35 +0100205 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
206 _HA_ATOMIC_ADD(&pool->used, 1);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100207
208#ifdef DEBUG_MEMORY_POOLS
209 /* keep track of where the element was allocated from */
210 *POOL_LINK(pool, ptr) = (void *)pool;
211#endif
212 return ptr;
213}
214void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
215{
216 void *ptr;
217
218 ptr = __pool_refill_alloc(pool, avail);
219 return ptr;
220}
221/*
222 * This function frees whatever can be freed in pool <pool>.
223 */
224void pool_flush(struct pool_head *pool)
225{
Olivier Houchard21861592020-02-01 17:37:22 +0100226 struct pool_free_list cmp, new;
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200227 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100228 int removed = 0;
229
230 if (!pool)
231 return;
Olivier Houchard5dfbf2e2020-03-18 15:48:29 +0100232 HA_SPIN_LOCK(POOL_LOCK, &pool->flush_lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100233 do {
Olivier Houchard21861592020-02-01 17:37:22 +0100234 cmp.free_list = pool->free_list;
235 cmp.seq = pool->seq;
236 new.free_list = NULL;
237 new.seq = cmp.seq + 1;
238 } while (!_HA_ATOMIC_DWCAS(&pool->free_list, &cmp, &new));
Olivier Houchard20872762019-03-08 18:53:35 +0100239 __ha_barrier_atomic_store();
Olivier Houchard5dfbf2e2020-03-18 15:48:29 +0100240 HA_SPIN_UNLOCK(POOL_LOCK, &pool->flush_lock);
Olivier Houchard21861592020-02-01 17:37:22 +0100241 next = cmp.free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100242 while (next) {
243 temp = next;
244 next = *POOL_LINK(pool, temp);
245 removed++;
246 free(temp);
247 }
Olivier Houchard20872762019-03-08 18:53:35 +0100248 _HA_ATOMIC_SUB(&pool->allocated, removed);
Willy Tarreau6270ce32021-06-10 06:54:22 +0200249 /* here, we should have pool->allocated == pool->used */
Olivier Houchardcf975d42018-01-24 18:38:31 +0100250}
251
252/*
253 * This function frees whatever can be freed in all pools, but respecting
254 * the minimum thresholds imposed by owners. It takes care of avoiding
255 * recursion because it may be called from a signal handler.
256 *
257 * <pool_ctx> is unused
258 */
259void pool_gc(struct pool_head *pool_ctx)
260{
261 static int recurse;
262 int cur_recurse = 0;
263 struct pool_head *entry;
264
Olivier Houchard20872762019-03-08 18:53:35 +0100265 if (recurse || !_HA_ATOMIC_CAS(&recurse, &cur_recurse, 1))
Olivier Houchardcf975d42018-01-24 18:38:31 +0100266 return;
267
268 list_for_each_entry(entry, &pools, list) {
Olivier Houchard5dfbf2e2020-03-18 15:48:29 +0100269 HA_SPIN_LOCK(POOL_LOCK, &entry->flush_lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100270 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
271 struct pool_free_list cmp, new;
272
273 cmp.seq = entry->seq;
274 __ha_barrier_load();
275 cmp.free_list = entry->free_list;
276 __ha_barrier_load();
277 if (cmp.free_list == NULL)
278 break;
279 new.free_list = *POOL_LINK(entry, cmp.free_list);
280 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200281 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100282 continue;
283 free(cmp.free_list);
Olivier Houchard20872762019-03-08 18:53:35 +0100284 _HA_ATOMIC_SUB(&entry->allocated, 1);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100285 }
Olivier Houchard5dfbf2e2020-03-18 15:48:29 +0100286 HA_SPIN_UNLOCK(POOL_LOCK, &entry->flush_lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100287 }
288
Olivier Houchard20872762019-03-08 18:53:35 +0100289 _HA_ATOMIC_STORE(&recurse, 0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100290}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200291
292/* frees an object to the local cache, possibly pushing oldest objects to the
293 * global pool. Must not be called directly.
294 */
295void __pool_put_to_cache(struct pool_head *pool, void *ptr, ssize_t idx)
296{
297 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100298 struct pool_cache_head *ph = &pool_cache[tid][idx];
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200299
300 LIST_ADD(&ph->list, &item->by_pool);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100301 LIST_ADD(&pool_lru_head[tid], &item->by_lru);
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200302 ph->count++;
303 pool_cache_count++;
304 pool_cache_bytes += ph->size;
305
306 if (pool_cache_bytes <= CONFIG_HAP_POOL_CACHE_SIZE)
307 return;
308
309 do {
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100310 item = LIST_PREV(&pool_lru_head[tid], struct pool_cache_item *, by_lru);
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200311 /* note: by definition we remove oldest objects so they also are the
312 * oldest in their own pools, thus their next is the pool's head.
313 */
314 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
315 LIST_DEL(&item->by_pool);
316 LIST_DEL(&item->by_lru);
317 ph->count--;
318 pool_cache_count--;
319 pool_cache_bytes -= ph->size;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100320 __pool_free(pool_base_start + (ph - pool_cache[tid]), item);
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200321 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
322}
323
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100324#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200325
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100326/* Allocates new entries for pool <pool> until there are at least <avail> + 1
327 * available, then returns the last one for immediate use, so that at least
328 * <avail> are left available in the pool upon return. NULL is returned if the
329 * last entry could not be allocated. It's important to note that at least one
330 * allocation is always performed even if there are enough entries in the pool.
331 * A call to the garbage collector is performed at most once in case malloc()
332 * returns an error, before returning NULL.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200333 */
Christopher Fauletb349e482017-08-29 09:52:38 +0200334void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200335{
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100336 void *ptr = NULL;
337 int failed = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200338
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100339#ifdef DEBUG_FAIL_ALLOC
340 if (mem_should_fail(pool))
341 return NULL;
342#endif
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100343 /* stop point */
344 avail += pool->used;
345
346 while (1) {
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200347 if (pool->limit && pool->allocated >= pool->limit) {
348 activity[tid].pool_fail++;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200349 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200350 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100351
Willy Tarreauf13322e2017-11-22 10:50:54 +0100352 ptr = pool_alloc_area(pool->size + POOL_EXTRA);
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 Tarreaude30a682015-10-28 15:23:51 +0100370#ifdef DEBUG_MEMORY_POOLS
371 /* keep track of where the element was allocated from */
372 *POOL_LINK(pool, ptr) = (void *)pool;
373#endif
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100374 return ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200375}
Christopher Fauletb349e482017-08-29 09:52:38 +0200376void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
377{
378 void *ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200379
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100380 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200381 ptr = __pool_refill_alloc(pool, avail);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100382 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200383 return ptr;
384}
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200385/*
386 * This function frees whatever can be freed in pool <pool>.
387 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100388void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200389{
390 void *temp, *next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200391 if (!pool)
392 return;
393
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100394 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200395 next = pool->free_list;
396 while (next) {
397 temp = next;
Willy Tarreauac421112015-10-28 15:09:29 +0100398 next = *POOL_LINK(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200399 pool->allocated--;
Willy Tarreauf13322e2017-11-22 10:50:54 +0100400 pool_free_area(temp, pool->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200401 }
402 pool->free_list = next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100403 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200404 /* here, we should have pool->allocate == pool->used */
405}
406
407/*
408 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200409 * the minimum thresholds imposed by owners. It takes care of avoiding
410 * recursion because it may be called from a signal handler.
Christopher Fauletb349e482017-08-29 09:52:38 +0200411 *
Willy Tarreaubafbe012017-11-24 17:34:44 +0100412 * <pool_ctx> is used when pool_gc is called to release resources to allocate
Christopher Fauletb349e482017-08-29 09:52:38 +0200413 * an element in __pool_refill_alloc. It is important because <pool_ctx> is
414 * already locked, so we need to skip the lock here.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200415 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100416void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200417{
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200418 static int recurse;
Christopher Fauletb349e482017-08-29 09:52:38 +0200419 int cur_recurse = 0;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200420 struct pool_head *entry;
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200421
Olivier Houchard20872762019-03-08 18:53:35 +0100422 if (recurse || !_HA_ATOMIC_CAS(&recurse, &cur_recurse, 1))
Christopher Fauletb349e482017-08-29 09:52:38 +0200423 return;
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200424
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200425 list_for_each_entry(entry, &pools, list) {
426 void *temp, *next;
427 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Christopher Fauletb349e482017-08-29 09:52:38 +0200428 if (entry != pool_ctx)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100429 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200430 next = entry->free_list;
431 while (next &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100432 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200433 temp = next;
Willy Tarreauac421112015-10-28 15:09:29 +0100434 next = *POOL_LINK(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200435 entry->allocated--;
Willy Tarreauf13322e2017-11-22 10:50:54 +0100436 pool_free_area(temp, entry->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200437 }
438 entry->free_list = next;
Christopher Fauletb349e482017-08-29 09:52:38 +0200439 if (entry != pool_ctx)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100440 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200441 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200442
Olivier Houchard20872762019-03-08 18:53:35 +0100443 _HA_ATOMIC_STORE(&recurse, 0);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200444}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100445#endif
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200446
447/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200448 * This function destroys a pool by freeing it completely, unless it's still
449 * in use. This should be called only under extreme circumstances. It always
450 * returns NULL if the resulting pool is empty, easing the clearing of the old
451 * pointer, otherwise it returns the pool.
452 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200453 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100454void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200455{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200456 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100457 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200458 if (pool->used)
459 return pool;
460 pool->users--;
461 if (!pool->users) {
462 LIST_DEL(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100463#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100464 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100465#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200466 if ((pool - pool_base_start) < MAX_BASE_POOLS)
467 memset(pool, 0, sizeof(*pool));
468 else
469 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200470 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200471 }
472 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200473}
474
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100475/* This destroys all pools on exit. It is *not* thread safe. */
476void pool_destroy_all()
477{
478 struct pool_head *entry, *back;
479
480 list_for_each_entry_safe(entry, back, &pools, list)
481 pool_destroy(entry);
482}
483
Willy Tarreau12833bb2014-01-28 16:49:56 +0100484/* This function dumps memory usage information into the trash buffer. */
485void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200486{
487 struct pool_head *entry;
488 unsigned long allocated, used;
489 int nbpools;
490
491 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100492 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200493 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100494#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100495 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100496#endif
Willy Tarreau81461622020-05-06 17:10:37 +0200497 chunk_appendf(&trash, " - Pool %s (%u bytes) : %u allocated (%u bytes), %u used, %u failures, %u users, @%p=%02d%s\n",
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200498 entry->name, entry->size, entry->allocated,
Willy Tarreau58102cf2015-10-28 16:24:21 +0100499 entry->size * entry->allocated, entry->used, entry->failed,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200500 entry->users, entry, (int)pool_get_index(entry),
501 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200502
503 allocated += entry->allocated * entry->size;
504 used += entry->used * entry->size;
505 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100506#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100507 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100508#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200509 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100510 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200511 nbpools, allocated, used);
512}
513
Willy Tarreau12833bb2014-01-28 16:49:56 +0100514/* Dump statistics on pools usage. */
515void dump_pools(void)
516{
517 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200518 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100519}
520
Willy Tarreau58102cf2015-10-28 16:24:21 +0100521/* This function returns the total number of failed pool allocations */
522int pool_total_failures()
523{
524 struct pool_head *entry;
525 int failed = 0;
526
527 list_for_each_entry(entry, &pools, list)
528 failed += entry->failed;
529 return failed;
530}
531
532/* This function returns the total amount of memory allocated in pools (in bytes) */
533unsigned long pool_total_allocated()
534{
535 struct pool_head *entry;
536 unsigned long allocated = 0;
537
538 list_for_each_entry(entry, &pools, list)
539 allocated += entry->allocated * entry->size;
540 return allocated;
541}
542
543/* This function returns the total amount of memory used in pools (in bytes) */
544unsigned long pool_total_used()
545{
546 struct pool_head *entry;
547 unsigned long used = 0;
548
549 list_for_each_entry(entry, &pools, list)
550 used += entry->used * entry->size;
551 return used;
552}
553
William Lallemande7ed8852016-11-19 02:25:36 +0100554/* This function dumps memory usage information onto the stream interface's
555 * read buffer. It returns 0 as long as it does not complete, non-zero upon
556 * completion. No state is used.
557 */
558static int cli_io_handler_dump_pools(struct appctx *appctx)
559{
560 struct stream_interface *si = appctx->owner;
561
562 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200563 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100564 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100565 return 0;
566 }
567 return 1;
568}
569
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100570/* callback used to create early pool <name> of size <size> and store the
571 * resulting pointer into <ptr>. If the allocation fails, it quits with after
572 * emitting an error message.
573 */
574void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
575{
576 *ptr = create_pool(name, size, MEM_F_SHARED);
577 if (!*ptr) {
578 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
579 name, size, strerror(errno));
580 exit(1);
581 }
582}
583
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100584/* Initializes all per-thread arrays on startup */
585static void init_pools()
586{
587 int thr, idx;
588
589 for (thr = 0; thr < MAX_THREADS; thr++) {
590 for (idx = 0; idx < MAX_BASE_POOLS; idx++) {
591 LIST_INIT(&pool_cache[thr][idx].list);
592 pool_cache[thr][idx].size = 0;
593 }
594 LIST_INIT(&pool_lru_head[thr]);
595 }
596}
597
598INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100599
William Lallemande7ed8852016-11-19 02:25:36 +0100600/* register cli keywords */
601static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaue9ecec82016-12-16 18:55:23 +0100602 { { "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 +0100603 {{},}
604}};
605
Willy Tarreau0108d902018-11-25 19:14:37 +0100606INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100607
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100608#ifdef DEBUG_FAIL_ALLOC
609#define MEM_FAIL_MAX_CHAR 32
610#define MEM_FAIL_MAX_STR 128
611static int mem_fail_cur_idx;
612static char mem_fail_str[MEM_FAIL_MAX_CHAR * MEM_FAIL_MAX_STR];
613__decl_hathreads(static HA_SPINLOCK_T mem_fail_lock);
614
615int mem_should_fail(const struct pool_head *pool)
616{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100617 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100618 int n;
619
620 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
Willy Tarreau861c4ef2020-03-08 00:42:37 +0100621 int randnb = ha_random() % 100;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100622
623 if (mem_fail_rate > randnb)
624 ret = 1;
625 else
626 ret = 0;
627 }
Olivier Houchard4536b302020-02-01 17:49:31 +0100628 HA_SPIN_LOCK(POOL_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100629 n = snprintf(&mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR],
630 MEM_FAIL_MAX_CHAR - 2,
631 "%d %.18s %d %d", mem_fail_cur_idx, pool->name, ret, tid);
632 while (n < MEM_FAIL_MAX_CHAR - 1)
633 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n++] = ' ';
634 if (mem_fail_cur_idx < MEM_FAIL_MAX_STR - 1)
635 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = '\n';
636 else
637 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = 0;
638 mem_fail_cur_idx++;
639 if (mem_fail_cur_idx == MEM_FAIL_MAX_STR)
640 mem_fail_cur_idx = 0;
Olivier Houchard4536b302020-02-01 17:49:31 +0100641 HA_SPIN_UNLOCK(POOL_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100642 return ret;
643
644}
645
646/* config parser for global "tune.fail-alloc" */
647static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
648 struct proxy *defpx, const char *file, int line,
649 char **err)
650{
651 if (too_many_args(1, args, err, NULL))
652 return -1;
653 mem_fail_rate = atoi(args[1]);
654 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
655 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
656 return -1;
657 }
658 return 0;
659}
660#endif
661
662/* register global config keywords */
663static struct cfg_kw_list mem_cfg_kws = {ILH, {
664#ifdef DEBUG_FAIL_ALLOC
665 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
666#endif
667 { 0, NULL, NULL }
668}};
669
670INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
671
Willy Tarreau50e608d2007-05-13 18:26:08 +0200672/*
673 * Local variables:
674 * c-indent-level: 8
675 * c-basic-offset: 8
676 * End:
677 */