1 //=-- lsan_common.cpp -----------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file is a part of LeakSanitizer.
10 // Implementation of common leak checking functionality.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "lsan_common.h"
15 
16 #include "sanitizer_common/sanitizer_common.h"
17 #include "sanitizer_common/sanitizer_flag_parser.h"
18 #include "sanitizer_common/sanitizer_flags.h"
19 #include "sanitizer_common/sanitizer_placement_new.h"
20 #include "sanitizer_common/sanitizer_procmaps.h"
21 #include "sanitizer_common/sanitizer_report_decorator.h"
22 #include "sanitizer_common/sanitizer_stackdepot.h"
23 #include "sanitizer_common/sanitizer_stacktrace.h"
24 #include "sanitizer_common/sanitizer_suppressions.h"
25 #include "sanitizer_common/sanitizer_thread_registry.h"
26 #include "sanitizer_common/sanitizer_tls_get_addr.h"
27 
28 #if CAN_SANITIZE_LEAKS
29 namespace __lsan {
30 
31 // This mutex is used to prevent races between DoLeakCheck and IgnoreObject, and
32 // also to protect the global list of root regions.
33 BlockingMutex global_mutex(LINKER_INITIALIZED);
34 
35 Flags lsan_flags;
36 
37 
38 void DisableCounterUnderflow() {
39   if (common_flags()->detect_leaks) {
40     Report("Unmatched call to __lsan_enable().\n");
41     Die();
42   }
43 }
44 
45 void Flags::SetDefaults() {
46 #define LSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
47 #include "lsan_flags.inc"
48 #undef LSAN_FLAG
49 }
50 
51 void RegisterLsanFlags(FlagParser *parser, Flags *f) {
52 #define LSAN_FLAG(Type, Name, DefaultValue, Description) \
53   RegisterFlag(parser, #Name, Description, &f->Name);
54 #include "lsan_flags.inc"
55 #undef LSAN_FLAG
56 }
57 
58 #define LOG_POINTERS(...)                           \
59   do {                                              \
60     if (flags()->log_pointers) Report(__VA_ARGS__); \
61   } while (0)
62 
63 #define LOG_THREADS(...)                           \
64   do {                                             \
65     if (flags()->log_threads) Report(__VA_ARGS__); \
66   } while (0)
67 
68 ALIGNED(64) static char suppression_placeholder[sizeof(SuppressionContext)];
69 static SuppressionContext *suppression_ctx = nullptr;
70 static const char kSuppressionLeak[] = "leak";
71 static const char *kSuppressionTypes[] = { kSuppressionLeak };
72 static const char kStdSuppressions[] =
73 #if SANITIZER_SUPPRESS_LEAK_ON_PTHREAD_EXIT
74   // For more details refer to the SANITIZER_SUPPRESS_LEAK_ON_PTHREAD_EXIT
75   // definition.
76   "leak:*pthread_exit*\n"
77 #endif  // SANITIZER_SUPPRESS_LEAK_ON_PTHREAD_EXIT
78 #if SANITIZER_MAC
79   // For Darwin and os_log/os_trace: https://reviews.llvm.org/D35173
80   "leak:*_os_trace*\n"
81 #endif
82   // TLS leak in some glibc versions, described in
83   // https://sourceware.org/bugzilla/show_bug.cgi?id=12650.
84   "leak:*tls_get_addr*\n";
85 
86 void InitializeSuppressions() {
87   CHECK_EQ(nullptr, suppression_ctx);
88   suppression_ctx = new (suppression_placeholder)
89       SuppressionContext(kSuppressionTypes, ARRAY_SIZE(kSuppressionTypes));
90   suppression_ctx->ParseFromFile(flags()->suppressions);
91   if (&__lsan_default_suppressions)
92     suppression_ctx->Parse(__lsan_default_suppressions());
93   suppression_ctx->Parse(kStdSuppressions);
94 }
95 
96 static SuppressionContext *GetSuppressionContext() {
97   CHECK(suppression_ctx);
98   return suppression_ctx;
99 }
100 
101 static InternalMmapVector<RootRegion> *root_regions;
102 
103 InternalMmapVector<RootRegion> const *GetRootRegions() { return root_regions; }
104 
105 void InitializeRootRegions() {
106   CHECK(!root_regions);
107   ALIGNED(64) static char placeholder[sizeof(InternalMmapVector<RootRegion>)];
108   root_regions = new (placeholder) InternalMmapVector<RootRegion>();
109 }
110 
111 void InitCommonLsan() {
112   InitializeRootRegions();
113   if (common_flags()->detect_leaks) {
114     // Initialization which can fail or print warnings should only be done if
115     // LSan is actually enabled.
116     InitializeSuppressions();
117     InitializePlatformSpecificModules();
118   }
119 }
120 
121 class Decorator: public __sanitizer::SanitizerCommonDecorator {
122  public:
123   Decorator() : SanitizerCommonDecorator() { }
124   const char *Error() { return Red(); }
125   const char *Leak() { return Blue(); }
126 };
127 
128 static inline bool CanBeAHeapPointer(uptr p) {
129   // Since our heap is located in mmap-ed memory, we can assume a sensible lower
130   // bound on heap addresses.
131   const uptr kMinAddress = 4 * 4096;
132   if (p < kMinAddress) return false;
133 #if defined(__x86_64__)
134   // Accept only canonical form user-space addresses.
135   return ((p >> 47) == 0);
136 #elif defined(__mips64)
137   return ((p >> 40) == 0);
138 #elif defined(__aarch64__)
139   unsigned runtimeVMA =
140     (MostSignificantSetBitIndex(GET_CURRENT_FRAME()) + 1);
141   return ((p >> runtimeVMA) == 0);
142 #else
143   return true;
144 #endif
145 }
146 
147 // Scans the memory range, looking for byte patterns that point into allocator
148 // chunks. Marks those chunks with |tag| and adds them to |frontier|.
149 // There are two usage modes for this function: finding reachable chunks
150 // (|tag| = kReachable) and finding indirectly leaked chunks
151 // (|tag| = kIndirectlyLeaked). In the second case, there's no flood fill,
152 // so |frontier| = 0.
153 void ScanRangeForPointers(uptr begin, uptr end,
154                           Frontier *frontier,
155                           const char *region_type, ChunkTag tag) {
156   CHECK(tag == kReachable || tag == kIndirectlyLeaked);
157   const uptr alignment = flags()->pointer_alignment();
158   LOG_POINTERS("Scanning %s range %p-%p.\n", region_type, begin, end);
159   uptr pp = begin;
160   if (pp % alignment)
161     pp = pp + alignment - pp % alignment;
162   for (; pp + sizeof(void *) <= end; pp += alignment) {
163     void *p = *reinterpret_cast<void **>(pp);
164     if (!CanBeAHeapPointer(reinterpret_cast<uptr>(p))) continue;
165     uptr chunk = PointsIntoChunk(p);
166     if (!chunk) continue;
167     // Pointers to self don't count. This matters when tag == kIndirectlyLeaked.
168     if (chunk == begin) continue;
169     LsanMetadata m(chunk);
170     if (m.tag() == kReachable || m.tag() == kIgnored) continue;
171 
172     // Do this check relatively late so we can log only the interesting cases.
173     if (!flags()->use_poisoned && WordIsPoisoned(pp)) {
174       LOG_POINTERS(
175           "%p is poisoned: ignoring %p pointing into chunk %p-%p of size "
176           "%zu.\n",
177           pp, p, chunk, chunk + m.requested_size(), m.requested_size());
178       continue;
179     }
180 
181     m.set_tag(tag);
182     LOG_POINTERS("%p: found %p pointing into chunk %p-%p of size %zu.\n", pp, p,
183                  chunk, chunk + m.requested_size(), m.requested_size());
184     if (frontier)
185       frontier->push_back(chunk);
186   }
187 }
188 
189 // Scans a global range for pointers
190 void ScanGlobalRange(uptr begin, uptr end, Frontier *frontier) {
191   uptr allocator_begin = 0, allocator_end = 0;
192   GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
193   if (begin <= allocator_begin && allocator_begin < end) {
194     CHECK_LE(allocator_begin, allocator_end);
195     CHECK_LE(allocator_end, end);
196     if (begin < allocator_begin)
197       ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",
198                            kReachable);
199     if (allocator_end < end)
200       ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);
201   } else {
202     ScanRangeForPointers(begin, end, frontier, "GLOBAL", kReachable);
203   }
204 }
205 
206 void ForEachExtraStackRangeCb(uptr begin, uptr end, void* arg) {
207   Frontier *frontier = reinterpret_cast<Frontier *>(arg);
208   ScanRangeForPointers(begin, end, frontier, "FAKE STACK", kReachable);
209 }
210 
211 #if SANITIZER_FUCHSIA
212 
213 // Fuchsia handles all threads together with its own callback.
214 static void ProcessThreads(SuspendedThreadsList const &, Frontier *) {}
215 
216 #else
217 
218 // Scans thread data (stacks and TLS) for heap pointers.
219 static void ProcessThreads(SuspendedThreadsList const &suspended_threads,
220                            Frontier *frontier) {
221   InternalMmapVector<uptr> registers(suspended_threads.RegisterCount());
222   uptr registers_begin = reinterpret_cast<uptr>(registers.data());
223   uptr registers_end =
224       reinterpret_cast<uptr>(registers.data() + registers.size());
225   for (uptr i = 0; i < suspended_threads.ThreadCount(); i++) {
226     tid_t os_id = static_cast<tid_t>(suspended_threads.GetThreadID(i));
227     LOG_THREADS("Processing thread %d.\n", os_id);
228     uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end;
229     DTLS *dtls;
230     bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end,
231                                               &tls_begin, &tls_end,
232                                               &cache_begin, &cache_end, &dtls);
233     if (!thread_found) {
234       // If a thread can't be found in the thread registry, it's probably in the
235       // process of destruction. Log this event and move on.
236       LOG_THREADS("Thread %d not found in registry.\n", os_id);
237       continue;
238     }
239     uptr sp;
240     PtraceRegistersStatus have_registers =
241         suspended_threads.GetRegistersAndSP(i, registers.data(), &sp);
242     if (have_registers != REGISTERS_AVAILABLE) {
243       Report("Unable to get registers from thread %d.\n", os_id);
244       // If unable to get SP, consider the entire stack to be reachable unless
245       // GetRegistersAndSP failed with ESRCH.
246       if (have_registers == REGISTERS_UNAVAILABLE_FATAL) continue;
247       sp = stack_begin;
248     }
249 
250     if (flags()->use_registers && have_registers)
251       ScanRangeForPointers(registers_begin, registers_end, frontier,
252                            "REGISTERS", kReachable);
253 
254     if (flags()->use_stacks) {
255       LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp);
256       if (sp < stack_begin || sp >= stack_end) {
257         // SP is outside the recorded stack range (e.g. the thread is running a
258         // signal handler on alternate stack, or swapcontext was used).
259         // Again, consider the entire stack range to be reachable.
260         LOG_THREADS("WARNING: stack pointer not in stack range.\n");
261         uptr page_size = GetPageSizeCached();
262         int skipped = 0;
263         while (stack_begin < stack_end &&
264                !IsAccessibleMemoryRange(stack_begin, 1)) {
265           skipped++;
266           stack_begin += page_size;
267         }
268         LOG_THREADS("Skipped %d guard page(s) to obtain stack %p-%p.\n",
269                     skipped, stack_begin, stack_end);
270       } else {
271         // Shrink the stack range to ignore out-of-scope values.
272         stack_begin = sp;
273       }
274       ScanRangeForPointers(stack_begin, stack_end, frontier, "STACK",
275                            kReachable);
276       ForEachExtraStackRange(os_id, ForEachExtraStackRangeCb, frontier);
277     }
278 
279     if (flags()->use_tls) {
280       if (tls_begin) {
281         LOG_THREADS("TLS at %p-%p.\n", tls_begin, tls_end);
282         // If the tls and cache ranges don't overlap, scan full tls range,
283         // otherwise, only scan the non-overlapping portions
284         if (cache_begin == cache_end || tls_end < cache_begin ||
285             tls_begin > cache_end) {
286           ScanRangeForPointers(tls_begin, tls_end, frontier, "TLS", kReachable);
287         } else {
288           if (tls_begin < cache_begin)
289             ScanRangeForPointers(tls_begin, cache_begin, frontier, "TLS",
290                                  kReachable);
291           if (tls_end > cache_end)
292             ScanRangeForPointers(cache_end, tls_end, frontier, "TLS",
293                                  kReachable);
294         }
295       }
296       if (dtls && !DTLSInDestruction(dtls)) {
297         for (uptr j = 0; j < dtls->dtv_size; ++j) {
298           uptr dtls_beg = dtls->dtv[j].beg;
299           uptr dtls_end = dtls_beg + dtls->dtv[j].size;
300           if (dtls_beg < dtls_end) {
301             LOG_THREADS("DTLS %zu at %p-%p.\n", j, dtls_beg, dtls_end);
302             ScanRangeForPointers(dtls_beg, dtls_end, frontier, "DTLS",
303                                  kReachable);
304           }
305         }
306       } else {
307         // We are handling a thread with DTLS under destruction. Log about
308         // this and continue.
309         LOG_THREADS("Thread %d has DTLS under destruction.\n", os_id);
310       }
311     }
312   }
313 }
314 
315 #endif  // SANITIZER_FUCHSIA
316 
317 void ScanRootRegion(Frontier *frontier, const RootRegion &root_region,
318                     uptr region_begin, uptr region_end, bool is_readable) {
319   uptr intersection_begin = Max(root_region.begin, region_begin);
320   uptr intersection_end = Min(region_end, root_region.begin + root_region.size);
321   if (intersection_begin >= intersection_end) return;
322   LOG_POINTERS("Root region %p-%p intersects with mapped region %p-%p (%s)\n",
323                root_region.begin, root_region.begin + root_region.size,
324                region_begin, region_end,
325                is_readable ? "readable" : "unreadable");
326   if (is_readable)
327     ScanRangeForPointers(intersection_begin, intersection_end, frontier, "ROOT",
328                          kReachable);
329 }
330 
331 static void ProcessRootRegion(Frontier *frontier,
332                               const RootRegion &root_region) {
333   MemoryMappingLayout proc_maps(/*cache_enabled*/ true);
334   MemoryMappedSegment segment;
335   while (proc_maps.Next(&segment)) {
336     ScanRootRegion(frontier, root_region, segment.start, segment.end,
337                    segment.IsReadable());
338   }
339 }
340 
341 // Scans root regions for heap pointers.
342 static void ProcessRootRegions(Frontier *frontier) {
343   if (!flags()->use_root_regions) return;
344   CHECK(root_regions);
345   for (uptr i = 0; i < root_regions->size(); i++) {
346     ProcessRootRegion(frontier, (*root_regions)[i]);
347   }
348 }
349 
350 static void FloodFillTag(Frontier *frontier, ChunkTag tag) {
351   while (frontier->size()) {
352     uptr next_chunk = frontier->back();
353     frontier->pop_back();
354     LsanMetadata m(next_chunk);
355     ScanRangeForPointers(next_chunk, next_chunk + m.requested_size(), frontier,
356                          "HEAP", tag);
357   }
358 }
359 
360 // ForEachChunk callback. If the chunk is marked as leaked, marks all chunks
361 // which are reachable from it as indirectly leaked.
362 static void MarkIndirectlyLeakedCb(uptr chunk, void *arg) {
363   chunk = GetUserBegin(chunk);
364   LsanMetadata m(chunk);
365   if (m.allocated() && m.tag() != kReachable) {
366     ScanRangeForPointers(chunk, chunk + m.requested_size(),
367                          /* frontier */ nullptr, "HEAP", kIndirectlyLeaked);
368   }
369 }
370 
371 // ForEachChunk callback. If chunk is marked as ignored, adds its address to
372 // frontier.
373 static void CollectIgnoredCb(uptr chunk, void *arg) {
374   CHECK(arg);
375   chunk = GetUserBegin(chunk);
376   LsanMetadata m(chunk);
377   if (m.allocated() && m.tag() == kIgnored) {
378     LOG_POINTERS("Ignored: chunk %p-%p of size %zu.\n",
379                  chunk, chunk + m.requested_size(), m.requested_size());
380     reinterpret_cast<Frontier *>(arg)->push_back(chunk);
381   }
382 }
383 
384 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) {
385   CHECK(stack_id);
386   StackTrace stack = map->Get(stack_id);
387   // The top frame is our malloc/calloc/etc. The next frame is the caller.
388   if (stack.size >= 2)
389     return stack.trace[1];
390   return 0;
391 }
392 
393 struct InvalidPCParam {
394   Frontier *frontier;
395   StackDepotReverseMap *stack_depot_reverse_map;
396   bool skip_linker_allocations;
397 };
398 
399 // ForEachChunk callback. If the caller pc is invalid or is within the linker,
400 // mark as reachable. Called by ProcessPlatformSpecificAllocations.
401 static void MarkInvalidPCCb(uptr chunk, void *arg) {
402   CHECK(arg);
403   InvalidPCParam *param = reinterpret_cast<InvalidPCParam *>(arg);
404   chunk = GetUserBegin(chunk);
405   LsanMetadata m(chunk);
406   if (m.allocated() && m.tag() != kReachable && m.tag() != kIgnored) {
407     u32 stack_id = m.stack_trace_id();
408     uptr caller_pc = 0;
409     if (stack_id > 0)
410       caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map);
411     // If caller_pc is unknown, this chunk may be allocated in a coroutine. Mark
412     // it as reachable, as we can't properly report its allocation stack anyway.
413     if (caller_pc == 0 || (param->skip_linker_allocations &&
414                            GetLinker()->containsAddress(caller_pc))) {
415       m.set_tag(kReachable);
416       param->frontier->push_back(chunk);
417     }
418   }
419 }
420 
421 // On Linux, treats all chunks allocated from ld-linux.so as reachable, which
422 // covers dynamically allocated TLS blocks, internal dynamic loader's loaded
423 // modules accounting etc.
424 // Dynamic TLS blocks contain the TLS variables of dynamically loaded modules.
425 // They are allocated with a __libc_memalign() call in allocate_and_init()
426 // (elf/dl-tls.c). Glibc won't tell us the address ranges occupied by those
427 // blocks, but we can make sure they come from our own allocator by intercepting
428 // __libc_memalign(). On top of that, there is no easy way to reach them. Their
429 // addresses are stored in a dynamically allocated array (the DTV) which is
430 // referenced from the static TLS. Unfortunately, we can't just rely on the DTV
431 // being reachable from the static TLS, and the dynamic TLS being reachable from
432 // the DTV. This is because the initial DTV is allocated before our interception
433 // mechanism kicks in, and thus we don't recognize it as allocated memory. We
434 // can't special-case it either, since we don't know its size.
435 // Our solution is to include in the root set all allocations made from
436 // ld-linux.so (which is where allocate_and_init() is implemented). This is
437 // guaranteed to include all dynamic TLS blocks (and possibly other allocations
438 // which we don't care about).
439 // On all other platforms, this simply checks to ensure that the caller pc is
440 // valid before reporting chunks as leaked.
441 void ProcessPC(Frontier *frontier) {
442   StackDepotReverseMap stack_depot_reverse_map;
443   InvalidPCParam arg;
444   arg.frontier = frontier;
445   arg.stack_depot_reverse_map = &stack_depot_reverse_map;
446   arg.skip_linker_allocations =
447       flags()->use_tls && flags()->use_ld_allocations && GetLinker() != nullptr;
448   ForEachChunk(MarkInvalidPCCb, &arg);
449 }
450 
451 // Sets the appropriate tag on each chunk.
452 static void ClassifyAllChunks(SuspendedThreadsList const &suspended_threads,
453                               Frontier *frontier) {
454   ForEachChunk(CollectIgnoredCb, frontier);
455   ProcessGlobalRegions(frontier);
456   ProcessThreads(suspended_threads, frontier);
457   ProcessRootRegions(frontier);
458   FloodFillTag(frontier, kReachable);
459 
460   CHECK_EQ(0, frontier->size());
461   ProcessPC(frontier);
462 
463   // The check here is relatively expensive, so we do this in a separate flood
464   // fill. That way we can skip the check for chunks that are reachable
465   // otherwise.
466   LOG_POINTERS("Processing platform-specific allocations.\n");
467   ProcessPlatformSpecificAllocations(frontier);
468   FloodFillTag(frontier, kReachable);
469 
470   // Iterate over leaked chunks and mark those that are reachable from other
471   // leaked chunks.
472   LOG_POINTERS("Scanning leaked chunks.\n");
473   ForEachChunk(MarkIndirectlyLeakedCb, nullptr);
474 }
475 
476 // ForEachChunk callback. Resets the tags to pre-leak-check state.
477 static void ResetTagsCb(uptr chunk, void *arg) {
478   (void)arg;
479   chunk = GetUserBegin(chunk);
480   LsanMetadata m(chunk);
481   if (m.allocated() && m.tag() != kIgnored)
482     m.set_tag(kDirectlyLeaked);
483 }
484 
485 static void PrintStackTraceById(u32 stack_trace_id) {
486   CHECK(stack_trace_id);
487   StackDepotGet(stack_trace_id).Print();
488 }
489 
490 // ForEachChunk callback. Aggregates information about unreachable chunks into
491 // a LeakReport.
492 static void CollectLeaksCb(uptr chunk, void *arg) {
493   CHECK(arg);
494   LeakReport *leak_report = reinterpret_cast<LeakReport *>(arg);
495   chunk = GetUserBegin(chunk);
496   LsanMetadata m(chunk);
497   if (!m.allocated()) return;
498   if (m.tag() == kDirectlyLeaked || m.tag() == kIndirectlyLeaked) {
499     u32 resolution = flags()->resolution;
500     u32 stack_trace_id = 0;
501     if (resolution > 0) {
502       StackTrace stack = StackDepotGet(m.stack_trace_id());
503       stack.size = Min(stack.size, resolution);
504       stack_trace_id = StackDepotPut(stack);
505     } else {
506       stack_trace_id = m.stack_trace_id();
507     }
508     leak_report->AddLeakedChunk(chunk, stack_trace_id, m.requested_size(),
509                                 m.tag());
510   }
511 }
512 
513 static void PrintMatchedSuppressions() {
514   InternalMmapVector<Suppression *> matched;
515   GetSuppressionContext()->GetMatched(&matched);
516   if (!matched.size())
517     return;
518   const char *line = "-----------------------------------------------------";
519   Printf("%s\n", line);
520   Printf("Suppressions used:\n");
521   Printf("  count      bytes template\n");
522   for (uptr i = 0; i < matched.size(); i++)
523     Printf("%7zu %10zu %s\n", static_cast<uptr>(atomic_load_relaxed(
524         &matched[i]->hit_count)), matched[i]->weight, matched[i]->templ);
525   Printf("%s\n\n", line);
526 }
527 
528 static void ReportIfNotSuspended(ThreadContextBase *tctx, void *arg) {
529   const InternalMmapVector<tid_t> &suspended_threads =
530       *(const InternalMmapVector<tid_t> *)arg;
531   if (tctx->status == ThreadStatusRunning) {
532     uptr i = InternalLowerBound(suspended_threads, 0, suspended_threads.size(),
533                                 tctx->os_id, CompareLess<int>());
534     if (i >= suspended_threads.size() || suspended_threads[i] != tctx->os_id)
535       Report("Running thread %d was not suspended. False leaks are possible.\n",
536              tctx->os_id);
537   }
538 }
539 
540 #if SANITIZER_FUCHSIA
541 
542 // Fuchsia provides a libc interface that guarantees all threads are
543 // covered, and SuspendedThreadList is never really used.
544 static void ReportUnsuspendedThreads(const SuspendedThreadsList &) {}
545 
546 #else  // !SANITIZER_FUCHSIA
547 
548 static void ReportUnsuspendedThreads(
549     const SuspendedThreadsList &suspended_threads) {
550   InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount());
551   for (uptr i = 0; i < suspended_threads.ThreadCount(); ++i)
552     threads[i] = suspended_threads.GetThreadID(i);
553 
554   Sort(threads.data(), threads.size());
555 
556   GetThreadRegistryLocked()->RunCallbackForEachThreadLocked(
557       &ReportIfNotSuspended, &threads);
558 }
559 
560 #endif  // !SANITIZER_FUCHSIA
561 
562 static void CheckForLeaksCallback(const SuspendedThreadsList &suspended_threads,
563                                   void *arg) {
564   CheckForLeaksParam *param = reinterpret_cast<CheckForLeaksParam *>(arg);
565   CHECK(param);
566   CHECK(!param->success);
567   ReportUnsuspendedThreads(suspended_threads);
568   ClassifyAllChunks(suspended_threads, &param->frontier);
569   ForEachChunk(CollectLeaksCb, &param->leak_report);
570   // Clean up for subsequent leak checks. This assumes we did not overwrite any
571   // kIgnored tags.
572   ForEachChunk(ResetTagsCb, nullptr);
573   param->success = true;
574 }
575 
576 static bool CheckForLeaks() {
577   if (&__lsan_is_turned_off && __lsan_is_turned_off())
578       return false;
579   EnsureMainThreadIDIsCorrect();
580   CheckForLeaksParam param;
581   LockStuffAndStopTheWorld(CheckForLeaksCallback, &param);
582 
583   if (!param.success) {
584     Report("LeakSanitizer has encountered a fatal error.\n");
585     Report(
586         "HINT: For debugging, try setting environment variable "
587         "LSAN_OPTIONS=verbosity=1:log_threads=1\n");
588     Report(
589         "HINT: LeakSanitizer does not work under ptrace (strace, gdb, etc)\n");
590     Die();
591   }
592   param.leak_report.ApplySuppressions();
593   uptr unsuppressed_count = param.leak_report.UnsuppressedLeakCount();
594   if (unsuppressed_count > 0) {
595     Decorator d;
596     Printf("\n"
597            "================================================================="
598            "\n");
599     Printf("%s", d.Error());
600     Report("ERROR: LeakSanitizer: detected memory leaks\n");
601     Printf("%s", d.Default());
602     param.leak_report.ReportTopLeaks(flags()->max_leaks);
603   }
604   if (common_flags()->print_suppressions)
605     PrintMatchedSuppressions();
606   if (unsuppressed_count > 0) {
607     param.leak_report.PrintSummary();
608     return true;
609   }
610   return false;
611 }
612 
613 static bool has_reported_leaks = false;
614 bool HasReportedLeaks() { return has_reported_leaks; }
615 
616 void DoLeakCheck() {
617   BlockingMutexLock l(&global_mutex);
618   static bool already_done;
619   if (already_done) return;
620   already_done = true;
621   has_reported_leaks = CheckForLeaks();
622   if (has_reported_leaks) HandleLeaks();
623 }
624 
625 static int DoRecoverableLeakCheck() {
626   BlockingMutexLock l(&global_mutex);
627   bool have_leaks = CheckForLeaks();
628   return have_leaks ? 1 : 0;
629 }
630 
631 void DoRecoverableLeakCheckVoid() { DoRecoverableLeakCheck(); }
632 
633 static Suppression *GetSuppressionForAddr(uptr addr) {
634   Suppression *s = nullptr;
635 
636   // Suppress by module name.
637   SuppressionContext *suppressions = GetSuppressionContext();
638   if (const char *module_name =
639           Symbolizer::GetOrInit()->GetModuleNameForPc(addr))
640     if (suppressions->Match(module_name, kSuppressionLeak, &s))
641       return s;
642 
643   // Suppress by file or function name.
644   SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(addr);
645   for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
646     if (suppressions->Match(cur->info.function, kSuppressionLeak, &s) ||
647         suppressions->Match(cur->info.file, kSuppressionLeak, &s)) {
648       break;
649     }
650   }
651   frames->ClearAll();
652   return s;
653 }
654 
655 static Suppression *GetSuppressionForStack(u32 stack_trace_id) {
656   StackTrace stack = StackDepotGet(stack_trace_id);
657   for (uptr i = 0; i < stack.size; i++) {
658     Suppression *s = GetSuppressionForAddr(
659         StackTrace::GetPreviousInstructionPc(stack.trace[i]));
660     if (s) return s;
661   }
662   return nullptr;
663 }
664 
665 ///// LeakReport implementation. /////
666 
667 // A hard limit on the number of distinct leaks, to avoid quadratic complexity
668 // in LeakReport::AddLeakedChunk(). We don't expect to ever see this many leaks
669 // in real-world applications.
670 // FIXME: Get rid of this limit by changing the implementation of LeakReport to
671 // use a hash table.
672 const uptr kMaxLeaksConsidered = 5000;
673 
674 void LeakReport::AddLeakedChunk(uptr chunk, u32 stack_trace_id,
675                                 uptr leaked_size, ChunkTag tag) {
676   CHECK(tag == kDirectlyLeaked || tag == kIndirectlyLeaked);
677   bool is_directly_leaked = (tag == kDirectlyLeaked);
678   uptr i;
679   for (i = 0; i < leaks_.size(); i++) {
680     if (leaks_[i].stack_trace_id == stack_trace_id &&
681         leaks_[i].is_directly_leaked == is_directly_leaked) {
682       leaks_[i].hit_count++;
683       leaks_[i].total_size += leaked_size;
684       break;
685     }
686   }
687   if (i == leaks_.size()) {
688     if (leaks_.size() == kMaxLeaksConsidered) return;
689     Leak leak = { next_id_++, /* hit_count */ 1, leaked_size, stack_trace_id,
690                   is_directly_leaked, /* is_suppressed */ false };
691     leaks_.push_back(leak);
692   }
693   if (flags()->report_objects) {
694     LeakedObject obj = {leaks_[i].id, chunk, leaked_size};
695     leaked_objects_.push_back(obj);
696   }
697 }
698 
699 static bool LeakComparator(const Leak &leak1, const Leak &leak2) {
700   if (leak1.is_directly_leaked == leak2.is_directly_leaked)
701     return leak1.total_size > leak2.total_size;
702   else
703     return leak1.is_directly_leaked;
704 }
705 
706 void LeakReport::ReportTopLeaks(uptr num_leaks_to_report) {
707   CHECK(leaks_.size() <= kMaxLeaksConsidered);
708   Printf("\n");
709   if (leaks_.size() == kMaxLeaksConsidered)
710     Printf("Too many leaks! Only the first %zu leaks encountered will be "
711            "reported.\n",
712            kMaxLeaksConsidered);
713 
714   uptr unsuppressed_count = UnsuppressedLeakCount();
715   if (num_leaks_to_report > 0 && num_leaks_to_report < unsuppressed_count)
716     Printf("The %zu top leak(s):\n", num_leaks_to_report);
717   Sort(leaks_.data(), leaks_.size(), &LeakComparator);
718   uptr leaks_reported = 0;
719   for (uptr i = 0; i < leaks_.size(); i++) {
720     if (leaks_[i].is_suppressed) continue;
721     PrintReportForLeak(i);
722     leaks_reported++;
723     if (leaks_reported == num_leaks_to_report) break;
724   }
725   if (leaks_reported < unsuppressed_count) {
726     uptr remaining = unsuppressed_count - leaks_reported;
727     Printf("Omitting %zu more leak(s).\n", remaining);
728   }
729 }
730 
731 void LeakReport::PrintReportForLeak(uptr index) {
732   Decorator d;
733   Printf("%s", d.Leak());
734   Printf("%s leak of %zu byte(s) in %zu object(s) allocated from:\n",
735          leaks_[index].is_directly_leaked ? "Direct" : "Indirect",
736          leaks_[index].total_size, leaks_[index].hit_count);
737   Printf("%s", d.Default());
738 
739   PrintStackTraceById(leaks_[index].stack_trace_id);
740 
741   if (flags()->report_objects) {
742     Printf("Objects leaked above:\n");
743     PrintLeakedObjectsForLeak(index);
744     Printf("\n");
745   }
746 }
747 
748 void LeakReport::PrintLeakedObjectsForLeak(uptr index) {
749   u32 leak_id = leaks_[index].id;
750   for (uptr j = 0; j < leaked_objects_.size(); j++) {
751     if (leaked_objects_[j].leak_id == leak_id)
752       Printf("%p (%zu bytes)\n", leaked_objects_[j].addr,
753              leaked_objects_[j].size);
754   }
755 }
756 
757 void LeakReport::PrintSummary() {
758   CHECK(leaks_.size() <= kMaxLeaksConsidered);
759   uptr bytes = 0, allocations = 0;
760   for (uptr i = 0; i < leaks_.size(); i++) {
761       if (leaks_[i].is_suppressed) continue;
762       bytes += leaks_[i].total_size;
763       allocations += leaks_[i].hit_count;
764   }
765   InternalScopedString summary(kMaxSummaryLength);
766   summary.append("%zu byte(s) leaked in %zu allocation(s).", bytes,
767                  allocations);
768   ReportErrorSummary(summary.data());
769 }
770 
771 void LeakReport::ApplySuppressions() {
772   for (uptr i = 0; i < leaks_.size(); i++) {
773     Suppression *s = GetSuppressionForStack(leaks_[i].stack_trace_id);
774     if (s) {
775       s->weight += leaks_[i].total_size;
776       atomic_store_relaxed(&s->hit_count, atomic_load_relaxed(&s->hit_count) +
777           leaks_[i].hit_count);
778       leaks_[i].is_suppressed = true;
779     }
780   }
781 }
782 
783 uptr LeakReport::UnsuppressedLeakCount() {
784   uptr result = 0;
785   for (uptr i = 0; i < leaks_.size(); i++)
786     if (!leaks_[i].is_suppressed) result++;
787   return result;
788 }
789 
790 } // namespace __lsan
791 #else // CAN_SANITIZE_LEAKS
792 namespace __lsan {
793 void InitCommonLsan() { }
794 void DoLeakCheck() { }
795 void DoRecoverableLeakCheckVoid() { }
796 void DisableInThisThread() { }
797 void EnableInThisThread() { }
798 }
799 #endif // CAN_SANITIZE_LEAKS
800 
801 using namespace __lsan;
802 
803 extern "C" {
804 SANITIZER_INTERFACE_ATTRIBUTE
805 void __lsan_ignore_object(const void *p) {
806 #if CAN_SANITIZE_LEAKS
807   if (!common_flags()->detect_leaks)
808     return;
809   // Cannot use PointsIntoChunk or LsanMetadata here, since the allocator is not
810   // locked.
811   BlockingMutexLock l(&global_mutex);
812   IgnoreObjectResult res = IgnoreObjectLocked(p);
813   if (res == kIgnoreObjectInvalid)
814     VReport(1, "__lsan_ignore_object(): no heap object found at %p", p);
815   if (res == kIgnoreObjectAlreadyIgnored)
816     VReport(1, "__lsan_ignore_object(): "
817            "heap object at %p is already being ignored\n", p);
818   if (res == kIgnoreObjectSuccess)
819     VReport(1, "__lsan_ignore_object(): ignoring heap object at %p\n", p);
820 #endif // CAN_SANITIZE_LEAKS
821 }
822 
823 SANITIZER_INTERFACE_ATTRIBUTE
824 void __lsan_register_root_region(const void *begin, uptr size) {
825 #if CAN_SANITIZE_LEAKS
826   BlockingMutexLock l(&global_mutex);
827   CHECK(root_regions);
828   RootRegion region = {reinterpret_cast<uptr>(begin), size};
829   root_regions->push_back(region);
830   VReport(1, "Registered root region at %p of size %llu\n", begin, size);
831 #endif // CAN_SANITIZE_LEAKS
832 }
833 
834 SANITIZER_INTERFACE_ATTRIBUTE
835 void __lsan_unregister_root_region(const void *begin, uptr size) {
836 #if CAN_SANITIZE_LEAKS
837   BlockingMutexLock l(&global_mutex);
838   CHECK(root_regions);
839   bool removed = false;
840   for (uptr i = 0; i < root_regions->size(); i++) {
841     RootRegion region = (*root_regions)[i];
842     if (region.begin == reinterpret_cast<uptr>(begin) && region.size == size) {
843       removed = true;
844       uptr last_index = root_regions->size() - 1;
845       (*root_regions)[i] = (*root_regions)[last_index];
846       root_regions->pop_back();
847       VReport(1, "Unregistered root region at %p of size %llu\n", begin, size);
848       break;
849     }
850   }
851   if (!removed) {
852     Report(
853         "__lsan_unregister_root_region(): region at %p of size %llu has not "
854         "been registered.\n",
855         begin, size);
856     Die();
857   }
858 #endif // CAN_SANITIZE_LEAKS
859 }
860 
861 SANITIZER_INTERFACE_ATTRIBUTE
862 void __lsan_disable() {
863 #if CAN_SANITIZE_LEAKS
864   __lsan::DisableInThisThread();
865 #endif
866 }
867 
868 SANITIZER_INTERFACE_ATTRIBUTE
869 void __lsan_enable() {
870 #if CAN_SANITIZE_LEAKS
871   __lsan::EnableInThisThread();
872 #endif
873 }
874 
875 SANITIZER_INTERFACE_ATTRIBUTE
876 void __lsan_do_leak_check() {
877 #if CAN_SANITIZE_LEAKS
878   if (common_flags()->detect_leaks)
879     __lsan::DoLeakCheck();
880 #endif // CAN_SANITIZE_LEAKS
881 }
882 
883 SANITIZER_INTERFACE_ATTRIBUTE
884 int __lsan_do_recoverable_leak_check() {
885 #if CAN_SANITIZE_LEAKS
886   if (common_flags()->detect_leaks)
887     return __lsan::DoRecoverableLeakCheck();
888 #endif // CAN_SANITIZE_LEAKS
889   return 0;
890 }
891 
892 SANITIZER_INTERFACE_WEAK_DEF(const char *, __lsan_default_options, void) {
893   return "";
894 }
895 
896 #if !SANITIZER_SUPPORTS_WEAK_HOOKS
897 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
898 int __lsan_is_turned_off() {
899   return 0;
900 }
901 
902 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
903 const char *__lsan_default_suppressions() {
904   return "";
905 }
906 #endif
907 } // extern "C"
908