blob: 6331c84456749c45a9c7f387c91ebd7cf06cb9b8 [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;
69
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 Tarreau0a93b642018-10-16 07:58:39 +0200111 if (pool_base_count < MAX_BASE_POOLS)
112 pool = &pool_base_start[pool_base_count++];
113
114 if (!pool) {
115 /* look for a freed entry */
116 for (entry = pool_base_start; entry != pool_base_start + MAX_BASE_POOLS; entry++) {
117 if (!entry->size) {
118 pool = entry;
119 break;
120 }
121 }
122 }
123
124 if (!pool)
125 pool = calloc(1, sizeof(*pool));
126
Willy Tarreau50e608d2007-05-13 18:26:08 +0200127 if (!pool)
128 return NULL;
129 if (name)
130 strlcpy2(pool->name, name, sizeof(pool->name));
131 pool->size = size;
132 pool->flags = flags;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200133 LIST_ADDQ(start, &pool->list);
Willy Tarreau50e608d2007-05-13 18:26:08 +0200134 }
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200135 pool->users++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100136#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100137 HA_SPIN_INIT(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100138#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200139 return pool;
140}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100141
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100142#ifdef CONFIG_HAP_LOCKLESS_POOLS
Olivier Houchardcf975d42018-01-24 18:38:31 +0100143/* Allocates new entries for pool <pool> until there are at least <avail> + 1
144 * available, then returns the last one for immediate use, so that at least
145 * <avail> are left available in the pool upon return. NULL is returned if the
146 * last entry could not be allocated. It's important to note that at least one
147 * allocation is always performed even if there are enough entries in the pool.
148 * A call to the garbage collector is performed at most once in case malloc()
149 * returns an error, before returning NULL.
150 */
151void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
152{
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200153 void *ptr = NULL, **free_list;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100154 int failed = 0;
155 int size = pool->size;
156 int limit = pool->limit;
157 int allocated = pool->allocated, allocated_orig = allocated;
158
159 /* stop point */
160 avail += pool->used;
161
162 while (1) {
163 if (limit && allocated >= limit) {
Olivier Houchard20872762019-03-08 18:53:35 +0100164 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200165 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100166 return NULL;
167 }
168
169 ptr = malloc(size + POOL_EXTRA);
170 if (!ptr) {
Olivier Houchard20872762019-03-08 18:53:35 +0100171 _HA_ATOMIC_ADD(&pool->failed, 1);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200172 if (failed) {
173 activity[tid].pool_fail++;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100174 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200175 }
Olivier Houchardcf975d42018-01-24 18:38:31 +0100176 failed++;
177 pool_gc(pool);
178 continue;
179 }
180 if (++allocated > avail)
181 break;
182
183 free_list = pool->free_list;
184 do {
185 *POOL_LINK(pool, ptr) = free_list;
186 __ha_barrier_store();
Olivier Houchard20872762019-03-08 18:53:35 +0100187 } while (_HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr) == 0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100188 }
Olivier Houchard20872762019-03-08 18:53:35 +0100189 __ha_barrier_atomic_store();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100190
Olivier Houchard20872762019-03-08 18:53:35 +0100191 _HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig);
192 _HA_ATOMIC_ADD(&pool->used, 1);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100193
194#ifdef DEBUG_MEMORY_POOLS
195 /* keep track of where the element was allocated from */
196 *POOL_LINK(pool, ptr) = (void *)pool;
197#endif
198 return ptr;
199}
200void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
201{
202 void *ptr;
203
204 ptr = __pool_refill_alloc(pool, avail);
205 return ptr;
206}
207/*
208 * This function frees whatever can be freed in pool <pool>.
209 */
210void pool_flush(struct pool_head *pool)
211{
Olivier Houchard8b2c8a72018-10-21 01:52:59 +0200212 void **next, *temp;
Olivier Houchardcf975d42018-01-24 18:38:31 +0100213 int removed = 0;
214
215 if (!pool)
216 return;
217 do {
218 next = pool->free_list;
Olivier Houchard20872762019-03-08 18:53:35 +0100219 } while (!_HA_ATOMIC_CAS(&pool->free_list, &next, NULL));
220 __ha_barrier_atomic_store();
Olivier Houchardcf975d42018-01-24 18:38:31 +0100221 while (next) {
222 temp = next;
223 next = *POOL_LINK(pool, temp);
224 removed++;
225 free(temp);
226 }
227 pool->free_list = next;
Olivier Houchard20872762019-03-08 18:53:35 +0100228 _HA_ATOMIC_SUB(&pool->allocated, removed);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100229 /* here, we should have pool->allocate == pool->used */
230}
231
232/*
233 * This function frees whatever can be freed in all pools, but respecting
234 * the minimum thresholds imposed by owners. It takes care of avoiding
235 * recursion because it may be called from a signal handler.
236 *
237 * <pool_ctx> is unused
238 */
239void pool_gc(struct pool_head *pool_ctx)
240{
241 static int recurse;
242 int cur_recurse = 0;
243 struct pool_head *entry;
244
Olivier Houchard20872762019-03-08 18:53:35 +0100245 if (recurse || !_HA_ATOMIC_CAS(&recurse, &cur_recurse, 1))
Olivier Houchardcf975d42018-01-24 18:38:31 +0100246 return;
247
248 list_for_each_entry(entry, &pools, list) {
249 while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) {
250 struct pool_free_list cmp, new;
251
252 cmp.seq = entry->seq;
253 __ha_barrier_load();
254 cmp.free_list = entry->free_list;
255 __ha_barrier_load();
256 if (cmp.free_list == NULL)
257 break;
258 new.free_list = *POOL_LINK(entry, cmp.free_list);
259 new.seq = cmp.seq + 1;
Willy Tarreau6a38b322019-05-11 18:04:24 +0200260 if (HA_ATOMIC_DWCAS(&entry->free_list, &cmp, &new) == 0)
Olivier Houchardcf975d42018-01-24 18:38:31 +0100261 continue;
262 free(cmp.free_list);
Olivier Houchard20872762019-03-08 18:53:35 +0100263 _HA_ATOMIC_SUB(&entry->allocated, 1);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100264 }
265 }
266
Olivier Houchard20872762019-03-08 18:53:35 +0100267 _HA_ATOMIC_STORE(&recurse, 0);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100268}
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200269
270/* frees an object to the local cache, possibly pushing oldest objects to the
271 * global pool. Must not be called directly.
272 */
273void __pool_put_to_cache(struct pool_head *pool, void *ptr, ssize_t idx)
274{
275 struct pool_cache_item *item = (struct pool_cache_item *)ptr;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100276 struct pool_cache_head *ph = &pool_cache[tid][idx];
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200277
278 LIST_ADD(&ph->list, &item->by_pool);
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100279 LIST_ADD(&pool_lru_head[tid], &item->by_lru);
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200280 ph->count++;
281 pool_cache_count++;
282 pool_cache_bytes += ph->size;
283
284 if (pool_cache_bytes <= CONFIG_HAP_POOL_CACHE_SIZE)
285 return;
286
287 do {
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100288 item = LIST_PREV(&pool_lru_head[tid], struct pool_cache_item *, by_lru);
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200289 /* note: by definition we remove oldest objects so they also are the
290 * oldest in their own pools, thus their next is the pool's head.
291 */
292 ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list);
293 LIST_DEL(&item->by_pool);
294 LIST_DEL(&item->by_lru);
295 ph->count--;
296 pool_cache_count--;
297 pool_cache_bytes -= ph->size;
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100298 __pool_free(pool_base_start + (ph - pool_cache[tid]), item);
Willy Tarreaue18db9e2018-10-16 10:28:54 +0200299 } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8);
300}
301
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100302#else /* CONFIG_HAP_LOCKLESS_POOLS */
Willy Tarreau50e608d2007-05-13 18:26:08 +0200303
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100304/* Allocates new entries for pool <pool> until there are at least <avail> + 1
305 * available, then returns the last one for immediate use, so that at least
306 * <avail> are left available in the pool upon return. NULL is returned if the
307 * last entry could not be allocated. It's important to note that at least one
308 * allocation is always performed even if there are enough entries in the pool.
309 * A call to the garbage collector is performed at most once in case malloc()
310 * returns an error, before returning NULL.
Willy Tarreau50e608d2007-05-13 18:26:08 +0200311 */
Christopher Fauletb349e482017-08-29 09:52:38 +0200312void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail)
Willy Tarreau50e608d2007-05-13 18:26:08 +0200313{
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100314 void *ptr = NULL;
315 int failed = 0;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200316
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100317#ifdef DEBUG_FAIL_ALLOC
318 if (mem_should_fail(pool))
319 return NULL;
320#endif
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100321 /* stop point */
322 avail += pool->used;
323
324 while (1) {
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200325 if (pool->limit && pool->allocated >= pool->limit) {
326 activity[tid].pool_fail++;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200327 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200328 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100329
Willy Tarreauf13322e2017-11-22 10:50:54 +0100330 ptr = pool_alloc_area(pool->size + POOL_EXTRA);
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100331 if (!ptr) {
Willy Tarreau58102cf2015-10-28 16:24:21 +0100332 pool->failed++;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200333 if (failed) {
334 activity[tid].pool_fail++;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100335 return NULL;
Willy Tarreaua8b2ce02019-05-28 17:04:16 +0200336 }
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100337 failed++;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100338 pool_gc(pool);
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100339 continue;
340 }
341 if (++pool->allocated > avail)
342 break;
343
Willy Tarreauac421112015-10-28 15:09:29 +0100344 *POOL_LINK(pool, ptr) = (void *)pool->free_list;
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100345 pool->free_list = ptr;
Willy Tarreau7dcd46d2007-05-14 00:16:13 +0200346 }
Willy Tarreau50e608d2007-05-13 18:26:08 +0200347 pool->used++;
Willy Tarreaude30a682015-10-28 15:23:51 +0100348#ifdef DEBUG_MEMORY_POOLS
349 /* keep track of where the element was allocated from */
350 *POOL_LINK(pool, ptr) = (void *)pool;
351#endif
Willy Tarreaua885f6d2014-12-03 15:25:28 +0100352 return ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200353}
Christopher Fauletb349e482017-08-29 09:52:38 +0200354void *pool_refill_alloc(struct pool_head *pool, unsigned int avail)
355{
356 void *ptr;
Willy Tarreau50e608d2007-05-13 18:26:08 +0200357
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100358 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200359 ptr = __pool_refill_alloc(pool, avail);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100360 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Christopher Fauletb349e482017-08-29 09:52:38 +0200361 return ptr;
362}
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200363/*
364 * This function frees whatever can be freed in pool <pool>.
365 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100366void pool_flush(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200367{
368 void *temp, *next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200369 if (!pool)
370 return;
371
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100372 HA_SPIN_LOCK(POOL_LOCK, &pool->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200373 next = pool->free_list;
374 while (next) {
375 temp = next;
Willy Tarreauac421112015-10-28 15:09:29 +0100376 next = *POOL_LINK(pool, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200377 pool->allocated--;
Willy Tarreauf13322e2017-11-22 10:50:54 +0100378 pool_free_area(temp, pool->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200379 }
380 pool->free_list = next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100381 HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200382 /* here, we should have pool->allocate == pool->used */
383}
384
385/*
386 * This function frees whatever can be freed in all pools, but respecting
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200387 * the minimum thresholds imposed by owners. It takes care of avoiding
388 * recursion because it may be called from a signal handler.
Christopher Fauletb349e482017-08-29 09:52:38 +0200389 *
Willy Tarreaubafbe012017-11-24 17:34:44 +0100390 * <pool_ctx> is used when pool_gc is called to release resources to allocate
Christopher Fauletb349e482017-08-29 09:52:38 +0200391 * an element in __pool_refill_alloc. It is important because <pool_ctx> is
392 * already locked, so we need to skip the lock here.
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200393 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100394void pool_gc(struct pool_head *pool_ctx)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200395{
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200396 static int recurse;
Christopher Fauletb349e482017-08-29 09:52:38 +0200397 int cur_recurse = 0;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200398 struct pool_head *entry;
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200399
Olivier Houchard20872762019-03-08 18:53:35 +0100400 if (recurse || !_HA_ATOMIC_CAS(&recurse, &cur_recurse, 1))
Christopher Fauletb349e482017-08-29 09:52:38 +0200401 return;
Willy Tarreaub7f9d122009-04-21 02:17:45 +0200402
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200403 list_for_each_entry(entry, &pools, list) {
404 void *temp, *next;
405 //qfprintf(stderr, "Flushing pool %s\n", entry->name);
Christopher Fauletb349e482017-08-29 09:52:38 +0200406 if (entry != pool_ctx)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100407 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200408 next = entry->free_list;
409 while (next &&
Willy Tarreau57767b82014-12-22 21:40:55 +0100410 (int)(entry->allocated - entry->used) > (int)entry->minavail) {
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200411 temp = next;
Willy Tarreauac421112015-10-28 15:09:29 +0100412 next = *POOL_LINK(entry, temp);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200413 entry->allocated--;
Willy Tarreauf13322e2017-11-22 10:50:54 +0100414 pool_free_area(temp, entry->size + POOL_EXTRA);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200415 }
416 entry->free_list = next;
Christopher Fauletb349e482017-08-29 09:52:38 +0200417 if (entry != pool_ctx)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100418 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200419 }
Christopher Fauletb349e482017-08-29 09:52:38 +0200420
Olivier Houchard20872762019-03-08 18:53:35 +0100421 _HA_ATOMIC_STORE(&recurse, 0);
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200422}
Olivier Houchardcf975d42018-01-24 18:38:31 +0100423#endif
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200424
425/*
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200426 * This function destroys a pool by freeing it completely, unless it's still
427 * in use. This should be called only under extreme circumstances. It always
428 * returns NULL if the resulting pool is empty, easing the clearing of the old
429 * pointer, otherwise it returns the pool.
430 * .
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200431 */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100432void *pool_destroy(struct pool_head *pool)
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200433{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200434 if (pool) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100435 pool_flush(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200436 if (pool->used)
437 return pool;
438 pool->users--;
439 if (!pool->users) {
440 LIST_DEL(&pool->list);
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100441#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100442 HA_SPIN_DESTROY(&pool->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100443#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200444 if ((pool - pool_base_start) < MAX_BASE_POOLS)
445 memset(pool, 0, sizeof(*pool));
446 else
447 free(pool);
Willy Tarreaudae4aa82007-06-16 23:19:53 +0200448 }
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200449 }
450 return NULL;
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200451}
452
Willy Tarreau2455ceb2018-11-26 15:57:34 +0100453/* This destroys all pools on exit. It is *not* thread safe. */
454void pool_destroy_all()
455{
456 struct pool_head *entry, *back;
457
458 list_for_each_entry_safe(entry, back, &pools, list)
459 pool_destroy(entry);
460}
461
Willy Tarreau12833bb2014-01-28 16:49:56 +0100462/* This function dumps memory usage information into the trash buffer. */
463void dump_pools_to_trash()
Willy Tarreau50e608d2007-05-13 18:26:08 +0200464{
465 struct pool_head *entry;
466 unsigned long allocated, used;
467 int nbpools;
468
469 allocated = used = nbpools = 0;
Willy Tarreau12833bb2014-01-28 16:49:56 +0100470 chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200471 list_for_each_entry(entry, &pools, list) {
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100472#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100473 HA_SPIN_LOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100474#endif
Willy Tarreau0a93b642018-10-16 07:58:39 +0200475 chunk_appendf(&trash, " - Pool %s (%d bytes) : %d allocated (%u bytes), %d used, %d failures, %d users, @%p=%02d%s\n",
Willy Tarreaue6ce59d2007-05-13 19:38:49 +0200476 entry->name, entry->size, entry->allocated,
Willy Tarreau58102cf2015-10-28 16:24:21 +0100477 entry->size * entry->allocated, entry->used, entry->failed,
Willy Tarreau0a93b642018-10-16 07:58:39 +0200478 entry->users, entry, (int)pool_get_index(entry),
479 (entry->flags & MEM_F_SHARED) ? " [SHARED]" : "");
Willy Tarreau50e608d2007-05-13 18:26:08 +0200480
481 allocated += entry->allocated * entry->size;
482 used += entry->used * entry->size;
483 nbpools++;
Willy Tarreauf161d0f2018-02-22 14:05:55 +0100484#ifndef CONFIG_HAP_LOCKLESS_POOLS
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100485 HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock);
Olivier Houchardcf975d42018-01-24 18:38:31 +0100486#endif
Willy Tarreau50e608d2007-05-13 18:26:08 +0200487 }
Willy Tarreau12833bb2014-01-28 16:49:56 +0100488 chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n",
Willy Tarreau50e608d2007-05-13 18:26:08 +0200489 nbpools, allocated, used);
490}
491
Willy Tarreau12833bb2014-01-28 16:49:56 +0100492/* Dump statistics on pools usage. */
493void dump_pools(void)
494{
495 dump_pools_to_trash();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200496 qfprintf(stderr, "%s", trash.area);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100497}
498
Willy Tarreau58102cf2015-10-28 16:24:21 +0100499/* This function returns the total number of failed pool allocations */
500int pool_total_failures()
501{
502 struct pool_head *entry;
503 int failed = 0;
504
505 list_for_each_entry(entry, &pools, list)
506 failed += entry->failed;
507 return failed;
508}
509
510/* This function returns the total amount of memory allocated in pools (in bytes) */
511unsigned long pool_total_allocated()
512{
513 struct pool_head *entry;
514 unsigned long allocated = 0;
515
516 list_for_each_entry(entry, &pools, list)
517 allocated += entry->allocated * entry->size;
518 return allocated;
519}
520
521/* This function returns the total amount of memory used in pools (in bytes) */
522unsigned long pool_total_used()
523{
524 struct pool_head *entry;
525 unsigned long used = 0;
526
527 list_for_each_entry(entry, &pools, list)
528 used += entry->used * entry->size;
529 return used;
530}
531
William Lallemande7ed8852016-11-19 02:25:36 +0100532/* This function dumps memory usage information onto the stream interface's
533 * read buffer. It returns 0 as long as it does not complete, non-zero upon
534 * completion. No state is used.
535 */
536static int cli_io_handler_dump_pools(struct appctx *appctx)
537{
538 struct stream_interface *si = appctx->owner;
539
540 dump_pools_to_trash();
Willy Tarreau06d80a92017-10-19 14:32:15 +0200541 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100542 si_rx_room_blk(si);
William Lallemande7ed8852016-11-19 02:25:36 +0100543 return 0;
544 }
545 return 1;
546}
547
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100548/* callback used to create early pool <name> of size <size> and store the
549 * resulting pointer into <ptr>. If the allocation fails, it quits with after
550 * emitting an error message.
551 */
552void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size)
553{
554 *ptr = create_pool(name, size, MEM_F_SHARED);
555 if (!*ptr) {
556 ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n",
557 name, size, strerror(errno));
558 exit(1);
559 }
560}
561
Willy Tarreau7f0165e2018-11-26 17:09:46 +0100562/* Initializes all per-thread arrays on startup */
563static void init_pools()
564{
565 int thr, idx;
566
567 for (thr = 0; thr < MAX_THREADS; thr++) {
568 for (idx = 0; idx < MAX_BASE_POOLS; idx++) {
569 LIST_INIT(&pool_cache[thr][idx].list);
570 pool_cache[thr][idx].size = 0;
571 }
572 LIST_INIT(&pool_lru_head[thr]);
573 }
574}
575
576INITCALL0(STG_PREPARE, init_pools);
Willy Tarreau7107c8b2018-11-26 11:44:35 +0100577
William Lallemande7ed8852016-11-19 02:25:36 +0100578/* register cli keywords */
579static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaue9ecec82016-12-16 18:55:23 +0100580 { { "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 +0100581 {{},}
582}};
583
Willy Tarreau0108d902018-11-25 19:14:37 +0100584INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemande7ed8852016-11-19 02:25:36 +0100585
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100586#ifdef DEBUG_FAIL_ALLOC
587#define MEM_FAIL_MAX_CHAR 32
588#define MEM_FAIL_MAX_STR 128
589static int mem_fail_cur_idx;
590static char mem_fail_str[MEM_FAIL_MAX_CHAR * MEM_FAIL_MAX_STR];
591__decl_hathreads(static HA_SPINLOCK_T mem_fail_lock);
592
593int mem_should_fail(const struct pool_head *pool)
594{
Olivier Houchard9c4f08a2019-02-01 16:28:04 +0100595 int ret = 0;
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100596 int n;
597
598 if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) {
599 int randnb = random() % 100;
600
601 if (mem_fail_rate > randnb)
602 ret = 1;
603 else
604 ret = 0;
605 }
Willy Tarreau64a47b92019-05-20 11:09:00 +0200606 HA_SPIN_LOCK(OTHER_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100607 n = snprintf(&mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR],
608 MEM_FAIL_MAX_CHAR - 2,
609 "%d %.18s %d %d", mem_fail_cur_idx, pool->name, ret, tid);
610 while (n < MEM_FAIL_MAX_CHAR - 1)
611 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n++] = ' ';
612 if (mem_fail_cur_idx < MEM_FAIL_MAX_STR - 1)
613 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = '\n';
614 else
615 mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = 0;
616 mem_fail_cur_idx++;
617 if (mem_fail_cur_idx == MEM_FAIL_MAX_STR)
618 mem_fail_cur_idx = 0;
Willy Tarreau64a47b92019-05-20 11:09:00 +0200619 HA_SPIN_UNLOCK(OTHER_LOCK, &mem_fail_lock);
Olivier Houcharddc21ff72019-01-29 15:20:16 +0100620 return ret;
621
622}
623
624/* config parser for global "tune.fail-alloc" */
625static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx,
626 struct proxy *defpx, const char *file, int line,
627 char **err)
628{
629 if (too_many_args(1, args, err, NULL))
630 return -1;
631 mem_fail_rate = atoi(args[1]);
632 if (mem_fail_rate < 0 || mem_fail_rate > 100) {
633 memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]);
634 return -1;
635 }
636 return 0;
637}
638#endif
639
640/* register global config keywords */
641static struct cfg_kw_list mem_cfg_kws = {ILH, {
642#ifdef DEBUG_FAIL_ALLOC
643 { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc },
644#endif
645 { 0, NULL, NULL }
646}};
647
648INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws);
649
Willy Tarreau50e608d2007-05-13 18:26:08 +0200650/*
651 * Local variables:
652 * c-indent-level: 8
653 * c-basic-offset: 8
654 * End:
655 */