Use frame pointer
[fio.git] / smalloc.c
1 /*
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 #include "arch/arch.h"
16
17 #define MP_SAFE                 /* define to make thread safe */
18 #define SMALLOC_REDZONE         /* define to detect memory corruption */
19
20 #define SMALLOC_BPB     32      /* block size, bytes-per-bit in bitmap */
21 #define SMALLOC_BPI     (sizeof(unsigned int) * 8)
22 #define SMALLOC_BPL     (SMALLOC_BPB * SMALLOC_BPI)
23
24 #define INITIAL_SIZE    1024*1024       /* new pool size */
25 #define MAX_POOLS       128             /* maximum number of pools to setup */
26
27 #define SMALLOC_PRE_RED         0xdeadbeefU
28 #define SMALLOC_POST_RED        0x5aa55aa5U
29
30 unsigned int smalloc_pool_size = INITIAL_SIZE;
31
32 struct pool {
33         struct fio_mutex *lock;                 /* protects this pool */
34         void *map;                              /* map of blocks */
35         unsigned int *bitmap;                   /* blocks free/busy map */
36         unsigned int free_blocks;               /* free blocks */
37         unsigned int nr_blocks;                 /* total blocks */
38         unsigned int next_non_full;
39         int fd;                                 /* memory backing fd */
40         char file[PATH_MAX];                    /* filename for fd */
41         unsigned int mmap_size;
42 };
43
44 struct block_hdr {
45         unsigned int size;
46 #ifdef SMALLOC_REDZONE
47         unsigned int prered;
48 #endif
49 };
50
51 static struct pool mp[MAX_POOLS];
52 static unsigned int nr_pools;
53 static unsigned int last_pool;
54 static struct fio_mutex *lock;
55
56 static inline void pool_lock(struct pool *pool)
57 {
58         if (pool->lock)
59                 fio_mutex_down(pool->lock);
60 }
61
62 static inline void pool_unlock(struct pool *pool)
63 {
64         if (pool->lock)
65                 fio_mutex_up(pool->lock);
66 }
67
68 static inline void global_read_lock(void)
69 {
70         if (lock)
71                 fio_mutex_down_read(lock);
72 }
73
74 static inline void global_read_unlock(void)
75 {
76         if (lock)
77                 fio_mutex_up_read(lock);
78 }
79
80 static inline void global_write_lock(void)
81 {
82         if (lock)
83                 fio_mutex_down_write(lock);
84 }
85
86 static inline void global_write_unlock(void)
87 {
88         if (lock)
89                 fio_mutex_up_write(lock);
90 }
91
92 static inline int ptr_valid(struct pool *pool, void *ptr)
93 {
94         unsigned int pool_size = pool->nr_blocks * SMALLOC_BPL;
95
96         return (ptr >= pool->map) && (ptr < pool->map + pool_size);
97 }
98
99 static inline unsigned int size_to_blocks(unsigned int size)
100 {
101         return (size + SMALLOC_BPB - 1) / SMALLOC_BPB;
102 }
103
104 static int blocks_iter(struct pool *pool, unsigned int pool_idx,
105                        unsigned int idx, unsigned int nr_blocks,
106                        int (*func)(unsigned int *map, unsigned int mask))
107 {
108
109         while (nr_blocks) {
110                 unsigned int this_blocks, mask;
111                 unsigned int *map;
112
113                 if (pool_idx >= pool->nr_blocks)
114                         return 0;
115
116                 map = &pool->bitmap[pool_idx];
117
118                 this_blocks = nr_blocks;
119                 if (this_blocks + idx > SMALLOC_BPI) {
120                         this_blocks = SMALLOC_BPI - idx;
121                         idx = SMALLOC_BPI - this_blocks;
122                 }
123
124                 if (this_blocks == SMALLOC_BPI)
125                         mask = -1U;
126                 else
127                         mask = ((1U << this_blocks) - 1) << idx;
128
129                 if (!func(map, mask))
130                         return 0;
131
132                 nr_blocks -= this_blocks;
133                 idx = 0;
134                 pool_idx++;
135         }
136
137         return 1;
138 }
139
140 static int mask_cmp(unsigned int *map, unsigned int mask)
141 {
142         return !(*map & mask);
143 }
144
145 static int mask_clear(unsigned int *map, unsigned int mask)
146 {
147         assert((*map & mask) == mask);
148         *map &= ~mask;
149         return 1;
150 }
151
152 static int mask_set(unsigned int *map, unsigned int mask)
153 {
154         assert(!(*map & mask));
155         *map |= mask;
156         return 1;
157 }
158
159 static int blocks_free(struct pool *pool, unsigned int pool_idx,
160                        unsigned int idx, unsigned int nr_blocks)
161 {
162         return blocks_iter(pool, pool_idx, idx, nr_blocks, mask_cmp);
163 }
164
165 static void set_blocks(struct pool *pool, unsigned int pool_idx,
166                        unsigned int idx, unsigned int nr_blocks)
167 {
168         blocks_iter(pool, pool_idx, idx, nr_blocks, mask_set);
169 }
170
171 static void clear_blocks(struct pool *pool, unsigned int pool_idx,
172                          unsigned int idx, unsigned int nr_blocks)
173 {
174         blocks_iter(pool, pool_idx, idx, nr_blocks, mask_clear);
175 }
176
177 static int find_next_zero(int word, int start)
178 {
179         assert(word != -1U);
180         word >>= (start + 1);
181         return ffz(word) + start + 1;
182 }
183
184 static int add_pool(struct pool *pool, unsigned int alloc_size)
185 {
186         void *ptr;
187         int fd, bitmap_blocks;
188
189         strcpy(pool->file, "/tmp/.fio_smalloc.XXXXXX");
190         fd = mkstemp(pool->file);
191         if (fd < 0)
192                 goto out_close;
193
194 #ifdef SMALLOC_REDZONE
195         alloc_size += sizeof(unsigned int);
196 #endif
197         alloc_size += sizeof(struct block_hdr);
198         if (alloc_size < INITIAL_SIZE)
199                 alloc_size = INITIAL_SIZE;
200
201         /* round up to nearest full number of blocks */
202         alloc_size = (alloc_size + SMALLOC_BPL - 1) & ~(SMALLOC_BPL - 1);
203         bitmap_blocks = alloc_size / SMALLOC_BPL;
204         alloc_size += bitmap_blocks * sizeof(unsigned int);
205         pool->mmap_size = alloc_size;
206         
207         pool->nr_blocks = bitmap_blocks;
208         pool->free_blocks = bitmap_blocks * SMALLOC_BPB;
209
210         if (ftruncate(fd, alloc_size) < 0)
211                 goto out_unlink;
212
213         ptr = mmap(NULL, alloc_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
214         if (ptr == MAP_FAILED)
215                 goto out_unlink;
216
217         memset(ptr, 0, alloc_size);
218         pool->map = ptr;
219         pool->bitmap = (void *) ptr + (pool->nr_blocks * SMALLOC_BPL);
220
221 #ifdef MP_SAFE
222         pool->lock = fio_mutex_init(1);
223         if (!pool->lock)
224                 goto out_unlink;
225 #endif
226
227         pool->fd = fd;
228
229         nr_pools++;
230         return 0;
231 out_unlink:
232         fprintf(stderr, "smalloc: failed adding pool\n");
233         if (pool->map)
234                 munmap(pool->map, pool->mmap_size);
235         unlink(pool->file);
236 out_close:
237         if (fd >= 0)
238                 close(fd);
239         return 1;
240 }
241
242 void sinit(void)
243 {
244         int ret;
245
246 #ifdef MP_SAFE
247         lock = fio_mutex_rw_init();
248 #endif
249         ret = add_pool(&mp[0], INITIAL_SIZE);
250         assert(!ret);
251 }
252
253 static void cleanup_pool(struct pool *pool)
254 {
255         unlink(pool->file);
256         close(pool->fd);
257         munmap(pool->map, pool->mmap_size);
258
259         if (pool->lock)
260                 fio_mutex_remove(pool->lock);
261 }
262
263 void scleanup(void)
264 {
265         unsigned int i;
266
267         for (i = 0; i < nr_pools; i++)
268                 cleanup_pool(&mp[i]);
269
270         if (lock)
271                 fio_mutex_remove(lock);
272 }
273
274 #ifdef SMALLOC_REDZONE
275 static void fill_redzone(struct block_hdr *hdr)
276 {
277         unsigned int *postred = (void *) hdr + hdr->size - sizeof(unsigned int);
278
279         hdr->prered = SMALLOC_PRE_RED;
280         *postred = SMALLOC_POST_RED;
281 }
282
283 static void sfree_check_redzone(struct block_hdr *hdr)
284 {
285         unsigned int *postred = (void *) hdr + hdr->size - sizeof(unsigned int);
286
287         if (hdr->prered != SMALLOC_PRE_RED) {
288                 fprintf(stderr, "smalloc pre redzone destroyed!\n");
289                 fprintf(stderr, "  ptr=%p, prered=%x, expected %x\n",
290                                 hdr, hdr->prered, SMALLOC_PRE_RED);
291                 assert(0);
292         }
293         if (*postred != SMALLOC_POST_RED) {
294                 fprintf(stderr, "smalloc post redzone destroyed!\n");
295                 fprintf(stderr, "  ptr=%p, postred=%x, expected %x\n",
296                                 hdr, *postred, SMALLOC_POST_RED);
297                 assert(0);
298         }
299 }
300 #else
301 static void fill_redzone(struct block_hdr *hdr)
302 {
303 }
304
305 static void sfree_check_redzone(struct block_hdr *hdr)
306 {
307 }
308 #endif
309
310 static void sfree_pool(struct pool *pool, void *ptr)
311 {
312         struct block_hdr *hdr;
313         unsigned int i, idx;
314         unsigned long offset;
315
316         if (!ptr)
317                 return;
318
319         ptr -= sizeof(*hdr);
320         hdr = ptr;
321
322         assert(ptr_valid(pool, ptr));
323
324         sfree_check_redzone(hdr);
325
326         offset = ptr - pool->map;
327         i = offset / SMALLOC_BPL;
328         idx = (offset % SMALLOC_BPL) / SMALLOC_BPB;
329
330         pool_lock(pool);
331         clear_blocks(pool, i, idx, size_to_blocks(hdr->size));
332         if (i < pool->next_non_full)
333                 pool->next_non_full = i;
334         pool->free_blocks += size_to_blocks(hdr->size);
335         pool_unlock(pool);
336 }
337
338 void sfree(void *ptr)
339 {
340         struct pool *pool = NULL;
341         unsigned int i;
342
343         if (!ptr)
344                 return;
345
346         global_read_lock();
347
348         for (i = 0; i < nr_pools; i++) {
349                 if (ptr_valid(&mp[i], ptr)) {
350                         pool = &mp[i];
351                         break;
352                 }
353         }
354
355         global_read_unlock();
356
357         assert(pool);
358         sfree_pool(pool, ptr);
359 }
360
361 static void *__smalloc_pool(struct pool *pool, unsigned int size)
362 {
363         unsigned int nr_blocks;
364         unsigned int i;
365         unsigned int offset;
366         unsigned int last_idx;
367         void *ret = NULL;
368
369         pool_lock(pool);
370
371         nr_blocks = size_to_blocks(size);
372         if (nr_blocks > pool->free_blocks)
373                 goto fail;
374
375         i = pool->next_non_full;
376         last_idx = 0;
377         offset = -1U;
378         while (i < pool->nr_blocks) {
379                 unsigned int idx;
380
381                 if (pool->bitmap[i] == -1U) {
382                         i++;
383                         pool->next_non_full = i;
384                         last_idx = 0;
385                         continue;
386                 }
387
388                 idx = find_next_zero(pool->bitmap[i], last_idx);
389                 if (!blocks_free(pool, i, idx, nr_blocks)) {
390                         idx += nr_blocks;
391                         if (idx < SMALLOC_BPI)
392                                 last_idx = idx;
393                         else {
394                                 last_idx = 0;
395                                 while (idx >= SMALLOC_BPI) {
396                                         i++;
397                                         idx -= SMALLOC_BPI;
398                                 }
399                         }
400                         continue;
401                 }
402                 set_blocks(pool, i, idx, nr_blocks);
403                 offset = i * SMALLOC_BPL + idx * SMALLOC_BPB;
404                 break;
405         }
406
407         if (i < pool->nr_blocks) {
408                 pool->free_blocks -= nr_blocks;
409                 ret = pool->map + offset;
410         }
411 fail:
412         pool_unlock(pool);
413         return ret;
414 }
415
416 static void *smalloc_pool(struct pool *pool, unsigned int size)
417 {
418         unsigned int alloc_size = size + sizeof(struct block_hdr);
419         void *ptr;
420
421 #ifdef SMALLOC_REDZONE
422         alloc_size += sizeof(unsigned int);
423 #endif
424
425         ptr = __smalloc_pool(pool, alloc_size);
426         if (ptr) {
427                 struct block_hdr *hdr = ptr;
428
429                 hdr->size = alloc_size;
430                 fill_redzone(hdr);
431
432                 ptr += sizeof(*hdr);
433                 memset(ptr, 0, size);
434         }
435
436         return ptr;
437 }
438
439 void *smalloc(unsigned int size)
440 {
441         unsigned int i;
442
443         global_write_lock();
444         i = last_pool;
445
446         do {
447                 for (; i < nr_pools; i++) {
448                         void *ptr = smalloc_pool(&mp[i], size);
449
450                         if (ptr) {
451                                 last_pool = i;
452                                 global_write_unlock();
453                                 return ptr;
454                         }
455                 }
456                 if (last_pool) {
457                         last_pool = 0;
458                         continue;
459                 }
460
461                 if (nr_pools + 1 > MAX_POOLS)
462                         break;
463                 else {
464                         i = nr_pools;
465                         if (add_pool(&mp[nr_pools], size))
466                                 goto out;
467                 }
468         } while (1);
469
470 out:
471         global_write_unlock();
472         return NULL;
473 }
474
475 char *smalloc_strdup(const char *str)
476 {
477         char *ptr;
478
479         ptr = smalloc(strlen(str) + 1);
480         strcpy(ptr, str);
481         return ptr;
482 }