2013-11-04 22:33:31 +01:00
|
|
|
//=-- lsan.cc -------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of LeakSanitizer.
|
|
|
|
// Standalone LSan RTL.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lsan.h"
|
|
|
|
|
|
|
|
#include "sanitizer_common/sanitizer_flags.h"
|
|
|
|
#include "sanitizer_common/sanitizer_stacktrace.h"
|
|
|
|
#include "lsan_allocator.h"
|
|
|
|
#include "lsan_common.h"
|
|
|
|
#include "lsan_thread.h"
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
bool lsan_inited;
|
|
|
|
bool lsan_init_is_running;
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
namespace __lsan {
|
|
|
|
|
|
|
|
static void InitializeCommonFlags() {
|
|
|
|
CommonFlags *cf = common_flags();
|
2013-12-05 10:18:38 +01:00
|
|
|
SetCommonFlagsDefaults(cf);
|
2013-11-04 22:33:31 +01:00
|
|
|
cf->external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH");
|
|
|
|
cf->malloc_context_size = 30;
|
|
|
|
cf->detect_leaks = true;
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
ParseCommonFlagsFromString(cf, GetEnv("LSAN_OPTIONS"));
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|
|
|
|
|
2014-05-22 09:09:21 +02:00
|
|
|
///// Interface to the common LSan module. /////
|
|
|
|
bool WordIsPoisoned(uptr addr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
} // namespace __lsan
|
|
|
|
|
|
|
|
using namespace __lsan; // NOLINT
|
|
|
|
|
|
|
|
extern "C" void __lsan_init() {
|
|
|
|
CHECK(!lsan_init_is_running);
|
|
|
|
if (lsan_inited)
|
2013-11-04 22:33:31 +01:00
|
|
|
return;
|
2013-12-05 10:18:38 +01:00
|
|
|
lsan_init_is_running = true;
|
2013-11-04 22:33:31 +01:00
|
|
|
SanitizerToolName = "LeakSanitizer";
|
|
|
|
InitializeCommonFlags();
|
|
|
|
InitializeAllocator();
|
|
|
|
InitTlsSize();
|
|
|
|
InitializeInterceptors();
|
|
|
|
InitializeThreadRegistry();
|
|
|
|
u32 tid = ThreadCreate(0, 0, true);
|
|
|
|
CHECK_EQ(tid, 0);
|
|
|
|
ThreadStart(tid, GetTid());
|
|
|
|
SetCurrentThread(tid);
|
|
|
|
|
2014-05-22 09:09:21 +02:00
|
|
|
Symbolizer::Init(common_flags()->external_symbolizer_path);
|
2013-11-04 22:33:31 +01:00
|
|
|
|
|
|
|
InitCommonLsan();
|
|
|
|
if (common_flags()->detect_leaks && common_flags()->leak_check_at_exit)
|
|
|
|
Atexit(DoLeakCheck);
|
2013-12-05 10:18:38 +01:00
|
|
|
lsan_inited = true;
|
|
|
|
lsan_init_is_running = false;
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|