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