blob: 747513de50ed367f2973b765e495415eaed591d6 [file] [log] [blame]
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +00001//===-- 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//
Alexander Potapenko768e3152014-02-03 15:32:19 +000010// This file is shared between various sanitizers' runtime libraries and
11// implements OSX-specific functions.
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000012//===----------------------------------------------------------------------===//
13
Evgeniy Stepanov0af67232013-03-19 14:33:38 +000014#include "sanitizer_platform.h"
15#if SANITIZER_MAC
16
Alexander Potapenkod895ae92013-02-06 14:41:15 +000017// Use 64-bit inodes in file operations. ASan does not support OS X 10.5, so
18// the clients will most certainly use 64-bit ones as well.
19#ifndef _DARWIN_USE_64_BIT_INODE
20#define _DARWIN_USE_64_BIT_INODE 1
21#endif
22#include <stdio.h>
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000023
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000024#include "sanitizer_common.h"
Alexander Potapenko789e3e12014-01-31 13:10:07 +000025#include "sanitizer_flags.h"
Alexey Samsonov5bbf8292012-06-05 14:25:27 +000026#include "sanitizer_internal_defs.h"
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000027#include "sanitizer_libc.h"
Alexander Potapenko768e3152014-02-03 15:32:19 +000028#include "sanitizer_mac.h"
Alexey Samsonov7a36e612013-09-10 14:36:16 +000029#include "sanitizer_placement_new.h"
Alexey Samsonov28a98952012-06-07 06:15:12 +000030#include "sanitizer_procmaps.h"
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000031
Alexey Samsonov0c53a382012-06-14 14:07:21 +000032#include <crt_externs.h> // for _NSGetEnviron
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000033#include <fcntl.h>
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000034#include <pthread.h>
Alexey Samsonov58a3c582012-06-18 08:44:30 +000035#include <sched.h>
Alexander Potapenko789e3e12014-01-31 13:10:07 +000036#include <signal.h>
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000037#include <sys/mman.h>
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000038#include <sys/resource.h>
Alexey Samsonovdde1f112012-06-05 07:05:10 +000039#include <sys/stat.h>
Alexander Potapenko768e3152014-02-03 15:32:19 +000040#include <sys/sysctl.h>
Alexey Samsonovdde1f112012-06-05 07:05:10 +000041#include <sys/types.h>
Alexey Samsonov03c8b842012-06-05 08:32:53 +000042#include <unistd.h>
Dmitry Vyukovaf4b0b02013-01-14 08:01:58 +000043#include <libkern/OSAtomic.h>
Peter Collingbourne8e110ce2013-05-08 15:07:12 +000044#include <errno.h>
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000045
46namespace __sanitizer {
47
Peter Collingbourne6f4be192013-05-08 14:43:49 +000048#include "sanitizer_syscall_generic.inc"
49
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000050// ---------------------- sanitizer_libc.h
Peter Collingbourne8e110ce2013-05-08 15:07:12 +000051uptr internal_mmap(void *addr, size_t length, int prot, int flags,
52 int fd, u64 offset) {
53 return (uptr)mmap(addr, length, prot, flags, fd, offset);
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000054}
55
Peter Collingbourne8e110ce2013-05-08 15:07:12 +000056uptr internal_munmap(void *addr, uptr length) {
Alexey Samsonov7ac77d62012-06-05 09:49:25 +000057 return munmap(addr, length);
58}
59
Peter Collingbourne6f4be192013-05-08 14:43:49 +000060uptr internal_close(fd_t fd) {
Alexey Samsonov03c8b842012-06-05 08:32:53 +000061 return close(fd);
62}
63
Peter Collingbourne6f4be192013-05-08 14:43:49 +000064uptr internal_open(const char *filename, int flags) {
Alexey Samsonov39313b72013-02-01 15:58:46 +000065 return open(filename, flags);
66}
67
Peter Collingbourne6f4be192013-05-08 14:43:49 +000068uptr internal_open(const char *filename, int flags, u32 mode) {
Alexey Samsonov39313b72013-02-01 15:58:46 +000069 return open(filename, flags, mode);
70}
71
Peter Collingbourne6f4be192013-05-08 14:43:49 +000072uptr OpenFile(const char *filename, bool write) {
Alexey Samsonov39313b72013-02-01 15:58:46 +000073 return internal_open(filename,
74 write ? O_WRONLY | O_CREAT : O_RDONLY, 0660);
Alexey Samsonovdde1f112012-06-05 07:05:10 +000075}
76
Alexey Samsonov03c8b842012-06-05 08:32:53 +000077uptr internal_read(fd_t fd, void *buf, uptr count) {
78 return read(fd, buf, count);
79}
80
81uptr internal_write(fd_t fd, const void *buf, uptr count) {
82 return write(fd, buf, count);
83}
84
Peter Collingbourne6f4be192013-05-08 14:43:49 +000085uptr internal_stat(const char *path, void *buf) {
Alexey Samsonov576e2702013-02-04 10:31:39 +000086 return stat(path, (struct stat *)buf);
Alexey Samsonov2c5cbd22013-02-04 10:16:50 +000087}
88
Peter Collingbourne6f4be192013-05-08 14:43:49 +000089uptr internal_lstat(const char *path, void *buf) {
Alexey Samsonov576e2702013-02-04 10:31:39 +000090 return lstat(path, (struct stat *)buf);
Alexey Samsonov2c5cbd22013-02-04 10:16:50 +000091}
92
Peter Collingbourne6f4be192013-05-08 14:43:49 +000093uptr internal_fstat(fd_t fd, void *buf) {
Alexey Samsonov576e2702013-02-04 10:31:39 +000094 return fstat(fd, (struct stat *)buf);
Alexey Samsonov2c5cbd22013-02-04 10:16:50 +000095}
96
Alexey Samsonovca2b5d72012-06-06 07:30:33 +000097uptr internal_filesize(fd_t fd) {
Alexey Samsonovce8d4972012-08-02 10:09:31 +000098 struct stat st;
Alexey Samsonov2c5cbd22013-02-04 10:16:50 +000099 if (internal_fstat(fd, &st))
Alexey Samsonovca2b5d72012-06-06 07:30:33 +0000100 return -1;
101 return (uptr)st.st_size;
102}
103
Peter Collingbourne6f4be192013-05-08 14:43:49 +0000104uptr internal_dup2(int oldfd, int newfd) {
Alexey Samsonovca2b5d72012-06-06 07:30:33 +0000105 return dup2(oldfd, newfd);
106}
107
Alexey Samsonovf6d21252012-09-05 14:48:24 +0000108uptr internal_readlink(const char *path, char *buf, uptr bufsize) {
109 return readlink(path, buf, bufsize);
110}
111
Peter Collingbourne6f4be192013-05-08 14:43:49 +0000112uptr internal_sched_yield() {
Alexey Samsonov58a3c582012-06-18 08:44:30 +0000113 return sched_yield();
114}
115
Alexey Samsonovaadd1f22013-02-20 13:54:32 +0000116void internal__exit(int exitcode) {
117 _exit(exitcode);
118}
119
Peter Collingbourneffaf2ea2013-05-17 16:56:53 +0000120uptr internal_getpid() {
121 return getpid();
122}
123
Alexander Potapenko789e3e12014-01-31 13:10:07 +0000124int internal_sigaction(int signum, const void *act, void *oldact) {
125 return sigaction(signum,
126 (struct sigaction *)act, (struct sigaction *)oldact);
127}
128
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000129// ----------------- sanitizer_common.h
Alexey Samsonovae9b18b2012-11-09 14:45:30 +0000130bool FileExists(const char *filename) {
131 struct stat st;
132 if (stat(filename, &st))
133 return false;
134 // Sanity check: filename is a regular file.
135 return S_ISREG(st.st_mode);
136}
137
Dmitry Vyukov56faa552012-10-02 12:58:14 +0000138uptr GetTid() {
139 return reinterpret_cast<uptr>(pthread_self());
140}
141
Alexey Samsonovcf4d3a02012-06-07 07:32:00 +0000142void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000143 uptr *stack_bottom) {
144 CHECK(stack_top);
145 CHECK(stack_bottom);
146 uptr stacksize = pthread_get_stacksize_np(pthread_self());
Alexander Potapenkof6ff6b02014-02-03 16:42:29 +0000147 // pthread_get_stacksize_np() returns an incorrect stack size for the main
148 // thread on Mavericks. See
149 // https://code.google.com/p/address-sanitizer/issues/detail?id=261
150 if ((GetMacosVersion() == MACOS_VERSION_MAVERICKS) && at_initialization &&
151 stacksize == (1 << 19)) {
152 struct rlimit rl;
153 CHECK_EQ(getrlimit(RLIMIT_STACK, &rl), 0);
154 // Most often rl.rlim_cur will be the desired 8M.
155 if (rl.rlim_cur < kMaxThreadStackSize) {
156 stacksize = rl.rlim_cur;
157 } else {
158 stacksize = kMaxThreadStackSize;
159 }
160 }
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000161 void *stackaddr = pthread_get_stackaddr_np(pthread_self());
162 *stack_top = (uptr)stackaddr;
Alexey Samsonovcf4d3a02012-06-07 07:32:00 +0000163 *stack_bottom = *stack_top - stacksize;
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000164}
165
Alexey Samsonov0c53a382012-06-14 14:07:21 +0000166const char *GetEnv(const char *name) {
167 char ***env_ptr = _NSGetEnviron();
Alexander Potapenkofa82ba92013-11-13 13:34:53 +0000168 if (!env_ptr) {
169 Report("_NSGetEnviron() returned NULL. Please make sure __asan_init() is "
170 "called after libSystem_initializer().\n");
171 CHECK(env_ptr);
172 }
Alexey Samsonov0c53a382012-06-14 14:07:21 +0000173 char **environ = *env_ptr;
174 CHECK(environ);
175 uptr name_len = internal_strlen(name);
176 while (*environ != 0) {
177 uptr len = internal_strlen(*environ);
178 if (len > name_len) {
179 const char *p = *environ;
180 if (!internal_memcmp(p, name, name_len) &&
181 p[name_len] == '=') { // Match.
182 return *environ + name_len + 1; // String starting after =.
183 }
184 }
185 environ++;
186 }
187 return 0;
188}
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000189
Alexey Samsonov97ca3062012-09-17 09:12:39 +0000190void ReExec() {
191 UNIMPLEMENTED();
192}
193
Alexander Potapenko1746f552012-12-10 13:10:40 +0000194void PrepareForSandboxing() {
195 // Nothing here for now.
196}
197
Peter Collingbourneb69b8a42013-05-20 17:05:29 +0000198uptr GetPageSize() {
199 return sysconf(_SC_PAGESIZE);
200}
201
Dmitry Vyukovf22982b2013-01-14 07:51:39 +0000202BlockingMutex::BlockingMutex(LinkerInitialized) {
203 // We assume that OS_SPINLOCK_INIT is zero
204}
205
Alexey Samsonova097f7b2013-03-14 13:30:56 +0000206BlockingMutex::BlockingMutex() {
207 internal_memset(this, 0, sizeof(*this));
208}
209
Dmitry Vyukovf22982b2013-01-14 07:51:39 +0000210void BlockingMutex::Lock() {
211 CHECK(sizeof(OSSpinLock) <= sizeof(opaque_storage_));
Kostya Serebryany459df6f2013-02-26 12:59:06 +0000212 CHECK_EQ(OS_SPINLOCK_INIT, 0);
213 CHECK_NE(owner_, (uptr)pthread_self());
Dmitry Vyukovf22982b2013-01-14 07:51:39 +0000214 OSSpinLockLock((OSSpinLock*)&opaque_storage_);
215 CHECK(!owner_);
216 owner_ = (uptr)pthread_self();
217}
218
219void BlockingMutex::Unlock() {
220 CHECK(owner_ == (uptr)pthread_self());
221 owner_ = 0;
222 OSSpinLockUnlock((OSSpinLock*)&opaque_storage_);
223}
224
Alexey Samsonovdb7d9652013-03-11 15:45:20 +0000225void BlockingMutex::CheckLocked() {
226 CHECK_EQ((uptr)pthread_self(), owner_);
227}
228
Dmitry Vyukovc9e304a2013-06-06 13:00:32 +0000229u64 NanoTime() {
230 return 0;
231}
232
Evgeniy Stepanov5697b582013-03-13 08:19:53 +0000233uptr GetTlsSize() {
234 return 0;
235}
236
237void InitTlsSize() {
238}
239
Sergey Matveev954c6ef12013-05-07 14:41:43 +0000240void GetThreadStackAndTls(bool main, uptr *stk_addr, uptr *stk_size,
241 uptr *tls_addr, uptr *tls_size) {
Dmitry Vyukovce0247c2013-06-06 13:20:40 +0000242#ifndef SANITIZER_GO
Sergey Matveev954c6ef12013-05-07 14:41:43 +0000243 uptr stack_top, stack_bottom;
244 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
245 *stk_addr = stack_bottom;
246 *stk_size = stack_top - stack_bottom;
247 *tls_addr = 0;
248 *tls_size = 0;
Dmitry Vyukovce0247c2013-06-06 13:20:40 +0000249#else
250 *stk_addr = 0;
251 *stk_size = 0;
252 *tls_addr = 0;
253 *tls_size = 0;
254#endif
Sergey Matveev954c6ef12013-05-07 14:41:43 +0000255}
256
Alexey Samsonov7a36e612013-09-10 14:36:16 +0000257uptr GetListOfModules(LoadedModule *modules, uptr max_modules,
258 string_predicate_t filter) {
259 MemoryMappingLayout memory_mapping(false);
Alexey Samsonov64ffa592013-12-25 08:39:38 +0000260 return memory_mapping.DumpListOfModules(modules, max_modules, filter);
Alexey Samsonov7a36e612013-09-10 14:36:16 +0000261}
262
Alexander Potapenko789e3e12014-01-31 13:10:07 +0000263bool IsDeadlySignal(int signum) {
264 return (signum == SIGSEGV || signum == SIGBUS) && common_flags()->handle_segv;
265}
266
Alexander Potapenko768e3152014-02-03 15:32:19 +0000267MacosVersion cached_macos_version = MACOS_VERSION_UNINITIALIZED;
268
269MacosVersion GetMacosVersionInternal() {
270 int mib[2] = { CTL_KERN, KERN_OSRELEASE };
271 char version[100];
272 uptr len = 0, maxlen = sizeof(version) / sizeof(version[0]);
273 for (uptr i = 0; i < maxlen; i++) version[i] = '\0';
274 // Get the version length.
275 CHECK_NE(sysctl(mib, 2, 0, &len, 0, 0), -1);
276 CHECK_LT(len, maxlen);
277 CHECK_NE(sysctl(mib, 2, version, &len, 0, 0), -1);
278 switch (version[0]) {
279 case '9': return MACOS_VERSION_LEOPARD;
280 case '1': {
281 switch (version[1]) {
282 case '0': return MACOS_VERSION_SNOW_LEOPARD;
283 case '1': return MACOS_VERSION_LION;
284 case '2': return MACOS_VERSION_MOUNTAIN_LION;
285 case '3': return MACOS_VERSION_MAVERICKS;
286 default: return MACOS_VERSION_UNKNOWN;
287 }
288 }
289 default: return MACOS_VERSION_UNKNOWN;
290 }
291}
292
293MacosVersion GetMacosVersion() {
294 atomic_uint32_t *cache =
295 reinterpret_cast<atomic_uint32_t*>(&cached_macos_version);
296 MacosVersion result =
297 static_cast<MacosVersion>(atomic_load(cache, memory_order_acquire));
298 if (result == MACOS_VERSION_UNINITIALIZED) {
299 result = GetMacosVersionInternal();
300 atomic_store(cache, result, memory_order_release);
301 }
302 return result;
303}
304
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +0000305} // namespace __sanitizer
306
Alexey Samsonova0e28a72013-04-03 07:24:35 +0000307#endif // SANITIZER_MAC