1 /*
2 * util/alloc.c - memory allocation service.
3 *
4 * Copyright (c) 2007, NLnet Labs. All rights reserved.
5 *
6 * This software is open source.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
18 *
19 * Neither the name of the NLNET LABS nor the names of its contributors may
20 * be used to endorse or promote products derived from this software without
21 * specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36 /**
37 * \file
38 *
39 * This file contains memory allocation functions.
40 */
41
42 #include "config.h"
43 #include "util/alloc.h"
44 #include "util/regional.h"
45 #include "util/data/packed_rrset.h"
46 #include "util/fptr_wlist.h"
47
48 /** custom size of cached regional blocks */
49 #define ALLOC_REG_SIZE 16384
50 /** number of bits for ID part of uint64, rest for number of threads. */
51 #define THRNUM_SHIFT 48 /* for 65k threads, 2^48 rrsets per thr. */
52
53 /** setup new special type */
54 static void
alloc_setup_special(alloc_special_type * t)55 alloc_setup_special(alloc_special_type* t)
56 {
57 memset(t, 0, sizeof(*t));
58 lock_rw_init(&t->entry.lock);
59 t->entry.key = t;
60 }
61
62 /** prealloc some entries in the cache. To minimize contention.
63 * Result is 1 lock per alloc_max newly created entries.
64 * @param alloc: the structure to fill up.
65 */
66 static void
prealloc_setup(struct alloc_cache * alloc)67 prealloc_setup(struct alloc_cache* alloc)
68 {
69 alloc_special_type* p;
70 int i;
71 for(i=0; i<ALLOC_SPECIAL_MAX; i++) {
72 if(!(p = (alloc_special_type*)malloc(
73 sizeof(alloc_special_type)))) {
74 log_err("prealloc: out of memory");
75 return;
76 }
77 alloc_setup_special(p);
78 alloc_set_special_next(p, alloc->quar);
79 alloc->quar = p;
80 alloc->num_quar++;
81 }
82 }
83
84 /** prealloc region blocks */
85 static void
prealloc_blocks(struct alloc_cache * alloc,size_t num)86 prealloc_blocks(struct alloc_cache* alloc, size_t num)
87 {
88 size_t i;
89 struct regional* r;
90 for(i=0; i<num; i++) {
91 r = regional_create_custom(ALLOC_REG_SIZE);
92 if(!r) {
93 log_err("prealloc blocks: out of memory");
94 return;
95 }
96 r->next = (char*)alloc->reg_list;
97 alloc->reg_list = r;
98 alloc->num_reg_blocks ++;
99 }
100 }
101
102 void
alloc_init(struct alloc_cache * alloc,struct alloc_cache * super,int thread_num)103 alloc_init(struct alloc_cache* alloc, struct alloc_cache* super,
104 int thread_num)
105 {
106 memset(alloc, 0, sizeof(*alloc));
107 alloc->super = super;
108 alloc->thread_num = thread_num;
109 alloc->next_id = (uint64_t)thread_num; /* in steps, so that type */
110 alloc->next_id <<= THRNUM_SHIFT; /* of *_id is used. */
111 alloc->last_id = 1; /* so no 64bit constants, */
112 alloc->last_id <<= THRNUM_SHIFT; /* or implicit 'int' ops. */
113 alloc->last_id -= 1; /* for compiler portability. */
114 alloc->last_id |= alloc->next_id;
115 alloc->next_id += 1; /* because id=0 is special. */
116 alloc->max_reg_blocks = 100;
117 alloc->num_reg_blocks = 0;
118 alloc->reg_list = NULL;
119 alloc->cleanup = NULL;
120 alloc->cleanup_arg = NULL;
121 if(alloc->super)
122 prealloc_blocks(alloc, alloc->max_reg_blocks);
123 if(!alloc->super) {
124 lock_quick_init(&alloc->lock);
125 lock_protect(&alloc->lock, alloc, sizeof(*alloc));
126 }
127 }
128
129 /** free the special list */
130 static void
alloc_clear_special_list(struct alloc_cache * alloc)131 alloc_clear_special_list(struct alloc_cache* alloc)
132 {
133 alloc_special_type* p, *np;
134 /* free */
135 p = alloc->quar;
136 while(p) {
137 np = alloc_special_next(p);
138 /* deinit special type */
139 lock_rw_destroy(&p->entry.lock);
140 free(p);
141 p = np;
142 }
143 }
144
145 void
alloc_clear_special(struct alloc_cache * alloc)146 alloc_clear_special(struct alloc_cache* alloc)
147 {
148 if(!alloc->super) {
149 lock_quick_lock(&alloc->lock);
150 }
151 alloc_clear_special_list(alloc);
152 alloc->quar = 0;
153 alloc->num_quar = 0;
154 if(!alloc->super) {
155 lock_quick_unlock(&alloc->lock);
156 }
157 }
158
159 void
alloc_clear(struct alloc_cache * alloc)160 alloc_clear(struct alloc_cache* alloc)
161 {
162 alloc_special_type* p;
163 struct regional* r, *nr;
164 if(!alloc)
165 return;
166 if(!alloc->super) {
167 lock_quick_destroy(&alloc->lock);
168 }
169 if(alloc->super && alloc->quar) {
170 /* push entire list into super */
171 p = alloc->quar;
172 while(alloc_special_next(p)) /* find last */
173 p = alloc_special_next(p);
174 lock_quick_lock(&alloc->super->lock);
175 alloc_set_special_next(p, alloc->super->quar);
176 alloc->super->quar = alloc->quar;
177 alloc->super->num_quar += alloc->num_quar;
178 lock_quick_unlock(&alloc->super->lock);
179 } else {
180 alloc_clear_special_list(alloc);
181 }
182 alloc->quar = 0;
183 alloc->num_quar = 0;
184 r = alloc->reg_list;
185 while(r) {
186 nr = (struct regional*)r->next;
187 free(r);
188 r = nr;
189 }
190 alloc->reg_list = NULL;
191 alloc->num_reg_blocks = 0;
192 }
193
194 uint64_t
alloc_get_id(struct alloc_cache * alloc)195 alloc_get_id(struct alloc_cache* alloc)
196 {
197 uint64_t id = alloc->next_id++;
198 if(id == alloc->last_id) {
199 log_warn("rrset alloc: out of 64bit ids. Clearing cache.");
200 fptr_ok(fptr_whitelist_alloc_cleanup(alloc->cleanup));
201 (*alloc->cleanup)(alloc->cleanup_arg);
202
203 /* start back at first number */ /* like in alloc_init*/
204 alloc->next_id = (uint64_t)alloc->thread_num;
205 alloc->next_id <<= THRNUM_SHIFT; /* in steps for comp. */
206 alloc->next_id += 1; /* portability. */
207 /* and generate new and safe id */
208 id = alloc->next_id++;
209 }
210 return id;
211 }
212
213 alloc_special_type*
alloc_special_obtain(struct alloc_cache * alloc)214 alloc_special_obtain(struct alloc_cache* alloc)
215 {
216 alloc_special_type* p;
217 log_assert(alloc);
218 /* see if in local cache */
219 if(alloc->quar) {
220 p = alloc->quar;
221 alloc->quar = alloc_special_next(p);
222 alloc->num_quar--;
223 p->id = alloc_get_id(alloc);
224 return p;
225 }
226 /* see if in global cache */
227 if(alloc->super) {
228 /* could maybe grab alloc_max/2 entries in one go,
229 * but really, isn't that just as fast as this code? */
230 lock_quick_lock(&alloc->super->lock);
231 if((p = alloc->super->quar)) {
232 alloc->super->quar = alloc_special_next(p);
233 alloc->super->num_quar--;
234 }
235 lock_quick_unlock(&alloc->super->lock);
236 if(p) {
237 p->id = alloc_get_id(alloc);
238 return p;
239 }
240 }
241 /* allocate new */
242 prealloc_setup(alloc);
243 if(!(p = (alloc_special_type*)malloc(sizeof(alloc_special_type)))) {
244 log_err("alloc_special_obtain: out of memory");
245 return NULL;
246 }
247 alloc_setup_special(p);
248 p->id = alloc_get_id(alloc);
249 return p;
250 }
251
252 /** push mem and some more items to the super */
253 static void
pushintosuper(struct alloc_cache * alloc,alloc_special_type * mem)254 pushintosuper(struct alloc_cache* alloc, alloc_special_type* mem)
255 {
256 int i;
257 alloc_special_type *p = alloc->quar;
258 log_assert(p);
259 log_assert(alloc && alloc->super &&
260 alloc->num_quar >= ALLOC_SPECIAL_MAX);
261 /* push ALLOC_SPECIAL_MAX/2 after mem */
262 alloc_set_special_next(mem, alloc->quar);
263 for(i=1; i<ALLOC_SPECIAL_MAX/2; i++) {
264 p = alloc_special_next(p);
265 }
266 alloc->quar = alloc_special_next(p);
267 alloc->num_quar -= ALLOC_SPECIAL_MAX/2;
268
269 /* dump mem+list into the super quar list */
270 lock_quick_lock(&alloc->super->lock);
271 alloc_set_special_next(p, alloc->super->quar);
272 alloc->super->quar = mem;
273 alloc->super->num_quar += ALLOC_SPECIAL_MAX/2 + 1;
274 lock_quick_unlock(&alloc->super->lock);
275 /* so 1 lock per mem+alloc/2 deletes */
276 }
277
278 void
alloc_special_release(struct alloc_cache * alloc,alloc_special_type * mem)279 alloc_special_release(struct alloc_cache* alloc, alloc_special_type* mem)
280 {
281 log_assert(alloc);
282 if(!mem)
283 return;
284 if(!alloc->super) {
285 lock_quick_lock(&alloc->lock); /* superalloc needs locking */
286 }
287
288 alloc_special_clean(mem);
289 if(alloc->super && alloc->num_quar >= ALLOC_SPECIAL_MAX) {
290 /* push it to the super structure */
291 pushintosuper(alloc, mem);
292 return;
293 }
294
295 alloc_set_special_next(mem, alloc->quar);
296 alloc->quar = mem;
297 alloc->num_quar++;
298 if(!alloc->super) {
299 lock_quick_unlock(&alloc->lock);
300 }
301 }
302
303 void
alloc_stats(struct alloc_cache * alloc)304 alloc_stats(struct alloc_cache* alloc)
305 {
306 log_info("%salloc: %d in cache, %d blocks.", alloc->super?"":"sup",
307 (int)alloc->num_quar, (int)alloc->num_reg_blocks);
308 }
309
alloc_get_mem(struct alloc_cache * alloc)310 size_t alloc_get_mem(struct alloc_cache* alloc)
311 {
312 alloc_special_type* p;
313 size_t s = sizeof(*alloc);
314 if(!alloc->super) {
315 lock_quick_lock(&alloc->lock); /* superalloc needs locking */
316 }
317 s += sizeof(alloc_special_type) * alloc->num_quar;
318 for(p = alloc->quar; p; p = alloc_special_next(p)) {
319 s += lock_get_mem(&p->entry.lock);
320 }
321 s += alloc->num_reg_blocks * ALLOC_REG_SIZE;
322 if(!alloc->super) {
323 lock_quick_unlock(&alloc->lock);
324 }
325 return s;
326 }
327
328 struct regional*
alloc_reg_obtain(struct alloc_cache * alloc)329 alloc_reg_obtain(struct alloc_cache* alloc)
330 {
331 if(alloc->num_reg_blocks > 0) {
332 struct regional* r = alloc->reg_list;
333 alloc->reg_list = (struct regional*)r->next;
334 r->next = NULL;
335 alloc->num_reg_blocks--;
336 return r;
337 }
338 return regional_create_custom(ALLOC_REG_SIZE);
339 }
340
341 void
alloc_reg_release(struct alloc_cache * alloc,struct regional * r)342 alloc_reg_release(struct alloc_cache* alloc, struct regional* r)
343 {
344 if(alloc->num_reg_blocks >= alloc->max_reg_blocks) {
345 regional_destroy(r);
346 return;
347 }
348 if(!r) return;
349 regional_free_all(r);
350 log_assert(r->next == NULL);
351 r->next = (char*)alloc->reg_list;
352 alloc->reg_list = r;
353 alloc->num_reg_blocks++;
354 }
355
356 void
alloc_set_id_cleanup(struct alloc_cache * alloc,void (* cleanup)(void *),void * arg)357 alloc_set_id_cleanup(struct alloc_cache* alloc, void (*cleanup)(void*),
358 void* arg)
359 {
360 alloc->cleanup = cleanup;
361 alloc->cleanup_arg = arg;
362 }
363
364 /** global debug value to keep track of total memory mallocs */
365 size_t unbound_mem_alloc = 0;
366 /** global debug value to keep track of total memory frees */
367 size_t unbound_mem_freed = 0;
368 #ifdef UNBOUND_ALLOC_STATS
369 /** special value to know if the memory is being tracked */
370 uint64_t mem_special = (uint64_t)0xfeed43327766abcdLL;
371 #ifdef malloc
372 #undef malloc
373 #endif
374 /** malloc with stats */
unbound_stat_malloc(size_t size)375 void *unbound_stat_malloc(size_t size)
376 {
377 void* res;
378 if(size == 0) size = 1;
379 log_assert(size <= SIZE_MAX-16);
380 res = malloc(size+16);
381 if(!res) return NULL;
382 unbound_mem_alloc += size;
383 log_info("stat %p=malloc(%u)", res+16, (unsigned)size);
384 memcpy(res, &size, sizeof(size));
385 memcpy(res+8, &mem_special, sizeof(mem_special));
386 return res+16;
387 }
388 #ifdef calloc
389 #undef calloc
390 #endif
391 #ifndef INT_MAX
392 #define INT_MAX (((int)-1)>>1)
393 #endif
394 /** calloc with stats */
unbound_stat_calloc(size_t nmemb,size_t size)395 void *unbound_stat_calloc(size_t nmemb, size_t size)
396 {
397 size_t s;
398 void* res;
399 if(nmemb != 0 && INT_MAX/nmemb < size)
400 return NULL; /* integer overflow check */
401 s = (nmemb*size==0)?(size_t)1:nmemb*size;
402 log_assert(s <= SIZE_MAX-16);
403 res = calloc(1, s+16);
404 if(!res) return NULL;
405 log_info("stat %p=calloc(%u, %u)", res+16, (unsigned)nmemb, (unsigned)size);
406 unbound_mem_alloc += s;
407 memcpy(res, &s, sizeof(s));
408 memcpy(res+8, &mem_special, sizeof(mem_special));
409 return res+16;
410 }
411 #ifdef free
412 #undef free
413 #endif
414 /** free with stats */
unbound_stat_free(void * ptr)415 void unbound_stat_free(void *ptr)
416 {
417 size_t s;
418 if(!ptr) return;
419 if(memcmp(ptr-8, &mem_special, sizeof(mem_special)) != 0) {
420 free(ptr);
421 return;
422 }
423 ptr-=16;
424 memcpy(&s, ptr, sizeof(s));
425 log_info("stat free(%p) size %u", ptr+16, (unsigned)s);
426 memset(ptr+8, 0, 8);
427 unbound_mem_freed += s;
428 free(ptr);
429 }
430 #ifdef realloc
431 #undef realloc
432 #endif
433 /** realloc with stats */
unbound_stat_realloc(void * ptr,size_t size)434 void *unbound_stat_realloc(void *ptr, size_t size)
435 {
436 size_t cursz;
437 void* res;
438 if(!ptr) return unbound_stat_malloc(size);
439 if(memcmp(ptr-8, &mem_special, sizeof(mem_special)) != 0) {
440 return realloc(ptr, size);
441 }
442 if(size==0) {
443 unbound_stat_free(ptr);
444 return NULL;
445 }
446 ptr -= 16;
447 memcpy(&cursz, ptr, sizeof(cursz));
448 if(cursz == size) {
449 /* nothing changes */
450 return ptr;
451 }
452 log_assert(size <= SIZE_MAX-16);
453 res = malloc(size+16);
454 if(!res) return NULL;
455 unbound_mem_alloc += size;
456 unbound_mem_freed += cursz;
457 log_info("stat realloc(%p, %u) from %u", ptr+16, (unsigned)size, (unsigned)cursz);
458 if(cursz > size) {
459 memcpy(res+16, ptr+16, size);
460 } else if(size > cursz) {
461 memcpy(res+16, ptr+16, cursz);
462 }
463 memset(ptr+8, 0, 8);
464 free(ptr);
465 memcpy(res, &size, sizeof(size));
466 memcpy(res+8, &mem_special, sizeof(mem_special));
467 return res+16;
468 }
469 /** strdup with stats */
unbound_stat_strdup(const char * s)470 char *unbound_stat_strdup(const char* s)
471 {
472 size_t len;
473 char* res;
474 if(!s) return NULL;
475 len = strlen(s);
476 res = unbound_stat_malloc(len+1);
477 if(!res) return NULL;
478 memmove(res, s, len+1);
479 return res;
480 }
481
482 /** log to file where alloc was done */
unbound_stat_malloc_log(size_t size,const char * file,int line,const char * func)483 void *unbound_stat_malloc_log(size_t size, const char* file, int line,
484 const char* func)
485 {
486 log_info("%s:%d %s malloc(%u)", file, line, func, (unsigned)size);
487 return unbound_stat_malloc(size);
488 }
489
490 /** log to file where alloc was done */
unbound_stat_calloc_log(size_t nmemb,size_t size,const char * file,int line,const char * func)491 void *unbound_stat_calloc_log(size_t nmemb, size_t size, const char* file,
492 int line, const char* func)
493 {
494 log_info("%s:%d %s calloc(%u, %u)", file, line, func,
495 (unsigned) nmemb, (unsigned)size);
496 return unbound_stat_calloc(nmemb, size);
497 }
498
499 /** log to file where free was done */
unbound_stat_free_log(void * ptr,const char * file,int line,const char * func)500 void unbound_stat_free_log(void *ptr, const char* file, int line,
501 const char* func)
502 {
503 if(ptr && memcmp(ptr-8, &mem_special, sizeof(mem_special)) == 0) {
504 size_t s;
505 memcpy(&s, ptr-16, sizeof(s));
506 log_info("%s:%d %s free(%p) size %u",
507 file, line, func, ptr, (unsigned)s);
508 } else
509 log_info("%s:%d %s unmatched free(%p)", file, line, func, ptr);
510 unbound_stat_free(ptr);
511 }
512
513 /** log to file where alloc was done */
unbound_stat_realloc_log(void * ptr,size_t size,const char * file,int line,const char * func)514 void *unbound_stat_realloc_log(void *ptr, size_t size, const char* file,
515 int line, const char* func)
516 {
517 log_info("%s:%d %s realloc(%p, %u)", file, line, func,
518 ptr, (unsigned)size);
519 return unbound_stat_realloc(ptr, size);
520 }
521
522 /** log to file where alloc was done */
unbound_stat_reallocarray_log(void * ptr,size_t nmemb,size_t size,const char * file,int line,const char * func)523 void *unbound_stat_reallocarray_log(void *ptr, size_t nmemb, size_t size,
524 const char* file, int line, const char* func)
525 {
526 log_info("%s:%d %s reallocarray(%p, %u, %u)", file, line, func,
527 ptr, (unsigned)nmemb, (unsigned)size);
528 return unbound_stat_realloc(ptr, nmemb*size);
529 }
530
531 /** log to file where strdup was done */
unbound_stat_strdup_log(const char * s,const char * file,int line,const char * func)532 char *unbound_stat_strdup_log(const char *s, const char* file, int line,
533 const char* func)
534 {
535 log_info("%s:%d %s strdup size %u", file, line, func,
536 (s?(unsigned)strlen(s)+1:0));
537 return unbound_stat_strdup(s);
538 }
539
540 #endif /* UNBOUND_ALLOC_STATS */
541 #ifdef UNBOUND_ALLOC_LITE
542 #undef malloc
543 #undef calloc
544 #undef free
545 #undef realloc
546 /** length of prefix and suffix */
547 static size_t lite_pad = 16;
548 /** prefix value to check */
549 static char* lite_pre = "checkfront123456";
550 /** suffix value to check */
551 static char* lite_post= "checkafter123456";
552
unbound_stat_malloc_lite(size_t size,const char * file,int line,const char * func)553 void *unbound_stat_malloc_lite(size_t size, const char* file, int line,
554 const char* func)
555 {
556 /* [prefix .. len .. actual data .. suffix] */
557 void* res;
558 log_assert(size <= SIZE_MAX-(lite_pad*2+sizeof(size_t)));
559 res = malloc(size+lite_pad*2+sizeof(size_t));
560 if(!res) return NULL;
561 memmove(res, lite_pre, lite_pad);
562 memmove(res+lite_pad, &size, sizeof(size_t));
563 memset(res+lite_pad+sizeof(size_t), 0x1a, size); /* init the memory */
564 memmove(res+lite_pad+size+sizeof(size_t), lite_post, lite_pad);
565 return res+lite_pad+sizeof(size_t);
566 }
567
unbound_stat_calloc_lite(size_t nmemb,size_t size,const char * file,int line,const char * func)568 void *unbound_stat_calloc_lite(size_t nmemb, size_t size, const char* file,
569 int line, const char* func)
570 {
571 size_t req;
572 void* res;
573 if(nmemb != 0 && INT_MAX/nmemb < size)
574 return NULL; /* integer overflow check */
575 req = nmemb * size;
576 log_assert(req <= SIZE_MAX-(lite_pad*2+sizeof(size_t)));
577 res = malloc(req+lite_pad*2+sizeof(size_t));
578 if(!res) return NULL;
579 memmove(res, lite_pre, lite_pad);
580 memmove(res+lite_pad, &req, sizeof(size_t));
581 memset(res+lite_pad+sizeof(size_t), 0, req);
582 memmove(res+lite_pad+req+sizeof(size_t), lite_post, lite_pad);
583 return res+lite_pad+sizeof(size_t);
584 }
585
unbound_stat_free_lite(void * ptr,const char * file,int line,const char * func)586 void unbound_stat_free_lite(void *ptr, const char* file, int line,
587 const char* func)
588 {
589 void* real;
590 size_t orig = 0;
591 if(!ptr) return;
592 real = ptr-lite_pad-sizeof(size_t);
593 if(memcmp(real, lite_pre, lite_pad) != 0) {
594 log_err("free(): prefix failed %s:%d %s", file, line, func);
595 log_hex("prefix here", real, lite_pad);
596 log_hex(" should be", lite_pre, lite_pad);
597 fatal_exit("alloc assertion failed");
598 }
599 memmove(&orig, real+lite_pad, sizeof(size_t));
600 if(memcmp(real+lite_pad+orig+sizeof(size_t), lite_post, lite_pad)!=0){
601 log_err("free(): suffix failed %s:%d %s", file, line, func);
602 log_err("alloc size is %d", (int)orig);
603 log_hex("suffix here", real+lite_pad+orig+sizeof(size_t),
604 lite_pad);
605 log_hex(" should be", lite_post, lite_pad);
606 fatal_exit("alloc assertion failed");
607 }
608 memset(real, 0xdd, orig+lite_pad*2+sizeof(size_t)); /* mark it */
609 free(real);
610 }
611
unbound_stat_realloc_lite(void * ptr,size_t size,const char * file,int line,const char * func)612 void *unbound_stat_realloc_lite(void *ptr, size_t size, const char* file,
613 int line, const char* func)
614 {
615 /* always free and realloc (no growing) */
616 void* real, *newa;
617 size_t orig = 0;
618 if(!ptr) {
619 /* like malloc() */
620 return unbound_stat_malloc_lite(size, file, line, func);
621 }
622 if(!size) {
623 /* like free() */
624 unbound_stat_free_lite(ptr, file, line, func);
625 return NULL;
626 }
627 /* change allocation size and copy */
628 real = ptr-lite_pad-sizeof(size_t);
629 if(memcmp(real, lite_pre, lite_pad) != 0) {
630 log_err("realloc(): prefix failed %s:%d %s", file, line, func);
631 log_hex("prefix here", real, lite_pad);
632 log_hex(" should be", lite_pre, lite_pad);
633 fatal_exit("alloc assertion failed");
634 }
635 memmove(&orig, real+lite_pad, sizeof(size_t));
636 if(memcmp(real+lite_pad+orig+sizeof(size_t), lite_post, lite_pad)!=0){
637 log_err("realloc(): suffix failed %s:%d %s", file, line, func);
638 log_err("alloc size is %d", (int)orig);
639 log_hex("suffix here", real+lite_pad+orig+sizeof(size_t),
640 lite_pad);
641 log_hex(" should be", lite_post, lite_pad);
642 fatal_exit("alloc assertion failed");
643 }
644 /* new alloc and copy over */
645 newa = unbound_stat_malloc_lite(size, file, line, func);
646 if(!newa)
647 return NULL;
648 if(orig < size)
649 memmove(newa, ptr, orig);
650 else memmove(newa, ptr, size);
651 memset(real, 0xdd, orig+lite_pad*2+sizeof(size_t)); /* mark it */
652 free(real);
653 return newa;
654 }
655
unbound_strdup_lite(const char * s,const char * file,int line,const char * func)656 char* unbound_strdup_lite(const char* s, const char* file, int line,
657 const char* func)
658 {
659 /* this routine is made to make sure strdup() uses the malloc_lite */
660 size_t l = strlen(s)+1;
661 char* n = (char*)unbound_stat_malloc_lite(l, file, line, func);
662 if(!n) return NULL;
663 memmove(n, s, l);
664 return n;
665 }
666
unbound_lite_wrapstr(char * s)667 char* unbound_lite_wrapstr(char* s)
668 {
669 char* n = unbound_strdup_lite(s, __FILE__, __LINE__, __func__);
670 free(s);
671 return n;
672 }
673
674 #undef sldns_pkt2wire
unbound_lite_pkt2wire(uint8_t ** dest,const sldns_pkt * p,size_t * size)675 sldns_status unbound_lite_pkt2wire(uint8_t **dest, const sldns_pkt *p,
676 size_t *size)
677 {
678 uint8_t* md = NULL;
679 size_t ms = 0;
680 sldns_status s = sldns_pkt2wire(&md, p, &ms);
681 if(md) {
682 *dest = unbound_stat_malloc_lite(ms, __FILE__, __LINE__,
683 __func__);
684 *size = ms;
685 if(!*dest) { free(md); return LDNS_STATUS_MEM_ERR; }
686 memcpy(*dest, md, ms);
687 free(md);
688 } else {
689 *dest = NULL;
690 *size = 0;
691 }
692 return s;
693 }
694
695 #undef i2d_DSA_SIG
unbound_lite_i2d_DSA_SIG(DSA_SIG * dsasig,unsigned char ** sig)696 int unbound_lite_i2d_DSA_SIG(DSA_SIG* dsasig, unsigned char** sig)
697 {
698 unsigned char* n = NULL;
699 int r= i2d_DSA_SIG(dsasig, &n);
700 if(n) {
701 *sig = unbound_stat_malloc_lite((size_t)r, __FILE__, __LINE__,
702 __func__);
703 if(!*sig) return -1;
704 memcpy(*sig, n, (size_t)r);
705 free(n);
706 return r;
707 }
708 *sig = NULL;
709 return r;
710 }
711
712 #endif /* UNBOUND_ALLOC_LITE */
713