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