1 //=-- lsan.cc -------------------------------------------------------------===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // This file is a part of LeakSanitizer.
9 // Standalone LSan RTL.
11 //===----------------------------------------------------------------------===//
15 #include "sanitizer_common/sanitizer_flags.h"
16 #include "sanitizer_common/sanitizer_flag_parser.h"
17 #include "sanitizer_common/sanitizer_stacktrace.h"
18 #include "lsan_allocator.h"
19 #include "lsan_common.h"
20 #include "lsan_thread.h"
23 bool lsan_init_is_running
;
27 ///// Interface to the common LSan module. /////
28 bool WordIsPoisoned(uptr addr
) {
34 using namespace __lsan
; // NOLINT
36 static void InitializeFlags() {
37 // Set all the default values.
38 SetCommonFlagsDefaults();
41 cf
.CopyFrom(*common_flags());
42 cf
.external_symbolizer_path
= GetEnv("LSAN_SYMBOLIZER_PATH");
43 cf
.malloc_context_size
= 30;
44 cf
.detect_leaks
= true;
46 OverrideCommonFlags(cf
);
53 RegisterLsanFlags(&parser
, f
);
54 RegisterCommonFlags(&parser
);
56 parser
.ParseString(GetEnv("LSAN_OPTIONS"));
58 SetVerbosity(common_flags()->verbosity
);
60 if (Verbosity()) ReportUnrecognizedFlags();
62 if (common_flags()->help
) parser
.PrintFlagDescriptions();
65 extern "C" void __lsan_init() {
66 CHECK(!lsan_init_is_running
);
69 lsan_init_is_running
= true;
70 SanitizerToolName
= "LeakSanitizer";
74 InitializeAllocator();
76 InitializeInterceptors();
77 InitializeThreadRegistry();
78 u32 tid
= ThreadCreate(0, 0, true);
80 ThreadStart(tid
, GetTid());
81 SetCurrentThread(tid
);
83 if (common_flags()->detect_leaks
&& common_flags()->leak_check_at_exit
)
86 InitializeCoverage(common_flags()->coverage
, common_flags()->coverage_dir
);
89 lsan_init_is_running
= false;
92 extern "C" SANITIZER_INTERFACE_ATTRIBUTE
93 void __sanitizer_print_stack_trace() {
94 GET_STACK_TRACE_FATAL
;