cont
[protos/libecoli.git] / lib / ecoli_malloc.h
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 #ifndef ECOLI_MALLOC_
29 #define ECOLI_MALLOC_
30
31 #include <sys/types.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 typedef void *(*ec_malloc_t)(size_t size, const char *file, unsigned int line);
36 typedef void (*ec_free_t)(void *ptr, const char *file, unsigned int line);
37 typedef void *(*ec_realloc_t)(void *ptr, size_t size, const char *file,
38         unsigned int line);
39
40 struct ec_malloc_handler {
41         ec_malloc_t malloc;
42         ec_free_t free;
43         ec_realloc_t realloc;
44 };
45
46 extern struct ec_malloc_handler ec_malloc_handler;
47
48 int ec_malloc_register(ec_malloc_t usr_malloc, ec_free_t usr_free,
49         ec_realloc_t usr_realloc);
50 void ec_malloc_unregister(void);
51
52 /* internal */
53 void *__ec_malloc(size_t size, const char *file, unsigned int line);
54 void __ec_free(void *ptr, const char *file, unsigned int line);
55 void *__ec_calloc(size_t nmemb, size_t size, const char *file,
56         unsigned int line);
57 void *__ec_realloc(void *ptr, size_t size, const char *file, unsigned int line);
58 char *__ec_strdup(const char *s, const char *file, unsigned int line);
59 char *__ec_strndup(const char *s, size_t n, const char *file,
60         unsigned int line);
61
62 /* we use macros here to ensure the file/line stay correct when
63  * debugging the standard malloc with valgrind */
64
65 #define ec_malloc(sz) ({                                                \
66         void *ret_;                                                     \
67         if (ec_malloc_handler.malloc == NULL)                           \
68                 ret_ = malloc(sz);                                      \
69         else                                                            \
70                 ret_ = __ec_malloc(sz, __FILE__, __LINE__);             \
71         ret_;                                                           \
72         })
73
74 #define ec_free(ptr) ({                                                 \
75         if (ec_malloc_handler.free == NULL)                             \
76                 free(ptr);                                              \
77         else                                                            \
78                 __ec_free(ptr, __FILE__, __LINE__);                     \
79         })
80
81 #define ec_realloc(ptr, sz) ({                                          \
82         void *ret_;                                                     \
83         if (ec_malloc_handler.realloc == NULL)                          \
84                 ret_ = realloc(ptr, sz);                                \
85         else                                                            \
86                 ret_ = __ec_realloc(ptr, sz, __FILE__, __LINE__);       \
87         ret_;                                                           \
88         })
89
90 #define ec_calloc(n, sz) ({                                             \
91         void *ret_;                                                     \
92         if (ec_malloc_handler.malloc == NULL)                           \
93                 ret_ = calloc(n, sz);                                   \
94         else                                                            \
95                 ret_ = __ec_calloc(n, sz, __FILE__, __LINE__);          \
96         ret_;                                                           \
97         })
98
99 #define ec_strdup(s) ({                                                 \
100         void *ret_;                                                     \
101         if (ec_malloc_handler.malloc == NULL)                           \
102                 ret_ = strdup(s);                                       \
103         else                                                            \
104                 ret_ = __ec_strdup(s, __FILE__, __LINE__);              \
105         ret_;                                                           \
106         })
107
108 #define ec_strndup(s, n) ({                                             \
109         void *ret_;                                                     \
110         if (ec_malloc_handler.malloc == NULL)                           \
111                 ret_ = strndup(s, n);                                   \
112         else                                                            \
113                 ret_ = __ec_strndup(s, n, __FILE__, __LINE__);          \
114         ret_;                                                           \
115         })
116
117
118 #endif