1 //=-- lsan_interceptors.cc ------------------------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file is a part of LeakSanitizer.
11 // Interceptors for standalone LSan.
13 //===----------------------------------------------------------------------===//
15 #include "sanitizer_common/sanitizer_allocator.h"
16 #include "sanitizer_common/sanitizer_atomic.h"
17 #include "sanitizer_common/sanitizer_common.h"
18 #include "sanitizer_common/sanitizer_flags.h"
19 #include "sanitizer_common/sanitizer_interception.h"
20 #include "sanitizer_common/sanitizer_internal_defs.h"
21 #include "sanitizer_common/sanitizer_linux.h"
22 #include "sanitizer_common/sanitizer_platform_limits_posix.h"
24 #include "lsan_allocator.h"
25 #include "lsan_thread.h"
27 using namespace __lsan
;
30 int pthread_attr_init(void *attr
);
31 int pthread_attr_destroy(void *attr
);
32 int pthread_attr_getdetachstate(void *attr
, int *v
);
33 int pthread_key_create(unsigned *key
, void (*destructor
)(void* v
));
34 int pthread_setspecific(unsigned key
, const void *v
);
37 #define GET_STACK_TRACE \
40 uptr stack_top = 0, stack_bottom = 0; \
42 bool fast = common_flags()->fast_unwind_on_malloc; \
43 if (fast && (t = CurrentThreadContext())) { \
44 stack_top = t->stack_end(); \
45 stack_bottom = t->stack_begin(); \
47 stack.Unwind(__sanitizer::common_flags()->malloc_context_size, \
48 StackTrace::GetCurrentPc(), \
49 GET_CURRENT_FRAME(), stack_top, stack_bottom, fast); \
52 #define ENSURE_LSAN_INITED do { \
53 CHECK(!lsan_init_is_running); \
58 ///// Malloc/free interceptors. /////
60 const bool kAlwaysClearMemory
= true;
66 INTERCEPTOR(void*, malloc
, uptr size
) {
69 return Allocate(stack
, size
, 1, kAlwaysClearMemory
);
72 INTERCEPTOR(void, free
, void *p
) {
77 INTERCEPTOR(void*, calloc
, uptr nmemb
, uptr size
) {
78 if (lsan_init_is_running
) {
79 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
80 const uptr kCallocPoolSize
= 1024;
81 static uptr calloc_memory_for_dlsym
[kCallocPoolSize
];
82 static uptr allocated
;
83 uptr size_in_words
= ((nmemb
* size
) + kWordSize
- 1) / kWordSize
;
84 void *mem
= (void*)&calloc_memory_for_dlsym
[allocated
];
85 allocated
+= size_in_words
;
86 CHECK(allocated
< kCallocPoolSize
);
89 if (CallocShouldReturnNullDueToOverflow(size
, nmemb
)) return 0;
93 return Allocate(stack
, size
, 1, true);
96 INTERCEPTOR(void*, realloc
, void *q
, uptr size
) {
99 return Reallocate(stack
, q
, size
, 1);
102 INTERCEPTOR(void*, memalign
, uptr alignment
, uptr size
) {
105 return Allocate(stack
, size
, alignment
, kAlwaysClearMemory
);
108 INTERCEPTOR(int, posix_memalign
, void **memptr
, uptr alignment
, uptr size
) {
111 *memptr
= Allocate(stack
, size
, alignment
, kAlwaysClearMemory
);
112 // FIXME: Return ENOMEM if user requested more than max alloc size.
116 INTERCEPTOR(void*, valloc
, uptr size
) {
120 size
= GetPageSizeCached();
121 return Allocate(stack
, size
, GetPageSizeCached(), kAlwaysClearMemory
);
124 INTERCEPTOR(uptr
, malloc_usable_size
, void *ptr
) {
126 return GetMallocUsableSize(ptr
);
129 struct fake_mallinfo
{
133 INTERCEPTOR(struct fake_mallinfo
, mallinfo
, void) {
134 struct fake_mallinfo res
;
135 internal_memset(&res
, 0, sizeof(res
));
139 INTERCEPTOR(int, mallopt
, int cmd
, int value
) {
143 INTERCEPTOR(void*, pvalloc
, uptr size
) {
146 uptr PageSize
= GetPageSizeCached();
147 size
= RoundUpTo(size
, PageSize
);
149 // pvalloc(0) should allocate one page.
152 return Allocate(stack
, size
, GetPageSizeCached(), kAlwaysClearMemory
);
155 INTERCEPTOR(void, cfree
, void *p
) ALIAS("free");
157 #define OPERATOR_NEW_BODY \
158 ENSURE_LSAN_INITED; \
160 return Allocate(stack, size, 1, kAlwaysClearMemory);
162 INTERCEPTOR_ATTRIBUTE
163 void *operator new(uptr size
) { OPERATOR_NEW_BODY
; }
164 INTERCEPTOR_ATTRIBUTE
165 void *operator new[](uptr size
) { OPERATOR_NEW_BODY
; }
166 INTERCEPTOR_ATTRIBUTE
167 void *operator new(uptr size
, std::nothrow_t
const&) { OPERATOR_NEW_BODY
; }
168 INTERCEPTOR_ATTRIBUTE
169 void *operator new[](uptr size
, std::nothrow_t
const&) { OPERATOR_NEW_BODY
; }
171 #define OPERATOR_DELETE_BODY \
172 ENSURE_LSAN_INITED; \
175 INTERCEPTOR_ATTRIBUTE
176 void operator delete(void *ptr
) { OPERATOR_DELETE_BODY
; }
177 INTERCEPTOR_ATTRIBUTE
178 void operator delete[](void *ptr
) { OPERATOR_DELETE_BODY
; }
179 INTERCEPTOR_ATTRIBUTE
180 void operator delete(void *ptr
, std::nothrow_t
const&) { OPERATOR_DELETE_BODY
; }
181 INTERCEPTOR_ATTRIBUTE
182 void operator delete[](void *ptr
, std::nothrow_t
const &) {
183 OPERATOR_DELETE_BODY
;
186 // We need this to intercept the __libc_memalign calls that are used to
187 // allocate dynamic TLS space in ld-linux.so.
188 INTERCEPTOR(void *, __libc_memalign
, uptr align
, uptr s
) ALIAS("memalign");
190 ///// Thread initialization and finalization. /////
192 static unsigned g_thread_finalize_key
;
194 static void thread_finalize(void *v
) {
197 if (pthread_setspecific(g_thread_finalize_key
, (void*)(iter
- 1))) {
198 Report("LeakSanitizer: failed to set thread key.\n");
207 void *(*callback
)(void *arg
);
209 atomic_uintptr_t tid
;
212 extern "C" void *__lsan_thread_start_func(void *arg
) {
213 ThreadParam
*p
= (ThreadParam
*)arg
;
214 void* (*callback
)(void *arg
) = p
->callback
;
215 void *param
= p
->param
;
216 // Wait until the last iteration to maximize the chance that we are the last
217 // destructor to run.
218 if (pthread_setspecific(g_thread_finalize_key
,
219 (void*)kPthreadDestructorIterations
)) {
220 Report("LeakSanitizer: failed to set thread key.\n");
224 while ((tid
= atomic_load(&p
->tid
, memory_order_acquire
)) == 0)
225 internal_sched_yield();
226 atomic_store(&p
->tid
, 0, memory_order_release
);
227 SetCurrentThread(tid
);
228 ThreadStart(tid
, GetTid());
229 return callback(param
);
232 INTERCEPTOR(int, pthread_create
, void *th
, void *attr
,
233 void *(*callback
)(void *), void *param
) {
235 EnsureMainThreadIDIsCorrect();
236 __sanitizer_pthread_attr_t myattr
;
238 pthread_attr_init(&myattr
);
241 AdjustStackSizeLinux(attr
);
243 pthread_attr_getdetachstate(attr
, &detached
);
245 p
.callback
= callback
;
247 atomic_store(&p
.tid
, 0, memory_order_relaxed
);
248 int res
= REAL(pthread_create
)(th
, attr
, __lsan_thread_start_func
, &p
);
250 int tid
= ThreadCreate(GetCurrentThread(), *(uptr
*)th
, detached
);
252 atomic_store(&p
.tid
, tid
, memory_order_release
);
253 while (atomic_load(&p
.tid
, memory_order_acquire
) != 0)
254 internal_sched_yield();
257 pthread_attr_destroy(&myattr
);
261 INTERCEPTOR(int, pthread_join
, void *th
, void **ret
) {
263 int tid
= ThreadTid((uptr
)th
);
264 int res
= REAL(pthread_join
)(th
, ret
);
272 void InitializeInterceptors() {
273 INTERCEPT_FUNCTION(malloc
);
274 INTERCEPT_FUNCTION(free
);
275 INTERCEPT_FUNCTION(cfree
);
276 INTERCEPT_FUNCTION(calloc
);
277 INTERCEPT_FUNCTION(realloc
);
278 INTERCEPT_FUNCTION(memalign
);
279 INTERCEPT_FUNCTION(posix_memalign
);
280 INTERCEPT_FUNCTION(__libc_memalign
);
281 INTERCEPT_FUNCTION(valloc
);
282 INTERCEPT_FUNCTION(pvalloc
);
283 INTERCEPT_FUNCTION(malloc_usable_size
);
284 INTERCEPT_FUNCTION(mallinfo
);
285 INTERCEPT_FUNCTION(mallopt
);
286 INTERCEPT_FUNCTION(pthread_create
);
287 INTERCEPT_FUNCTION(pthread_join
);
289 if (pthread_key_create(&g_thread_finalize_key
, &thread_finalize
)) {
290 Report("LeakSanitizer: failed to create thread key.\n");
295 } // namespace __lsan