Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fac98b140d6d69b389f8334446c9cd3e79d55fae
[simgrid.git] / src / xbt / mmalloc / mm_legacy.c
1 /* Copyright (c) 2010-2014. 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 "../../mc/mc_base.h"
15 #include "mmprivate.h"
16 #include "xbt_modinter.h"
17 #include "internal_config.h"
18 #include <math.h>
19 #include "../mc/mc_protocol.h"
20
21 //#define MM_LEGACY_VERBOSE 1 /* define this to see which version of malloc gets used */
22
23 /* The mmalloc() package can use a single implicit malloc descriptor
24    for mmalloc/mrealloc/mfree operations which do not supply an explicit
25    descriptor.  This allows mmalloc() to provide
26    backwards compatibility with the non-mmap'd version. */
27 xbt_mheap_t __mmalloc_default_mdp = NULL;
28
29 static int __malloc_use_mmalloc;
30
31 int malloc_use_mmalloc(void)
32 {
33   return __malloc_use_mmalloc;
34 }
35
36 static xbt_mheap_t __mmalloc_current_heap = NULL;     /* The heap we are currently using. */
37
38 xbt_mheap_t mmalloc_get_current_heap(void)
39 {
40   return __mmalloc_current_heap;
41 }
42
43 xbt_mheap_t mmalloc_set_current_heap(xbt_mheap_t new_heap)
44 {
45   xbt_mheap_t heap = __mmalloc_current_heap;
46   __mmalloc_current_heap = new_heap;
47   return heap;
48 }
49
50 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
51
52 /* Fake implementations, they are used to fool dlsym:
53  * dlsym used calloc and falls back to some other mechanism
54  * if this fails.
55  */
56 static void* mm_fake_calloc(size_t nmemb, size_t size) { return NULL; }
57 static void* mm_fake_malloc(size_t n)                  { return NULL; }
58 static void* mm_fake_realloc(void *p, size_t s)        { return NULL; }
59
60 /* Function signatures for the main malloc functions: */
61 typedef void* (*mm_malloc_t)(size_t size);
62 typedef void  (*mm_free_t)(void*);
63 typedef void* (*mm_calloc_t)(size_t nmemb, size_t size);
64 typedef void* (*mm_realloc_t)(void *ptr, size_t size);
65
66 /* Function pointers to the real/next implementations: */
67 static mm_malloc_t mm_real_malloc   = mm_fake_malloc;
68 static mm_free_t mm_real_free;
69 static mm_calloc_t mm_real_calloc   = mm_fake_calloc;
70 static mm_realloc_t mm_real_realloc = mm_fake_realloc;
71
72 #define GET_HEAP() __mmalloc_current_heap
73
74 /** Constructor functions used to initialize the malloc implementation
75  */
76 static void __attribute__((constructor(101))) mm_legacy_constructor()
77 {
78   __malloc_use_mmalloc = getenv(MC_ENV_VARIABLE) ? 1 : 0;
79   if (__malloc_use_mmalloc) {
80     __mmalloc_current_heap = mmalloc_preinit();
81   } else {
82     mm_real_realloc  = (mm_realloc_t) dlsym(RTLD_NEXT, "realloc");
83     mm_real_malloc   = (mm_malloc_t)  dlsym(RTLD_NEXT, "malloc");
84     mm_real_free     = (mm_free_t)    dlsym(RTLD_NEXT, "free");
85     mm_real_calloc   = (mm_calloc_t)  dlsym(RTLD_NEXT, "calloc");
86   }
87 }
88
89 void* malloc_no_memset(size_t n)
90 {
91   if (!__malloc_use_mmalloc) {
92     return mm_real_malloc(n);
93   }
94
95   xbt_mheap_t mdp = GET_HEAP();
96   if (!mdp)
97     return NULL;
98
99   LOCK(mdp);
100   void *ret = mmalloc_no_memset(mdp, n);
101   UNLOCK(mdp);
102   return ret;
103 }
104
105 void *malloc(size_t n)
106 {
107   if (!__malloc_use_mmalloc) {
108     return mm_real_malloc(n);
109   }
110
111   xbt_mheap_t mdp = GET_HEAP();
112   if (!mdp)
113     return NULL;
114
115   LOCK(mdp);
116   void *ret = mmalloc(mdp, n);
117   UNLOCK(mdp);
118   return ret;
119 }
120
121 void *calloc(size_t nmemb, size_t size)
122 {
123   if (!__malloc_use_mmalloc) {
124     return mm_real_calloc(nmemb, size);
125   }
126
127   xbt_mheap_t mdp = GET_HEAP();
128   if (!mdp)
129     return NULL;
130
131   LOCK(mdp);
132   void *ret = mmalloc(mdp, nmemb*size);
133   UNLOCK(mdp);
134   // This was already done in the callee:
135   if(!(mdp->options & XBT_MHEAP_OPTION_MEMSET)) {
136     memset(ret, 0, nmemb * size);
137   }
138   return ret;
139 }
140
141 void *realloc(void *p, size_t s)
142 {
143   if (!__malloc_use_mmalloc) {
144     return mm_real_realloc(p, s);
145   }
146
147   xbt_mheap_t mdp = GET_HEAP();
148   if (!mdp)
149     return NULL;
150
151   LOCK(mdp);
152   void* ret = mrealloc(mdp, p, s);
153   UNLOCK(mdp);
154   return ret;
155 }
156
157 void free(void *p)
158 {
159   if (!__malloc_use_mmalloc) {
160     mm_real_free(p);
161     return;
162   }
163
164   if (!p)
165     return;
166
167   xbt_mheap_t mdp = GET_HEAP();
168   LOCK(mdp);
169   mfree(mdp, p);
170   UNLOCK(mdp);
171 }
172 #endif /* WANT_MALLOC_OVERRIDE */