log
[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         /* XXX handlers must set errno on error */
53         ec_malloc_handler.malloc = NULL;
54         ec_malloc_handler.free = NULL;
55         ec_malloc_handler.realloc = NULL;
56 }
57
58 void *__ec_malloc(size_t size, const char *file, unsigned int line)
59 {
60         return ec_malloc_handler.malloc(size, file, line);
61 }
62
63 void *ec_malloc2(size_t size)
64 {
65         return __ec_malloc(size, __FILE__, __LINE__);
66 }
67
68 void __ec_free(void *ptr, const char *file, unsigned int line)
69 {
70         ec_malloc_handler.free(ptr, file, line);
71 }
72
73 void ec_free2(void *ptr)
74 {
75         __ec_free(ptr, __FILE__, __LINE__);
76 }
77
78 void *__ec_calloc(size_t nmemb, size_t size, const char *file,
79         unsigned int line)
80 {
81         void *ptr;
82         size_t total;
83
84         /* check overflow */
85         total = size * nmemb;
86         if (nmemb != 0 && size != (total / nmemb)) {
87                 errno = ENOMEM;
88                 return NULL;
89         }
90
91         ptr = __ec_malloc(total, file, line);
92         if (ptr == NULL)
93                 return NULL;
94
95         memset(ptr, 0, total);
96         return ptr;
97 }
98
99 void *__ec_realloc(void *ptr, size_t size, const char *file, unsigned int line)
100 {
101         return ec_malloc_handler.realloc(ptr, size, file, line);
102 }
103
104 char *__ec_strdup(const char *s, const char *file, unsigned int line)
105 {
106         size_t sz = strlen(s) + 1;
107         char *s2;
108
109         s2 = __ec_malloc(sz, file, line);
110         if (s2 == NULL)
111                 return NULL;
112
113         memcpy(s2, s, sz);
114
115         return s2;
116 }
117
118 char *__ec_strndup(const char *s, size_t n, const char *file, unsigned int line)
119 {
120         size_t sz = strnlen(s, n);
121         char *s2;
122
123         s2 = __ec_malloc(sz + 1, file, line);
124         if (s2 == NULL)
125                 return NULL;
126
127         memcpy(s2, s, sz);
128         s2[sz] = '\0';
129
130         return s2;
131 }