]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r303571, and update
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / lsan / lsan_common_mac.cc
1 //=-- lsan_common_mac.cc --------------------------------------------------===//
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 LeakSanitizer.
11 // Implementation of common leak checking functionality. Darwin-specific code.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "sanitizer_common/sanitizer_platform.h"
16 #include "lsan_common.h"
17
18 #if CAN_SANITIZE_LEAKS && SANITIZER_MAC
19
20 #include "sanitizer_common/sanitizer_allocator_internal.h"
21 #include "lsan_allocator.h"
22
23 #include <pthread.h>
24
25 #include <mach/mach.h>
26
27 namespace __lsan {
28
29 typedef struct {
30   int disable_counter;
31   u32 current_thread_id;
32   AllocatorCache cache;
33 } thread_local_data_t;
34
35 static pthread_key_t key;
36 static pthread_once_t key_once = PTHREAD_ONCE_INIT;
37
38 // The main thread destructor requires the current thread id,
39 // so we can't destroy it until it's been used and reset to invalid tid
40 void restore_tid_data(void *ptr) {
41   thread_local_data_t *data = (thread_local_data_t *)ptr;
42   if (data->current_thread_id != kInvalidTid)
43     pthread_setspecific(key, data);
44 }
45
46 static void make_tls_key() {
47   CHECK_EQ(pthread_key_create(&key, restore_tid_data), 0);
48 }
49
50 static thread_local_data_t *get_tls_val(bool alloc) {
51   pthread_once(&key_once, make_tls_key);
52
53   thread_local_data_t *ptr = (thread_local_data_t *)pthread_getspecific(key);
54   if (ptr == NULL && alloc) {
55     ptr = (thread_local_data_t *)InternalAlloc(sizeof(*ptr));
56     ptr->disable_counter = 0;
57     ptr->current_thread_id = kInvalidTid;
58     ptr->cache = AllocatorCache();
59     pthread_setspecific(key, ptr);
60   }
61
62   return ptr;
63 }
64
65 bool DisabledInThisThread() {
66   thread_local_data_t *data = get_tls_val(false);
67   return data ? data->disable_counter > 0 : false;
68 }
69
70 void DisableInThisThread() { ++get_tls_val(true)->disable_counter; }
71
72 void EnableInThisThread() {
73   int *disable_counter = &get_tls_val(true)->disable_counter;
74   if (*disable_counter == 0) {
75     DisableCounterUnderflow();
76   }
77   --*disable_counter;
78 }
79
80 u32 GetCurrentThread() {
81   thread_local_data_t *data = get_tls_val(false);
82   CHECK(data);
83   return data->current_thread_id;
84 }
85
86 void SetCurrentThread(u32 tid) { get_tls_val(true)->current_thread_id = tid; }
87
88 AllocatorCache *GetAllocatorCache() { return &get_tls_val(true)->cache; }
89
90 LoadedModule *GetLinker() { return nullptr; }
91
92 // Required on Linux for initialization of TLS behavior, but should not be
93 // required on Darwin.
94 void InitializePlatformSpecificModules() {
95   if (flags()->use_tls) {
96     Report("use_tls=1 is not supported on Darwin.\n");
97     Die();
98   }
99 }
100
101 // Scans global variables for heap pointers.
102 void ProcessGlobalRegions(Frontier *frontier) {
103   MemoryMappingLayout memory_mapping(false);
104   InternalMmapVector<LoadedModule> modules(/*initial_capacity*/ 128);
105   memory_mapping.DumpListOfModules(&modules);
106   for (uptr i = 0; i < modules.size(); ++i) {
107     // Even when global scanning is disabled, we still need to scan
108     // system libraries for stashed pointers
109     if (!flags()->use_globals && modules[i].instrumented()) continue;
110
111     for (const __sanitizer::LoadedModule::AddressRange &range :
112          modules[i].ranges()) {
113       // Sections storing global variables are writable and non-executable
114       if (range.executable || !range.writable) continue;
115
116       ScanGlobalRange(range.beg, range.end, frontier);
117     }
118   }
119 }
120
121 void ProcessPlatformSpecificAllocations(Frontier *frontier) {
122   mach_port_name_t port;
123   if (task_for_pid(mach_task_self(), internal_getpid(), &port)
124       != KERN_SUCCESS) {
125     return;
126   }
127
128   unsigned depth = 1;
129   vm_size_t size = 0;
130   vm_address_t address = 0;
131   kern_return_t err = KERN_SUCCESS;
132   mach_msg_type_number_t count = VM_REGION_SUBMAP_INFO_COUNT_64;
133
134   InternalMmapVector<RootRegion> const *root_regions = GetRootRegions();
135
136   while (err == KERN_SUCCESS) {
137     struct vm_region_submap_info_64 info;
138     err = vm_region_recurse_64(port, &address, &size, &depth,
139                                (vm_region_info_t)&info, &count);
140
141     uptr end_address = address + size;
142
143     // libxpc stashes some pointers in the Kernel Alloc Once page,
144     // make sure not to report those as leaks.
145     if (info.user_tag == VM_MEMORY_OS_ALLOC_ONCE) {
146       ScanRangeForPointers(address, end_address, frontier, "GLOBAL",
147                            kReachable);
148
149       // Recursing over the full memory map is very slow, break out
150       // early if we don't need the full iteration.
151       if (!flags()->use_root_regions || !root_regions->size())
152         break;
153     }
154
155     // This additional root region scan is required on Darwin in order to
156     // detect root regions contained within mmap'd memory regions, because
157     // the Darwin implementation of sanitizer_procmaps traverses images
158     // as loaded by dyld, and not the complete set of all memory regions.
159     //
160     // TODO(fjricci) - remove this once sanitizer_procmaps_mac has the same
161     // behavior as sanitizer_procmaps_linux and traverses all memory regions
162     if (flags()->use_root_regions) {
163       for (uptr i = 0; i < root_regions->size(); i++) {
164         ScanRootRegion(frontier, (*root_regions)[i], address, end_address,
165                        info.protection);
166       }
167     }
168
169     address = end_address;
170   }
171 }
172
173 void DoStopTheWorld(StopTheWorldCallback callback, void *argument) {
174   StopTheWorld(callback, argument);
175 }
176
177 } // namespace __lsan
178
179 #endif // CAN_SANITIZE_LEAKS && SANITIZER_MAC