Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 12 | #include <errno.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 13 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 14 | #include <types/applet.h> |
| 15 | #include <types/cli.h> |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 16 | #include <types/global.h> |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 17 | #include <types/stats.h> |
| 18 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 19 | #include <common/cfgparse.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 20 | #include <common/config.h> |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 21 | #include <common/debug.h> |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 22 | #include <common/hathreads.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 23 | #include <common/initcall.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 24 | #include <common/memory.h> |
| 25 | #include <common/mini-clist.h> |
| 26 | #include <common/standard.h> |
| 27 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 28 | #include <proto/applet.h> |
| 29 | #include <proto/cli.h> |
| 30 | #include <proto/channel.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 31 | #include <proto/log.h> |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 32 | #include <proto/stream_interface.h> |
| 33 | #include <proto/stats.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 34 | |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 35 | /* These are the most common pools, expected to be initialized first. These |
| 36 | * ones are allocated from an array, allowing to map them to an index. |
| 37 | */ |
| 38 | struct pool_head pool_base_start[MAX_BASE_POOLS] = { }; |
| 39 | unsigned int pool_base_count = 0; |
| 40 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 41 | /* These ones are initialized per-thread on startup by init_pools() */ |
| 42 | struct pool_cache_head pool_cache[MAX_THREADS][MAX_BASE_POOLS]; |
| 43 | static struct list pool_lru_head[MAX_THREADS]; /* oldest objects */ |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 44 | THREAD_LOCAL size_t pool_cache_bytes = 0; /* total cache size */ |
| 45 | THREAD_LOCAL size_t pool_cache_count = 0; /* #cache objects */ |
| 46 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 47 | static struct list pools = LIST_HEAD_INIT(pools); |
Willy Tarreau | 067ac9f | 2015-10-08 14:12:13 +0200 | [diff] [blame] | 48 | int mem_poison_byte = -1; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 49 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 50 | #ifdef DEBUG_FAIL_ALLOC |
| 51 | static int mem_fail_rate = 0; |
| 52 | static int mem_should_fail(const struct pool_head *); |
| 53 | #endif |
| 54 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 55 | /* Try to find an existing shared pool with the same characteristics and |
| 56 | * returns it, otherwise creates this one. NULL is returned if no memory |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 57 | * is available for a new creation. Two flags are supported : |
| 58 | * - MEM_F_SHARED to indicate that the pool may be shared with other users |
| 59 | * - MEM_F_EXACT to indicate that the size must not be rounded up |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 60 | */ |
| 61 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags) |
| 62 | { |
| 63 | struct pool_head *pool; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 64 | struct pool_head *entry; |
| 65 | struct list *start; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 66 | unsigned int align; |
| 67 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 68 | /* We need to store a (void *) at the end of the chunks. Since we know |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 69 | * that the malloc() function will never return such a small size, |
| 70 | * let's round the size up to something slightly bigger, in order to |
| 71 | * ease merging of entries. Note that the rounding is a power of two. |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 72 | * This extra (void *) is not accounted for in the size computation |
| 73 | * so that the visible parts outside are not affected. |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 74 | * |
| 75 | * Note: for the LRU cache, we need to store 2 doubly-linked lists. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 76 | */ |
| 77 | |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 78 | if (!(flags & MEM_F_EXACT)) { |
Willy Tarreau | 30f931e | 2018-10-23 14:40:23 +0200 | [diff] [blame] | 79 | align = 4 * sizeof(void *); // 2 lists = 4 pointers min |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 80 | size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA; |
| 81 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 82 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 83 | /* TODO: thread: we do not lock pool list for now because all pools are |
| 84 | * created during HAProxy startup (so before threads creation) */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 85 | start = &pools; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 86 | pool = NULL; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 87 | |
| 88 | list_for_each_entry(entry, &pools, list) { |
| 89 | if (entry->size == size) { |
| 90 | /* either we can share this place and we take it, or |
| 91 | * we look for a sharable one or for the next position |
| 92 | * before which we will insert a new one. |
| 93 | */ |
| 94 | if (flags & entry->flags & MEM_F_SHARED) { |
| 95 | /* we can share this one */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 96 | pool = entry; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 97 | DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 98 | break; |
| 99 | } |
| 100 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 101 | else if (entry->size > size) { |
| 102 | /* insert before this one */ |
| 103 | start = &entry->list; |
| 104 | break; |
| 105 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | if (!pool) { |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 109 | if (pool_base_count < MAX_BASE_POOLS) |
| 110 | pool = &pool_base_start[pool_base_count++]; |
| 111 | |
| 112 | if (!pool) { |
| 113 | /* look for a freed entry */ |
| 114 | for (entry = pool_base_start; entry != pool_base_start + MAX_BASE_POOLS; entry++) { |
| 115 | if (!entry->size) { |
| 116 | pool = entry; |
| 117 | break; |
| 118 | } |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | if (!pool) |
| 123 | pool = calloc(1, sizeof(*pool)); |
| 124 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 125 | if (!pool) |
| 126 | return NULL; |
| 127 | if (name) |
| 128 | strlcpy2(pool->name, name, sizeof(pool->name)); |
| 129 | pool->size = size; |
| 130 | pool->flags = flags; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 131 | LIST_ADDQ(start, &pool->list); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 132 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 133 | pool->users++; |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 134 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 135 | HA_SPIN_INIT(&pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 136 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 137 | return pool; |
| 138 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 139 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 140 | #ifdef CONFIG_HAP_LOCKLESS_POOLS |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 141 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 142 | * available, then returns the last one for immediate use, so that at least |
| 143 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 144 | * last entry could not be allocated. It's important to note that at least one |
| 145 | * allocation is always performed even if there are enough entries in the pool. |
| 146 | * A call to the garbage collector is performed at most once in case malloc() |
| 147 | * returns an error, before returning NULL. |
| 148 | */ |
| 149 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 150 | { |
Olivier Houchard | 8b2c8a7 | 2018-10-21 01:52:59 +0200 | [diff] [blame] | 151 | void *ptr = NULL, **free_list; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 152 | int failed = 0; |
| 153 | int size = pool->size; |
| 154 | int limit = pool->limit; |
| 155 | int allocated = pool->allocated, allocated_orig = allocated; |
| 156 | |
| 157 | /* stop point */ |
| 158 | avail += pool->used; |
| 159 | |
| 160 | while (1) { |
| 161 | if (limit && allocated >= limit) { |
| 162 | HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig); |
| 163 | return NULL; |
| 164 | } |
| 165 | |
| 166 | ptr = malloc(size + POOL_EXTRA); |
| 167 | if (!ptr) { |
| 168 | HA_ATOMIC_ADD(&pool->failed, 1); |
| 169 | if (failed) |
| 170 | return NULL; |
| 171 | failed++; |
| 172 | pool_gc(pool); |
| 173 | continue; |
| 174 | } |
| 175 | if (++allocated > avail) |
| 176 | break; |
| 177 | |
| 178 | free_list = pool->free_list; |
| 179 | do { |
| 180 | *POOL_LINK(pool, ptr) = free_list; |
| 181 | __ha_barrier_store(); |
Olivier Houchard | 8b2c8a7 | 2018-10-21 01:52:59 +0200 | [diff] [blame] | 182 | } while (HA_ATOMIC_CAS(&pool->free_list, &free_list, ptr) == 0); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig); |
| 186 | HA_ATOMIC_ADD(&pool->used, 1); |
| 187 | |
| 188 | #ifdef DEBUG_MEMORY_POOLS |
| 189 | /* keep track of where the element was allocated from */ |
| 190 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 191 | #endif |
| 192 | return ptr; |
| 193 | } |
| 194 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 195 | { |
| 196 | void *ptr; |
| 197 | |
| 198 | ptr = __pool_refill_alloc(pool, avail); |
| 199 | return ptr; |
| 200 | } |
| 201 | /* |
| 202 | * This function frees whatever can be freed in pool <pool>. |
| 203 | */ |
| 204 | void pool_flush(struct pool_head *pool) |
| 205 | { |
Olivier Houchard | 8b2c8a7 | 2018-10-21 01:52:59 +0200 | [diff] [blame] | 206 | void **next, *temp; |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 207 | int removed = 0; |
| 208 | |
| 209 | if (!pool) |
| 210 | return; |
| 211 | do { |
| 212 | next = pool->free_list; |
Olivier Houchard | 8b2c8a7 | 2018-10-21 01:52:59 +0200 | [diff] [blame] | 213 | } while (!HA_ATOMIC_CAS(&pool->free_list, &next, NULL)); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 214 | while (next) { |
| 215 | temp = next; |
| 216 | next = *POOL_LINK(pool, temp); |
| 217 | removed++; |
| 218 | free(temp); |
| 219 | } |
| 220 | pool->free_list = next; |
| 221 | HA_ATOMIC_SUB(&pool->allocated, removed); |
| 222 | /* here, we should have pool->allocate == pool->used */ |
| 223 | } |
| 224 | |
| 225 | /* |
| 226 | * This function frees whatever can be freed in all pools, but respecting |
| 227 | * the minimum thresholds imposed by owners. It takes care of avoiding |
| 228 | * recursion because it may be called from a signal handler. |
| 229 | * |
| 230 | * <pool_ctx> is unused |
| 231 | */ |
| 232 | void pool_gc(struct pool_head *pool_ctx) |
| 233 | { |
| 234 | static int recurse; |
| 235 | int cur_recurse = 0; |
| 236 | struct pool_head *entry; |
| 237 | |
| 238 | if (recurse || !HA_ATOMIC_CAS(&recurse, &cur_recurse, 1)) |
| 239 | return; |
| 240 | |
| 241 | list_for_each_entry(entry, &pools, list) { |
| 242 | while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) { |
| 243 | struct pool_free_list cmp, new; |
| 244 | |
| 245 | cmp.seq = entry->seq; |
| 246 | __ha_barrier_load(); |
| 247 | cmp.free_list = entry->free_list; |
| 248 | __ha_barrier_load(); |
| 249 | if (cmp.free_list == NULL) |
| 250 | break; |
| 251 | new.free_list = *POOL_LINK(entry, cmp.free_list); |
| 252 | new.seq = cmp.seq + 1; |
| 253 | if (__ha_cas_dw(&entry->free_list, &cmp, &new) == 0) |
| 254 | continue; |
| 255 | free(cmp.free_list); |
| 256 | HA_ATOMIC_SUB(&entry->allocated, 1); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | HA_ATOMIC_STORE(&recurse, 0); |
| 261 | } |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 262 | |
| 263 | /* frees an object to the local cache, possibly pushing oldest objects to the |
| 264 | * global pool. Must not be called directly. |
| 265 | */ |
| 266 | void __pool_put_to_cache(struct pool_head *pool, void *ptr, ssize_t idx) |
| 267 | { |
| 268 | struct pool_cache_item *item = (struct pool_cache_item *)ptr; |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 269 | struct pool_cache_head *ph = &pool_cache[tid][idx]; |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 270 | |
| 271 | LIST_ADD(&ph->list, &item->by_pool); |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 272 | LIST_ADD(&pool_lru_head[tid], &item->by_lru); |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 273 | ph->count++; |
| 274 | pool_cache_count++; |
| 275 | pool_cache_bytes += ph->size; |
| 276 | |
| 277 | if (pool_cache_bytes <= CONFIG_HAP_POOL_CACHE_SIZE) |
| 278 | return; |
| 279 | |
| 280 | do { |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 281 | item = LIST_PREV(&pool_lru_head[tid], struct pool_cache_item *, by_lru); |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 282 | /* note: by definition we remove oldest objects so they also are the |
| 283 | * oldest in their own pools, thus their next is the pool's head. |
| 284 | */ |
| 285 | ph = LIST_NEXT(&item->by_pool, struct pool_cache_head *, list); |
| 286 | LIST_DEL(&item->by_pool); |
| 287 | LIST_DEL(&item->by_lru); |
| 288 | ph->count--; |
| 289 | pool_cache_count--; |
| 290 | pool_cache_bytes -= ph->size; |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 291 | __pool_free(pool_base_start + (ph - pool_cache[tid]), item); |
Willy Tarreau | e18db9e | 2018-10-16 10:28:54 +0200 | [diff] [blame] | 292 | } while (pool_cache_bytes > CONFIG_HAP_POOL_CACHE_SIZE * 7 / 8); |
| 293 | } |
| 294 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 295 | #else /* CONFIG_HAP_LOCKLESS_POOLS */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 296 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 297 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 298 | * available, then returns the last one for immediate use, so that at least |
| 299 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 300 | * last entry could not be allocated. It's important to note that at least one |
| 301 | * allocation is always performed even if there are enough entries in the pool. |
| 302 | * A call to the garbage collector is performed at most once in case malloc() |
| 303 | * returns an error, before returning NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 304 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 305 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 306 | { |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 307 | void *ptr = NULL; |
| 308 | int failed = 0; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 309 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 310 | #ifdef DEBUG_FAIL_ALLOC |
| 311 | if (mem_should_fail(pool)) |
| 312 | return NULL; |
| 313 | #endif |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 314 | /* stop point */ |
| 315 | avail += pool->used; |
| 316 | |
| 317 | while (1) { |
| 318 | if (pool->limit && pool->allocated >= pool->limit) |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 319 | return NULL; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 320 | |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 321 | ptr = pool_alloc_area(pool->size + POOL_EXTRA); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 322 | if (!ptr) { |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 323 | pool->failed++; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 324 | if (failed) |
| 325 | return NULL; |
| 326 | failed++; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 327 | pool_gc(pool); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 328 | continue; |
| 329 | } |
| 330 | if (++pool->allocated > avail) |
| 331 | break; |
| 332 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 333 | *POOL_LINK(pool, ptr) = (void *)pool->free_list; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 334 | pool->free_list = ptr; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 335 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 336 | pool->used++; |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 337 | #ifdef DEBUG_MEMORY_POOLS |
| 338 | /* keep track of where the element was allocated from */ |
| 339 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 340 | #endif |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 341 | return ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 342 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 343 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 344 | { |
| 345 | void *ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 346 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 347 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 348 | ptr = __pool_refill_alloc(pool, avail); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 349 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 350 | return ptr; |
| 351 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 352 | /* |
| 353 | * This function frees whatever can be freed in pool <pool>. |
| 354 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 355 | void pool_flush(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 356 | { |
| 357 | void *temp, *next; |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 358 | if (!pool) |
| 359 | return; |
| 360 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 361 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 362 | next = pool->free_list; |
| 363 | while (next) { |
| 364 | temp = next; |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 365 | next = *POOL_LINK(pool, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 366 | pool->allocated--; |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 367 | pool_free_area(temp, pool->size + POOL_EXTRA); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 368 | } |
| 369 | pool->free_list = next; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 370 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 371 | /* here, we should have pool->allocate == pool->used */ |
| 372 | } |
| 373 | |
| 374 | /* |
| 375 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 376 | * the minimum thresholds imposed by owners. It takes care of avoiding |
| 377 | * recursion because it may be called from a signal handler. |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 378 | * |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 379 | * <pool_ctx> is used when pool_gc is called to release resources to allocate |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 380 | * an element in __pool_refill_alloc. It is important because <pool_ctx> is |
| 381 | * already locked, so we need to skip the lock here. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 382 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 383 | void pool_gc(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 384 | { |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 385 | static int recurse; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 386 | int cur_recurse = 0; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 387 | struct pool_head *entry; |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 388 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 389 | if (recurse || !HA_ATOMIC_CAS(&recurse, &cur_recurse, 1)) |
| 390 | return; |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 391 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 392 | list_for_each_entry(entry, &pools, list) { |
| 393 | void *temp, *next; |
| 394 | //qfprintf(stderr, "Flushing pool %s\n", entry->name); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 395 | if (entry != pool_ctx) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 396 | HA_SPIN_LOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 397 | next = entry->free_list; |
| 398 | while (next && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 399 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 400 | temp = next; |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 401 | next = *POOL_LINK(entry, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 402 | entry->allocated--; |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 403 | pool_free_area(temp, entry->size + POOL_EXTRA); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 404 | } |
| 405 | entry->free_list = next; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 406 | if (entry != pool_ctx) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 407 | HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 408 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 409 | |
| 410 | HA_ATOMIC_STORE(&recurse, 0); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 411 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 412 | #endif |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 413 | |
| 414 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 415 | * This function destroys a pool by freeing it completely, unless it's still |
| 416 | * in use. This should be called only under extreme circumstances. It always |
| 417 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 418 | * pointer, otherwise it returns the pool. |
| 419 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 420 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 421 | void *pool_destroy(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 422 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 423 | if (pool) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 424 | pool_flush(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 425 | if (pool->used) |
| 426 | return pool; |
| 427 | pool->users--; |
| 428 | if (!pool->users) { |
| 429 | LIST_DEL(&pool->list); |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 430 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 431 | HA_SPIN_DESTROY(&pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 432 | #endif |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 433 | if ((pool - pool_base_start) < MAX_BASE_POOLS) |
| 434 | memset(pool, 0, sizeof(*pool)); |
| 435 | else |
| 436 | free(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 437 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 438 | } |
| 439 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 440 | } |
| 441 | |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 442 | /* This destroys all pools on exit. It is *not* thread safe. */ |
| 443 | void pool_destroy_all() |
| 444 | { |
| 445 | struct pool_head *entry, *back; |
| 446 | |
| 447 | list_for_each_entry_safe(entry, back, &pools, list) |
| 448 | pool_destroy(entry); |
| 449 | } |
| 450 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 451 | /* This function dumps memory usage information into the trash buffer. */ |
| 452 | void dump_pools_to_trash() |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 453 | { |
| 454 | struct pool_head *entry; |
| 455 | unsigned long allocated, used; |
| 456 | int nbpools; |
| 457 | |
| 458 | allocated = used = nbpools = 0; |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 459 | chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n"); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 460 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 461 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 462 | HA_SPIN_LOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 463 | #endif |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 464 | chunk_appendf(&trash, " - Pool %s (%d bytes) : %d allocated (%u bytes), %d used, %d failures, %d users, @%p=%02d%s\n", |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 465 | entry->name, entry->size, entry->allocated, |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 466 | entry->size * entry->allocated, entry->used, entry->failed, |
Willy Tarreau | 0a93b64 | 2018-10-16 07:58:39 +0200 | [diff] [blame] | 467 | entry->users, entry, (int)pool_get_index(entry), |
| 468 | (entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 469 | |
| 470 | allocated += entry->allocated * entry->size; |
| 471 | used += entry->used * entry->size; |
| 472 | nbpools++; |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 473 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 474 | HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 475 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 476 | } |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 477 | chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n", |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 478 | nbpools, allocated, used); |
| 479 | } |
| 480 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 481 | /* Dump statistics on pools usage. */ |
| 482 | void dump_pools(void) |
| 483 | { |
| 484 | dump_pools_to_trash(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 485 | qfprintf(stderr, "%s", trash.area); |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 486 | } |
| 487 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 488 | /* This function returns the total number of failed pool allocations */ |
| 489 | int pool_total_failures() |
| 490 | { |
| 491 | struct pool_head *entry; |
| 492 | int failed = 0; |
| 493 | |
| 494 | list_for_each_entry(entry, &pools, list) |
| 495 | failed += entry->failed; |
| 496 | return failed; |
| 497 | } |
| 498 | |
| 499 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
| 500 | unsigned long pool_total_allocated() |
| 501 | { |
| 502 | struct pool_head *entry; |
| 503 | unsigned long allocated = 0; |
| 504 | |
| 505 | list_for_each_entry(entry, &pools, list) |
| 506 | allocated += entry->allocated * entry->size; |
| 507 | return allocated; |
| 508 | } |
| 509 | |
| 510 | /* This function returns the total amount of memory used in pools (in bytes) */ |
| 511 | unsigned long pool_total_used() |
| 512 | { |
| 513 | struct pool_head *entry; |
| 514 | unsigned long used = 0; |
| 515 | |
| 516 | list_for_each_entry(entry, &pools, list) |
| 517 | used += entry->used * entry->size; |
| 518 | return used; |
| 519 | } |
| 520 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 521 | /* This function dumps memory usage information onto the stream interface's |
| 522 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 523 | * completion. No state is used. |
| 524 | */ |
| 525 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 526 | { |
| 527 | struct stream_interface *si = appctx->owner; |
| 528 | |
| 529 | dump_pools_to_trash(); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 530 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 531 | si_rx_room_blk(si); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 532 | return 0; |
| 533 | } |
| 534 | return 1; |
| 535 | } |
| 536 | |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 537 | /* callback used to create early pool <name> of size <size> and store the |
| 538 | * resulting pointer into <ptr>. If the allocation fails, it quits with after |
| 539 | * emitting an error message. |
| 540 | */ |
| 541 | void create_pool_callback(struct pool_head **ptr, char *name, unsigned int size) |
| 542 | { |
| 543 | *ptr = create_pool(name, size, MEM_F_SHARED); |
| 544 | if (!*ptr) { |
| 545 | ha_alert("Failed to allocate pool '%s' of size %u : %s. Aborting.\n", |
| 546 | name, size, strerror(errno)); |
| 547 | exit(1); |
| 548 | } |
| 549 | } |
| 550 | |
Willy Tarreau | 7f0165e | 2018-11-26 17:09:46 +0100 | [diff] [blame] | 551 | /* Initializes all per-thread arrays on startup */ |
| 552 | static void init_pools() |
| 553 | { |
| 554 | int thr, idx; |
| 555 | |
| 556 | for (thr = 0; thr < MAX_THREADS; thr++) { |
| 557 | for (idx = 0; idx < MAX_BASE_POOLS; idx++) { |
| 558 | LIST_INIT(&pool_cache[thr][idx].list); |
| 559 | pool_cache[thr][idx].size = 0; |
| 560 | } |
| 561 | LIST_INIT(&pool_lru_head[thr]); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | INITCALL0(STG_PREPARE, init_pools); |
Willy Tarreau | 7107c8b | 2018-11-26 11:44:35 +0100 | [diff] [blame] | 566 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 567 | /* register cli keywords */ |
| 568 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | e9ecec8 | 2016-12-16 18:55:23 +0100 | [diff] [blame] | 569 | { { "show", "pools", NULL }, "show pools : report information about the memory pools usage", NULL, cli_io_handler_dump_pools }, |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 570 | {{},} |
| 571 | }}; |
| 572 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 573 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 574 | |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 575 | #ifdef DEBUG_FAIL_ALLOC |
| 576 | #define MEM_FAIL_MAX_CHAR 32 |
| 577 | #define MEM_FAIL_MAX_STR 128 |
| 578 | static int mem_fail_cur_idx; |
| 579 | static char mem_fail_str[MEM_FAIL_MAX_CHAR * MEM_FAIL_MAX_STR]; |
| 580 | __decl_hathreads(static HA_SPINLOCK_T mem_fail_lock); |
| 581 | |
| 582 | int mem_should_fail(const struct pool_head *pool) |
| 583 | { |
Olivier Houchard | 9c4f08a | 2019-02-01 16:28:04 +0100 | [diff] [blame] | 584 | int ret = 0; |
Olivier Houchard | dc21ff7 | 2019-01-29 15:20:16 +0100 | [diff] [blame] | 585 | int n; |
| 586 | |
| 587 | if (mem_fail_rate > 0 && !(global.mode & MODE_STARTING)) { |
| 588 | int randnb = random() % 100; |
| 589 | |
| 590 | if (mem_fail_rate > randnb) |
| 591 | ret = 1; |
| 592 | else |
| 593 | ret = 0; |
| 594 | } |
| 595 | HA_SPIN_LOCK(START_LOCK, &mem_fail_lock); |
| 596 | n = snprintf(&mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR], |
| 597 | MEM_FAIL_MAX_CHAR - 2, |
| 598 | "%d %.18s %d %d", mem_fail_cur_idx, pool->name, ret, tid); |
| 599 | while (n < MEM_FAIL_MAX_CHAR - 1) |
| 600 | mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n++] = ' '; |
| 601 | if (mem_fail_cur_idx < MEM_FAIL_MAX_STR - 1) |
| 602 | mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = '\n'; |
| 603 | else |
| 604 | mem_fail_str[mem_fail_cur_idx * MEM_FAIL_MAX_CHAR + n] = 0; |
| 605 | mem_fail_cur_idx++; |
| 606 | if (mem_fail_cur_idx == MEM_FAIL_MAX_STR) |
| 607 | mem_fail_cur_idx = 0; |
| 608 | HA_SPIN_UNLOCK(START_LOCK, &mem_fail_lock); |
| 609 | return ret; |
| 610 | |
| 611 | } |
| 612 | |
| 613 | /* config parser for global "tune.fail-alloc" */ |
| 614 | static int mem_parse_global_fail_alloc(char **args, int section_type, struct proxy *curpx, |
| 615 | struct proxy *defpx, const char *file, int line, |
| 616 | char **err) |
| 617 | { |
| 618 | if (too_many_args(1, args, err, NULL)) |
| 619 | return -1; |
| 620 | mem_fail_rate = atoi(args[1]); |
| 621 | if (mem_fail_rate < 0 || mem_fail_rate > 100) { |
| 622 | memprintf(err, "'%s' expects a numeric value between 0 and 100.", args[0]); |
| 623 | return -1; |
| 624 | } |
| 625 | return 0; |
| 626 | } |
| 627 | #endif |
| 628 | |
| 629 | /* register global config keywords */ |
| 630 | static struct cfg_kw_list mem_cfg_kws = {ILH, { |
| 631 | #ifdef DEBUG_FAIL_ALLOC |
| 632 | { CFG_GLOBAL, "tune.fail-alloc", mem_parse_global_fail_alloc }, |
| 633 | #endif |
| 634 | { 0, NULL, NULL } |
| 635 | }}; |
| 636 | |
| 637 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mem_cfg_kws); |
| 638 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 639 | /* |
| 640 | * Local variables: |
| 641 | * c-indent-level: 8 |
| 642 | * c-basic-offset: 8 |
| 643 | * End: |
| 644 | */ |