2012-11-12 16:53:47 +01:00
|
|
|
//===-- asan_malloc_linux.cc ----------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
|
|
//
|
|
|
|
// Linux-specific malloc interception.
|
|
|
|
// We simply define functions like malloc, free, realloc, etc.
|
|
|
|
// They will replace the corresponding libc functions automagically.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2013-11-04 22:33:31 +01:00
|
|
|
|
|
|
|
#include "sanitizer_common/sanitizer_platform.h"
|
|
|
|
#if SANITIZER_LINUX
|
2012-11-12 16:53:47 +01:00
|
|
|
|
|
|
|
#include "asan_allocator.h"
|
|
|
|
#include "asan_interceptors.h"
|
|
|
|
#include "asan_internal.h"
|
|
|
|
#include "asan_stack.h"
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
#if SANITIZER_ANDROID
|
2012-11-12 16:53:47 +01:00
|
|
|
DECLARE_REAL_AND_INTERCEPTOR(void*, malloc, uptr size)
|
|
|
|
DECLARE_REAL_AND_INTERCEPTOR(void, free, void *ptr)
|
|
|
|
DECLARE_REAL_AND_INTERCEPTOR(void*, calloc, uptr nmemb, uptr size)
|
|
|
|
DECLARE_REAL_AND_INTERCEPTOR(void*, realloc, void *ptr, uptr size)
|
|
|
|
DECLARE_REAL_AND_INTERCEPTOR(void*, memalign, uptr boundary, uptr size)
|
|
|
|
|
|
|
|
struct MallocDebug {
|
|
|
|
void* (*malloc)(uptr bytes);
|
|
|
|
void (*free)(void* mem);
|
|
|
|
void* (*calloc)(uptr n_elements, uptr elem_size);
|
|
|
|
void* (*realloc)(void* oldMem, uptr bytes);
|
|
|
|
void* (*memalign)(uptr alignment, uptr bytes);
|
|
|
|
};
|
|
|
|
|
|
|
|
const MallocDebug asan_malloc_dispatch ALIGNED(32) = {
|
|
|
|
WRAP(malloc), WRAP(free), WRAP(calloc), WRAP(realloc), WRAP(memalign)
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" const MallocDebug* __libc_malloc_dispatch;
|
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
void ReplaceSystemMalloc() {
|
|
|
|
__libc_malloc_dispatch = &asan_malloc_dispatch;
|
|
|
|
}
|
|
|
|
} // namespace __asan
|
|
|
|
|
|
|
|
#else // ANDROID
|
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
void ReplaceSystemMalloc() {
|
|
|
|
}
|
|
|
|
} // namespace __asan
|
|
|
|
#endif // ANDROID
|
|
|
|
|
|
|
|
// ---------------------- Replacement functions ---------------- {{{1
|
|
|
|
using namespace __asan; // NOLINT
|
|
|
|
|
|
|
|
INTERCEPTOR(void, free, void *ptr) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_FREE;
|
|
|
|
asan_free(ptr, &stack, FROM_MALLOC);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void, cfree, void *ptr) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_FREE;
|
|
|
|
asan_free(ptr, &stack, FROM_MALLOC);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, malloc, uptr size) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
2012-11-12 16:53:47 +01:00
|
|
|
return asan_malloc(size, &stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
|
|
|
|
if (!asan_inited) {
|
|
|
|
// Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
|
|
|
|
const uptr kCallocPoolSize = 1024;
|
|
|
|
static uptr calloc_memory_for_dlsym[kCallocPoolSize];
|
|
|
|
static uptr allocated;
|
|
|
|
uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
|
|
|
|
void *mem = (void*)&calloc_memory_for_dlsym[allocated];
|
|
|
|
allocated += size_in_words;
|
|
|
|
CHECK(allocated < kCallocPoolSize);
|
|
|
|
return mem;
|
|
|
|
}
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
2012-11-12 16:53:47 +01:00
|
|
|
return asan_calloc(nmemb, size, &stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
2012-11-12 16:53:47 +01:00
|
|
|
return asan_realloc(ptr, size, &stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
|
|
|
return asan_memalign(boundary, size, &stack, FROM_MALLOC);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, __libc_memalign, uptr align, uptr s)
|
|
|
|
ALIAS("memalign");
|
|
|
|
|
|
|
|
INTERCEPTOR(uptr, malloc_usable_size, void *ptr) {
|
2013-12-05 10:18:38 +01:00
|
|
|
GET_CURRENT_PC_BP_SP;
|
|
|
|
(void)sp;
|
|
|
|
return asan_malloc_usable_size(ptr, pc, bp);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// We avoid including malloc.h for portability reasons.
|
|
|
|
// man mallinfo says the fields are "long", but the implementation uses int.
|
|
|
|
// It doesn't matter much -- we just need to make sure that the libc's mallinfo
|
|
|
|
// is not called.
|
|
|
|
struct fake_mallinfo {
|
|
|
|
int x[10];
|
|
|
|
};
|
|
|
|
|
|
|
|
INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
|
|
|
|
struct fake_mallinfo res;
|
|
|
|
REAL(memset)(&res, 0, sizeof(res));
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(int, mallopt, int cmd, int value) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
2012-11-12 16:53:47 +01:00
|
|
|
// Printf("posix_memalign: %zx %zu\n", alignment, size);
|
|
|
|
return asan_posix_memalign(memptr, alignment, size, &stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, valloc, uptr size) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
2012-11-12 16:53:47 +01:00
|
|
|
return asan_valloc(size, &stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
INTERCEPTOR(void*, pvalloc, uptr size) {
|
2013-01-10 13:44:08 +01:00
|
|
|
GET_STACK_TRACE_MALLOC;
|
2012-11-12 16:53:47 +01:00
|
|
|
return asan_pvalloc(size, &stack);
|
|
|
|
}
|
|
|
|
|
2013-01-10 13:44:08 +01:00
|
|
|
INTERCEPTOR(void, malloc_stats, void) {
|
|
|
|
__asan_print_accumulated_stats();
|
|
|
|
}
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
#endif // SANITIZER_LINUX
|