]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/asan/asan_flags.cc
Merge ^/head r317503 through r317807.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / asan / asan_flags.cc
1 //===-- asan_flags.cc -------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file is a part of AddressSanitizer, an address sanity checker.
11 //
12 // ASan flag parsing logic.
13 //===----------------------------------------------------------------------===//
14
15 #include "asan_activation.h"
16 #include "asan_flags.h"
17 #include "asan_interface_internal.h"
18 #include "asan_stack.h"
19 #include "lsan/lsan_common.h"
20 #include "sanitizer_common/sanitizer_common.h"
21 #include "sanitizer_common/sanitizer_flags.h"
22 #include "sanitizer_common/sanitizer_flag_parser.h"
23 #include "ubsan/ubsan_flags.h"
24 #include "ubsan/ubsan_platform.h"
25
26 namespace __asan {
27
28 Flags asan_flags_dont_use_directly;  // use via flags().
29
30 static const char *MaybeCallAsanDefaultOptions() {
31   return (&__asan_default_options) ? __asan_default_options() : "";
32 }
33
34 static const char *MaybeUseAsanDefaultOptionsCompileDefinition() {
35 #ifdef ASAN_DEFAULT_OPTIONS
36 // Stringize the macro value.
37 # define ASAN_STRINGIZE(x) #x
38 # define ASAN_STRINGIZE_OPTIONS(options) ASAN_STRINGIZE(options)
39   return ASAN_STRINGIZE_OPTIONS(ASAN_DEFAULT_OPTIONS);
40 #else
41   return "";
42 #endif
43 }
44
45 void Flags::SetDefaults() {
46 #define ASAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
47 #include "asan_flags.inc"
48 #undef ASAN_FLAG
49 }
50
51 static void RegisterAsanFlags(FlagParser *parser, Flags *f) {
52 #define ASAN_FLAG(Type, Name, DefaultValue, Description) \
53   RegisterFlag(parser, #Name, Description, &f->Name);
54 #include "asan_flags.inc"
55 #undef ASAN_FLAG
56 }
57
58 void InitializeFlags() {
59   // Set the default values and prepare for parsing ASan and common flags.
60   SetCommonFlagsDefaults();
61   {
62     CommonFlags cf;
63     cf.CopyFrom(*common_flags());
64     cf.detect_leaks = cf.detect_leaks && CAN_SANITIZE_LEAKS;
65     cf.external_symbolizer_path = GetEnv("ASAN_SYMBOLIZER_PATH");
66     cf.malloc_context_size = kDefaultMallocContextSize;
67     cf.intercept_tls_get_addr = true;
68     cf.exitcode = 1;
69     OverrideCommonFlags(cf);
70   }
71   Flags *f = flags();
72   f->SetDefaults();
73
74   FlagParser asan_parser;
75   RegisterAsanFlags(&asan_parser, f);
76   RegisterCommonFlags(&asan_parser);
77
78   // Set the default values and prepare for parsing LSan and UBSan flags
79   // (which can also overwrite common flags).
80 #if CAN_SANITIZE_LEAKS
81   __lsan::Flags *lf = __lsan::flags();
82   lf->SetDefaults();
83
84   FlagParser lsan_parser;
85   __lsan::RegisterLsanFlags(&lsan_parser, lf);
86   RegisterCommonFlags(&lsan_parser);
87 #endif
88
89 #if CAN_SANITIZE_UB
90   __ubsan::Flags *uf = __ubsan::flags();
91   uf->SetDefaults();
92
93   FlagParser ubsan_parser;
94   __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
95   RegisterCommonFlags(&ubsan_parser);
96 #endif
97
98   if (SANITIZER_MAC) {
99     // Support macOS MallocScribble and MallocPreScribble:
100     // <https://developer.apple.com/library/content/documentation/Performance/
101     // Conceptual/ManagingMemory/Articles/MallocDebug.html>
102     if (GetEnv("MallocScribble")) {
103       f->max_free_fill_size = 0x1000;
104     }
105     if (GetEnv("MallocPreScribble")) {
106       f->malloc_fill_byte = 0xaa;
107     }
108   }
109
110   // Override from ASan compile definition.
111   const char *asan_compile_def = MaybeUseAsanDefaultOptionsCompileDefinition();
112   asan_parser.ParseString(asan_compile_def);
113
114   // Override from user-specified string.
115   const char *asan_default_options = MaybeCallAsanDefaultOptions();
116   asan_parser.ParseString(asan_default_options);
117 #if CAN_SANITIZE_UB
118   const char *ubsan_default_options = __ubsan::MaybeCallUbsanDefaultOptions();
119   ubsan_parser.ParseString(ubsan_default_options);
120 #endif
121
122   // Override from command line.
123   asan_parser.ParseString(GetEnv("ASAN_OPTIONS"));
124 #if CAN_SANITIZE_LEAKS
125   lsan_parser.ParseString(GetEnv("LSAN_OPTIONS"));
126 #endif
127 #if CAN_SANITIZE_UB
128   ubsan_parser.ParseString(GetEnv("UBSAN_OPTIONS"));
129 #endif
130
131   InitializeCommonFlags();
132
133   // TODO(eugenis): dump all flags at verbosity>=2?
134   if (Verbosity()) ReportUnrecognizedFlags();
135
136   if (common_flags()->help) {
137     // TODO(samsonov): print all of the flags (ASan, LSan, common).
138     asan_parser.PrintFlagDescriptions();
139   }
140
141   // Flag validation:
142   if (!CAN_SANITIZE_LEAKS && common_flags()->detect_leaks) {
143     Report("%s: detect_leaks is not supported on this platform.\n",
144            SanitizerToolName);
145     Die();
146   }
147   // Make "strict_init_order" imply "check_initialization_order".
148   // TODO(samsonov): Use a single runtime flag for an init-order checker.
149   if (f->strict_init_order) {
150     f->check_initialization_order = true;
151   }
152   CHECK_LE((uptr)common_flags()->malloc_context_size, kStackTraceMax);
153   CHECK_LE(f->min_uar_stack_size_log, f->max_uar_stack_size_log);
154   CHECK_GE(f->redzone, 16);
155   CHECK_GE(f->max_redzone, f->redzone);
156   CHECK_LE(f->max_redzone, 2048);
157   CHECK(IsPowerOfTwo(f->redzone));
158   CHECK(IsPowerOfTwo(f->max_redzone));
159
160   // quarantine_size is deprecated but we still honor it.
161   // quarantine_size can not be used together with quarantine_size_mb.
162   if (f->quarantine_size >= 0 && f->quarantine_size_mb >= 0) {
163     Report("%s: please use either 'quarantine_size' (deprecated) or "
164            "quarantine_size_mb, but not both\n", SanitizerToolName);
165     Die();
166   }
167   if (f->quarantine_size >= 0)
168     f->quarantine_size_mb = f->quarantine_size >> 20;
169   if (f->quarantine_size_mb < 0) {
170     const int kDefaultQuarantineSizeMb =
171         (ASAN_LOW_MEMORY) ? 1UL << 4 : 1UL << 8;
172     f->quarantine_size_mb = kDefaultQuarantineSizeMb;
173   }
174   if (f->thread_local_quarantine_size_kb < 0) {
175     const u32 kDefaultThreadLocalQuarantineSizeKb =
176         // It is not advised to go lower than 64Kb, otherwise quarantine batches
177         // pushed from thread local quarantine to global one will create too
178         // much overhead. One quarantine batch size is 8Kb and it  holds up to
179         // 1021 chunk, which amounts to 1/8 memory overhead per batch when
180         // thread local quarantine is set to 64Kb.
181         (ASAN_LOW_MEMORY) ? 1 << 6 : FIRST_32_SECOND_64(1 << 8, 1 << 10);
182     f->thread_local_quarantine_size_kb = kDefaultThreadLocalQuarantineSizeKb;
183   }
184   if (f->thread_local_quarantine_size_kb == 0 && f->quarantine_size_mb > 0) {
185     Report("%s: thread_local_quarantine_size_kb can be set to 0 only when "
186            "quarantine_size_mb is set to 0\n", SanitizerToolName);
187     Die();
188   }
189   if (!f->replace_str && common_flags()->intercept_strlen) {
190     Report("WARNING: strlen interceptor is enabled even though replace_str=0. "
191            "Use intercept_strlen=0 to disable it.");
192   }
193   if (!f->replace_str && common_flags()->intercept_strchr) {
194     Report("WARNING: strchr* interceptors are enabled even though "
195            "replace_str=0. Use intercept_strchr=0 to disable them.");
196   }
197 }
198
199 }  // namespace __asan
200
201 SANITIZER_INTERFACE_WEAK_DEF(const char*, __asan_default_options, void) {
202   return "";
203 }