xref: /freebsd/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.h (revision bdd1243df58e60e85101c09001d9812a789b6bc4)
10b57cec5SDimitry Andric //=-- lsan_common.h -------------------------------------------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // This file is a part of LeakSanitizer.
100b57cec5SDimitry Andric // Private LSan header.
110b57cec5SDimitry Andric //
120b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
130b57cec5SDimitry Andric 
140b57cec5SDimitry Andric #ifndef LSAN_COMMON_H
150b57cec5SDimitry Andric #define LSAN_COMMON_H
160b57cec5SDimitry Andric 
170b57cec5SDimitry Andric #include "sanitizer_common/sanitizer_allocator.h"
180b57cec5SDimitry Andric #include "sanitizer_common/sanitizer_common.h"
190b57cec5SDimitry Andric #include "sanitizer_common/sanitizer_internal_defs.h"
200b57cec5SDimitry Andric #include "sanitizer_common/sanitizer_platform.h"
21349cc55cSDimitry Andric #include "sanitizer_common/sanitizer_stackdepot.h"
220b57cec5SDimitry Andric #include "sanitizer_common/sanitizer_stoptheworld.h"
230b57cec5SDimitry Andric #include "sanitizer_common/sanitizer_symbolizer.h"
24*bdd1243dSDimitry Andric #include "sanitizer_common/sanitizer_thread_registry.h"
250b57cec5SDimitry Andric 
260b57cec5SDimitry Andric // LeakSanitizer relies on some Glibc's internals (e.g. TLS machinery) on Linux.
270b57cec5SDimitry Andric // Also, LSan doesn't like 32 bit architectures
280b57cec5SDimitry Andric // because of "small" (4 bytes) pointer size that leads to high false negative
290b57cec5SDimitry Andric // ratio on large leaks. But we still want to have it for some 32 bit arches
300b57cec5SDimitry Andric // (e.g. x86), see https://github.com/google/sanitizers/issues/403.
310b57cec5SDimitry Andric // To enable LeakSanitizer on a new architecture, one needs to implement the
320b57cec5SDimitry Andric // internal_clone function as well as (probably) adjust the TLS machinery for
330b57cec5SDimitry Andric // the new architecture inside the sanitizer library.
34e8d8bef9SDimitry Andric // Exclude leak-detection on arm32 for Android because `__aeabi_read_tp`
35e8d8bef9SDimitry Andric // is missing. This caused a link error.
36e8d8bef9SDimitry Andric #if SANITIZER_ANDROID && (__ANDROID_API__ < 28 || defined(__arm__))
37e8d8bef9SDimitry Andric #  define CAN_SANITIZE_LEAKS 0
3881ad6265SDimitry Andric #elif (SANITIZER_LINUX || SANITIZER_APPLE) && (SANITIZER_WORDSIZE == 64) && \
390b57cec5SDimitry Andric     (defined(__x86_64__) || defined(__mips64) || defined(__aarch64__) ||  \
405ffd83dbSDimitry Andric      defined(__powerpc64__) || defined(__s390x__))
410b57cec5SDimitry Andric #  define CAN_SANITIZE_LEAKS 1
4281ad6265SDimitry Andric #elif defined(__i386__) && (SANITIZER_LINUX || SANITIZER_APPLE)
430b57cec5SDimitry Andric #  define CAN_SANITIZE_LEAKS 1
44e8d8bef9SDimitry Andric #elif defined(__arm__) && SANITIZER_LINUX
450b57cec5SDimitry Andric #  define CAN_SANITIZE_LEAKS 1
46*bdd1243dSDimitry Andric #elif SANITIZER_LOONGARCH64 && SANITIZER_LINUX
47*bdd1243dSDimitry Andric #  define CAN_SANITIZE_LEAKS 1
48fe6060f1SDimitry Andric #elif SANITIZER_RISCV64 && SANITIZER_LINUX
49fe6060f1SDimitry Andric #  define CAN_SANITIZE_LEAKS 1
505ffd83dbSDimitry Andric #elif SANITIZER_NETBSD || SANITIZER_FUCHSIA
510b57cec5SDimitry Andric #  define CAN_SANITIZE_LEAKS 1
520b57cec5SDimitry Andric #else
530b57cec5SDimitry Andric #  define CAN_SANITIZE_LEAKS 0
540b57cec5SDimitry Andric #endif
550b57cec5SDimitry Andric 
560b57cec5SDimitry Andric namespace __sanitizer {
570b57cec5SDimitry Andric class FlagParser;
580b57cec5SDimitry Andric class ThreadRegistry;
59e8d8bef9SDimitry Andric class ThreadContextBase;
600b57cec5SDimitry Andric struct DTLS;
610b57cec5SDimitry Andric }
620b57cec5SDimitry Andric 
63*bdd1243dSDimitry Andric // This section defines function and class prototypes which must be implemented
64*bdd1243dSDimitry Andric // by the parent tool linking in LSan. There are implementations provided by the
65*bdd1243dSDimitry Andric // LSan library which will be linked in when LSan is used as a standalone tool.
660b57cec5SDimitry Andric namespace __lsan {
670b57cec5SDimitry Andric 
680b57cec5SDimitry Andric // Chunk tags.
690b57cec5SDimitry Andric enum ChunkTag {
700b57cec5SDimitry Andric   kDirectlyLeaked = 0,  // default
710b57cec5SDimitry Andric   kIndirectlyLeaked = 1,
720b57cec5SDimitry Andric   kReachable = 2,
730b57cec5SDimitry Andric   kIgnored = 3
740b57cec5SDimitry Andric };
750b57cec5SDimitry Andric 
76*bdd1243dSDimitry Andric enum IgnoreObjectResult {
77*bdd1243dSDimitry Andric   kIgnoreObjectSuccess,
78*bdd1243dSDimitry Andric   kIgnoreObjectAlreadyIgnored,
79*bdd1243dSDimitry Andric   kIgnoreObjectInvalid
80*bdd1243dSDimitry Andric };
81*bdd1243dSDimitry Andric 
82*bdd1243dSDimitry Andric struct Range {
83*bdd1243dSDimitry Andric   uptr begin;
84*bdd1243dSDimitry Andric   uptr end;
85*bdd1243dSDimitry Andric };
86*bdd1243dSDimitry Andric 
87*bdd1243dSDimitry Andric //// --------------------------------------------------------------------------
88*bdd1243dSDimitry Andric //// Poisoning prototypes.
89*bdd1243dSDimitry Andric //// --------------------------------------------------------------------------
90*bdd1243dSDimitry Andric 
91*bdd1243dSDimitry Andric // Returns true if [addr, addr + sizeof(void *)) is poisoned.
92*bdd1243dSDimitry Andric bool WordIsPoisoned(uptr addr);
93*bdd1243dSDimitry Andric 
94*bdd1243dSDimitry Andric //// --------------------------------------------------------------------------
95*bdd1243dSDimitry Andric //// Thread prototypes.
96*bdd1243dSDimitry Andric //// --------------------------------------------------------------------------
97*bdd1243dSDimitry Andric 
98*bdd1243dSDimitry Andric // Wrappers for ThreadRegistry access.
99*bdd1243dSDimitry Andric void LockThreadRegistry() SANITIZER_NO_THREAD_SAFETY_ANALYSIS;
100*bdd1243dSDimitry Andric void UnlockThreadRegistry() SANITIZER_NO_THREAD_SAFETY_ANALYSIS;
101*bdd1243dSDimitry Andric // If called from the main thread, updates the main thread's TID in the thread
102*bdd1243dSDimitry Andric // registry. We need this to handle processes that fork() without a subsequent
103*bdd1243dSDimitry Andric // exec(), which invalidates the recorded TID. To update it, we must call
104*bdd1243dSDimitry Andric // gettid() from the main thread. Our solution is to call this function before
105*bdd1243dSDimitry Andric // leak checking and also before every call to pthread_create() (to handle cases
106*bdd1243dSDimitry Andric // where leak checking is initiated from a non-main thread).
107*bdd1243dSDimitry Andric void EnsureMainThreadIDIsCorrect();
108*bdd1243dSDimitry Andric 
109*bdd1243dSDimitry Andric bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
110*bdd1243dSDimitry Andric                            uptr *tls_begin, uptr *tls_end, uptr *cache_begin,
111*bdd1243dSDimitry Andric                            uptr *cache_end, DTLS **dtls);
112*bdd1243dSDimitry Andric void GetAllThreadAllocatorCachesLocked(InternalMmapVector<uptr> *caches);
113*bdd1243dSDimitry Andric void GetThreadExtraStackRangesLocked(InternalMmapVector<Range> *ranges);
114*bdd1243dSDimitry Andric void GetThreadExtraStackRangesLocked(tid_t os_id,
115*bdd1243dSDimitry Andric                                      InternalMmapVector<Range> *ranges);
116*bdd1243dSDimitry Andric void GetAdditionalThreadContextPtrsLocked(InternalMmapVector<uptr> *ptrs);
117*bdd1243dSDimitry Andric void GetRunningThreadsLocked(InternalMmapVector<tid_t> *threads);
118*bdd1243dSDimitry Andric 
119*bdd1243dSDimitry Andric //// --------------------------------------------------------------------------
120*bdd1243dSDimitry Andric //// Allocator prototypes.
121*bdd1243dSDimitry Andric //// --------------------------------------------------------------------------
122*bdd1243dSDimitry Andric 
123*bdd1243dSDimitry Andric // Wrappers for allocator's ForceLock()/ForceUnlock().
124*bdd1243dSDimitry Andric void LockAllocator();
125*bdd1243dSDimitry Andric void UnlockAllocator();
126*bdd1243dSDimitry Andric 
127*bdd1243dSDimitry Andric // Returns the address range occupied by the global allocator object.
128*bdd1243dSDimitry Andric void GetAllocatorGlobalRange(uptr *begin, uptr *end);
129*bdd1243dSDimitry Andric // If p points into a chunk that has been allocated to the user, returns its
130*bdd1243dSDimitry Andric // user-visible address. Otherwise, returns 0.
131*bdd1243dSDimitry Andric uptr PointsIntoChunk(void *p);
132*bdd1243dSDimitry Andric // Returns address of user-visible chunk contained in this allocator chunk.
133*bdd1243dSDimitry Andric uptr GetUserBegin(uptr chunk);
134*bdd1243dSDimitry Andric 
135*bdd1243dSDimitry Andric // Wrapper for chunk metadata operations.
136*bdd1243dSDimitry Andric class LsanMetadata {
137*bdd1243dSDimitry Andric  public:
138*bdd1243dSDimitry Andric   // Constructor accepts address of user-visible chunk.
139*bdd1243dSDimitry Andric   explicit LsanMetadata(uptr chunk);
140*bdd1243dSDimitry Andric   bool allocated() const;
141*bdd1243dSDimitry Andric   ChunkTag tag() const;
142*bdd1243dSDimitry Andric   void set_tag(ChunkTag value);
143*bdd1243dSDimitry Andric   uptr requested_size() const;
144*bdd1243dSDimitry Andric   u32 stack_trace_id() const;
145*bdd1243dSDimitry Andric 
146*bdd1243dSDimitry Andric  private:
147*bdd1243dSDimitry Andric   void *metadata_;
148*bdd1243dSDimitry Andric };
149*bdd1243dSDimitry Andric 
150*bdd1243dSDimitry Andric // Iterate over all existing chunks. Allocator must be locked.
151*bdd1243dSDimitry Andric void ForEachChunk(ForEachChunkCallback callback, void *arg);
152*bdd1243dSDimitry Andric 
153*bdd1243dSDimitry Andric // Helper for __lsan_ignore_object().
154*bdd1243dSDimitry Andric IgnoreObjectResult IgnoreObjectLocked(const void *p);
155*bdd1243dSDimitry Andric 
156*bdd1243dSDimitry Andric // The rest of the LSan interface which is implemented by library.
157*bdd1243dSDimitry Andric 
158*bdd1243dSDimitry Andric struct ScopedStopTheWorldLock {
159*bdd1243dSDimitry Andric   ScopedStopTheWorldLock() {
160*bdd1243dSDimitry Andric     LockThreadRegistry();
161*bdd1243dSDimitry Andric     LockAllocator();
162*bdd1243dSDimitry Andric   }
163*bdd1243dSDimitry Andric 
164*bdd1243dSDimitry Andric   ~ScopedStopTheWorldLock() {
165*bdd1243dSDimitry Andric     UnlockAllocator();
166*bdd1243dSDimitry Andric     UnlockThreadRegistry();
167*bdd1243dSDimitry Andric   }
168*bdd1243dSDimitry Andric 
169*bdd1243dSDimitry Andric   ScopedStopTheWorldLock &operator=(const ScopedStopTheWorldLock &) = delete;
170*bdd1243dSDimitry Andric   ScopedStopTheWorldLock(const ScopedStopTheWorldLock &) = delete;
171*bdd1243dSDimitry Andric };
172*bdd1243dSDimitry Andric 
1730b57cec5SDimitry Andric struct Flags {
1740b57cec5SDimitry Andric #define LSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
1750b57cec5SDimitry Andric #include "lsan_flags.inc"
1760b57cec5SDimitry Andric #undef LSAN_FLAG
1770b57cec5SDimitry Andric 
1780b57cec5SDimitry Andric   void SetDefaults();
1790b57cec5SDimitry Andric   uptr pointer_alignment() const {
1800b57cec5SDimitry Andric     return use_unaligned ? 1 : sizeof(uptr);
1810b57cec5SDimitry Andric   }
1820b57cec5SDimitry Andric };
1830b57cec5SDimitry Andric 
1840b57cec5SDimitry Andric extern Flags lsan_flags;
1850b57cec5SDimitry Andric inline Flags *flags() { return &lsan_flags; }
1860b57cec5SDimitry Andric void RegisterLsanFlags(FlagParser *parser, Flags *f);
1870b57cec5SDimitry Andric 
1880eae32dcSDimitry Andric struct LeakedChunk {
1890eae32dcSDimitry Andric   uptr chunk;
1900eae32dcSDimitry Andric   u32 stack_trace_id;
1910eae32dcSDimitry Andric   uptr leaked_size;
1920eae32dcSDimitry Andric   ChunkTag tag;
1930eae32dcSDimitry Andric };
1940eae32dcSDimitry Andric 
1950eae32dcSDimitry Andric using LeakedChunks = InternalMmapVector<LeakedChunk>;
1960eae32dcSDimitry Andric 
1970b57cec5SDimitry Andric struct Leak {
1980b57cec5SDimitry Andric   u32 id;
1990b57cec5SDimitry Andric   uptr hit_count;
2000b57cec5SDimitry Andric   uptr total_size;
2010b57cec5SDimitry Andric   u32 stack_trace_id;
2020b57cec5SDimitry Andric   bool is_directly_leaked;
2030b57cec5SDimitry Andric   bool is_suppressed;
2040b57cec5SDimitry Andric };
2050b57cec5SDimitry Andric 
2060b57cec5SDimitry Andric struct LeakedObject {
2070b57cec5SDimitry Andric   u32 leak_id;
2080b57cec5SDimitry Andric   uptr addr;
2090b57cec5SDimitry Andric   uptr size;
2100b57cec5SDimitry Andric };
2110b57cec5SDimitry Andric 
2120b57cec5SDimitry Andric // Aggregates leaks by stack trace prefix.
2130b57cec5SDimitry Andric class LeakReport {
2140b57cec5SDimitry Andric  public:
2150b57cec5SDimitry Andric   LeakReport() {}
2160eae32dcSDimitry Andric   void AddLeakedChunks(const LeakedChunks &chunks);
2170b57cec5SDimitry Andric   void ReportTopLeaks(uptr max_leaks);
2180b57cec5SDimitry Andric   void PrintSummary();
219e8d8bef9SDimitry Andric   uptr ApplySuppressions();
2200b57cec5SDimitry Andric   uptr UnsuppressedLeakCount();
221e8d8bef9SDimitry Andric   uptr IndirectUnsuppressedLeakCount();
2220b57cec5SDimitry Andric 
2230b57cec5SDimitry Andric  private:
2240b57cec5SDimitry Andric   void PrintReportForLeak(uptr index);
2250b57cec5SDimitry Andric   void PrintLeakedObjectsForLeak(uptr index);
2260b57cec5SDimitry Andric 
2270b57cec5SDimitry Andric   u32 next_id_ = 0;
2280b57cec5SDimitry Andric   InternalMmapVector<Leak> leaks_;
2290b57cec5SDimitry Andric   InternalMmapVector<LeakedObject> leaked_objects_;
2300b57cec5SDimitry Andric };
2310b57cec5SDimitry Andric 
2320b57cec5SDimitry Andric typedef InternalMmapVector<uptr> Frontier;
2330b57cec5SDimitry Andric 
2340b57cec5SDimitry Andric // Platform-specific functions.
2350b57cec5SDimitry Andric void InitializePlatformSpecificModules();
2360b57cec5SDimitry Andric void ProcessGlobalRegions(Frontier *frontier);
2370b57cec5SDimitry Andric void ProcessPlatformSpecificAllocations(Frontier *frontier);
2380b57cec5SDimitry Andric 
2390b57cec5SDimitry Andric struct RootRegion {
2400b57cec5SDimitry Andric   uptr begin;
2410b57cec5SDimitry Andric   uptr size;
2420b57cec5SDimitry Andric };
2430b57cec5SDimitry Andric 
2445ffd83dbSDimitry Andric // LockStuffAndStopTheWorld can start to use Scan* calls to collect into
2455ffd83dbSDimitry Andric // this Frontier vector before the StopTheWorldCallback actually runs.
2465ffd83dbSDimitry Andric // This is used when the OS has a unified callback API for suspending
2475ffd83dbSDimitry Andric // threads and enumerating roots.
2485ffd83dbSDimitry Andric struct CheckForLeaksParam {
2495ffd83dbSDimitry Andric   Frontier frontier;
2500eae32dcSDimitry Andric   LeakedChunks leaks;
251*bdd1243dSDimitry Andric   tid_t caller_tid;
252*bdd1243dSDimitry Andric   uptr caller_sp;
2535ffd83dbSDimitry Andric   bool success = false;
2545ffd83dbSDimitry Andric };
2555ffd83dbSDimitry Andric 
256349cc55cSDimitry Andric InternalMmapVectorNoCtor<RootRegion> const *GetRootRegions();
2570b57cec5SDimitry Andric void ScanRootRegion(Frontier *frontier, RootRegion const &region,
2580b57cec5SDimitry Andric                     uptr region_begin, uptr region_end, bool is_readable);
25968d75effSDimitry Andric // Run stoptheworld while holding any platform-specific locks, as well as the
26068d75effSDimitry Andric // allocator and thread registry locks.
2615ffd83dbSDimitry Andric void LockStuffAndStopTheWorld(StopTheWorldCallback callback,
2625ffd83dbSDimitry Andric                               CheckForLeaksParam* argument);
2630b57cec5SDimitry Andric 
2640b57cec5SDimitry Andric void ScanRangeForPointers(uptr begin, uptr end,
2650b57cec5SDimitry Andric                           Frontier *frontier,
2660b57cec5SDimitry Andric                           const char *region_type, ChunkTag tag);
2670b57cec5SDimitry Andric void ScanGlobalRange(uptr begin, uptr end, Frontier *frontier);
268*bdd1243dSDimitry Andric void ScanExtraStackRanges(const InternalMmapVector<Range> &ranges,
269*bdd1243dSDimitry Andric                           Frontier *frontier);
2700b57cec5SDimitry Andric 
2710b57cec5SDimitry Andric // Functions called from the parent tool.
2720b57cec5SDimitry Andric const char *MaybeCallLsanDefaultOptions();
2730b57cec5SDimitry Andric void InitCommonLsan();
2740b57cec5SDimitry Andric void DoLeakCheck();
2750b57cec5SDimitry Andric void DoRecoverableLeakCheckVoid();
2760b57cec5SDimitry Andric void DisableCounterUnderflow();
2770b57cec5SDimitry Andric bool DisabledInThisThread();
2780b57cec5SDimitry Andric 
2790b57cec5SDimitry Andric // Used to implement __lsan::ScopedDisabler.
2800b57cec5SDimitry Andric void DisableInThisThread();
2810b57cec5SDimitry Andric void EnableInThisThread();
2820b57cec5SDimitry Andric // Can be used to ignore memory allocated by an intercepted
2830b57cec5SDimitry Andric // function.
2840b57cec5SDimitry Andric struct ScopedInterceptorDisabler {
2850b57cec5SDimitry Andric   ScopedInterceptorDisabler() { DisableInThisThread(); }
2860b57cec5SDimitry Andric   ~ScopedInterceptorDisabler() { EnableInThisThread(); }
2870b57cec5SDimitry Andric };
2880b57cec5SDimitry Andric 
2890b57cec5SDimitry Andric // According to Itanium C++ ABI array cookie is a one word containing
2900b57cec5SDimitry Andric // size of allocated array.
2910b57cec5SDimitry Andric static inline bool IsItaniumABIArrayCookie(uptr chunk_beg, uptr chunk_size,
2920b57cec5SDimitry Andric                                            uptr addr) {
2930b57cec5SDimitry Andric   return chunk_size == sizeof(uptr) && chunk_beg + chunk_size == addr &&
2940b57cec5SDimitry Andric          *reinterpret_cast<uptr *>(chunk_beg) == 0;
2950b57cec5SDimitry Andric }
2960b57cec5SDimitry Andric 
2970b57cec5SDimitry Andric // According to ARM C++ ABI array cookie consists of two words:
2980b57cec5SDimitry Andric // struct array_cookie {
2990b57cec5SDimitry Andric //   std::size_t element_size; // element_size != 0
3000b57cec5SDimitry Andric //   std::size_t element_count;
3010b57cec5SDimitry Andric // };
3020b57cec5SDimitry Andric static inline bool IsARMABIArrayCookie(uptr chunk_beg, uptr chunk_size,
3030b57cec5SDimitry Andric                                        uptr addr) {
3040b57cec5SDimitry Andric   return chunk_size == 2 * sizeof(uptr) && chunk_beg + chunk_size == addr &&
3050b57cec5SDimitry Andric          *reinterpret_cast<uptr *>(chunk_beg + sizeof(uptr)) == 0;
3060b57cec5SDimitry Andric }
3070b57cec5SDimitry Andric 
3080b57cec5SDimitry Andric // Special case for "new T[0]" where T is a type with DTOR.
3090b57cec5SDimitry Andric // new T[0] will allocate a cookie (one or two words) for the array size (0)
3100b57cec5SDimitry Andric // and store a pointer to the end of allocated chunk. The actual cookie layout
3110b57cec5SDimitry Andric // varies between platforms according to their C++ ABI implementation.
3120b57cec5SDimitry Andric inline bool IsSpecialCaseOfOperatorNew0(uptr chunk_beg, uptr chunk_size,
3130b57cec5SDimitry Andric                                         uptr addr) {
3140b57cec5SDimitry Andric #if defined(__arm__)
3150b57cec5SDimitry Andric   return IsARMABIArrayCookie(chunk_beg, chunk_size, addr);
3160b57cec5SDimitry Andric #else
3170b57cec5SDimitry Andric   return IsItaniumABIArrayCookie(chunk_beg, chunk_size, addr);
3180b57cec5SDimitry Andric #endif
3190b57cec5SDimitry Andric }
3200b57cec5SDimitry Andric 
3210b57cec5SDimitry Andric // Return the linker module, if valid for the platform.
3220b57cec5SDimitry Andric LoadedModule *GetLinker();
3230b57cec5SDimitry Andric 
3240b57cec5SDimitry Andric // Return true if LSan has finished leak checking and reported leaks.
3250b57cec5SDimitry Andric bool HasReportedLeaks();
3260b57cec5SDimitry Andric 
3270b57cec5SDimitry Andric // Run platform-specific leak handlers.
3280b57cec5SDimitry Andric void HandleLeaks();
3290b57cec5SDimitry Andric 
3300b57cec5SDimitry Andric }  // namespace __lsan
3310b57cec5SDimitry Andric 
3320b57cec5SDimitry Andric extern "C" {
3330b57cec5SDimitry Andric SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
3340b57cec5SDimitry Andric const char *__lsan_default_options();
3350b57cec5SDimitry Andric 
3360b57cec5SDimitry Andric SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
3370b57cec5SDimitry Andric int __lsan_is_turned_off();
3380b57cec5SDimitry Andric 
3390b57cec5SDimitry Andric SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
3400b57cec5SDimitry Andric const char *__lsan_default_suppressions();
341349cc55cSDimitry Andric 
342349cc55cSDimitry Andric SANITIZER_INTERFACE_ATTRIBUTE
343349cc55cSDimitry Andric void __lsan_register_root_region(const void *p, __lsan::uptr size);
344349cc55cSDimitry Andric 
345349cc55cSDimitry Andric SANITIZER_INTERFACE_ATTRIBUTE
346349cc55cSDimitry Andric void __lsan_unregister_root_region(const void *p, __lsan::uptr size);
347349cc55cSDimitry Andric 
3480b57cec5SDimitry Andric }  // extern "C"
3490b57cec5SDimitry Andric 
3500b57cec5SDimitry Andric #endif  // LSAN_COMMON_H
351