Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 62405a2 | 2014-12-23 13:51:28 +0100 | [diff] [blame] | 2 | * include/common/memory.h |
| 3 | * Memory management definitions.. |
| 4 | * |
| 5 | * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #ifndef _COMMON_MEMORY_H |
| 23 | #define _COMMON_MEMORY_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
| 25 | #include <stdlib.h> |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 26 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 28 | #include <common/config.h> |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 29 | #include <common/mini-clist.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 30 | |
Willy Tarreau | a84dcb8 | 2015-10-28 12:04:02 +0100 | [diff] [blame] | 31 | #ifndef DEBUG_DONT_SHARE_POOLS |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 32 | #define MEM_F_SHARED 0x1 |
Willy Tarreau | a84dcb8 | 2015-10-28 12:04:02 +0100 | [diff] [blame] | 33 | #else |
| 34 | #define MEM_F_SHARED 0 |
| 35 | #endif |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 37 | /* reserve an extra void* at the end of a pool for linking */ |
| 38 | #ifdef DEBUG_MEMORY_POOLS |
| 39 | #define POOL_EXTRA (sizeof(void *)) |
| 40 | #define POOL_LINK(pool, item) (void **)(((char *)item) + (pool->size)) |
| 41 | #else |
| 42 | #define POOL_EXTRA (0) |
| 43 | #define POOL_LINK(pool, item) ((void **)(item)) |
| 44 | #endif |
| 45 | |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 46 | struct pool_head { |
| 47 | void **free_list; |
| 48 | struct list list; /* list of all known pools */ |
| 49 | unsigned int used; /* how many chunks are currently in use */ |
| 50 | unsigned int allocated; /* how many chunks have been allocated */ |
| 51 | unsigned int limit; /* hard limit on the number of chunks */ |
| 52 | unsigned int minavail; /* how many chunks are expected to be used */ |
| 53 | unsigned int size; /* chunk size */ |
| 54 | unsigned int flags; /* MEM_F_* */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 55 | unsigned int users; /* number of pools sharing this zone */ |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 56 | unsigned int failed; /* failed allocations */ |
Willy Tarreau | 7dcd46d | 2007-05-14 00:16:13 +0200 | [diff] [blame] | 57 | char name[12]; /* name of the pool */ |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 58 | }; |
| 59 | |
Willy Tarreau | 067ac9f | 2015-10-08 14:12:13 +0200 | [diff] [blame] | 60 | /* poison each newly allocated area with this byte if >= 0 */ |
| 61 | extern int mem_poison_byte; |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 62 | |
Willy Tarreau | 62405a2 | 2014-12-23 13:51:28 +0100 | [diff] [blame] | 63 | /* |
| 64 | * This function destroys a pull by freeing it completely. |
| 65 | * This should be called only under extreme circumstances. |
| 66 | */ |
| 67 | static inline void pool_destroy(void **pool) |
| 68 | { |
| 69 | void *temp, *next; |
| 70 | next = pool; |
| 71 | while (next) { |
| 72 | temp = next; |
| 73 | next = *(void **)temp; |
| 74 | free(temp); |
| 75 | } |
| 76 | } |
| 77 | |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 78 | /* Allocates new entries for pool <pool> until there are at least <avail> + 1 |
| 79 | * available, then returns the last one for immediate use, so that at least |
| 80 | * <avail> are left available in the pool upon return. NULL is returned if the |
| 81 | * last entry could not be allocated. It's important to note that at least one |
| 82 | * allocation is always performed even if there are enough entries in the pool. |
| 83 | * A call to the garbage collector is performed at most once in case malloc() |
| 84 | * returns an error, before returning NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 85 | */ |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 86 | void *pool_refill_alloc(struct pool_head *pool, unsigned int avail); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 87 | |
| 88 | /* Try to find an existing shared pool with the same characteristics and |
| 89 | * returns it, otherwise creates this one. NULL is returned if no memory |
| 90 | * is available for a new creation. |
| 91 | */ |
| 92 | struct pool_head *create_pool(char *name, unsigned int size, unsigned int flags); |
| 93 | |
| 94 | /* Dump statistics on pools usage. |
| 95 | */ |
Willy Tarreau | 12833bb | 2014-01-28 16:49:56 +0100 | [diff] [blame] | 96 | void dump_pools_to_trash(); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 97 | void dump_pools(void); |
Willy Tarreau | 58102cf | 2015-10-28 16:24:21 +0100 | [diff] [blame] | 98 | int pool_total_failures(); |
| 99 | unsigned long pool_total_allocated(); |
| 100 | unsigned long pool_total_used(); |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 101 | |
| 102 | /* |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 103 | * This function frees whatever can be freed in pool <pool>. |
| 104 | */ |
| 105 | void pool_flush2(struct pool_head *pool); |
| 106 | |
| 107 | /* |
| 108 | * This function frees whatever can be freed in all pools, but respecting |
| 109 | * the minimum thresholds imposed by owners. |
| 110 | */ |
| 111 | void pool_gc2(); |
| 112 | |
| 113 | /* |
| 114 | * This function destroys a pull by freeing it completely. |
| 115 | * This should be called only under extreme circumstances. |
| 116 | */ |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 117 | void *pool_destroy2(struct pool_head *pool); |
Willy Tarreau | e6ce59d | 2007-05-13 19:38:49 +0200 | [diff] [blame] | 118 | |
| 119 | /* |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 120 | * Returns a pointer to type <type> taken from the pool <pool_type> if |
| 121 | * available, otherwise returns NULL. No malloc() is attempted, and poisonning |
| 122 | * is never performed. The purpose is to get the fastest possible allocation. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 123 | */ |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 124 | static inline void *pool_get_first(struct pool_head *pool) |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 125 | { |
| 126 | void *p; |
| 127 | |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 128 | if ((p = pool->free_list) != NULL) { |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 129 | pool->free_list = *POOL_LINK(pool, p); |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 130 | pool->used++; |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 131 | #ifdef DEBUG_MEMORY_POOLS |
| 132 | /* keep track of where the element was allocated from */ |
| 133 | *POOL_LINK(pool, p) = (void *)pool; |
| 134 | #endif |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 135 | } |
| 136 | return p; |
| 137 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 138 | |
| 139 | /* |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 140 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 141 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 142 | * the next element in the list. No memory poisonning is ever performed on the |
| 143 | * returned area. |
| 144 | */ |
| 145 | static inline void *pool_alloc_dirty(struct pool_head *pool) |
| 146 | { |
| 147 | void *p; |
| 148 | |
| 149 | if ((p = pool_get_first(pool)) == NULL) |
Willy Tarreau | a885f6d | 2014-12-03 15:25:28 +0100 | [diff] [blame] | 150 | p = pool_refill_alloc(pool, 0); |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 151 | |
| 152 | return p; |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * Returns a pointer to type <type> taken from the pool <pool_type> or |
| 157 | * dynamically allocated. In the first case, <pool_type> is updated to point to |
| 158 | * the next element in the list. Memory poisonning is performed if enabled. |
| 159 | */ |
| 160 | static inline void *pool_alloc2(struct pool_head *pool) |
| 161 | { |
| 162 | void *p; |
| 163 | |
| 164 | p = pool_alloc_dirty(pool); |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 165 | #ifdef DEBUG_MEMORY_POOLS |
| 166 | if (p) { |
| 167 | /* keep track of where the element was allocated from */ |
| 168 | *POOL_LINK(pool, p) = (void *)pool; |
| 169 | } |
| 170 | #endif |
| 171 | if (p && mem_poison_byte >= 0) { |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 172 | memset(p, mem_poison_byte, pool->size); |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 173 | } |
| 174 | |
Willy Tarreau | 0262241 | 2014-12-08 16:35:23 +0100 | [diff] [blame] | 175 | return p; |
| 176 | } |
| 177 | |
| 178 | /* |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 179 | * Puts a memory area back to the corresponding pool. |
| 180 | * Items are chained directly through a pointer that |
| 181 | * is written in the beginning of the memory area, so |
| 182 | * there's no need for any carrier cell. This implies |
| 183 | * that each memory area is at least as big as one |
Willy Tarreau | 48d63db | 2008-08-03 17:41:33 +0200 | [diff] [blame] | 184 | * pointer. Just like with the libc's free(), nothing |
| 185 | * is done if <ptr> is NULL. |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 186 | */ |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 187 | static inline void pool_free2(struct pool_head *pool, void *ptr) |
| 188 | { |
| 189 | if (likely(ptr != NULL)) { |
Willy Tarreau | de30a68 | 2015-10-28 15:23:51 +0100 | [diff] [blame] | 190 | #ifdef DEBUG_MEMORY_POOLS |
| 191 | /* we'll get late corruption if we refill to the wrong pool or double-free */ |
| 192 | if (*POOL_LINK(pool, ptr) != (void *)pool) |
| 193 | *(int *)0 = 0; |
| 194 | #endif |
Willy Tarreau | ac42111 | 2015-10-28 15:09:29 +0100 | [diff] [blame] | 195 | *POOL_LINK(pool, ptr) = (void *)pool->free_list; |
Willy Tarreau | e430e77 | 2014-12-23 14:13:16 +0100 | [diff] [blame] | 196 | pool->free_list = (void *)ptr; |
| 197 | pool->used--; |
| 198 | } |
| 199 | } |
Willy Tarreau | 50e608d | 2007-05-13 18:26:08 +0200 | [diff] [blame] | 200 | |
| 201 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 202 | #endif /* _COMMON_MEMORY_H */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * Local variables: |
| 206 | * c-indent-level: 8 |
| 207 | * c-basic-offset: 8 |
| 208 | * End: |
| 209 | */ |