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++; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 96 | SPIN_INIT(&pool->lock); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 97 | return pool; |
| 98 | } |
| 99 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 100 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 101 | * available, then returns the last one for immediate use, so that at least |
| 102 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 103 | * last entry could not be allocated. It's important to note that at least one |
| 104 | * allocation is always performed even if there are enough entries in the pool. |
| 105 | * A call to the garbage collector is performed at most once in case malloc() |
| 106 | * returns an error, before returning NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 107 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 108 | void *__pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 109 | { |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 110 | void *ptr = NULL; |
| 111 | int failed = 0; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 112 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 113 | /* stop point */ |
| 114 | avail += pool->used; |
| 115 | |
| 116 | while (1) { |
| 117 | if (pool->limit && pool->allocated >= pool->limit) |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 118 | return NULL; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 119 | |
David Carlier | b781dbe | 2017-07-21 08:44:40 +0100 | [diff] [blame] | 120 | ptr = malloc(pool->size + POOL_EXTRA); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 121 | if (!ptr) { |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 122 | pool->failed++; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 123 | if (failed) |
| 124 | return NULL; |
| 125 | failed++; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 126 | pool_gc2(pool); |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 127 | continue; |
| 128 | } |
| 129 | if (++pool->allocated > avail) |
| 130 | break; |
| 131 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 132 | *POOL_LINK(pool, ptr) = (void *)pool->free_list; |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 133 | pool->free_list = ptr; |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 134 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 135 | pool->used++; |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 136 | #ifdef DEBUG_MEMORY_POOLS |
| 137 | /* keep track of where the element was allocated from */ |
| 138 | *POOL_LINK(pool, ptr) = (void *)pool; |
| 139 | #endif |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 140 | return ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 141 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 142 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail) |
| 143 | { |
| 144 | void *ptr; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 145 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 146 | SPIN_LOCK(POOL_LOCK, &pool->lock); |
| 147 | ptr = __pool_refill_alloc(pool, avail); |
| 148 | SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
| 149 | return ptr; |
| 150 | } |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 151 | /* |
| 152 | * This function frees whatever can be freed in pool <pool>. |
| 153 | */ |
| 154 | void pool_flush2(struct pool_head *pool) |
| 155 | { |
| 156 | void *temp, *next; |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 157 | if (!pool) |
| 158 | return; |
| 159 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 160 | SPIN_LOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 161 | next = pool->free_list; |
| 162 | while (next) { |
| 163 | temp = next; |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 164 | next = *POOL_LINK(pool, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 165 | pool->allocated--; |
David Carlier | b781dbe | 2017-07-21 08:44:40 +0100 | [diff] [blame] | 166 | free(temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 167 | } |
| 168 | pool->free_list = next; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 169 | SPIN_UNLOCK(POOL_LOCK, &pool->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 170 | /* here, we should have pool->allocate == pool->used */ |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * This function frees whatever can be freed in all pools, but respecting |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 175 | * the minimum thresholds imposed by owners. It takes care of avoiding |
| 176 | * recursion because it may be called from a signal handler. |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 177 | * |
| 178 | * <pool_ctx> is used when pool_gc2 is called to release resources to allocate |
| 179 | * an element in __pool_refill_alloc. It is important because <pool_ctx> is |
| 180 | * already locked, so we need to skip the lock here. |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 181 | */ |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 182 | void pool_gc2(struct pool_head *pool_ctx) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 183 | { |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 184 | static int recurse; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 185 | int cur_recurse = 0; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 186 | struct pool_head *entry; |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 187 | |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 188 | if (recurse || !HA_ATOMIC_CAS(&recurse, &cur_recurse, 1)) |
| 189 | return; |
Willy Tarreau | b7f9d12 | 2009-04-21 02:17:45 +0200 | [diff] [blame] | 190 | |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 191 | list_for_each_entry(entry, &pools, list) { |
| 192 | void *temp, *next; |
| 193 | //qfprintf(stderr, "Flushing pool %s\n", entry->name); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 194 | if (entry != pool_ctx) |
| 195 | SPIN_LOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 196 | next = entry->free_list; |
| 197 | while (next && |
Willy Tarreau | 57767b8 | 2014-12-22 21:40:55 +0100 | [diff] [blame] | 198 | (int)(entry->allocated - entry->used) > (int)entry->minavail) { |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 199 | temp = next; |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 200 | next = *POOL_LINK(entry, temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 201 | entry->allocated--; |
David Carlier | b781dbe | 2017-07-21 08:44:40 +0100 | [diff] [blame] | 202 | free(temp); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 203 | } |
| 204 | entry->free_list = next; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 205 | if (entry != pool_ctx) |
| 206 | SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 207 | } |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 208 | |
| 209 | HA_ATOMIC_STORE(&recurse, 0); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | /* |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 213 | * This function destroys a pool by freeing it completely, unless it's still |
| 214 | * in use. This should be called only under extreme circumstances. It always |
| 215 | * returns NULL if the resulting pool is empty, easing the clearing of the old |
| 216 | * pointer, otherwise it returns the pool. |
| 217 | * . |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 218 | */ |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 219 | void *pool_destroy2(struct pool_head *pool) |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 220 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 221 | if (pool) { |
| 222 | pool_flush2(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 223 | if (pool->used) |
| 224 | return pool; |
| 225 | pool->users--; |
| 226 | if (!pool->users) { |
| 227 | LIST_DEL(&pool->list); |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 228 | SPIN_DESTROY(&pool->lock); |
David Carlier | b781dbe | 2017-07-21 08:44:40 +0100 | [diff] [blame] | 229 | free(pool); |
Willy Tarreau | dae4aa8 | 2007-06-16 23:19:53 +0200 | [diff] [blame] | 230 | } |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 231 | } |
| 232 | return NULL; |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 233 | } |
| 234 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 235 | /* This function dumps memory usage information into the trash buffer. */ |
| 236 | void dump_pools_to_trash() |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 237 | { |
| 238 | struct pool_head *entry; |
| 239 | unsigned long allocated, used; |
| 240 | int nbpools; |
| 241 | |
| 242 | allocated = used = nbpools = 0; |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 243 | chunk_printf(&trash, "Dumping pools usage. Use SIGQUIT to flush them.\n"); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 244 | list_for_each_entry(entry, &pools, list) { |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 245 | SPIN_LOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 246 | 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] | 247 | entry->name, entry->size, entry->allocated, |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 248 | entry->size * entry->allocated, entry->used, entry->failed, |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 249 | entry->users, (entry->flags & MEM_F_SHARED) ? " [SHARED]" : ""); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 250 | |
| 251 | allocated += entry->allocated * entry->size; |
| 252 | used += entry->used * entry->size; |
| 253 | nbpools++; |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 254 | SPIN_UNLOCK(POOL_LOCK, &entry->lock); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 255 | } |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 256 | chunk_appendf(&trash, "Total: %d pools, %lu bytes allocated, %lu used.\n", |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 257 | nbpools, allocated, used); |
| 258 | } |
| 259 | |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 260 | /* Dump statistics on pools usage. */ |
| 261 | void dump_pools(void) |
| 262 | { |
| 263 | dump_pools_to_trash(); |
| 264 | qfprintf(stderr, "%s", trash.str); |
| 265 | } |
| 266 | |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 267 | /* This function returns the total number of failed pool allocations */ |
| 268 | int pool_total_failures() |
| 269 | { |
| 270 | struct pool_head *entry; |
| 271 | int failed = 0; |
| 272 | |
| 273 | list_for_each_entry(entry, &pools, list) |
| 274 | failed += entry->failed; |
| 275 | return failed; |
| 276 | } |
| 277 | |
| 278 | /* This function returns the total amount of memory allocated in pools (in bytes) */ |
| 279 | unsigned long pool_total_allocated() |
| 280 | { |
| 281 | struct pool_head *entry; |
| 282 | unsigned long allocated = 0; |
| 283 | |
| 284 | list_for_each_entry(entry, &pools, list) |
| 285 | allocated += entry->allocated * entry->size; |
| 286 | return allocated; |
| 287 | } |
| 288 | |
| 289 | /* This function returns the total amount of memory used in pools (in bytes) */ |
| 290 | unsigned long pool_total_used() |
| 291 | { |
| 292 | struct pool_head *entry; |
| 293 | unsigned long used = 0; |
| 294 | |
| 295 | list_for_each_entry(entry, &pools, list) |
| 296 | used += entry->used * entry->size; |
| 297 | return used; |
| 298 | } |
| 299 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 300 | /* This function dumps memory usage information onto the stream interface's |
| 301 | * read buffer. It returns 0 as long as it does not complete, non-zero upon |
| 302 | * completion. No state is used. |
| 303 | */ |
| 304 | static int cli_io_handler_dump_pools(struct appctx *appctx) |
| 305 | { |
| 306 | struct stream_interface *si = appctx->owner; |
| 307 | |
| 308 | dump_pools_to_trash(); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 309 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 310 | si_applet_cant_put(si); |
| 311 | return 0; |
| 312 | } |
| 313 | return 1; |
| 314 | } |
| 315 | |
William Lallemand | e7ed885 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 316 | /* register cli keywords */ |
| 317 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | e9ecec8 | 2016-12-16 18:55:23 +0100 | [diff] [blame] | 318 | { { "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] | 319 | {{},} |
| 320 | }}; |
| 321 | |
| 322 | __attribute__((constructor)) |
| 323 | static void __memory_init(void) |
| 324 | { |
| 325 | cli_register_kw(&cli_kws); |
| 326 | } |
| 327 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 328 | /* |
| 329 | * Local variables: |
| 330 | * c-indent-level: 8 |
| 331 | * c-basic-offset: 8 |
| 332 | * End: |
| 333 | */ |