]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
Merge ^/head r318658 through r318963.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / sanitizer_common / sanitizer_mac.cc
1 //===-- sanitizer_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 shared between various sanitizers' runtime libraries and
11 // implements OSX-specific functions.
12 //===----------------------------------------------------------------------===//
13
14 #include "sanitizer_platform.h"
15 #if SANITIZER_MAC
16 #include "sanitizer_mac.h"
17
18 // Use 64-bit inodes in file operations. ASan does not support OS X 10.5, so
19 // the clients will most certainly use 64-bit ones as well.
20 #ifndef _DARWIN_USE_64_BIT_INODE
21 #define _DARWIN_USE_64_BIT_INODE 1
22 #endif
23 #include <stdio.h>
24
25 #include "sanitizer_common.h"
26 #include "sanitizer_flags.h"
27 #include "sanitizer_internal_defs.h"
28 #include "sanitizer_libc.h"
29 #include "sanitizer_placement_new.h"
30 #include "sanitizer_platform_limits_posix.h"
31 #include "sanitizer_procmaps.h"
32
33 #if !SANITIZER_IOS
34 #include <crt_externs.h>  // for _NSGetEnviron
35 #else
36 extern char **environ;
37 #endif
38
39 #if defined(__has_include) && __has_include(<os/trace.h>)
40 #define SANITIZER_OS_TRACE 1
41 #include <os/trace.h>
42 #else
43 #define SANITIZER_OS_TRACE 0
44 #endif
45
46 #if !SANITIZER_IOS
47 #include <crt_externs.h>  // for _NSGetArgv and _NSGetEnviron
48 #else
49 extern "C" {
50   extern char ***_NSGetArgv(void);
51 }
52 #endif
53
54 #include <asl.h>
55 #include <dlfcn.h>  // for dladdr()
56 #include <errno.h>
57 #include <fcntl.h>
58 #include <libkern/OSAtomic.h>
59 #include <mach-o/dyld.h>
60 #include <mach/mach.h>
61 #include <mach/vm_statistics.h>
62 #include <pthread.h>
63 #include <sched.h>
64 #include <signal.h>
65 #include <stdlib.h>
66 #include <sys/mman.h>
67 #include <sys/resource.h>
68 #include <sys/stat.h>
69 #include <sys/sysctl.h>
70 #include <sys/types.h>
71 #include <sys/wait.h>
72 #include <unistd.h>
73 #include <util.h>
74
75 // From <crt_externs.h>, but we don't have that file on iOS.
76 extern "C" {
77   extern char ***_NSGetArgv(void);
78   extern char ***_NSGetEnviron(void);
79 }
80
81 // From <mach/mach_vm.h>, but we don't have that file on iOS.
82 extern "C" {
83   extern kern_return_t mach_vm_region_recurse(
84     vm_map_t target_task,
85     mach_vm_address_t *address,
86     mach_vm_size_t *size,
87     natural_t *nesting_depth,
88     vm_region_recurse_info_t info,
89     mach_msg_type_number_t *infoCnt);
90 }
91
92 namespace __sanitizer {
93
94 #include "sanitizer_syscall_generic.inc"
95
96 // Direct syscalls, don't call libmalloc hooks (but not available on 10.6).
97 extern "C" void *__mmap(void *addr, size_t len, int prot, int flags, int fildes,
98                         off_t off) SANITIZER_WEAK_ATTRIBUTE;
99 extern "C" int __munmap(void *, size_t) SANITIZER_WEAK_ATTRIBUTE;
100
101 // ---------------------- sanitizer_libc.h
102 uptr internal_mmap(void *addr, size_t length, int prot, int flags,
103                    int fd, u64 offset) {
104   if (fd == -1) fd = VM_MAKE_TAG(VM_MEMORY_ANALYSIS_TOOL);
105   if (&__mmap) return (uptr)__mmap(addr, length, prot, flags, fd, offset);
106   return (uptr)mmap(addr, length, prot, flags, fd, offset);
107 }
108
109 uptr internal_munmap(void *addr, uptr length) {
110   if (&__munmap) return __munmap(addr, length);
111   return munmap(addr, length);
112 }
113
114 int internal_mprotect(void *addr, uptr length, int prot) {
115   return mprotect(addr, length, prot);
116 }
117
118 uptr internal_close(fd_t fd) {
119   return close(fd);
120 }
121
122 uptr internal_open(const char *filename, int flags) {
123   return open(filename, flags);
124 }
125
126 uptr internal_open(const char *filename, int flags, u32 mode) {
127   return open(filename, flags, mode);
128 }
129
130 uptr internal_read(fd_t fd, void *buf, uptr count) {
131   return read(fd, buf, count);
132 }
133
134 uptr internal_write(fd_t fd, const void *buf, uptr count) {
135   return write(fd, buf, count);
136 }
137
138 uptr internal_stat(const char *path, void *buf) {
139   return stat(path, (struct stat *)buf);
140 }
141
142 uptr internal_lstat(const char *path, void *buf) {
143   return lstat(path, (struct stat *)buf);
144 }
145
146 uptr internal_fstat(fd_t fd, void *buf) {
147   return fstat(fd, (struct stat *)buf);
148 }
149
150 uptr internal_filesize(fd_t fd) {
151   struct stat st;
152   if (internal_fstat(fd, &st))
153     return -1;
154   return (uptr)st.st_size;
155 }
156
157 uptr internal_dup2(int oldfd, int newfd) {
158   return dup2(oldfd, newfd);
159 }
160
161 uptr internal_readlink(const char *path, char *buf, uptr bufsize) {
162   return readlink(path, buf, bufsize);
163 }
164
165 uptr internal_unlink(const char *path) {
166   return unlink(path);
167 }
168
169 uptr internal_sched_yield() {
170   return sched_yield();
171 }
172
173 void internal__exit(int exitcode) {
174   _exit(exitcode);
175 }
176
177 unsigned int internal_sleep(unsigned int seconds) {
178   return sleep(seconds);
179 }
180
181 uptr internal_getpid() {
182   return getpid();
183 }
184
185 int internal_sigaction(int signum, const void *act, void *oldact) {
186   return sigaction(signum,
187                    (struct sigaction *)act, (struct sigaction *)oldact);
188 }
189
190 void internal_sigfillset(__sanitizer_sigset_t *set) { sigfillset(set); }
191
192 uptr internal_sigprocmask(int how, __sanitizer_sigset_t *set,
193                           __sanitizer_sigset_t *oldset) {
194   return sigprocmask(how, set, oldset);
195 }
196
197 // Doesn't call pthread_atfork() handlers (but not available on 10.6).
198 extern "C" pid_t __fork(void) SANITIZER_WEAK_ATTRIBUTE;
199
200 int internal_fork() {
201   if (&__fork)
202     return __fork();
203   return fork();
204 }
205
206 int internal_forkpty(int *amaster) {
207   int master, slave;
208   if (openpty(&master, &slave, nullptr, nullptr, nullptr) == -1) return -1;
209   int pid = internal_fork();
210   if (pid == -1) {
211     close(master);
212     close(slave);
213     return -1;
214   }
215   if (pid == 0) {
216     close(master);
217     if (login_tty(slave) != 0) {
218       // We already forked, there's not much we can do.  Let's quit.
219       Report("login_tty failed (errno %d)\n", errno);
220       internal__exit(1);
221     }
222   } else {
223     *amaster = master;
224     close(slave);
225   }
226   return pid;
227 }
228
229 uptr internal_rename(const char *oldpath, const char *newpath) {
230   return rename(oldpath, newpath);
231 }
232
233 uptr internal_ftruncate(fd_t fd, uptr size) {
234   return ftruncate(fd, size);
235 }
236
237 uptr internal_execve(const char *filename, char *const argv[],
238                      char *const envp[]) {
239   return execve(filename, argv, envp);
240 }
241
242 uptr internal_waitpid(int pid, int *status, int options) {
243   return waitpid(pid, status, options);
244 }
245
246 // ----------------- sanitizer_common.h
247 bool FileExists(const char *filename) {
248   struct stat st;
249   if (stat(filename, &st))
250     return false;
251   // Sanity check: filename is a regular file.
252   return S_ISREG(st.st_mode);
253 }
254
255 tid_t GetTid() {
256   tid_t tid;
257   pthread_threadid_np(nullptr, &tid);
258   return tid;
259 }
260
261 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
262                                 uptr *stack_bottom) {
263   CHECK(stack_top);
264   CHECK(stack_bottom);
265   uptr stacksize = pthread_get_stacksize_np(pthread_self());
266   // pthread_get_stacksize_np() returns an incorrect stack size for the main
267   // thread on Mavericks. See
268   // https://github.com/google/sanitizers/issues/261
269   if ((GetMacosVersion() >= MACOS_VERSION_MAVERICKS) && at_initialization &&
270       stacksize == (1 << 19))  {
271     struct rlimit rl;
272     CHECK_EQ(getrlimit(RLIMIT_STACK, &rl), 0);
273     // Most often rl.rlim_cur will be the desired 8M.
274     if (rl.rlim_cur < kMaxThreadStackSize) {
275       stacksize = rl.rlim_cur;
276     } else {
277       stacksize = kMaxThreadStackSize;
278     }
279   }
280   void *stackaddr = pthread_get_stackaddr_np(pthread_self());
281   *stack_top = (uptr)stackaddr;
282   *stack_bottom = *stack_top - stacksize;
283 }
284
285 char **GetEnviron() {
286 #if !SANITIZER_IOS
287   char ***env_ptr = _NSGetEnviron();
288   if (!env_ptr) {
289     Report("_NSGetEnviron() returned NULL. Please make sure __asan_init() is "
290            "called after libSystem_initializer().\n");
291     CHECK(env_ptr);
292   }
293   char **environ = *env_ptr;
294 #endif
295   CHECK(environ);
296   return environ;
297 }
298
299 const char *GetEnv(const char *name) {
300   char **env = GetEnviron();
301   uptr name_len = internal_strlen(name);
302   while (*env != 0) {
303     uptr len = internal_strlen(*env);
304     if (len > name_len) {
305       const char *p = *env;
306       if (!internal_memcmp(p, name, name_len) &&
307           p[name_len] == '=') {  // Match.
308         return *env + name_len + 1;  // String starting after =.
309       }
310     }
311     env++;
312   }
313   return 0;
314 }
315
316 uptr ReadBinaryName(/*out*/char *buf, uptr buf_len) {
317   CHECK_LE(kMaxPathLength, buf_len);
318
319   // On OS X the executable path is saved to the stack by dyld. Reading it
320   // from there is much faster than calling dladdr, especially for large
321   // binaries with symbols.
322   InternalScopedString exe_path(kMaxPathLength);
323   uint32_t size = exe_path.size();
324   if (_NSGetExecutablePath(exe_path.data(), &size) == 0 &&
325       realpath(exe_path.data(), buf) != 0) {
326     return internal_strlen(buf);
327   }
328   return 0;
329 }
330
331 uptr ReadLongProcessName(/*out*/char *buf, uptr buf_len) {
332   return ReadBinaryName(buf, buf_len);
333 }
334
335 void ReExec() {
336   UNIMPLEMENTED();
337 }
338
339 uptr GetPageSize() {
340   return sysconf(_SC_PAGESIZE);
341 }
342
343 BlockingMutex::BlockingMutex() {
344   internal_memset(this, 0, sizeof(*this));
345 }
346
347 void BlockingMutex::Lock() {
348   CHECK(sizeof(OSSpinLock) <= sizeof(opaque_storage_));
349   CHECK_EQ(OS_SPINLOCK_INIT, 0);
350   CHECK_EQ(owner_, 0);
351   OSSpinLockLock((OSSpinLock*)&opaque_storage_);
352 }
353
354 void BlockingMutex::Unlock() {
355   OSSpinLockUnlock((OSSpinLock*)&opaque_storage_);
356 }
357
358 void BlockingMutex::CheckLocked() {
359   CHECK_NE(*(OSSpinLock*)&opaque_storage_, 0);
360 }
361
362 u64 NanoTime() {
363   return 0;
364 }
365
366 uptr GetTlsSize() {
367   return 0;
368 }
369
370 void InitTlsSize() {
371 }
372
373 void GetThreadStackAndTls(bool main, uptr *stk_addr, uptr *stk_size,
374                           uptr *tls_addr, uptr *tls_size) {
375 #if !SANITIZER_GO
376   uptr stack_top, stack_bottom;
377   GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
378   *stk_addr = stack_bottom;
379   *stk_size = stack_top - stack_bottom;
380   *tls_addr = 0;
381   *tls_size = 0;
382 #else
383   *stk_addr = 0;
384   *stk_size = 0;
385   *tls_addr = 0;
386   *tls_size = 0;
387 #endif
388 }
389
390 void ListOfModules::init() {
391   clear();
392   MemoryMappingLayout memory_mapping(false);
393   memory_mapping.DumpListOfModules(&modules_);
394 }
395
396 bool IsHandledDeadlySignal(int signum) {
397   // Handling fatal signals on watchOS and tvOS devices is disallowed.
398   if ((SANITIZER_WATCHOS || SANITIZER_TVOS) && !(SANITIZER_IOSSIM))
399     return false;
400   switch (signum) {
401     case SIGABRT:
402       return common_flags()->handle_abort;
403     case SIGILL:
404       return common_flags()->handle_sigill;
405     case SIGFPE:
406       return common_flags()->handle_sigfpe;
407     case SIGSEGV:
408       return common_flags()->handle_segv;
409     case SIGBUS:
410       return common_flags()->handle_sigbus;
411   }
412   return false;
413 }
414
415 MacosVersion cached_macos_version = MACOS_VERSION_UNINITIALIZED;
416
417 MacosVersion GetMacosVersionInternal() {
418   int mib[2] = { CTL_KERN, KERN_OSRELEASE };
419   char version[100];
420   uptr len = 0, maxlen = sizeof(version) / sizeof(version[0]);
421   for (uptr i = 0; i < maxlen; i++) version[i] = '\0';
422   // Get the version length.
423   CHECK_NE(sysctl(mib, 2, 0, &len, 0, 0), -1);
424   CHECK_LT(len, maxlen);
425   CHECK_NE(sysctl(mib, 2, version, &len, 0, 0), -1);
426   switch (version[0]) {
427     case '9': return MACOS_VERSION_LEOPARD;
428     case '1': {
429       switch (version[1]) {
430         case '0': return MACOS_VERSION_SNOW_LEOPARD;
431         case '1': return MACOS_VERSION_LION;
432         case '2': return MACOS_VERSION_MOUNTAIN_LION;
433         case '3': return MACOS_VERSION_MAVERICKS;
434         case '4': return MACOS_VERSION_YOSEMITE;
435         default:
436           if (IsDigit(version[1]))
437             return MACOS_VERSION_UNKNOWN_NEWER;
438           else
439             return MACOS_VERSION_UNKNOWN;
440       }
441     }
442     default: return MACOS_VERSION_UNKNOWN;
443   }
444 }
445
446 MacosVersion GetMacosVersion() {
447   atomic_uint32_t *cache =
448       reinterpret_cast<atomic_uint32_t*>(&cached_macos_version);
449   MacosVersion result =
450       static_cast<MacosVersion>(atomic_load(cache, memory_order_acquire));
451   if (result == MACOS_VERSION_UNINITIALIZED) {
452     result = GetMacosVersionInternal();
453     atomic_store(cache, result, memory_order_release);
454   }
455   return result;
456 }
457
458 bool PlatformHasDifferentMemcpyAndMemmove() {
459   // On OS X 10.7 memcpy() and memmove() are both resolved
460   // into memmove$VARIANT$sse42.
461   // See also https://github.com/google/sanitizers/issues/34.
462   // TODO(glider): need to check dynamically that memcpy() and memmove() are
463   // actually the same function.
464   return GetMacosVersion() == MACOS_VERSION_SNOW_LEOPARD;
465 }
466
467 uptr GetRSS() {
468   struct task_basic_info info;
469   unsigned count = TASK_BASIC_INFO_COUNT;
470   kern_return_t result =
471       task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)&info, &count);
472   if (UNLIKELY(result != KERN_SUCCESS)) {
473     Report("Cannot get task info. Error: %d\n", result);
474     Die();
475   }
476   return info.resident_size;
477 }
478
479 void *internal_start_thread(void(*func)(void *arg), void *arg) {
480   // Start the thread with signals blocked, otherwise it can steal user signals.
481   __sanitizer_sigset_t set, old;
482   internal_sigfillset(&set);
483   internal_sigprocmask(SIG_SETMASK, &set, &old);
484   pthread_t th;
485   pthread_create(&th, 0, (void*(*)(void *arg))func, arg);
486   internal_sigprocmask(SIG_SETMASK, &old, 0);
487   return th;
488 }
489
490 void internal_join_thread(void *th) { pthread_join((pthread_t)th, 0); }
491
492 #if !SANITIZER_GO
493 static BlockingMutex syslog_lock(LINKER_INITIALIZED);
494 #endif
495
496 void WriteOneLineToSyslog(const char *s) {
497 #if !SANITIZER_GO
498   syslog_lock.CheckLocked();
499   asl_log(nullptr, nullptr, ASL_LEVEL_ERR, "%s", s);
500 #endif
501 }
502
503 void LogMessageOnPrintf(const char *str) {
504   // Log all printf output to CrashLog.
505   if (common_flags()->abort_on_error)
506     CRAppendCrashLogMessage(str);
507 }
508
509 void LogFullErrorReport(const char *buffer) {
510 #if !SANITIZER_GO
511   // Log with os_trace. This will make it into the crash log.
512 #if SANITIZER_OS_TRACE
513   if (GetMacosVersion() >= MACOS_VERSION_YOSEMITE) {
514     // os_trace requires the message (format parameter) to be a string literal.
515     if (internal_strncmp(SanitizerToolName, "AddressSanitizer",
516                          sizeof("AddressSanitizer") - 1) == 0)
517       os_trace("Address Sanitizer reported a failure.");
518     else if (internal_strncmp(SanitizerToolName, "UndefinedBehaviorSanitizer",
519                               sizeof("UndefinedBehaviorSanitizer") - 1) == 0)
520       os_trace("Undefined Behavior Sanitizer reported a failure.");
521     else if (internal_strncmp(SanitizerToolName, "ThreadSanitizer",
522                               sizeof("ThreadSanitizer") - 1) == 0)
523       os_trace("Thread Sanitizer reported a failure.");
524     else
525       os_trace("Sanitizer tool reported a failure.");
526
527     if (common_flags()->log_to_syslog)
528       os_trace("Consult syslog for more information.");
529   }
530 #endif
531
532   // Log to syslog.
533   // The logging on OS X may call pthread_create so we need the threading
534   // environment to be fully initialized. Also, this should never be called when
535   // holding the thread registry lock since that may result in a deadlock. If
536   // the reporting thread holds the thread registry mutex, and asl_log waits
537   // for GCD to dispatch a new thread, the process will deadlock, because the
538   // pthread_create wrapper needs to acquire the lock as well.
539   BlockingMutexLock l(&syslog_lock);
540   if (common_flags()->log_to_syslog)
541     WriteToSyslog(buffer);
542
543   // The report is added to CrashLog as part of logging all of Printf output.
544 #endif
545 }
546
547 SignalContext::WriteFlag SignalContext::GetWriteFlag(void *context) {
548 #if defined(__x86_64__) || defined(__i386__)
549   ucontext_t *ucontext = static_cast<ucontext_t*>(context);
550   return ucontext->uc_mcontext->__es.__err & 2 /*T_PF_WRITE*/ ? WRITE : READ;
551 #else
552   return UNKNOWN;
553 #endif
554 }
555
556 void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp) {
557   ucontext_t *ucontext = (ucontext_t*)context;
558 # if defined(__aarch64__)
559   *pc = ucontext->uc_mcontext->__ss.__pc;
560 #   if defined(__IPHONE_8_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_8_0
561   *bp = ucontext->uc_mcontext->__ss.__fp;
562 #   else
563   *bp = ucontext->uc_mcontext->__ss.__lr;
564 #   endif
565   *sp = ucontext->uc_mcontext->__ss.__sp;
566 # elif defined(__x86_64__)
567   *pc = ucontext->uc_mcontext->__ss.__rip;
568   *bp = ucontext->uc_mcontext->__ss.__rbp;
569   *sp = ucontext->uc_mcontext->__ss.__rsp;
570 # elif defined(__arm__)
571   *pc = ucontext->uc_mcontext->__ss.__pc;
572   *bp = ucontext->uc_mcontext->__ss.__r[7];
573   *sp = ucontext->uc_mcontext->__ss.__sp;
574 # elif defined(__i386__)
575   *pc = ucontext->uc_mcontext->__ss.__eip;
576   *bp = ucontext->uc_mcontext->__ss.__ebp;
577   *sp = ucontext->uc_mcontext->__ss.__esp;
578 # else
579 # error "Unknown architecture"
580 # endif
581 }
582
583 #if !SANITIZER_GO
584 static const char kDyldInsertLibraries[] = "DYLD_INSERT_LIBRARIES";
585 LowLevelAllocator allocator_for_env;
586
587 // Change the value of the env var |name|, leaking the original value.
588 // If |name_value| is NULL, the variable is deleted from the environment,
589 // otherwise the corresponding "NAME=value" string is replaced with
590 // |name_value|.
591 void LeakyResetEnv(const char *name, const char *name_value) {
592   char **env = GetEnviron();
593   uptr name_len = internal_strlen(name);
594   while (*env != 0) {
595     uptr len = internal_strlen(*env);
596     if (len > name_len) {
597       const char *p = *env;
598       if (!internal_memcmp(p, name, name_len) && p[name_len] == '=') {
599         // Match.
600         if (name_value) {
601           // Replace the old value with the new one.
602           *env = const_cast<char*>(name_value);
603         } else {
604           // Shift the subsequent pointers back.
605           char **del = env;
606           do {
607             del[0] = del[1];
608           } while (*del++);
609         }
610       }
611     }
612     env++;
613   }
614 }
615
616 SANITIZER_WEAK_CXX_DEFAULT_IMPL
617 bool ReexecDisabled() {
618   return false;
619 }
620
621 extern "C" SANITIZER_WEAK_ATTRIBUTE double dyldVersionNumber;
622 static const double kMinDyldVersionWithAutoInterposition = 360.0;
623
624 bool DyldNeedsEnvVariable() {
625   // Although sanitizer support was added to LLVM on OS X 10.7+, GCC users
626   // still may want use them on older systems. On older Darwin platforms, dyld
627   // doesn't export dyldVersionNumber symbol and we simply return true.
628   if (!&dyldVersionNumber) return true;
629   // If running on OS X 10.11+ or iOS 9.0+, dyld will interpose even if
630   // DYLD_INSERT_LIBRARIES is not set. However, checking OS version via
631   // GetMacosVersion() doesn't work for the simulator. Let's instead check
632   // `dyldVersionNumber`, which is exported by dyld, against a known version
633   // number from the first OS release where this appeared.
634   return dyldVersionNumber < kMinDyldVersionWithAutoInterposition;
635 }
636
637 void MaybeReexec() {
638   if (ReexecDisabled()) return;
639
640   // Make sure the dynamic runtime library is preloaded so that the
641   // wrappers work. If it is not, set DYLD_INSERT_LIBRARIES and re-exec
642   // ourselves.
643   Dl_info info;
644   RAW_CHECK(dladdr((void*)((uptr)&__sanitizer_report_error_summary), &info));
645   char *dyld_insert_libraries =
646       const_cast<char*>(GetEnv(kDyldInsertLibraries));
647   uptr old_env_len = dyld_insert_libraries ?
648       internal_strlen(dyld_insert_libraries) : 0;
649   uptr fname_len = internal_strlen(info.dli_fname);
650   const char *dylib_name = StripModuleName(info.dli_fname);
651   uptr dylib_name_len = internal_strlen(dylib_name);
652
653   bool lib_is_in_env = dyld_insert_libraries &&
654                        internal_strstr(dyld_insert_libraries, dylib_name);
655   if (DyldNeedsEnvVariable() && !lib_is_in_env) {
656     // DYLD_INSERT_LIBRARIES is not set or does not contain the runtime
657     // library.
658     InternalScopedString program_name(1024);
659     uint32_t buf_size = program_name.size();
660     _NSGetExecutablePath(program_name.data(), &buf_size);
661     char *new_env = const_cast<char*>(info.dli_fname);
662     if (dyld_insert_libraries) {
663       // Append the runtime dylib name to the existing value of
664       // DYLD_INSERT_LIBRARIES.
665       new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
666       internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
667       new_env[old_env_len] = ':';
668       // Copy fname_len and add a trailing zero.
669       internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
670                        fname_len + 1);
671       // Ok to use setenv() since the wrappers don't depend on the value of
672       // asan_inited.
673       setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
674     } else {
675       // Set DYLD_INSERT_LIBRARIES equal to the runtime dylib name.
676       setenv(kDyldInsertLibraries, info.dli_fname, /*overwrite*/0);
677     }
678     VReport(1, "exec()-ing the program with\n");
679     VReport(1, "%s=%s\n", kDyldInsertLibraries, new_env);
680     VReport(1, "to enable wrappers.\n");
681     execv(program_name.data(), *_NSGetArgv());
682
683     // We get here only if execv() failed.
684     Report("ERROR: The process is launched without DYLD_INSERT_LIBRARIES, "
685            "which is required for the sanitizer to work. We tried to set the "
686            "environment variable and re-execute itself, but execv() failed, "
687            "possibly because of sandbox restrictions. Make sure to launch the "
688            "executable with:\n%s=%s\n", kDyldInsertLibraries, new_env);
689     RAW_CHECK("execv failed" && 0);
690   }
691
692   // Verify that interceptors really work.  We'll use dlsym to locate
693   // "pthread_create", if interceptors are working, it should really point to
694   // "wrap_pthread_create" within our own dylib.
695   Dl_info info_pthread_create;
696   void *dlopen_addr = dlsym(RTLD_DEFAULT, "pthread_create");
697   RAW_CHECK(dladdr(dlopen_addr, &info_pthread_create));
698   if (internal_strcmp(info.dli_fname, info_pthread_create.dli_fname) != 0) {
699     Report(
700         "ERROR: Interceptors are not working. This may be because %s is "
701         "loaded too late (e.g. via dlopen). Please launch the executable "
702         "with:\n%s=%s\n",
703         SanitizerToolName, kDyldInsertLibraries, info.dli_fname);
704     RAW_CHECK("interceptors not installed" && 0);
705   }
706
707   if (!lib_is_in_env)
708     return;
709
710   // DYLD_INSERT_LIBRARIES is set and contains the runtime library. Let's remove
711   // the dylib from the environment variable, because interceptors are installed
712   // and we don't want our children to inherit the variable.
713
714   uptr env_name_len = internal_strlen(kDyldInsertLibraries);
715   // Allocate memory to hold the previous env var name, its value, the '='
716   // sign and the '\0' char.
717   char *new_env = (char*)allocator_for_env.Allocate(
718       old_env_len + 2 + env_name_len);
719   RAW_CHECK(new_env);
720   internal_memset(new_env, '\0', old_env_len + 2 + env_name_len);
721   internal_strncpy(new_env, kDyldInsertLibraries, env_name_len);
722   new_env[env_name_len] = '=';
723   char *new_env_pos = new_env + env_name_len + 1;
724
725   // Iterate over colon-separated pieces of |dyld_insert_libraries|.
726   char *piece_start = dyld_insert_libraries;
727   char *piece_end = NULL;
728   char *old_env_end = dyld_insert_libraries + old_env_len;
729   do {
730     if (piece_start[0] == ':') piece_start++;
731     piece_end = internal_strchr(piece_start, ':');
732     if (!piece_end) piece_end = dyld_insert_libraries + old_env_len;
733     if ((uptr)(piece_start - dyld_insert_libraries) > old_env_len) break;
734     uptr piece_len = piece_end - piece_start;
735
736     char *filename_start =
737         (char *)internal_memrchr(piece_start, '/', piece_len);
738     uptr filename_len = piece_len;
739     if (filename_start) {
740       filename_start += 1;
741       filename_len = piece_len - (filename_start - piece_start);
742     } else {
743       filename_start = piece_start;
744     }
745
746     // If the current piece isn't the runtime library name,
747     // append it to new_env.
748     if ((dylib_name_len != filename_len) ||
749         (internal_memcmp(filename_start, dylib_name, dylib_name_len) != 0)) {
750       if (new_env_pos != new_env + env_name_len + 1) {
751         new_env_pos[0] = ':';
752         new_env_pos++;
753       }
754       internal_strncpy(new_env_pos, piece_start, piece_len);
755       new_env_pos += piece_len;
756     }
757     // Move on to the next piece.
758     piece_start = piece_end;
759   } while (piece_start < old_env_end);
760
761   // Can't use setenv() here, because it requires the allocator to be
762   // initialized.
763   // FIXME: instead of filtering DYLD_INSERT_LIBRARIES here, do it in
764   // a separate function called after InitializeAllocator().
765   if (new_env_pos == new_env + env_name_len + 1) new_env = NULL;
766   LeakyResetEnv(kDyldInsertLibraries, new_env);
767 }
768 #endif  // SANITIZER_GO
769
770 char **GetArgv() {
771   return *_NSGetArgv();
772 }
773
774 uptr FindAvailableMemoryRange(uptr shadow_size,
775                               uptr alignment,
776                               uptr left_padding) {
777   typedef vm_region_submap_short_info_data_64_t RegionInfo;
778   enum { kRegionInfoSize = VM_REGION_SUBMAP_SHORT_INFO_COUNT_64 };
779   // Start searching for available memory region past PAGEZERO, which is
780   // 4KB on 32-bit and 4GB on 64-bit.
781   mach_vm_address_t start_address =
782     (SANITIZER_WORDSIZE == 32) ? 0x000000001000 : 0x000100000000;
783
784   mach_vm_address_t address = start_address;
785   mach_vm_address_t free_begin = start_address;
786   kern_return_t kr = KERN_SUCCESS;
787   while (kr == KERN_SUCCESS) {
788     mach_vm_size_t vmsize = 0;
789     natural_t depth = 0;
790     RegionInfo vminfo;
791     mach_msg_type_number_t count = kRegionInfoSize;
792     kr = mach_vm_region_recurse(mach_task_self(), &address, &vmsize, &depth,
793                                 (vm_region_info_t)&vminfo, &count);
794     if (free_begin != address) {
795       // We found a free region [free_begin..address-1].
796       uptr shadow_address = RoundUpTo((uptr)free_begin + left_padding,
797                                       alignment);
798       if (shadow_address + shadow_size < (uptr)address) {
799         return shadow_address;
800       }
801     }
802     // Move to the next region.
803     address += vmsize;
804     free_begin = address;
805   }
806
807   // We looked at all free regions and could not find one large enough.
808   return 0;
809 }
810
811 // FIXME implement on this platform.
812 void GetMemoryProfile(fill_profile_f cb, uptr *stats, uptr stats_size) { }
813
814 void SignalContext::DumpAllRegisters(void *context) {
815   Report("Register values:\n");
816
817   ucontext_t *ucontext = (ucontext_t*)context;
818 # define DUMPREG64(r) \
819     Printf("%s = 0x%016llx  ", #r, ucontext->uc_mcontext->__ss.__ ## r);
820 # define DUMPREG32(r) \
821     Printf("%s = 0x%08x  ", #r, ucontext->uc_mcontext->__ss.__ ## r);
822 # define DUMPREG_(r)   Printf(" "); DUMPREG(r);
823 # define DUMPREG__(r)  Printf("  "); DUMPREG(r);
824 # define DUMPREG___(r) Printf("   "); DUMPREG(r);
825
826 # if defined(__x86_64__)
827 #  define DUMPREG(r) DUMPREG64(r)
828   DUMPREG(rax); DUMPREG(rbx); DUMPREG(rcx); DUMPREG(rdx); Printf("\n");
829   DUMPREG(rdi); DUMPREG(rsi); DUMPREG(rbp); DUMPREG(rsp); Printf("\n");
830   DUMPREG_(r8); DUMPREG_(r9); DUMPREG(r10); DUMPREG(r11); Printf("\n");
831   DUMPREG(r12); DUMPREG(r13); DUMPREG(r14); DUMPREG(r15); Printf("\n");
832 # elif defined(__i386__)
833 #  define DUMPREG(r) DUMPREG32(r)
834   DUMPREG(eax); DUMPREG(ebx); DUMPREG(ecx); DUMPREG(edx); Printf("\n");
835   DUMPREG(edi); DUMPREG(esi); DUMPREG(ebp); DUMPREG(esp); Printf("\n");
836 # elif defined(__aarch64__)
837 #  define DUMPREG(r) DUMPREG64(r)
838   DUMPREG_(x[0]); DUMPREG_(x[1]); DUMPREG_(x[2]); DUMPREG_(x[3]); Printf("\n");
839   DUMPREG_(x[4]); DUMPREG_(x[5]); DUMPREG_(x[6]); DUMPREG_(x[7]); Printf("\n");
840   DUMPREG_(x[8]); DUMPREG_(x[9]); DUMPREG(x[10]); DUMPREG(x[11]); Printf("\n");
841   DUMPREG(x[12]); DUMPREG(x[13]); DUMPREG(x[14]); DUMPREG(x[15]); Printf("\n");
842   DUMPREG(x[16]); DUMPREG(x[17]); DUMPREG(x[18]); DUMPREG(x[19]); Printf("\n");
843   DUMPREG(x[20]); DUMPREG(x[21]); DUMPREG(x[22]); DUMPREG(x[23]); Printf("\n");
844   DUMPREG(x[24]); DUMPREG(x[25]); DUMPREG(x[26]); DUMPREG(x[27]); Printf("\n");
845   DUMPREG(x[28]); DUMPREG___(fp); DUMPREG___(lr); DUMPREG___(sp); Printf("\n");
846 # elif defined(__arm__)
847 #  define DUMPREG(r) DUMPREG32(r)
848   DUMPREG_(r[0]); DUMPREG_(r[1]); DUMPREG_(r[2]); DUMPREG_(r[3]); Printf("\n");
849   DUMPREG_(r[4]); DUMPREG_(r[5]); DUMPREG_(r[6]); DUMPREG_(r[7]); Printf("\n");
850   DUMPREG_(r[8]); DUMPREG_(r[9]); DUMPREG(r[10]); DUMPREG(r[11]); Printf("\n");
851   DUMPREG(r[12]); DUMPREG___(sp); DUMPREG___(lr); DUMPREG___(pc); Printf("\n");
852 # else
853 # error "Unknown architecture"
854 # endif
855
856 # undef DUMPREG64
857 # undef DUMPREG32
858 # undef DUMPREG_
859 # undef DUMPREG__
860 # undef DUMPREG___
861 # undef DUMPREG
862 }
863
864 static inline bool CompareBaseAddress(const LoadedModule &a,
865                                       const LoadedModule &b) {
866   return a.base_address() < b.base_address();
867 }
868
869 void FormatUUID(char *out, uptr size, const u8 *uuid) {
870   internal_snprintf(out, size,
871                     "<%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-"
872                     "%02X%02X%02X%02X%02X%02X>",
873                     uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5],
874                     uuid[6], uuid[7], uuid[8], uuid[9], uuid[10], uuid[11],
875                     uuid[12], uuid[13], uuid[14], uuid[15]);
876 }
877
878 void PrintModuleMap() {
879   Printf("Process module map:\n");
880   MemoryMappingLayout memory_mapping(false);
881   InternalMmapVector<LoadedModule> modules(/*initial_capacity*/ 128);
882   memory_mapping.DumpListOfModules(&modules);
883   InternalSort(&modules, modules.size(), CompareBaseAddress);
884   for (uptr i = 0; i < modules.size(); ++i) {
885     char uuid_str[128];
886     FormatUUID(uuid_str, sizeof(uuid_str), modules[i].uuid());
887     Printf("0x%zx-0x%zx %s (%s) %s\n", modules[i].base_address(),
888            modules[i].max_executable_address(), modules[i].full_name(),
889            ModuleArchToString(modules[i].arch()), uuid_str);
890   }
891   Printf("End of module map.\n");
892 }
893
894 void CheckNoDeepBind(const char *filename, int flag) {
895   // Do nothing.
896 }
897
898 }  // namespace __sanitizer
899
900 #endif  // SANITIZER_MAC