blob: e97ba011319bd83e33549b51880d63fa2031806a [file] [log] [blame]
Jens Axboed24c33a2008-03-01 18:27:36 +01001/*
2 * simple memory allocator, backed by mmap() so that it hands out memory
3 * that can be shared across processes and threads
4 */
5#include <sys/mman.h>
6#include <stdio.h>
7#include <stdlib.h>
8#include <assert.h>
9#include <string.h>
10#include <unistd.h>
11#include <sys/types.h>
12#include <limits.h>
13
14#include "mutex.h"
15
Jens Axboe1f37f632008-05-27 11:40:37 +020016#define MP_SAFE /* define to make thread safe */
Jens Axboe55f64912008-05-26 09:37:21 +020017#define SMALLOC_REDZONE /* define to detect memory corruption */
Jens Axboed24c33a2008-03-01 18:27:36 +010018
Jens Axboeec996e92008-05-27 11:39:39 +020019#define SMALLOC_BPB 32 /* block size, bytes-per-bit in bitmap */
20#define SMALLOC_BPI (sizeof(unsigned int) * 8)
21#define SMALLOC_BPL (SMALLOC_BPB * SMALLOC_BPI)
22
23#define INITIAL_SIZE 1024*1024 /* new pool size */
Jens Axboec5dda9e2008-05-23 10:10:54 +020024#define MAX_POOLS 4 /* maximum number of pools to setup */
Jens Axboed24c33a2008-03-01 18:27:36 +010025
Jens Axboe55f64912008-05-26 09:37:21 +020026#define SMALLOC_PRE_RED 0xdeadbeefU
27#define SMALLOC_POST_RED 0x5aa55aa5U
Jens Axboe55f64912008-05-26 09:37:21 +020028
Jens Axboe2b386d22008-03-26 10:32:57 +010029unsigned int smalloc_pool_size = INITIAL_SIZE;
30
Jens Axboed24c33a2008-03-01 18:27:36 +010031struct pool {
32 struct fio_mutex *lock; /* protects this pool */
33 void *map; /* map of blocks */
Jens Axboeec996e92008-05-27 11:39:39 +020034 unsigned int *bitmap; /* blocks free/busy map */
35 unsigned int free_blocks; /* free blocks */
36 unsigned int nr_blocks; /* total blocks */
37 unsigned int next_non_full;
Jens Axboed24c33a2008-03-01 18:27:36 +010038 int fd; /* memory backing fd */
39 char file[PATH_MAX]; /* filename for fd */
Jens Axboeec996e92008-05-27 11:39:39 +020040 unsigned int mmap_size;
41};
42
43struct block_hdr {
44 unsigned int size;
45#ifdef SMALLOC_REDZONE
46 unsigned int prered;
47#endif
Jens Axboed24c33a2008-03-01 18:27:36 +010048};
49
50static struct pool mp[MAX_POOLS];
51static unsigned int nr_pools;
52static unsigned int last_pool;
53static struct fio_mutex *lock;
54
Jens Axboed24c33a2008-03-01 18:27:36 +010055static inline void pool_lock(struct pool *pool)
56{
57 if (pool->lock)
58 fio_mutex_down(pool->lock);
59}
60
61static inline void pool_unlock(struct pool *pool)
62{
63 if (pool->lock)
64 fio_mutex_up(pool->lock);
65}
66
Jens Axboe65864cf2008-03-03 10:36:36 +010067static inline void global_read_lock(void)
Jens Axboed24c33a2008-03-01 18:27:36 +010068{
69 if (lock)
Jens Axboe65864cf2008-03-03 10:36:36 +010070 fio_mutex_down_read(lock);
Jens Axboed24c33a2008-03-01 18:27:36 +010071}
72
Jens Axboe65864cf2008-03-03 10:36:36 +010073static inline void global_read_unlock(void)
Jens Axboed24c33a2008-03-01 18:27:36 +010074{
75 if (lock)
Jens Axboe65864cf2008-03-03 10:36:36 +010076 fio_mutex_up_read(lock);
77}
78
79static inline void global_write_lock(void)
80{
81 if (lock)
82 fio_mutex_down_write(lock);
83}
84
85static inline void global_write_unlock(void)
86{
87 if (lock)
88 fio_mutex_up_write(lock);
Jens Axboed24c33a2008-03-01 18:27:36 +010089}
90
Jens Axboed24c33a2008-03-01 18:27:36 +010091static inline int ptr_valid(struct pool *pool, void *ptr)
92{
Jens Axboe1601cc92008-05-27 14:44:23 +020093 unsigned int pool_size = (pool->nr_blocks + 1) * SMALLOC_BPL;
Jens Axboeec996e92008-05-27 11:39:39 +020094
95 return (ptr >= pool->map) && (ptr < pool->map + pool_size);
Jens Axboed24c33a2008-03-01 18:27:36 +010096}
97
Jens Axboe808e9ea2008-05-27 14:12:45 +020098static inline unsigned int size_to_blocks(unsigned int size)
99{
100 return (size + SMALLOC_BPB - 1) / SMALLOC_BPB;
101}
102
Jens Axboeec996e92008-05-27 11:39:39 +0200103static int blocks_iter(unsigned int *map, unsigned int idx,
104 unsigned int nr_blocks,
105 int (*func)(unsigned int *map, unsigned int mask))
Jens Axboed24c33a2008-03-01 18:27:36 +0100106{
Jens Axboeec996e92008-05-27 11:39:39 +0200107 while (nr_blocks) {
108 unsigned int this_blocks, mask;
Jens Axboed24c33a2008-03-01 18:27:36 +0100109
Jens Axboeec996e92008-05-27 11:39:39 +0200110 this_blocks = nr_blocks;
111 if (this_blocks + idx > SMALLOC_BPI) {
112 this_blocks = SMALLOC_BPI - idx;
113 idx = SMALLOC_BPI - this_blocks;
Jens Axboed24c33a2008-03-01 18:27:36 +0100114 }
Jens Axboeec996e92008-05-27 11:39:39 +0200115
116 if (this_blocks == SMALLOC_BPI)
117 mask = -1U;
118 else
119 mask = ((1U << this_blocks) - 1) << idx;
120
121 if (!func(map, mask))
122 return 0;
123
124 nr_blocks -= this_blocks;
125 idx = 0;
126 map++;
Jens Axboed24c33a2008-03-01 18:27:36 +0100127 }
128
Jens Axboeec996e92008-05-27 11:39:39 +0200129 return 1;
Jens Axboeec996e92008-05-27 11:39:39 +0200130}
131
132static int mask_cmp(unsigned int *map, unsigned int mask)
133{
134 return !(*map & mask);
135}
136
137static int mask_clear(unsigned int *map, unsigned int mask)
138{
139 *map &= ~mask;
140 return 1;
141}
142
143static int mask_set(unsigned int *map, unsigned int mask)
144{
145 *map |= mask;
146 return 1;
147}
148
149static int blocks_free(unsigned int *map, unsigned int idx,
150 unsigned int nr_blocks)
151{
152 return blocks_iter(map, idx, nr_blocks, mask_cmp);
153}
154
155static void set_blocks(unsigned int *map, unsigned int idx,
156 unsigned int nr_blocks)
157{
158 blocks_iter(map, idx, nr_blocks, mask_set);
159}
160
161static void clear_blocks(unsigned int *map, unsigned int idx,
162 unsigned int nr_blocks)
163{
164 blocks_iter(map, idx, nr_blocks, mask_clear);
165}
166
167static inline int __ffs(int word)
168{
169 int r = 0;
170
171 if (!(word & 0xffff)) {
172 word >>= 16;
173 r += 16;
174 }
175 if (!(word & 0xff)) {
176 word >>= 8;
177 r += 8;
178 }
179 if (!(word & 0xf)) {
180 word >>= 4;
181 r += 4;
182 }
183 if (!(word & 3)) {
184 word >>= 2;
185 r += 2;
186 }
187 if (!(word & 1)) {
188 word >>= 1;
189 r += 1;
190 }
191
192 return r;
193}
194
195static int find_next_zero(int word, int start)
196{
197 assert(word != -1U);
198 word >>= (start + 1);
199 return __ffs(~word) + start + 1;
Jens Axboed24c33a2008-03-01 18:27:36 +0100200}
201
Jens Axboeadf57092008-04-16 19:43:17 +0200202static int add_pool(struct pool *pool, unsigned int alloc_size)
Jens Axboed24c33a2008-03-01 18:27:36 +0100203{
Jens Axboed24c33a2008-03-01 18:27:36 +0100204 void *ptr;
Jens Axboeec996e92008-05-27 11:39:39 +0200205 int fd, bitmap_blocks;
206
Jens Axboed24c33a2008-03-01 18:27:36 +0100207 strcpy(pool->file, "/tmp/.fio_smalloc.XXXXXX");
208 fd = mkstemp(pool->file);
209 if (fd < 0)
210 goto out_close;
211
Jens Axboe55f64912008-05-26 09:37:21 +0200212#ifdef SMALLOC_REDZONE
Jens Axboeec996e92008-05-27 11:39:39 +0200213 alloc_size += sizeof(unsigned int);
Jens Axboe55f64912008-05-26 09:37:21 +0200214#endif
Jens Axboeec996e92008-05-27 11:39:39 +0200215 alloc_size += sizeof(struct block_hdr);
216 if (alloc_size < INITIAL_SIZE)
217 alloc_size = INITIAL_SIZE;
Jens Axboeadf57092008-04-16 19:43:17 +0200218
Jens Axboeec996e92008-05-27 11:39:39 +0200219 /* round up to nearest full number of blocks */
220 alloc_size = (alloc_size + SMALLOC_BPL - 1) & ~(SMALLOC_BPL - 1);
221 bitmap_blocks = alloc_size / SMALLOC_BPL;
222 alloc_size += bitmap_blocks * sizeof(unsigned int);
223 pool->mmap_size = alloc_size;
224
225 pool->nr_blocks = bitmap_blocks;
226 pool->free_blocks = bitmap_blocks * SMALLOC_BPB;
227
228 if (ftruncate(fd, alloc_size) < 0)
Jens Axboed24c33a2008-03-01 18:27:36 +0100229 goto out_unlink;
230
Jens Axboeec996e92008-05-27 11:39:39 +0200231 ptr = mmap(NULL, alloc_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
Jens Axboed24c33a2008-03-01 18:27:36 +0100232 if (ptr == MAP_FAILED)
233 goto out_unlink;
234
Jens Axboeec996e92008-05-27 11:39:39 +0200235 memset(ptr, 0, alloc_size);
236 pool->map = ptr;
237 pool->bitmap = (void *) ptr + (pool->nr_blocks * SMALLOC_BPL);
Jens Axboed24c33a2008-03-01 18:27:36 +0100238
239#ifdef MP_SAFE
240 pool->lock = fio_mutex_init(1);
241 if (!pool->lock)
242 goto out_unlink;
243#endif
244
245 pool->fd = fd;
246
Jens Axboe65864cf2008-03-03 10:36:36 +0100247 global_write_lock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100248 nr_pools++;
Jens Axboe65864cf2008-03-03 10:36:36 +0100249 global_write_unlock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100250 return 0;
251out_unlink:
Jens Axboeec996e92008-05-27 11:39:39 +0200252 fprintf(stderr, "smalloc: failed adding pool\n");
Jens Axboed24c33a2008-03-01 18:27:36 +0100253 if (pool->map)
Jens Axboeec996e92008-05-27 11:39:39 +0200254 munmap(pool->map, pool->mmap_size);
Jens Axboed24c33a2008-03-01 18:27:36 +0100255 unlink(pool->file);
256out_close:
257 if (fd >= 0)
258 close(fd);
259 return 1;
260}
261
262void sinit(void)
263{
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100264 int ret;
Jens Axboed24c33a2008-03-01 18:27:36 +0100265
266#ifdef MP_SAFE
Jens Axboe9c5b5292008-03-03 11:08:19 +0100267 lock = fio_mutex_rw_init();
Jens Axboed24c33a2008-03-01 18:27:36 +0100268#endif
Jens Axboeadf57092008-04-16 19:43:17 +0200269 ret = add_pool(&mp[0], INITIAL_SIZE);
Jens Axboed24c33a2008-03-01 18:27:36 +0100270 assert(!ret);
271}
272
273static void cleanup_pool(struct pool *pool)
274{
275 unlink(pool->file);
276 close(pool->fd);
Jens Axboeec996e92008-05-27 11:39:39 +0200277 munmap(pool->map, pool->mmap_size);
Jens Axboed24c33a2008-03-01 18:27:36 +0100278
279 if (pool->lock)
280 fio_mutex_remove(pool->lock);
281}
282
283void scleanup(void)
284{
285 unsigned int i;
286
287 for (i = 0; i < nr_pools; i++)
288 cleanup_pool(&mp[i]);
289
290 if (lock)
291 fio_mutex_remove(lock);
292}
293
Jens Axboeec996e92008-05-27 11:39:39 +0200294static void fill_redzone(struct block_hdr *hdr)
Jens Axboe55f64912008-05-26 09:37:21 +0200295{
296#ifdef SMALLOC_REDZONE
Jens Axboeec996e92008-05-27 11:39:39 +0200297 unsigned int *postred = (void *) hdr + hdr->size - sizeof(unsigned int);
Jens Axboe55f64912008-05-26 09:37:21 +0200298
Jens Axboeec996e92008-05-27 11:39:39 +0200299 hdr->prered = SMALLOC_PRE_RED;
300 *postred = SMALLOC_POST_RED;
301#endif
302}
Jens Axboe55f64912008-05-26 09:37:21 +0200303
Jens Axboeec996e92008-05-27 11:39:39 +0200304static void sfree_check_redzone(struct block_hdr *hdr)
305{
306#ifdef SMALLOC_REDZONE
307 unsigned int *postred = (void *) hdr + hdr->size - sizeof(unsigned int);
308
309 if (hdr->prered != SMALLOC_PRE_RED) {
Jens Axboe55f64912008-05-26 09:37:21 +0200310 fprintf(stderr, "smalloc pre redzone destroyed!\n");
311 fprintf(stderr, " ptr=%p, prered=%x, expected %x\n",
Jens Axboeec996e92008-05-27 11:39:39 +0200312 hdr, hdr->prered, SMALLOC_PRE_RED);
Jens Axboe55f64912008-05-26 09:37:21 +0200313 assert(0);
314 }
315 if (*postred != SMALLOC_POST_RED) {
316 fprintf(stderr, "smalloc post redzone destroyed!\n");
317 fprintf(stderr, " ptr=%p, postred=%x, expected %x\n",
Jens Axboeec996e92008-05-27 11:39:39 +0200318 hdr, *postred, SMALLOC_POST_RED);
Jens Axboe55f64912008-05-26 09:37:21 +0200319 assert(0);
320 }
321#endif
322}
323
Jens Axboed24c33a2008-03-01 18:27:36 +0100324static void sfree_pool(struct pool *pool, void *ptr)
325{
Jens Axboeec996e92008-05-27 11:39:39 +0200326 struct block_hdr *hdr;
Jens Axboe179446e2008-05-27 14:11:56 +0200327 unsigned int i, idx;
Jens Axboeec996e92008-05-27 11:39:39 +0200328 unsigned long offset;
Jens Axboed24c33a2008-03-01 18:27:36 +0100329
330 if (!ptr)
331 return;
332
Jens Axboeec996e92008-05-27 11:39:39 +0200333 ptr -= sizeof(*hdr);
334 hdr = ptr;
Jens Axboe55f64912008-05-26 09:37:21 +0200335
Jens Axboed24c33a2008-03-01 18:27:36 +0100336 assert(ptr_valid(pool, ptr));
337
Jens Axboeec996e92008-05-27 11:39:39 +0200338 sfree_check_redzone(hdr);
339
340 offset = ptr - pool->map;
341 i = offset / SMALLOC_BPL;
342 idx = (offset % SMALLOC_BPL) / SMALLOC_BPB;
343
Jens Axboed24c33a2008-03-01 18:27:36 +0100344 pool_lock(pool);
Jens Axboe179446e2008-05-27 14:11:56 +0200345 clear_blocks(&pool->bitmap[i], idx, size_to_blocks(hdr->size));
Jens Axboeec996e92008-05-27 11:39:39 +0200346 if (i < pool->next_non_full)
347 pool->next_non_full = i;
Jens Axboe179446e2008-05-27 14:11:56 +0200348 pool->free_blocks += size_to_blocks(hdr->size);
Jens Axboed24c33a2008-03-01 18:27:36 +0100349 pool_unlock(pool);
350}
351
352void sfree(void *ptr)
353{
354 struct pool *pool = NULL;
355 unsigned int i;
356
Jens Axboe8e5732e2008-04-16 19:51:46 +0200357 if (!ptr)
358 return;
359
Jens Axboe65864cf2008-03-03 10:36:36 +0100360 global_read_lock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100361
362 for (i = 0; i < nr_pools; i++) {
363 if (ptr_valid(&mp[i], ptr)) {
364 pool = &mp[i];
365 break;
366 }
367 }
368
Jens Axboe65864cf2008-03-03 10:36:36 +0100369 global_read_unlock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100370
371 assert(pool);
372 sfree_pool(pool, ptr);
373}
374
Jens Axboe55f64912008-05-26 09:37:21 +0200375static void *__smalloc_pool(struct pool *pool, unsigned int size)
Jens Axboed24c33a2008-03-01 18:27:36 +0100376{
Jens Axboeec996e92008-05-27 11:39:39 +0200377 unsigned int nr_blocks;
378 unsigned int i;
379 unsigned int offset;
380 unsigned int last_idx;
381 void *ret = NULL;
Jens Axboed24c33a2008-03-01 18:27:36 +0100382
Jens Axboed24c33a2008-03-01 18:27:36 +0100383 pool_lock(pool);
Jens Axboe179446e2008-05-27 14:11:56 +0200384
385 nr_blocks = size_to_blocks(size);
Jens Axboeec996e92008-05-27 11:39:39 +0200386 if (nr_blocks > pool->free_blocks)
Jens Axboed24c33a2008-03-01 18:27:36 +0100387 goto fail;
388
Jens Axboeec996e92008-05-27 11:39:39 +0200389 i = pool->next_non_full;
390 last_idx = 0;
391 offset = -1U;
392 while (i < pool->nr_blocks) {
393 unsigned int idx;
Jens Axboed24c33a2008-03-01 18:27:36 +0100394
Jens Axboeec996e92008-05-27 11:39:39 +0200395 if (pool->bitmap[i] == -1U) {
396 i++;
397 pool->next_non_full = i;
398 last_idx = 0;
399 continue;
Jens Axboed24c33a2008-03-01 18:27:36 +0100400 }
Jens Axboeec996e92008-05-27 11:39:39 +0200401
402 idx = find_next_zero(pool->bitmap[i], last_idx);
403 if (!blocks_free(&pool->bitmap[i], idx, nr_blocks)) {
404 idx += nr_blocks;
405 if (idx < SMALLOC_BPI)
406 last_idx = idx;
407 else {
408 last_idx = 0;
409 while (idx >= SMALLOC_BPI) {
410 i++;
411 idx -= SMALLOC_BPI;
412 }
413 }
414 continue;
415 }
416 set_blocks(&pool->bitmap[i], idx, nr_blocks);
417 offset = i * SMALLOC_BPL + idx * SMALLOC_BPB;
418 break;
Jens Axboed24c33a2008-03-01 18:27:36 +0100419 }
Jens Axboeec996e92008-05-27 11:39:39 +0200420
421 if (i < pool->nr_blocks) {
422 pool->free_blocks -= nr_blocks;
423 ret = pool->map + offset;
424 }
425fail:
Jens Axboed24c33a2008-03-01 18:27:36 +0100426 pool_unlock(pool);
Jens Axboeec996e92008-05-27 11:39:39 +0200427 return ret;
Jens Axboed24c33a2008-03-01 18:27:36 +0100428}
429
Jens Axboe55f64912008-05-26 09:37:21 +0200430static void *smalloc_pool(struct pool *pool, unsigned int size)
431{
Jens Axboeec996e92008-05-27 11:39:39 +0200432 struct block_hdr *hdr;
433 unsigned int alloc_size;
Jens Axboe55f64912008-05-26 09:37:21 +0200434 void *ptr;
435
Jens Axboeec996e92008-05-27 11:39:39 +0200436 alloc_size = size + sizeof(*hdr);
437#ifdef SMALLOC_REDZONE
438 alloc_size += sizeof(unsigned int);
Jens Axboe55f64912008-05-26 09:37:21 +0200439#endif
Jens Axboeec996e92008-05-27 11:39:39 +0200440
441 ptr = __smalloc_pool(pool, alloc_size);
Jens Axboe076b17c2008-05-27 14:13:26 +0200442 if (!ptr)
Jens Axboeec996e92008-05-27 11:39:39 +0200443 return NULL;
Jens Axboeec996e92008-05-27 11:39:39 +0200444
445 hdr = ptr;
446 hdr->size = alloc_size;
447 ptr += sizeof(*hdr);
448
449 fill_redzone(hdr);
450
451 memset(ptr, 0, size);
452 return ptr;
Jens Axboe55f64912008-05-26 09:37:21 +0200453}
454
Jens Axboed24c33a2008-03-01 18:27:36 +0100455void *smalloc(unsigned int size)
456{
457 unsigned int i;
458
Jens Axboe65864cf2008-03-03 10:36:36 +0100459 global_read_lock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100460 i = last_pool;
461
462 do {
463 for (; i < nr_pools; i++) {
464 void *ptr = smalloc_pool(&mp[i], size);
465
466 if (ptr) {
467 last_pool = i;
Jens Axboe65864cf2008-03-03 10:36:36 +0100468 global_read_unlock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100469 return ptr;
470 }
471 }
472 if (last_pool) {
473 last_pool = 0;
474 continue;
475 }
476
Jens Axboeec996e92008-05-27 11:39:39 +0200477 if (nr_pools + 1 > MAX_POOLS)
Jens Axboed24c33a2008-03-01 18:27:36 +0100478 break;
479 else {
480 i = nr_pools;
Jens Axboe65864cf2008-03-03 10:36:36 +0100481 global_read_unlock();
Jens Axboeadf57092008-04-16 19:43:17 +0200482 if (add_pool(&mp[nr_pools], size))
Jens Axboe65864cf2008-03-03 10:36:36 +0100483 goto out;
484 global_read_lock();
Jens Axboed24c33a2008-03-01 18:27:36 +0100485 }
486 } while (1);
487
Jens Axboe65864cf2008-03-03 10:36:36 +0100488 global_read_unlock();
489out:
Jens Axboed24c33a2008-03-01 18:27:36 +0100490 return NULL;
491}
492
493char *smalloc_strdup(const char *str)
494{
495 char *ptr;
496
497 ptr = smalloc(strlen(str) + 1);
498 strcpy(ptr, str);
499 return ptr;
500}