11782a77b41b8f56e03c6813e9cabf33cbd4a8c8
[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(size_t size)
51 {
52         return ec_malloc_handler.malloc(size);
53 }
54
55 void __ec_free(void *ptr)
56 {
57         ec_malloc_handler.free(ptr);
58 }
59
60 void *__ec_calloc(size_t nmemb, size_t size)
61 {
62         void *ptr;
63         size_t total;
64
65         total = size * nmemb;
66         if (nmemb != 0 && size != (total / nmemb)) {
67                 errno = ENOMEM;
68                 return NULL;
69         }
70
71         ptr = __ec_malloc(total);
72         if (ptr == NULL)
73                 return NULL;
74
75         memset(ptr, 0, size);
76         return ptr;
77 }
78
79 void *__ec_realloc(void *ptr, size_t size)
80 {
81         return ec_malloc_handler.realloc(ptr, size);
82 }
83
84 char *__ec_strdup(const char *s)
85 {
86         size_t sz = strlen(s) + 1;
87         char *s2;
88
89         s2 = __ec_malloc(sz);
90         if (s2 == NULL)
91                 return NULL;
92
93         memcpy(s2, s, sz);
94
95         return s2;
96 }
97
98 char *__ec_strndup(const char *s, size_t n)
99 {
100         size_t sz = strnlen(s, n);
101         char *s2;
102
103         s2 = __ec_malloc(sz + 1);
104         if (s2 == NULL)
105                 return NULL;
106
107         memcpy(s2, s, sz);
108         s2[sz] = '\0';
109
110         return s2;
111 }