blob: 3c30da3a20a03ad877479fcb3dcd94e3e4739937 [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//
10// This file is shared between AddressSanitizer and ThreadSanitizer
11// run-time libraries and implements mac-specific functions from
12// sanitizer_libc.h.
13//===----------------------------------------------------------------------===//
14
15#ifdef __APPLE__
16
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000017#include "sanitizer_common.h"
Alexey Samsonov5bbf8292012-06-05 14:25:27 +000018#include "sanitizer_internal_defs.h"
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000019#include "sanitizer_libc.h"
Alexey Samsonov28a98952012-06-07 06:15:12 +000020#include "sanitizer_procmaps.h"
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000021
Alexey Samsonov0c53a382012-06-14 14:07:21 +000022#include <crt_externs.h> // for _NSGetEnviron
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000023#include <fcntl.h>
Alexey Samsonov28a98952012-06-07 06:15:12 +000024#include <mach-o/dyld.h>
25#include <mach-o/loader.h>
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000026#include <pthread.h>
Alexey Samsonov58a3c582012-06-18 08:44:30 +000027#include <sched.h>
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000028#include <sys/mman.h>
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000029#include <sys/resource.h>
Alexey Samsonovdde1f112012-06-05 07:05:10 +000030#include <sys/stat.h>
31#include <sys/types.h>
Alexey Samsonov03c8b842012-06-05 08:32:53 +000032#include <unistd.h>
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000033
34namespace __sanitizer {
35
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000036// ---------------------- sanitizer_libc.h
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +000037void *internal_mmap(void *addr, size_t length, int prot, int flags,
38 int fd, u64 offset) {
39 return mmap(addr, length, prot, flags, fd, offset);
40}
41
Alexey Samsonov7ac77d62012-06-05 09:49:25 +000042int internal_munmap(void *addr, uptr length) {
43 return munmap(addr, length);
44}
45
Alexey Samsonov03c8b842012-06-05 08:32:53 +000046int internal_close(fd_t fd) {
47 return close(fd);
48}
49
Alexey Samsonovdde1f112012-06-05 07:05:10 +000050fd_t internal_open(const char *filename, bool write) {
51 return open(filename,
Alexey Samsonov3768b582012-06-05 14:07:11 +000052 write ? O_WRONLY | O_CREAT : O_RDONLY, 0660);
Alexey Samsonovdde1f112012-06-05 07:05:10 +000053}
54
Alexey Samsonov03c8b842012-06-05 08:32:53 +000055uptr internal_read(fd_t fd, void *buf, uptr count) {
56 return read(fd, buf, count);
57}
58
59uptr internal_write(fd_t fd, const void *buf, uptr count) {
60 return write(fd, buf, count);
61}
62
Alexey Samsonovca2b5d72012-06-06 07:30:33 +000063uptr internal_filesize(fd_t fd) {
Alexey Samsonovce8d4972012-08-02 10:09:31 +000064 struct stat st;
Alexey Samsonovca2b5d72012-06-06 07:30:33 +000065 if (fstat(fd, &st))
66 return -1;
67 return (uptr)st.st_size;
68}
69
70int internal_dup2(int oldfd, int newfd) {
71 return dup2(oldfd, newfd);
72}
73
Alexey Samsonovf6d21252012-09-05 14:48:24 +000074uptr internal_readlink(const char *path, char *buf, uptr bufsize) {
75 return readlink(path, buf, bufsize);
76}
77
Alexey Samsonov58a3c582012-06-18 08:44:30 +000078int internal_sched_yield() {
79 return sched_yield();
80}
81
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000082// ----------------- sanitizer_common.h
Alexey Samsonovae9b18b2012-11-09 14:45:30 +000083bool FileExists(const char *filename) {
84 struct stat st;
85 if (stat(filename, &st))
86 return false;
87 // Sanity check: filename is a regular file.
88 return S_ISREG(st.st_mode);
89}
90
Dmitry Vyukov56faa552012-10-02 12:58:14 +000091uptr GetTid() {
92 return reinterpret_cast<uptr>(pthread_self());
93}
94
Alexey Samsonovcf4d3a02012-06-07 07:32:00 +000095void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
Alexey Samsonov4b1f1032012-06-07 07:13:46 +000096 uptr *stack_bottom) {
97 CHECK(stack_top);
98 CHECK(stack_bottom);
99 uptr stacksize = pthread_get_stacksize_np(pthread_self());
100 void *stackaddr = pthread_get_stackaddr_np(pthread_self());
101 *stack_top = (uptr)stackaddr;
Alexey Samsonovcf4d3a02012-06-07 07:32:00 +0000102 *stack_bottom = *stack_top - stacksize;
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000103}
104
Alexey Samsonov0c53a382012-06-14 14:07:21 +0000105const char *GetEnv(const char *name) {
106 char ***env_ptr = _NSGetEnviron();
107 CHECK(env_ptr);
108 char **environ = *env_ptr;
109 CHECK(environ);
110 uptr name_len = internal_strlen(name);
111 while (*environ != 0) {
112 uptr len = internal_strlen(*environ);
113 if (len > name_len) {
114 const char *p = *environ;
115 if (!internal_memcmp(p, name, name_len) &&
116 p[name_len] == '=') { // Match.
117 return *environ + name_len + 1; // String starting after =.
118 }
119 }
120 environ++;
121 }
122 return 0;
123}
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000124
Alexey Samsonov97ca3062012-09-17 09:12:39 +0000125void ReExec() {
126 UNIMPLEMENTED();
127}
128
Alexey Samsonov4b1f1032012-06-07 07:13:46 +0000129// ----------------- sanitizer_procmaps.h
Alexey Samsonov28a98952012-06-07 06:15:12 +0000130
Alexey Samsonovcc622112012-08-27 13:48:48 +0000131MemoryMappingLayout::MemoryMappingLayout() {
Alexey Samsonov28a98952012-06-07 06:15:12 +0000132 Reset();
133}
134
Alexey Samsonovcc622112012-08-27 13:48:48 +0000135MemoryMappingLayout::~MemoryMappingLayout() {
Alexey Samsonov28a98952012-06-07 06:15:12 +0000136}
137
138// More information about Mach-O headers can be found in mach-o/loader.h
139// Each Mach-O image has a header (mach_header or mach_header_64) starting with
140// a magic number, and a list of linker load commands directly following the
141// header.
142// A load command is at least two 32-bit words: the command type and the
143// command size in bytes. We're interested only in segment load commands
144// (LC_SEGMENT and LC_SEGMENT_64), which tell that a part of the file is mapped
145// into the task's address space.
146// The |vmaddr|, |vmsize| and |fileoff| fields of segment_command or
147// segment_command_64 correspond to the memory address, memory size and the
148// file offset of the current memory segment.
149// Because these fields are taken from the images as is, one needs to add
150// _dyld_get_image_vmaddr_slide() to get the actual addresses at runtime.
151
Alexey Samsonovcc622112012-08-27 13:48:48 +0000152void MemoryMappingLayout::Reset() {
Alexey Samsonov28a98952012-06-07 06:15:12 +0000153 // Count down from the top.
154 // TODO(glider): as per man 3 dyld, iterating over the headers with
155 // _dyld_image_count is thread-unsafe. We need to register callbacks for
Alexey Samsonovcc622112012-08-27 13:48:48 +0000156 // adding and removing images which will invalidate the MemoryMappingLayout
157 // state.
Alexey Samsonov28a98952012-06-07 06:15:12 +0000158 current_image_ = _dyld_image_count();
159 current_load_cmd_count_ = -1;
160 current_load_cmd_addr_ = 0;
161 current_magic_ = 0;
Alexander Potapenko77c0ac22012-10-02 15:42:24 +0000162 current_filetype_ = 0;
Alexey Samsonov28a98952012-06-07 06:15:12 +0000163}
164
165// Next and NextSegmentLoad were inspired by base/sysinfo.cc in
166// Google Perftools, http://code.google.com/p/google-perftools.
167
168// NextSegmentLoad scans the current image for the next segment load command
169// and returns the start and end addresses and file offset of the corresponding
170// segment.
171// Note that the segment addresses are not necessarily sorted.
172template<u32 kLCSegment, typename SegmentCommand>
Alexey Samsonovcc622112012-08-27 13:48:48 +0000173bool MemoryMappingLayout::NextSegmentLoad(
Alexey Samsonov28a98952012-06-07 06:15:12 +0000174 uptr *start, uptr *end, uptr *offset,
175 char filename[], uptr filename_size) {
176 const char* lc = current_load_cmd_addr_;
177 current_load_cmd_addr_ += ((const load_command *)lc)->cmdsize;
178 if (((const load_command *)lc)->cmd == kLCSegment) {
179 const sptr dlloff = _dyld_get_image_vmaddr_slide(current_image_);
180 const SegmentCommand* sc = (const SegmentCommand *)lc;
181 if (start) *start = sc->vmaddr + dlloff;
182 if (end) *end = sc->vmaddr + sc->vmsize + dlloff;
Alexander Potapenko77c0ac22012-10-02 15:42:24 +0000183 if (offset) {
184 if (current_filetype_ == /*MH_EXECUTE*/ 0x2) {
185 *offset = sc->vmaddr;
186 } else {
187 *offset = sc->fileoff;
188 }
189 }
Alexey Samsonov28a98952012-06-07 06:15:12 +0000190 if (filename) {
191 internal_strncpy(filename, _dyld_get_image_name(current_image_),
192 filename_size);
193 }
194 return true;
195 }
196 return false;
197}
198
Alexey Samsonovcc622112012-08-27 13:48:48 +0000199bool MemoryMappingLayout::Next(uptr *start, uptr *end, uptr *offset,
200 char filename[], uptr filename_size) {
Alexey Samsonov28a98952012-06-07 06:15:12 +0000201 for (; current_image_ >= 0; current_image_--) {
202 const mach_header* hdr = _dyld_get_image_header(current_image_);
203 if (!hdr) continue;
204 if (current_load_cmd_count_ < 0) {
205 // Set up for this image;
206 current_load_cmd_count_ = hdr->ncmds;
207 current_magic_ = hdr->magic;
Alexander Potapenko77c0ac22012-10-02 15:42:24 +0000208 current_filetype_ = hdr->filetype;
Alexey Samsonov28a98952012-06-07 06:15:12 +0000209 switch (current_magic_) {
210#ifdef MH_MAGIC_64
211 case MH_MAGIC_64: {
212 current_load_cmd_addr_ = (char*)hdr + sizeof(mach_header_64);
213 break;
214 }
215#endif
216 case MH_MAGIC: {
217 current_load_cmd_addr_ = (char*)hdr + sizeof(mach_header);
218 break;
219 }
220 default: {
221 continue;
222 }
223 }
224 }
225
226 for (; current_load_cmd_count_ >= 0; current_load_cmd_count_--) {
227 switch (current_magic_) {
228 // current_magic_ may be only one of MH_MAGIC, MH_MAGIC_64.
229#ifdef MH_MAGIC_64
230 case MH_MAGIC_64: {
231 if (NextSegmentLoad<LC_SEGMENT_64, struct segment_command_64>(
232 start, end, offset, filename, filename_size))
233 return true;
234 break;
235 }
236#endif
237 case MH_MAGIC: {
238 if (NextSegmentLoad<LC_SEGMENT, struct segment_command>(
239 start, end, offset, filename, filename_size))
240 return true;
241 break;
242 }
243 }
244 }
245 // If we get here, no more load_cmd's in this image talk about
246 // segments. Go on to the next image.
247 }
248 return false;
249}
250
Alexey Samsonovcc622112012-08-27 13:48:48 +0000251bool MemoryMappingLayout::GetObjectNameAndOffset(uptr addr, uptr *offset,
252 char filename[],
253 uptr filename_size) {
Alexey Samsonov28a98952012-06-07 06:15:12 +0000254 return IterateForObjectNameAndOffset(addr, offset, filename, filename_size);
255}
256
Alexey Samsonov2c5fc3b2012-06-04 14:27:50 +0000257} // namespace __sanitizer
258
259#endif // __APPLE__