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 | */ |
| 12 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 13 | #include <types/applet.h> |
| 14 | #include <types/cli.h> |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 15 | #include <types/global.h> |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 16 | #include <types/stats.h> |
| 17 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 18 | #include <common/config.h> |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 19 | #include <common/debug.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 20 | #include <common/memory.h> |
| 21 | #include <common/mini-clist.h> |
| 22 | #include <common/standard.h> |
| 23 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 24 | #include <proto/applet.h> |
| 25 | #include <proto/cli.h> |
| 26 | #include <proto/channel.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 27 | #include <proto/log.h> |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 28 | #include <proto/stream_interface.h> |
| 29 | #include <proto/stats.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 30 | |
| 31 | static struct list pools = LIST_HEAD_INIT(pools); |
Willy Tarreau | 067ac9f | 2015-10-08 14:12:13 +0200 | [diff] [blame] | 32 | int mem_poison_byte = -1; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 33 | |
| 34 | /* Try to find an existing shared pool with the same characteristics and |
| 35 | * returns it, otherwise creates this one. NULL is returned if no memory |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 36 | * is available for a new creation. Two flags are supported : |
| 37 | * - MEM_F_SHARED to indicate that the pool may be shared with other users |
| 38 | * - 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] | 39 | */ |
| 40 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags) |
| 41 | { |
| 42 | struct pool_head *pool; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 43 | struct pool_head *entry; |
| 44 | struct list *start; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 45 | unsigned int align; |
| 46 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 47 | /* 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] | 48 | * that the malloc() function will never return such a small size, |
| 49 | * let's round the size up to something slightly bigger, in order to |
| 50 | * 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] | 51 | * This extra (void *) is not accounted for in the size computation |
| 52 | * so that the visible parts outside are not affected. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 53 | */ |
| 54 | |
Willy Tarreau | 581bf81 | 2016-01-25 02:19:13 +0100 | [diff] [blame] | 55 | if (!(flags & MEM_F_EXACT)) { |
| 56 | align = 16; |
| 57 | size = ((size + POOL_EXTRA + align - 1) & -align) - POOL_EXTRA; |
| 58 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 59 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 60 | /* TODO: thread: we do not lock pool list for now because all pools are |
| 61 | * created during HAProxy startup (so before threads creation) */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 62 | start = &pools; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 63 | pool = NULL; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 64 | |
| 65 | list_for_each_entry(entry, &pools, list) { |
| 66 | if (entry->size == size) { |
| 67 | /* either we can share this place and we take it, or |
| 68 | * we look for a sharable one or for the next position |
| 69 | * before which we will insert a new one. |
| 70 | */ |
| 71 | if (flags & entry->flags & MEM_F_SHARED) { |
| 72 | /* we can share this one */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 73 | pool = entry; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 74 | DPRINTF(stderr, "Sharing %s with %s\n", name, pool->name); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 75 | break; |
| 76 | } |
| 77 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 78 | else if (entry->size > size) { |
| 79 | /* insert before this one */ |
| 80 | start = &entry->list; |
| 81 | break; |
| 82 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | if (!pool) { |
David Carlier | b781dbe | 2017-07-21 08:44:40 +0100 | [diff] [blame] | 86 | pool = calloc(1, sizeof(*pool)); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 87 | if (!pool) |
| 88 | return NULL; |
| 89 | if (name) |
| 90 | strlcpy2(pool->name, name, sizeof(pool->name)); |
| 91 | pool->size = size; |
| 92 | pool->flags = flags; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 93 | LIST_ADDQ(start, &pool->list); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 94 | } |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 95 | pool->users++; |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 96 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 97 | HA_SPIN_INIT(&pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 98 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 99 | return pool; |
| 100 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 101 | |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 102 | #ifdef CONFIG_HAP_LOCKLESS_POOLS |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 103 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 104 | * available, then returns the last one for immediate use, so that at least |
| 105 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 106 | * last entry could not be allocated. It's important to note that at least one |
| 107 | * allocation is always performed even if there are enough entries in the pool. |
| 108 | * A call to the garbage collector is performed at most once in case malloc() |
| 109 | * returns an error, before returning NULL. |
| 110 | */ |
| 111 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 112 | { |
| 113 | void *ptr = NULL, *free_list; |
| 114 | int failed = 0; |
| 115 | int size = pool->size; |
| 116 | int limit = pool->limit; |
| 117 | int allocated = pool->allocated, allocated_orig = allocated; |
| 118 | |
| 119 | /* stop point */ |
| 120 | avail += pool->used; |
| 121 | |
| 122 | while (1) { |
| 123 | if (limit && allocated >= limit) { |
| 124 | HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig); |
| 125 | return NULL; |
| 126 | } |
| 127 | |
| 128 | ptr = malloc(size + POOL_EXTRA); |
| 129 | if (!ptr) { |
| 130 | HA_ATOMIC_ADD(&pool->failed, 1); |
| 131 | if (failed) |
| 132 | return NULL; |
| 133 | failed++; |
| 134 | pool_gc(pool); |
| 135 | continue; |
| 136 | } |
| 137 | if (++allocated > avail) |
| 138 | break; |
| 139 | |
| 140 | free_list = pool->free_list; |
| 141 | do { |
| 142 | *POOL_LINK(pool, ptr) = free_list; |
| 143 | __ha_barrier_store(); |
| 144 | } while (HA_ATOMIC_CAS(&pool->free_list, (void *)&free_list, ptr) == 0); |
| 145 | } |
| 146 | |
| 147 | HA_ATOMIC_ADD(&pool->allocated, allocated - allocated_orig); |
| 148 | HA_ATOMIC_ADD(&pool->used, 1); |
| 149 | |
| 150 | #ifdef DEBUG_MEMORY_POOLS |
| 151 | /* keep track of where the element was allocated from */ |
| 152 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 153 | #endif |
| 154 | return ptr; |
| 155 | } |
| 156 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 157 | { |
| 158 | void *ptr; |
| 159 | |
| 160 | ptr = __pool_refill_alloc(pool, avail); |
| 161 | return ptr; |
| 162 | } |
| 163 | /* |
| 164 | * This function frees whatever can be freed in pool <pool>. |
| 165 | */ |
| 166 | void pool_flush(struct pool_head *pool) |
| 167 | { |
| 168 | void *next, *temp; |
| 169 | int removed = 0; |
| 170 | |
| 171 | if (!pool) |
| 172 | return; |
| 173 | do { |
| 174 | next = pool->free_list; |
| 175 | } while (!HA_ATOMIC_CAS(&pool->free_list, (void *)&next, NULL)); |
| 176 | while (next) { |
| 177 | temp = next; |
| 178 | next = *POOL_LINK(pool, temp); |
| 179 | removed++; |
| 180 | free(temp); |
| 181 | } |
| 182 | pool->free_list = next; |
| 183 | HA_ATOMIC_SUB(&pool->allocated, removed); |
| 184 | /* here, we should have pool->allocate == pool->used */ |
| 185 | } |
| 186 | |
| 187 | /* |
| 188 | * This function frees whatever can be freed in all pools, but respecting |
| 189 | * the minimum thresholds imposed by owners. It takes care of avoiding |
| 190 | * recursion because it may be called from a signal handler. |
| 191 | * |
| 192 | * <pool_ctx> is unused |
| 193 | */ |
| 194 | void pool_gc(struct pool_head *pool_ctx) |
| 195 | { |
| 196 | static int recurse; |
| 197 | int cur_recurse = 0; |
| 198 | struct pool_head *entry; |
| 199 | |
| 200 | if (recurse || !HA_ATOMIC_CAS(&recurse, &cur_recurse, 1)) |
| 201 | return; |
| 202 | |
| 203 | list_for_each_entry(entry, &pools, list) { |
| 204 | while ((int)((volatile int)entry->allocated - (volatile int)entry->used) > (int)entry->minavail) { |
| 205 | struct pool_free_list cmp, new; |
| 206 | |
| 207 | cmp.seq = entry->seq; |
| 208 | __ha_barrier_load(); |
| 209 | cmp.free_list = entry->free_list; |
| 210 | __ha_barrier_load(); |
| 211 | if (cmp.free_list == NULL) |
| 212 | break; |
| 213 | new.free_list = *POOL_LINK(entry, cmp.free_list); |
| 214 | new.seq = cmp.seq + 1; |
| 215 | if (__ha_cas_dw(&entry->free_list, &cmp, &new) == 0) |
| 216 | continue; |
| 217 | free(cmp.free_list); |
| 218 | HA_ATOMIC_SUB(&entry->allocated, 1); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | HA_ATOMIC_STORE(&recurse, 0); |
| 223 | } |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 224 | #else /* CONFIG_HAP_LOCKLESS_POOLS */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 225 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 226 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 227 | * available, then returns the last one for immediate use, so that at least |
| 228 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 229 | * last entry could not be allocated. It's important to note that at least one |
| 230 | * allocation is always performed even if there are enough entries in the pool. |
| 231 | * A call to the garbage collector is performed at most once in case malloc() |
| 232 | * returns an error, before returning NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 233 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 234 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 235 | { |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 236 | void *ptr = NULL; |
| 237 | int failed = 0; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 238 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 239 | /* stop point */ |
| 240 | avail += pool->used; |
| 241 | |
| 242 | while (1) { |
| 243 | if (pool->limit && pool->allocated >= pool->limit) |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 244 | return NULL; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 245 | |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 246 | ptr = pool_alloc_area(pool->size + POOL_EXTRA); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 247 | if (!ptr) { |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 248 | pool->failed++; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 249 | if (failed) |
| 250 | return NULL; |
| 251 | failed++; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 252 | pool_gc(pool); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 253 | continue; |
| 254 | } |
| 255 | if (++pool->allocated > avail) |
| 256 | break; |
| 257 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 258 | *POOL_LINK(pool, ptr) = (void *)pool->free_list; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 259 | pool->free_list = ptr; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 260 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 261 | pool->used++; |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 262 | #ifdef DEBUG_MEMORY_POOLS |
| 263 | /* keep track of where the element was allocated from */ |
| 264 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 265 | #endif |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 266 | return ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 267 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 268 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 269 | { |
| 270 | void *ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 271 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 272 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 273 | ptr = __pool_refill_alloc(pool, avail); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 274 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 275 | return ptr; |
| 276 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 277 | /* |
| 278 | * This function frees whatever can be freed in pool <pool>. |
| 279 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 280 | void pool_flush(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 281 | { |
| 282 | void *temp, *next; |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 283 | if (!pool) |
| 284 | return; |
| 285 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 286 | HA_SPIN_LOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 287 | next = pool->free_list; |
| 288 | while (next) { |
| 289 | temp = next; |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 290 | next = *POOL_LINK(pool, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 291 | pool->allocated--; |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 292 | pool_free_area(temp, pool->size + POOL_EXTRA); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 293 | } |
| 294 | pool->free_list = next; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 295 | HA_SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 296 | /* here, we should have pool->allocate == pool->used */ |
| 297 | } |
| 298 | |
| 299 | /* |
| 300 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 301 | * the minimum thresholds imposed by owners. It takes care of avoiding |
| 302 | * recursion because it may be called from a signal handler. |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 303 | * |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 304 | * <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] | 305 | * an element in __pool_refill_alloc. It is important because <pool_ctx> is |
| 306 | * already locked, so we need to skip the lock here. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 307 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 308 | void pool_gc(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 309 | { |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 310 | static int recurse; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 311 | int cur_recurse = 0; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 312 | struct pool_head *entry; |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 313 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 314 | if (recurse || !HA_ATOMIC_CAS(&recurse, &cur_recurse, 1)) |
| 315 | return; |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 316 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 317 | list_for_each_entry(entry, &pools, list) { |
| 318 | void *temp, *next; |
| 319 | //qfprintf(stderr, "Flushing pool %s\n", entry->name); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 320 | if (entry != pool_ctx) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 321 | HA_SPIN_LOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 322 | next = entry->free_list; |
| 323 | while (next && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 324 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 325 | temp = next; |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 326 | next = *POOL_LINK(entry, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 327 | entry->allocated--; |
Willy Tarreau | f13322e | 2017-11-22 10:50:54 +0100 | [diff] [blame] | 328 | pool_free_area(temp, entry->size + POOL_EXTRA); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 329 | } |
| 330 | entry->free_list = next; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 331 | if (entry != pool_ctx) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 332 | HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 333 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 334 | |
| 335 | HA_ATOMIC_STORE(&recurse, 0); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 336 | } |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 337 | #endif |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 338 | |
| 339 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 340 | * This function destroys a pool by freeing it completely, unless it's still |
| 341 | * in use. This should be called only under extreme circumstances. It always |
| 342 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 343 | * pointer, otherwise it returns the pool. |
| 344 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 345 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 346 | void *pool_destroy(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 347 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 348 | if (pool) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 349 | pool_flush(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 350 | if (pool->used) |
| 351 | return pool; |
| 352 | pool->users--; |
| 353 | if (!pool->users) { |
| 354 | LIST_DEL(&pool->list); |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 355 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 356 | HA_SPIN_DESTROY(&pool->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 357 | #endif |
David Carlier | b781dbe | 2017-07-21 08:44:40 +0100 | [diff] [blame] | 358 | free(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 359 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 360 | } |
| 361 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 362 | } |
| 363 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 364 | /* This function dumps memory usage information into the trash buffer. */ |
| 365 | void dump_pools_to_trash() |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 366 | { |
| 367 | struct pool_head *entry; |
| 368 | unsigned long allocated, used; |
| 369 | int nbpools; |
| 370 | |
| 371 | allocated = used = nbpools = 0; |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 372 | chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n"); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 373 | list_for_each_entry(entry, &pools, list) { |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 374 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 375 | HA_SPIN_LOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 376 | #endif |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 377 | chunk_appendf(&trash, " - Pool %s (%d bytes) : %d allocated (%u bytes), %d used, %d failures, %d users%s\n", |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 378 | entry->name, entry->size, entry->allocated, |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 379 | entry->size * entry->allocated, entry->used, entry->failed, |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 380 | entry->users, (entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 381 | |
| 382 | allocated += entry->allocated * entry->size; |
| 383 | used += entry->used * entry->size; |
| 384 | nbpools++; |
Willy Tarreau | f161d0f | 2018-02-22 14:05:55 +0100 | [diff] [blame] | 385 | #ifndef CONFIG_HAP_LOCKLESS_POOLS |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 386 | HA_SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Olivier Houchard | cf975d4 | 2018-01-24 18:38:31 +0100 | [diff] [blame] | 387 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 388 | } |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 389 | chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n", |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 390 | nbpools, allocated, used); |
| 391 | } |
| 392 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 393 | /* Dump statistics on pools usage. */ |
| 394 | void dump_pools(void) |
| 395 | { |
| 396 | dump_pools_to_trash(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 397 | qfprintf(stderr, "%s", trash.area); |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 398 | } |
| 399 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 400 | /* This function returns the total number of failed pool allocations */ |
| 401 | int pool_total_failures() |
| 402 | { |
| 403 | struct pool_head *entry; |
| 404 | int failed = 0; |
| 405 | |
| 406 | list_for_each_entry(entry, &pools, list) |
| 407 | failed += entry->failed; |
| 408 | return failed; |
| 409 | } |
| 410 | |
| 411 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
| 412 | unsigned long pool_total_allocated() |
| 413 | { |
| 414 | struct pool_head *entry; |
| 415 | unsigned long allocated = 0; |
| 416 | |
| 417 | list_for_each_entry(entry, &pools, list) |
| 418 | allocated += entry->allocated * entry->size; |
| 419 | return allocated; |
| 420 | } |
| 421 | |
| 422 | /* This function returns the total amount of memory used in pools (in bytes) */ |
| 423 | unsigned long pool_total_used() |
| 424 | { |
| 425 | struct pool_head *entry; |
| 426 | unsigned long used = 0; |
| 427 | |
| 428 | list_for_each_entry(entry, &pools, list) |
| 429 | used += entry->used * entry->size; |
| 430 | return used; |
| 431 | } |
| 432 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 433 | /* This function dumps memory usage information onto the stream interface's |
| 434 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 435 | * completion. No state is used. |
| 436 | */ |
| 437 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 438 | { |
| 439 | struct stream_interface *si = appctx->owner; |
| 440 | |
| 441 | dump_pools_to_trash(); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 442 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 443 | si_applet_cant_put(si); |
| 444 | return 0; |
| 445 | } |
| 446 | return 1; |
| 447 | } |
| 448 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 449 | /* register cli keywords */ |
| 450 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | e9ecec8 | 2016-12-16 18:55:23 +0100 | [diff] [blame] | 451 | { { "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] | 452 | {{},} |
| 453 | }}; |
| 454 | |
| 455 | __attribute__((constructor)) |
| 456 | static void __memory_init(void) |
| 457 | { |
| 458 | cli_register_kw(&cli_kws); |
| 459 | } |
| 460 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 461 | /* |
| 462 | * Local variables: |
| 463 | * c-indent-level: 8 |
| 464 | * c-basic-offset: 8 |
| 465 | * End: |
| 466 | */ |