This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debugmalloc.h
503 lines (420 loc) · 18.7 KB
/
debugmalloc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
#ifndef DEBUGMALLOC_H
#define DEBUGMALLOC_H
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdarg.h>
enum {
/* size of canary in bytes. should be multiple of largest alignment
* required by any data type (usually 8 or 16) */
debugmalloc_canary_size = 64,
/* canary byte */
debugmalloc_canary_char = 'K',
/* hash table size for allocated entries */
debugmalloc_tablesize = 256,
/* max block size for allocation, can be modified with debugmalloc_max_block_size() */
debugmalloc_max_block_size_default = 1048576
};
/* make getpid and putenv "crossplatform". deprecated on windows but they work just fine,
* however not declared. */
#ifdef _WIN32
/* windows */
#include <process.h>
#ifdef _MSC_VER
/* visual studio, getenv/getpid deprecated warning */
#pragma warning(disable: 4996)
#else
/* other windows. the declaration is unfortunately hidden
* in mingw header files by ifdefs. */
int putenv(const char *);
#endif
#else
/* posix */
#include <unistd.h>
#endif
/* linked list entry for allocated blocks */
typedef struct DebugmallocEntry {
void *real_mem; /* the address of the real allocation */
void *user_mem; /* address shown to the user */
size_t size; /* size of block requested by user */
char file[64]; /* malloc called in this file */
unsigned line; /* malloc called at this line in file */
char func[32]; /* allocation function called (malloc, calloc, realloc) */
char expr[128]; /* expression calculating the size of allocation */
struct DebugmallocEntry *prev, *next; /* for doubly linked list */
} DebugmallocEntry;
/* debugmalloc singleton, storing all state */
typedef struct DebugmallocData {
char logfile[256]; /* log file name or empty string */
long max_block_size; /* max size of a single block allocated */
long alloc_count; /* currently allocated; decreased with free */
long long alloc_bytes;
long all_alloc_count; /* all allocations, never decreased */
long long all_alloc_bytes;
DebugmallocEntry head[debugmalloc_tablesize], tail[debugmalloc_tablesize]; /* head and tail elements of allocation lists */
} DebugmallocData;
/* this forward declaration is required by the singleton manager function */
static DebugmallocData * debugmalloc_create(void);
/* creates singleton instance. as this function is static included to different
* translation units, multiple instances of the static variables are created.
* to make sure it is really a singleton, these instances must know each other
* somethow. an environment variable is used for that purpose, ie. the address
* of the singleton allocated is stored by the operating system.
* this implementation is not thread-safe. */
static DebugmallocData * debugmalloc_singleton(void) {
static char envstr[100];
static void *instance = NULL;
/* if we do not know the address of the singleton:
* - maybe we are the one to create it (env variable also does not exist)
* - or it is already created, and stored in the env variable. */
if (instance == NULL) {
char envvarname[100] = "";
sprintf(envvarname, "%s%d", "debugmallocsingleton", (int) getpid());
char *envptr = getenv(envvarname);
if (envptr == NULL) {
/* no env variable: create singleton. */
instance = debugmalloc_create();
sprintf(envstr, "%s=%p", envvarname, instance);
putenv(envstr);
} else {
/* another copy of this function already created it. */
int ok = sscanf(envptr, "%p", &instance);
if (ok != 1) {
fprintf(stderr, "debugmalloc: nem lehet ertelmezni: %s!\n", envptr);
abort();
}
}
}
return (DebugmallocData *) instance;
}
/* better version of strncpy, always terminates string with \0. */
static void debugmalloc_strlcpy(char *dest, char const *src, size_t destsize) {
strncpy(dest, src, destsize);
dest[destsize - 1] = '\0';
}
/* set the name of the log file for debugmalloc. empty filename
* means logging to stderr. */
static void debugmalloc_log_file(char const *logfilename) {
if (logfilename == NULL)
logfilename = "";
DebugmallocData *instance = debugmalloc_singleton();
debugmalloc_strlcpy(instance->logfile, logfilename, sizeof(instance->logfile));
}
/* set the maximum size of one block. useful for debugging purposes. */
static void debugmalloc_max_block_size(long max_block_size) {
DebugmallocData *instance = debugmalloc_singleton();
instance->max_block_size = max_block_size;
}
/* printf to the log file, or stderr. */
static void debugmalloc_log(char const *format, ...) {
DebugmallocData *instance = debugmalloc_singleton();
FILE *f = stderr;
if (instance->logfile[0] != '\0') {
f = fopen(instance->logfile, "at");
if (f == NULL) {
f = stderr;
fprintf(stderr, "debugmalloc: nem tudom megnyitni a %s fajlt irasra!\n", instance->logfile);
debugmalloc_strlcpy(instance->logfile, "", sizeof(instance->logfile));
}
}
va_list ap;
va_start(ap, format);
vfprintf(f, format, ap);
va_end(ap);
if (f != stderr)
fclose(f);
}
/* initialize a memory block allocated for the user. the start and the end
* of the block is initialized with the canary characters. if 'zero' is
* true, the user memory area is zero-initialized, otherwise it is also
* filled with the canary character to simulate garbage in memory. */
static void debugmalloc_memory_init(DebugmallocEntry *elem, bool zero) {
unsigned char *real_mem = (unsigned char *) elem->real_mem;
unsigned char *user_mem = (unsigned char *) elem->user_mem;
unsigned char *canary1 = real_mem;
unsigned char *canary2 = real_mem + debugmalloc_canary_size + elem->size;
memset(canary1, debugmalloc_canary_char, debugmalloc_canary_size);
memset(canary2, debugmalloc_canary_char, debugmalloc_canary_size);
memset(user_mem, zero ? 0 : debugmalloc_canary_char, elem->size);
}
/* check canary, return true if ok, false if corrupted. */
static bool debugmalloc_canary_ok(DebugmallocEntry const *elem) {
unsigned char *real_mem = (unsigned char *) elem->real_mem;
unsigned char *canary1 = real_mem;
unsigned char *canary2 = real_mem + debugmalloc_canary_size + elem->size;
for (size_t i = 0; i < debugmalloc_canary_size; ++i) {
if (canary1[i] != debugmalloc_canary_char)
return false;
if (canary2[i] != debugmalloc_canary_char)
return false;
}
return true;
}
/* dump memory contents to log file. */
static void debugmalloc_dump_memory(char const *mem, size_t size) {
for (unsigned y = 0; y < (size + 15) / 16; y++) {
char line[80];
int pos = 0;
pos += sprintf(line + pos, " %04x ", y * 16);
for (unsigned x = 0; x < 16; x++) {
if (y * 16 + x < size)
pos += sprintf(line + pos, "%02x ", mem[y * 16 + x]);
else
pos += sprintf(line + pos, " ");
}
pos += sprintf(line + pos, " ");
for (unsigned x = 0; x < 16; x++) {
if (y * 16 + x < size) {
unsigned char c = mem[y * 16 + x];
pos += sprintf(line + pos, "%c", isprint(c) ? c : '.');
}
else {
pos += sprintf(line + pos, " ");
}
}
debugmalloc_log("%s\n", line);
}
}
/* dump data of allocated memory block.
* if the canary is corrupted, it is also written to the log. */
static void debugmalloc_dump_elem(DebugmallocEntry const *elem) {
bool canary_ok = debugmalloc_canary_ok(elem);
debugmalloc_log(" %p, %u bajt, kanari: %s\n"
" %s:%u, %s(%s)\n",
elem->user_mem, (unsigned) elem->size, canary_ok ? "ok" : "**SERULT**",
elem->file, elem->line,
elem->func, elem->expr);
if (!canary_ok) {
debugmalloc_log(" ELOTTE kanari: \n");
debugmalloc_dump_memory((char const *) elem->real_mem, debugmalloc_canary_size);
}
debugmalloc_dump_memory((char const *) elem->user_mem, elem->size > 64 ? 64 : elem->size);
if (!canary_ok) {
debugmalloc_log(" UTANA kanari: \n");
debugmalloc_dump_memory((char const *) elem->real_mem + debugmalloc_canary_size + elem->size, debugmalloc_canary_size);
}
}
/* dump data of all memory blocks allocated. */
static void debugmalloc_dump(void) {
DebugmallocData *instance = debugmalloc_singleton();
debugmalloc_log("** DEBUGMALLOC DUMP ************************************\n");
int cnt = 0;
for (size_t i = 0; i < debugmalloc_tablesize; i++) {
DebugmallocEntry *head = &instance->head[i];
for (DebugmallocEntry *iter = head->next; iter->next != NULL; iter = iter->next) {
++cnt;
debugmalloc_log("** %d/%d. rekord:\n", cnt, instance->alloc_count);
debugmalloc_dump_elem(iter);
}
}
debugmalloc_log("** DEBUGMALLOC DUMP VEGE *******************************\n");
}
/* called at program exit to dump data if there is a leak,
* ie. allocated block remained. */
static void debugmalloc_atexit_dump(void) {
DebugmallocData *instance = debugmalloc_singleton();
if (instance->alloc_count > 0) {
debugmalloc_log("\n"
"********************************************************\n"
"* MEMORIASZIVARGAS VAN A PROGRAMBAN!!!\n"
"********************************************************\n"
"\n");
debugmalloc_dump();
} else {
debugmalloc_log("****************************************************\n"
"* Debugmalloc: nincs memoriaszivargas a programban.\n"
"* Osszes foglalas: %d blokk, %d bajt.\n"
"****************************************************\n",
instance->all_alloc_count, instance->all_alloc_bytes);
}
}
/* hash function for bucket hash. */
static size_t debugmalloc_hash(void *address) {
/* the last few bits are ignored, as they are usually zero for
* alignment purposes. all tested architectures used 16 byte allocation. */
size_t cut = (size_t)address >> 4;
return cut % debugmalloc_tablesize;
}
/* insert element to hash table. */
static void debugmalloc_insert(DebugmallocEntry *entry) {
DebugmallocData *instance = debugmalloc_singleton();
size_t idx = debugmalloc_hash(entry->user_mem);
DebugmallocEntry *head = &instance->head[idx];
entry->prev = head;
entry->next = head->next;
head->next->prev = entry;
head->next = entry;
instance->alloc_count += 1;
instance->alloc_bytes += entry->size;
instance->all_alloc_count += 1;
instance->all_alloc_bytes += entry->size;
}
/* remove element from hash table */
static void debugmalloc_remove(DebugmallocEntry *entry) {
DebugmallocData *instance = debugmalloc_singleton();
entry->next->prev = entry->prev;
entry->prev->next = entry->next;
instance->alloc_count -= 1;
instance->alloc_bytes -= entry->size;
}
/* find element in hash table, given with the memory address that the user sees.
* @return the linked list entry, or null if not found. */
static DebugmallocEntry *debugmalloc_find(void *mem) {
DebugmallocData *instance = debugmalloc_singleton();
size_t idx = debugmalloc_hash(mem);
DebugmallocEntry *head = &instance->head[idx];
for (DebugmallocEntry *iter = head->next; iter->next != NULL; iter = iter->next)
if (iter->user_mem == mem)
return iter;
return NULL;
}
/* allocate memory. this function is called via the macro. */
static void *debugmalloc_malloc_full(size_t size, char const *func, char const *expr, char const *file, unsigned line, bool zero) {
/* imitate standard malloc: return null if size is zero */
if (size == 0)
return NULL;
/* check max size */
DebugmallocData *instance = debugmalloc_singleton();
if (size > instance->max_block_size) {
debugmalloc_log("debugmalloc: %s @ %s:%u: a blokk merete tul nagy, %u bajt; debugmalloc_max_block_size() fuggvennyel novelheto.\n", func, file, line, (unsigned) size);
abort();
}
/* allocate more memory, make room for canary */
void *real_mem = malloc(size + 2 * debugmalloc_canary_size);
if (real_mem == NULL) {
debugmalloc_log("debugmalloc: %s @ %s:%u: nem sikerult %u meretu memoriat foglalni!\n", func, file, line, (unsigned) size);
return NULL;
}
/* allocate memory for linked list element */
DebugmallocEntry *newentry = (DebugmallocEntry *) malloc(sizeof(DebugmallocEntry));
if (newentry == NULL) {
free(real_mem);
debugmalloc_log("debugmalloc: %s @ %s:%u: le tudtam foglalni %u memoriat, de utana a sajatnak nem, sry\n", func, file, line, (unsigned) size);
abort();
}
/* metadata of allocation: caller function, code line etc. */
debugmalloc_strlcpy(newentry->func, func, sizeof(newentry->func));
debugmalloc_strlcpy(newentry->expr, expr, sizeof(newentry->expr));
debugmalloc_strlcpy(newentry->file, file, sizeof(newentry->file));
newentry->line = line;
/* address of allocated memory chunk */
newentry->real_mem = real_mem;
newentry->user_mem = (unsigned char *) real_mem + debugmalloc_canary_size;
newentry->size = size;
debugmalloc_memory_init(newentry, zero);
/* store in list and return pointer to user area */
debugmalloc_insert(newentry);
return newentry->user_mem;
}
/* free memory and remove list item. before deleting, the chuck is filled with
* the canary byte to make sure that the user will see garbage if the memory
* is accessed after freeing. */
static void debugmalloc_free_inner(DebugmallocEntry *deleted) {
debugmalloc_remove(deleted);
/* fill with garbage, then remove from linked list */
memset(deleted->real_mem, debugmalloc_canary_char, deleted->size + 2 * debugmalloc_canary_size);
free(deleted->real_mem);
free(deleted);
}
/* free memory - called via the macro.
* as all allocations are tracked in the list, this function can terminate the program
* if a block is freed twice or the free function is called with an invalid address. */
static void debugmalloc_free_full(void *mem, char const *func, char const *file, unsigned line) {
/* imitate standard free function: if ptr is null, no operation is performed */
if (mem == NULL)
return;
/* find allocation, abort if not found */
DebugmallocEntry *deleted = debugmalloc_find(mem);
if (deleted == NULL) {
debugmalloc_log("debugmalloc: %s @ %s:%u: olyan teruletet probalsz felszabaditani, ami nincs lefoglalva!\n", func, file, line);
abort();
}
/* check canary and then free memory */
if (!debugmalloc_canary_ok(deleted)) {
debugmalloc_log("debugmalloc: %s @ %s:%u: a %p memoriateruletet tulindexelted!\n", func, file, line, mem);
debugmalloc_dump_elem(deleted);
}
debugmalloc_free_inner(deleted);
}
/* realloc-like function. */
static void *debugmalloc_realloc_full(void *oldmem, size_t newsize, char const *func, char const *expr, char const *file, unsigned line) {
/* imitate standard realloc: equivalent to free if size is null. */
if (newsize == 0) {
debugmalloc_free_full(oldmem, func, file, line);
return NULL;
}
/* imitate standard realloc: equivalent to malloc if first param is NULL */
if (oldmem == NULL)
return debugmalloc_malloc_full(newsize, func, expr, file, line, 0);
/* find old allocation. abort if not found. */
DebugmallocEntry *oldentry = debugmalloc_find(oldmem);
if (oldentry == NULL) {
debugmalloc_log("debugmalloc: %s @ %s:%u: olyan teruletet probalsz atmeretezni, ami nincs lefoglalva!\n", func, file, line);
abort();
}
/* create new allocation, copy & free old data */
void *newmem = debugmalloc_malloc_full(newsize, func, expr, file, line, false);
if (newmem == NULL) {
debugmalloc_log("debugmalloc: %s @ %s:%u: nem sikerult uj memoriat foglalni az atmeretezeshez!\n", func, file, line);
/* imitate standard realloc: original block is untouched, but return NULL */
return NULL;
}
size_t smaller = oldentry->size < newsize ? oldentry->size : newsize;
memcpy(newmem, oldmem, smaller);
debugmalloc_free_inner(oldentry);
return newmem;
}
/* initialize debugmalloc singleton. returns the newly allocated instance */
static DebugmallocData * debugmalloc_create(void) {
/* config check */
if (debugmalloc_canary_size % 16 != 0) {
debugmalloc_log("debugmalloc: a kanari merete legyen 16-tal oszthato\n");
abort();
}
if (debugmalloc_canary_char == 0) {
debugmalloc_log("debugmalloc: a kanari legyen 0-tol kulonbozo\n");
abort();
}
/* avoid compiler warning if these functions are not used */
(void) debugmalloc_realloc_full;
(void) debugmalloc_log_file;
(void) debugmalloc_max_block_size;
/* create and initialize instance */
DebugmallocData *instance = (DebugmallocData *) malloc(sizeof(DebugmallocData));
if (instance == NULL) {
debugmalloc_log("debugmalloc: nem sikerult elinditani a memoriakezelest\n");
abort();
}
debugmalloc_strlcpy(instance->logfile, "", sizeof(instance->logfile));
instance->max_block_size = debugmalloc_max_block_size_default;
instance->alloc_count = 0;
instance->alloc_bytes = 0;
instance->all_alloc_count = 0;
instance->all_alloc_bytes = 0;
for (size_t i = 0; i < debugmalloc_tablesize; i++) {
instance->head[i].prev = NULL;
instance->head[i].next = &instance->tail[i];
instance->tail[i].next = NULL;
instance->tail[i].prev = &instance->head[i];
}
atexit(debugmalloc_atexit_dump);
return instance;
}
/* These macro-like functions forward all allocation/free
* calls to debugmalloc. Usage is the same, malloc(size)
* gives the address of a new memory block, free(ptr)
* deallocates etc.
*
* If you use this file, make sure that you include this
* in *ALL* translation units (*.c) of your source. The
* builtin free() function cannot deallocate a memory block
* that was allocated via debugmalloc, yet the name of
* the function is the same! */
#define malloc(S) debugmalloc_malloc_full((S), "malloc", #S, __FILE__, __LINE__, false)
#define calloc(N,S) debugmalloc_malloc_full((N)*(S), "calloc", #N ", " #S, __FILE__, __LINE__, true)
#define realloc(P,S) debugmalloc_realloc_full((P), (S), "realloc", #S, __FILE__, __LINE__)
#define free(P) debugmalloc_free_full((P), "free", __FILE__, __LINE__)
#endif