Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dafcbbdda3e581a83997152b4ae13f61ddb708f6
[simgrid.git] / src / xbt / mmalloc / mm_legacy.c
1 /* Copyright (c) 2010-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* Redefine the classical malloc/free/realloc functions so that they fit well in the mmalloc framework */
8 #define _GNU_SOURCE
9
10 #include <stdlib.h>
11
12 #include <dlfcn.h>
13
14 #include "mmprivate.h"
15 #include "src/internal_config.h"
16 #include "src/mc/mc_base.h"
17 #include "src/mc/remote/mc_protocol.h"
18 #include "src/xbt_modinter.h"
19 #include <math.h>
20
21 /* ***** Whether to use `mmalloc` of the underlying malloc ***** */
22
23 static int __malloc_use_mmalloc;
24
25 int malloc_use_mmalloc(void)
26 {
27   return __malloc_use_mmalloc;
28 }
29
30 /* ***** Current heap ***** */
31
32 /* The mmalloc() package can use a single implicit malloc descriptor
33    for mmalloc/mrealloc/mfree operations which do not supply an explicit
34    descriptor.  This allows mmalloc() to provide
35    backwards compatibility with the non-mmap'd version. */
36 xbt_mheap_t __mmalloc_default_mdp = NULL;
37
38 /* The heap we are currently using. */
39 static xbt_mheap_t __mmalloc_current_heap = NULL;
40
41 xbt_mheap_t mmalloc_get_current_heap(void)
42 {
43   return __mmalloc_current_heap;
44 }
45
46 xbt_mheap_t mmalloc_set_current_heap(xbt_mheap_t new_heap)
47 {
48   xbt_mheap_t heap = __mmalloc_current_heap;
49   __mmalloc_current_heap = new_heap;
50   return heap;
51 }
52
53 /* Override the malloc-like functions if MC is activated at compile time */
54 #if HAVE_MC
55
56 /* ***** Temporary allocator
57  *
58  * This is used before we have found the real malloc implementation with dlsym.
59  */
60
61 #ifdef __FreeBSD__ /* FreeBSD require more memory, other might */
62 # define BUFFER_SIZE 256
63 #else /* Valid on: Linux */
64 # define BUFFER_SIZE 32
65 #endif
66 static size_t fake_alloc_index;
67 static uint64_t buffer[BUFFER_SIZE];
68
69 /* Fake implementations, they are used to fool dlsym:
70  * dlsym used calloc and falls back to some other mechanism
71  * if this fails.
72  */
73 static void* mm_fake_malloc(size_t n)
74 {
75   // How many uint64_t do w need?
76   size_t count = n / sizeof(uint64_t);
77   if (n % sizeof(uint64_t))
78     count++;
79   // Check that we have enough available memory:
80   if (fake_alloc_index + count >= BUFFER_SIZE)
81     exit(127);
82   // Allocate it:
83   uint64_t* res = buffer + fake_alloc_index;
84   fake_alloc_index += count;
85   return res;
86 }
87
88 static void* mm_fake_calloc(size_t nmemb, size_t size)
89 {
90   // This is fresh .bss data, we don't need to clear it:
91   size_t n = nmemb * size;
92   return mm_fake_malloc(n);
93 }
94
95 static void* mm_fake_realloc(void *p, size_t s)
96 {
97   return mm_fake_malloc(s);
98 }
99
100 static void mm_fake_free(void *p)
101 {
102 }
103
104 /* Function signatures for the main malloc functions: */
105 typedef void* (*mm_malloc_t)(size_t size);
106 typedef void  (*mm_free_t)(void*);
107 typedef void* (*mm_calloc_t)(size_t nmemb, size_t size);
108 typedef void* (*mm_realloc_t)(void *ptr, size_t size);
109
110 /* Function pointers to the real/next implementations: */
111 static mm_malloc_t mm_real_malloc;
112 static mm_free_t mm_real_free;
113 static mm_calloc_t mm_real_calloc;
114 static mm_realloc_t mm_real_realloc;
115
116 static int mm_initializing;
117 static int mm_initialized;
118
119 /** Constructor functions used to initialize the malloc implementation
120  */
121 static void __attribute__((constructor(101))) mm_legacy_constructor()
122 {
123   if (mm_initialized)
124     return;
125   mm_initializing = 1;
126   __malloc_use_mmalloc = getenv(MC_ENV_VARIABLE) ? 1 : 0;
127   if (__malloc_use_mmalloc) {
128     __mmalloc_current_heap = mmalloc_preinit();
129   } else {
130 #if HAVE_DLFUNC
131     mm_real_realloc  = (void *(*)(void *, size_t))dlfunc(RTLD_NEXT, "realloc");
132     mm_real_malloc   = (void *(*)(size_t))dlfunc(RTLD_NEXT, "malloc");
133     mm_real_free     = (void (*)(void *))dlfunc(RTLD_NEXT, "free");
134     mm_real_calloc   = (void *(*)(size_t, size_t))dlfunc(RTLD_NEXT, "calloc");
135 #else
136     mm_real_realloc  = dlsym(RTLD_NEXT, "realloc");
137     mm_real_malloc   = dlsym(RTLD_NEXT, "malloc");
138     mm_real_free     = dlsym(RTLD_NEXT, "free");
139     mm_real_calloc   = dlsym(RTLD_NEXT, "calloc");
140 #endif
141   }
142   mm_initializing = 0;
143   mm_initialized = 1;
144 }
145
146 /* ***** malloc/free implementation
147  *
148  * They call either the underlying/native/RTLD_NEXT implementation (non MC mode)
149  * or the mm implementation (MC mode).
150  *
151  * If we are initializing the malloc subsystem, we call the fake/dummy `malloc`
152  * implementation. This is necessary because `dlsym` calls `malloc` and friends.
153  */
154
155 #define GET_HEAP() __mmalloc_current_heap
156
157 void* malloc_no_memset(size_t n)
158 {
159   if (!mm_initialized) {
160     if (mm_initializing)
161       return mm_fake_malloc(n);
162     mm_legacy_constructor();
163   }
164
165   if (!__malloc_use_mmalloc) {
166     return mm_real_malloc(n);
167   }
168
169   xbt_mheap_t mdp = GET_HEAP();
170   if (!mdp)
171     return NULL;
172
173   LOCK(mdp);
174   void *ret = mmalloc_no_memset(mdp, n);
175   UNLOCK(mdp);
176   return ret;
177 }
178
179 void *malloc(size_t n)
180 {
181   if (!mm_initialized) {
182     if (mm_initializing)
183       return mm_fake_malloc(n);
184     mm_legacy_constructor();
185   }
186
187   if (!__malloc_use_mmalloc) {
188     return mm_real_malloc(n);
189   }
190
191   xbt_mheap_t mdp = GET_HEAP();
192   if (!mdp)
193     return NULL;
194
195   LOCK(mdp);
196   void *ret = mmalloc(mdp, n);
197   UNLOCK(mdp);
198   return ret;
199 }
200
201 void *calloc(size_t nmemb, size_t size)
202 {
203   if (!mm_initialized) {
204     if (mm_initializing)
205       return mm_fake_calloc(nmemb, size);
206     mm_legacy_constructor();
207   }
208
209   if (!__malloc_use_mmalloc) {
210     return mm_real_calloc(nmemb, size);
211   }
212
213   xbt_mheap_t mdp = GET_HEAP();
214   if (!mdp)
215     return NULL;
216
217   LOCK(mdp);
218   void *ret = mmalloc(mdp, nmemb*size);
219   UNLOCK(mdp);
220   // This was already done in the callee:
221   if(!(mdp->options & XBT_MHEAP_OPTION_MEMSET)) {
222     memset(ret, 0, nmemb * size);
223   }
224   return ret;
225 }
226
227 void *realloc(void *p, size_t s)
228 {
229   if (!mm_initialized) {
230     if (mm_initializing)
231       return mm_fake_realloc(p, s);
232     mm_legacy_constructor();
233   }
234
235   if (!__malloc_use_mmalloc) {
236     return mm_real_realloc(p, s);
237   }
238
239   xbt_mheap_t mdp = GET_HEAP();
240   if (!mdp)
241     return NULL;
242
243   LOCK(mdp);
244   void* ret = mrealloc(mdp, p, s);
245   UNLOCK(mdp);
246   return ret;
247 }
248
249 void free(void *p)
250 {
251   if (!mm_initialized) {
252     if (mm_initializing)
253       return mm_fake_free(p);
254     mm_legacy_constructor();
255   }
256
257   if (!__malloc_use_mmalloc) {
258     mm_real_free(p);
259     return;
260   }
261
262   if (!p)
263     return;
264
265   xbt_mheap_t mdp = GET_HEAP();
266   LOCK(mdp);
267   mfree(mdp, p);
268   UNLOCK(mdp);
269 }
270 #endif /* HAVE_MC */