debug malloc to track mem leaks
[protos/libecoli.git] / lib / ecoli_malloc.c
1 /*
2  * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28
29 #include <ecoli_malloc.h>
30
31 #include <stdlib.h>
32 #include <string.h>
33 #include <errno.h>
34
35 struct ec_malloc_handler ec_malloc_handler;
36
37 int ec_malloc_register(ec_malloc_t usr_malloc, ec_free_t usr_free,
38         ec_realloc_t usr_realloc)
39 {
40         if (usr_malloc == NULL || usr_free == NULL || usr_realloc == NULL)
41                 return -1;
42
43         ec_malloc_handler.malloc = usr_malloc;
44         ec_malloc_handler.free = usr_free;
45         ec_malloc_handler.realloc = usr_realloc;
46
47         return 0;
48 }
49
50 void ec_malloc_unregister(void)
51 {
52         ec_malloc_handler.malloc = NULL;
53         ec_malloc_handler.free = NULL;
54         ec_malloc_handler.realloc = NULL;
55 }
56
57 void *__ec_malloc(size_t size, const char *file, unsigned int line)
58 {
59         return ec_malloc_handler.malloc(size, file, line);
60 }
61
62 void __ec_free(void *ptr, const char *file, unsigned int line)
63 {
64         ec_malloc_handler.free(ptr, file, line);
65 }
66
67 void *__ec_calloc(size_t nmemb, size_t size, const char *file,
68         unsigned int line)
69 {
70         void *ptr;
71         size_t total;
72
73         total = size * nmemb;
74         if (nmemb != 0 && size != (total / nmemb)) {
75                 errno = ENOMEM;
76                 return NULL;
77         }
78
79         ptr = __ec_malloc(total, file, line);
80         if (ptr == NULL)
81                 return NULL;
82
83         memset(ptr, 0, size);
84         return ptr;
85 }
86
87 void *__ec_realloc(void *ptr, size_t size, const char *file, unsigned int line)
88 {
89         return ec_malloc_handler.realloc(ptr, size, file, line);
90 }
91
92 char *__ec_strdup(const char *s, const char *file, unsigned int line)
93 {
94         size_t sz = strlen(s) + 1;
95         char *s2;
96
97         s2 = __ec_malloc(sz, file, line);
98         if (s2 == NULL)
99                 return NULL;
100
101         memcpy(s2, s, sz);
102
103         return s2;
104 }
105
106 char *__ec_strndup(const char *s, size_t n, const char *file, unsigned int line)
107 {
108         size_t sz = strnlen(s, n);
109         char *s2;
110
111         s2 = __ec_malloc(sz + 1, file, line);
112         if (s2 == NULL)
113                 return NULL;
114
115         memcpy(s2, s, sz);
116         s2[sz] = '\0';
117
118         return s2;
119 }