blob: 920083765f3e438ed232464140a14f46f202ded6 [file] [log] [blame]
Kostya Serebryany1e172b42011-11-30 01:07:02 +00001//===-- asan_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 AddressSanitizer, an address sanity checker.
11//
12// Mac-specific details.
13//===----------------------------------------------------------------------===//
14
Evgeniy Stepanov24e13722013-03-19 14:33:38 +000015#include "sanitizer_common/sanitizer_platform.h"
Evgeniy Stepanov30e110e2013-03-19 14:54:17 +000016#if SANITIZER_MAC
Kostya Serebryany1e172b42011-11-30 01:07:02 +000017
Alexey Samsonov64ce2db2012-03-21 12:03:44 +000018#include "asan_interceptors.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000019#include "asan_internal.h"
Alexander Potapenkod079db62012-07-06 11:58:54 +000020#include "asan_mac.h"
Alexander Potapenko895b3872012-02-13 17:14:31 +000021#include "asan_mapping.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000022#include "asan_stack.h"
23#include "asan_thread.h"
Alexander Potapenko31f78fd2013-07-16 09:29:48 +000024#include "sanitizer_common/sanitizer_atomic.h"
Alexey Samsonovae4d9ca2012-06-04 14:27:50 +000025#include "sanitizer_common/sanitizer_libc.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000026
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +000027#include <crt_externs.h> // for _NSGetArgv
28#include <dlfcn.h> // for dladdr()
Alexander Potapenko8a34d382012-01-18 11:16:05 +000029#include <mach-o/dyld.h>
Kostya Serebryany9b993e82012-01-30 22:11:04 +000030#include <mach-o/loader.h>
Kostya Serebryany1e172b42011-11-30 01:07:02 +000031#include <sys/mman.h>
Kostya Serebryanyef14ff62012-01-06 02:12:25 +000032#include <sys/resource.h>
Alexander Potapenko59dc5782012-01-31 13:19:18 +000033#include <sys/sysctl.h>
Kostya Serebryany9107c262012-01-06 19:11:09 +000034#include <sys/ucontext.h>
Kostya Serebryanya874fe52011-12-28 23:28:54 +000035#include <fcntl.h>
Alexander Potapenkoe205a9d2012-06-20 22:29:09 +000036#include <pthread.h>
37#include <stdlib.h> // for free()
Kostya Serebryany1e172b42011-11-30 01:07:02 +000038#include <unistd.h>
Kostya Serebryanyd55f5f82012-01-10 21:24:40 +000039#include <libkern/OSAtomic.h>
Kostya Serebryany1e172b42011-11-30 01:07:02 +000040
41namespace __asan {
42
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000043void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp) {
Kostya Serebryany9107c262012-01-06 19:11:09 +000044 ucontext_t *ucontext = (ucontext_t*)context;
Kostya Serebryany5af39e52012-11-21 12:38:58 +000045# if SANITIZER_WORDSIZE == 64
Kostya Serebryany9107c262012-01-06 19:11:09 +000046 *pc = ucontext->uc_mcontext->__ss.__rip;
47 *bp = ucontext->uc_mcontext->__ss.__rbp;
48 *sp = ucontext->uc_mcontext->__ss.__rsp;
49# else
50 *pc = ucontext->uc_mcontext->__ss.__eip;
51 *bp = ucontext->uc_mcontext->__ss.__ebp;
52 *sp = ucontext->uc_mcontext->__ss.__esp;
Kostya Serebryany5af39e52012-11-21 12:38:58 +000053# endif // SANITIZER_WORDSIZE
Kostya Serebryany9107c262012-01-06 19:11:09 +000054}
55
Alexander Potapenko31f78fd2013-07-16 09:29:48 +000056MacosVersion cached_macos_version = MACOS_VERSION_UNINITIALIZED;
57
58MacosVersion GetMacosVersionInternal() {
Alexander Potapenko59dc5782012-01-31 13:19:18 +000059 int mib[2] = { CTL_KERN, KERN_OSRELEASE };
60 char version[100];
Alexey Samsonov3f46cf42012-06-05 09:13:33 +000061 uptr len = 0, maxlen = sizeof(version) / sizeof(version[0]);
Alexey Samsonovb0bb7fb2012-07-30 10:18:31 +000062 for (uptr i = 0; i < maxlen; i++) version[i] = '\0';
Alexander Potapenko59dc5782012-01-31 13:19:18 +000063 // Get the version length.
Kostya Serebryanya27bdf72013-04-05 14:40:25 +000064 CHECK_NE(sysctl(mib, 2, 0, &len, 0, 0), -1);
65 CHECK_LT(len, maxlen);
66 CHECK_NE(sysctl(mib, 2, version, &len, 0, 0), -1);
Alexander Potapenko59dc5782012-01-31 13:19:18 +000067 switch (version[0]) {
68 case '9': return MACOS_VERSION_LEOPARD;
69 case '1': {
70 switch (version[1]) {
71 case '0': return MACOS_VERSION_SNOW_LEOPARD;
72 case '1': return MACOS_VERSION_LION;
Alexander Potapenko679bf632012-10-16 16:24:49 +000073 case '2': return MACOS_VERSION_MOUNTAIN_LION;
Alexander Potapenkoad2ae542013-07-16 08:35:42 +000074 case '3': return MACOS_VERSION_MAVERICKS;
Alexander Potapenko59dc5782012-01-31 13:19:18 +000075 default: return MACOS_VERSION_UNKNOWN;
76 }
77 }
78 default: return MACOS_VERSION_UNKNOWN;
79 }
80}
81
Alexander Potapenko31f78fd2013-07-16 09:29:48 +000082MacosVersion GetMacosVersion() {
83 atomic_uint32_t *cache =
84 reinterpret_cast<atomic_uint32_t*>(&cached_macos_version);
85 MacosVersion result =
86 static_cast<MacosVersion>(atomic_load(cache, memory_order_acquire));
87 if (result == MACOS_VERSION_UNINITIALIZED) {
88 result = GetMacosVersionInternal();
89 atomic_store(cache, result, memory_order_release);
90 }
91 return result;
92}
93
Alexey Samsonov38dd4ed2012-03-20 10:54:40 +000094bool PlatformHasDifferentMemcpyAndMemmove() {
95 // On OS X 10.7 memcpy() and memmove() are both resolved
96 // into memmove$VARIANT$sse42.
97 // See also http://code.google.com/p/address-sanitizer/issues/detail?id=34.
98 // TODO(glider): need to check dynamically that memcpy() and memmove() are
99 // actually the same function.
100 return GetMacosVersion() == MACOS_VERSION_SNOW_LEOPARD;
101}
102
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000103extern "C"
104void __asan_init();
105
106static const char kDyldInsertLibraries[] = "DYLD_INSERT_LIBRARIES";
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000107LowLevelAllocator allocator_for_env;
108
109// Change the value of the env var |name|, leaking the original value.
110// If |name_value| is NULL, the variable is deleted from the environment,
111// otherwise the corresponding "NAME=value" string is replaced with
112// |name_value|.
113void LeakyResetEnv(const char *name, const char *name_value) {
114 char ***env_ptr = _NSGetEnviron();
115 CHECK(env_ptr);
116 char **environ = *env_ptr;
117 CHECK(environ);
118 uptr name_len = internal_strlen(name);
119 while (*environ != 0) {
120 uptr len = internal_strlen(*environ);
121 if (len > name_len) {
122 const char *p = *environ;
123 if (!internal_memcmp(p, name, name_len) && p[name_len] == '=') {
124 // Match.
125 if (name_value) {
126 // Replace the old value with the new one.
127 *environ = const_cast<char*>(name_value);
128 } else {
129 // Shift the subsequent pointers back.
130 char **del = environ;
131 do {
132 del[0] = del[1];
Kostya Serebryany366984e2013-02-19 11:30:25 +0000133 } while (*del++);
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000134 }
135 }
136 }
137 environ++;
138 }
139}
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000140
141void MaybeReexec() {
142 if (!flags()->allow_reexec) return;
Alexander Potapenko69563982013-02-05 15:57:12 +0000143 // Make sure the dynamic ASan runtime library is preloaded so that the
144 // wrappers work. If it is not, set DYLD_INSERT_LIBRARIES and re-exec
145 // ourselves.
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000146 Dl_info info;
Alexey Samsonov4ea14c22012-09-12 14:10:14 +0000147 CHECK(dladdr((void*)((uptr)__asan_init), &info));
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000148 char *dyld_insert_libraries =
149 const_cast<char*>(GetEnv(kDyldInsertLibraries));
Alexey Samsonov180e9882013-02-15 19:22:49 +0000150 uptr old_env_len = dyld_insert_libraries ?
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000151 internal_strlen(dyld_insert_libraries) : 0;
Alexey Samsonove6b91fd2013-02-15 19:02:32 +0000152 uptr fname_len = internal_strlen(info.dli_fname);
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000153 if (!dyld_insert_libraries ||
154 !REAL(strstr)(dyld_insert_libraries, info.dli_fname)) {
155 // DYLD_INSERT_LIBRARIES is not set or does not contain the runtime
156 // library.
157 char program_name[1024];
158 uint32_t buf_size = sizeof(program_name);
159 _NSGetExecutablePath(program_name, &buf_size);
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000160 char *new_env = const_cast<char*>(info.dli_fname);
Alexander Potapenkoeb5f4272013-02-13 17:52:55 +0000161 if (dyld_insert_libraries) {
162 // Append the runtime dylib name to the existing value of
163 // DYLD_INSERT_LIBRARIES.
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000164 new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
Alexander Potapenkoeb5f4272013-02-13 17:52:55 +0000165 internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
166 new_env[old_env_len] = ':';
167 // Copy fname_len and add a trailing zero.
Kostya Serebryany8da17ea2013-02-14 06:54:51 +0000168 internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
169 fname_len + 1);
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000170 // Ok to use setenv() since the wrappers don't depend on the value of
171 // asan_inited.
Alexander Potapenkoeb5f4272013-02-13 17:52:55 +0000172 setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
173 } else {
174 // Set DYLD_INSERT_LIBRARIES equal to the runtime dylib name.
175 setenv(kDyldInsertLibraries, info.dli_fname, /*overwrite*/0);
176 }
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000177 if (flags()->verbosity >= 1) {
178 Report("exec()-ing the program with\n");
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000179 Report("%s=%s\n", kDyldInsertLibraries, new_env);
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000180 Report("to enable ASan wrappers.\n");
181 Report("Set ASAN_OPTIONS=allow_reexec=0 to disable this.\n");
182 }
183 execv(program_name, *_NSGetArgv());
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000184 } else {
185 // DYLD_INSERT_LIBRARIES is set and contains the runtime library.
186 if (old_env_len == fname_len) {
187 // It's just the runtime library name - fine to unset the variable.
188 LeakyResetEnv(kDyldInsertLibraries, NULL);
189 } else {
Alexey Samsonov180e9882013-02-15 19:22:49 +0000190 uptr env_name_len = internal_strlen(kDyldInsertLibraries);
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000191 // Allocate memory to hold the previous env var name, its value, the '='
192 // sign and the '\0' char.
193 char *new_env = (char*)allocator_for_env.Allocate(
194 old_env_len + 2 + env_name_len);
195 CHECK(new_env);
196 internal_memset(new_env, '\0', old_env_len + 2 + env_name_len);
197 internal_strncpy(new_env, kDyldInsertLibraries, env_name_len);
198 new_env[env_name_len] = '=';
199 char *new_env_pos = new_env + env_name_len + 1;
200
201 // Iterate over colon-separated pieces of |dyld_insert_libraries|.
202 char *piece_start = dyld_insert_libraries;
203 char *piece_end = NULL;
204 char *old_env_end = dyld_insert_libraries + old_env_len;
205 do {
206 if (piece_start[0] == ':') piece_start++;
207 piece_end = REAL(strchr)(piece_start, ':');
208 if (!piece_end) piece_end = dyld_insert_libraries + old_env_len;
Alexey Samsonov180e9882013-02-15 19:22:49 +0000209 if ((uptr)(piece_start - dyld_insert_libraries) > old_env_len) break;
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000210 uptr piece_len = piece_end - piece_start;
211
Kostya Serebryany366984e2013-02-19 11:30:25 +0000212 // If the current piece isn't the runtime library name,
213 // append it to new_env.
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000214 if ((piece_len != fname_len) ||
215 (internal_strncmp(piece_start, info.dli_fname, fname_len) != 0)) {
216 if (new_env_pos != new_env + env_name_len + 1) {
217 new_env_pos[0] = ':';
218 new_env_pos++;
219 }
220 internal_strncpy(new_env_pos, piece_start, piece_len);
221 }
Kostya Serebryany366984e2013-02-19 11:30:25 +0000222 // Move on to the next piece.
Alexander Potapenkofe984cc2013-02-15 16:10:49 +0000223 new_env_pos += piece_len;
224 piece_start = piece_end;
225 } while (piece_start < old_env_end);
226
227 // Can't use setenv() here, because it requires the allocator to be
228 // initialized.
229 // FIXME: instead of filtering DYLD_INSERT_LIBRARIES here, do it in
230 // a separate function called after InitializeAllocator().
231 LeakyResetEnv(kDyldInsertLibraries, new_env);
232 }
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000233 }
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +0000234}
235
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000236// No-op. Mac does not support static linkage anyway.
237void *AsanDoesNotSupportStaticLinkage() {
Kostya Serebryany3f4c3872012-05-31 14:35:53 +0000238 return 0;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000239}
240
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000241bool AsanInterceptsSignal(int signum) {
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000242 return (signum == SIGSEGV || signum == SIGBUS) && flags()->handle_segv;
Kostya Serebryany4803ab92012-01-09 18:53:15 +0000243}
244
Alexander Potapenko75b19eb2012-07-23 14:07:58 +0000245void AsanPlatformThreadInit() {
Alexander Potapenko75b19eb2012-07-23 14:07:58 +0000246}
247
Alexey Samsonov57db4ba2013-01-17 15:45:28 +0000248void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
Alexey Samsonovf3950c62012-11-23 10:14:44 +0000249 UNIMPLEMENTED();
250}
251
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000252// Support for the following functions from libdispatch on Mac OS:
253// dispatch_async_f()
254// dispatch_async()
255// dispatch_sync_f()
256// dispatch_sync()
257// dispatch_after_f()
258// dispatch_after()
259// dispatch_group_async_f()
260// dispatch_group_async()
261// TODO(glider): libdispatch API contains other functions that we don't support
262// yet.
263//
264// dispatch_sync() and dispatch_sync_f() are synchronous, although chances are
265// they can cause jobs to run on a thread different from the current one.
266// TODO(glider): if so, we need a test for this (otherwise we should remove
267// them).
268//
269// The following functions use dispatch_barrier_async_f() (which isn't a library
270// function but is exported) and are thus supported:
271// dispatch_source_set_cancel_handler_f()
272// dispatch_source_set_cancel_handler()
273// dispatch_source_set_event_handler_f()
274// dispatch_source_set_event_handler()
275//
276// The reference manual for Grand Central Dispatch is available at
277// http://developer.apple.com/library/mac/#documentation/Performance/Reference/GCD_libdispatch_Ref/Reference/reference.html
278// The implementation details are at
279// http://libdispatch.macosforge.org/trac/browser/trunk/src/queue.c
280
Alexey Samsonovf7ceaad2012-04-09 16:45:18 +0000281typedef void* dispatch_group_t;
282typedef void* dispatch_queue_t;
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000283typedef void* dispatch_source_t;
Kostya Serebryanyee392552012-05-31 15:02:07 +0000284typedef u64 dispatch_time_t;
Alexey Samsonovf7ceaad2012-04-09 16:45:18 +0000285typedef void (*dispatch_function_t)(void *block);
Alexey Samsonov5cf832d2012-03-21 12:29:54 +0000286typedef void* (*worker_t)(void *block);
287
288// A wrapper for the ObjC blocks used to support libdispatch.
289typedef struct {
290 void *block;
291 dispatch_function_t func;
Kostya Serebryanye0cff0b2012-06-06 15:06:58 +0000292 u32 parent_tid;
Alexey Samsonov5cf832d2012-03-21 12:29:54 +0000293} asan_block_context_t;
294
Timur Iskhodzhanovb157c672013-03-28 21:16:09 +0000295ALWAYS_INLINE
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000296void asan_register_worker_thread(int parent_tid, StackTrace *stack) {
Alexey Samsonovc25e62b2013-03-20 10:11:24 +0000297 AsanThread *t = GetCurrentThread();
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000298 if (!t) {
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000299 t = AsanThread::Create(0, 0);
300 CreateThreadContextArgs args = { t, stack };
301 asanThreadRegistry().CreateThread(*(uptr*)t, true, parent_tid, &args);
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000302 t->Init();
Alexey Samsonovdef1be92013-03-21 11:23:41 +0000303 asanThreadRegistry().StartThread(t->tid(), 0, 0);
Alexey Samsonovc25e62b2013-03-20 10:11:24 +0000304 SetCurrentThread(t);
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000305 }
306}
307
Alexander Potapenko2483ce32012-08-20 11:59:26 +0000308// For use by only those functions that allocated the context via
309// alloc_asan_context().
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000310extern "C"
311void asan_dispatch_call_block_and_release(void *block) {
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000312 GET_STACK_TRACE_THREAD;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000313 asan_block_context_t *context = (asan_block_context_t*)block;
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000314 if (flags()->verbosity >= 2) {
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000315 Report("asan_dispatch_call_block_and_release(): "
316 "context: %p, pthread_self: %p\n",
317 block, pthread_self());
318 }
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000319 asan_register_worker_thread(context->parent_tid, &stack);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000320 // Call the original dispatcher for the block.
321 context->func(context->block);
Kostya Serebryanyfe6d9162012-12-21 08:53:59 +0000322 asan_free(context, &stack, FROM_MALLOC);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000323}
324
325} // namespace __asan
326
327using namespace __asan; // NOLINT
328
329// Wrap |ctxt| and |func| into an asan_block_context_t.
330// The caller retains control of the allocated context.
331extern "C"
332asan_block_context_t *alloc_asan_context(void *ctxt, dispatch_function_t func,
Kostya Serebryanyc3390df2012-08-28 11:54:30 +0000333 StackTrace *stack) {
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000334 asan_block_context_t *asan_ctxt =
335 (asan_block_context_t*) asan_malloc(sizeof(asan_block_context_t), stack);
336 asan_ctxt->block = ctxt;
337 asan_ctxt->func = func;
Alexey Samsonovc25e62b2013-03-20 10:11:24 +0000338 asan_ctxt->parent_tid = GetCurrentTidOrInvalid();
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000339 return asan_ctxt;
340}
341
Alexander Potapenkob09dd342012-08-20 09:25:10 +0000342// Define interceptor for dispatch_*_f function with the three most common
343// parameters: dispatch_queue_t, context, dispatch_function_t.
344#define INTERCEPT_DISPATCH_X_F_3(dispatch_x_f) \
345 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
346 dispatch_function_t func) { \
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000347 GET_STACK_TRACE_THREAD; \
Alexander Potapenkob09dd342012-08-20 09:25:10 +0000348 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack); \
349 if (flags()->verbosity >= 2) { \
350 Report(#dispatch_x_f "(): context: %p, pthread_self: %p\n", \
351 asan_ctxt, pthread_self()); \
352 PRINT_CURRENT_STACK(); \
353 } \
354 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
355 asan_dispatch_call_block_and_release); \
Kostya Serebryany0ffc2272012-08-21 06:43:44 +0000356 }
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000357
Alexander Potapenkob09dd342012-08-20 09:25:10 +0000358INTERCEPT_DISPATCH_X_F_3(dispatch_async_f)
359INTERCEPT_DISPATCH_X_F_3(dispatch_sync_f)
360INTERCEPT_DISPATCH_X_F_3(dispatch_barrier_async_f)
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000361
Alexey Samsonovf2598fc2012-02-02 10:39:40 +0000362INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when,
363 dispatch_queue_t dq, void *ctxt,
364 dispatch_function_t func) {
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000365 GET_STACK_TRACE_THREAD;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000366 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack);
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000367 if (flags()->verbosity >= 2) {
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000368 Report("dispatch_after_f: %p\n", asan_ctxt);
369 PRINT_CURRENT_STACK();
370 }
Alexey Samsonov09672ca2012-02-08 13:45:31 +0000371 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
372 asan_dispatch_call_block_and_release);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000373}
374
Alexey Samsonovf2598fc2012-02-02 10:39:40 +0000375INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group,
376 dispatch_queue_t dq, void *ctxt,
377 dispatch_function_t func) {
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000378 GET_STACK_TRACE_THREAD;
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000379 asan_block_context_t *asan_ctxt = alloc_asan_context(ctxt, func, &stack);
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +0000380 if (flags()->verbosity >= 2) {
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000381 Report("dispatch_group_async_f(): context: %p, pthread_self: %p\n",
382 asan_ctxt, pthread_self());
383 PRINT_CURRENT_STACK();
384 }
Alexey Samsonov09672ca2012-02-08 13:45:31 +0000385 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
386 asan_dispatch_call_block_and_release);
Kostya Serebryany1e172b42011-11-30 01:07:02 +0000387}
388
Alexander Potapenko69563982013-02-05 15:57:12 +0000389#if !defined(MISSING_BLOCKS_SUPPORT)
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000390extern "C" {
391// FIXME: consolidate these declarations with asan_intercepted_functions.h.
392void dispatch_async(dispatch_queue_t dq, void(^work)(void));
393void dispatch_group_async(dispatch_group_t dg, dispatch_queue_t dq,
394 void(^work)(void));
395void dispatch_after(dispatch_time_t when, dispatch_queue_t queue,
396 void(^work)(void));
397void dispatch_source_set_cancel_handler(dispatch_source_t ds,
398 void(^work)(void));
399void dispatch_source_set_event_handler(dispatch_source_t ds, void(^work)(void));
400}
401
402#define GET_ASAN_BLOCK(work) \
403 void (^asan_block)(void); \
Alexey Samsonovc25e62b2013-03-20 10:11:24 +0000404 int parent_tid = GetCurrentTidOrInvalid(); \
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000405 asan_block = ^(void) { \
Kostya Serebryanya30c8f92012-12-13 09:34:23 +0000406 GET_STACK_TRACE_THREAD; \
Alexander Potapenkoaf198e42012-08-23 09:34:40 +0000407 asan_register_worker_thread(parent_tid, &stack); \
408 work(); \
409 }
410
411INTERCEPTOR(void, dispatch_async,
412 dispatch_queue_t dq, void(^work)(void)) {
413 GET_ASAN_BLOCK(work);
414 REAL(dispatch_async)(dq, asan_block);
415}
416
417INTERCEPTOR(void, dispatch_group_async,
418 dispatch_group_t dg, dispatch_queue_t dq, void(^work)(void)) {
419 GET_ASAN_BLOCK(work);
420 REAL(dispatch_group_async)(dg, dq, asan_block);
421}
422
423INTERCEPTOR(void, dispatch_after,
424 dispatch_time_t when, dispatch_queue_t queue, void(^work)(void)) {
425 GET_ASAN_BLOCK(work);
426 REAL(dispatch_after)(when, queue, asan_block);
427}
428
429INTERCEPTOR(void, dispatch_source_set_cancel_handler,
430 dispatch_source_t ds, void(^work)(void)) {
431 GET_ASAN_BLOCK(work);
432 REAL(dispatch_source_set_cancel_handler)(ds, asan_block);
433}
434
435INTERCEPTOR(void, dispatch_source_set_event_handler,
436 dispatch_source_t ds, void(^work)(void)) {
437 GET_ASAN_BLOCK(work);
438 REAL(dispatch_source_set_event_handler)(ds, asan_block);
439}
440#endif
441
Alexey Samsonov649a2702013-04-03 07:29:53 +0000442#endif // SANITIZER_MAC