1 //===-- sanitizer_fuchsia.cc ---------------------------------------------===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===---------------------------------------------------------------------===//
8 // This file is shared between AddressSanitizer and other sanitizer
9 // run-time libraries and implements Fuchsia-specific functions from
10 // sanitizer_common.h.
11 //===---------------------------------------------------------------------===//
13 #include "sanitizer_fuchsia.h"
16 #include "sanitizer_common.h"
17 #include "sanitizer_libc.h"
18 #include "sanitizer_mutex.h"
19 #include "sanitizer_stacktrace.h"
26 #include <zircon/errors.h>
27 #include <zircon/process.h>
28 #include <zircon/syscalls.h>
30 namespace __sanitizer
{
32 void NORETURN
internal__exit(int exitcode
) { _zx_process_exit(exitcode
); }
34 uptr
internal_sched_yield() {
35 zx_status_t status
= _zx_nanosleep(0);
36 CHECK_EQ(status
, ZX_OK
);
37 return 0; // Why doesn't this return void?
40 static void internal_nanosleep(zx_time_t ns
) {
41 zx_status_t status
= _zx_nanosleep(_zx_deadline_after(ns
));
42 CHECK_EQ(status
, ZX_OK
);
45 unsigned int internal_sleep(unsigned int seconds
) {
46 internal_nanosleep(ZX_SEC(seconds
));
50 u64
NanoTime() { return _zx_time_get(ZX_CLOCK_UTC
); }
52 uptr
internal_getpid() {
53 zx_info_handle_basic_t info
;
55 _zx_object_get_info(_zx_process_self(), ZX_INFO_HANDLE_BASIC
, &info
,
56 sizeof(info
), NULL
, NULL
);
57 CHECK_EQ(status
, ZX_OK
);
58 uptr pid
= static_cast<uptr
>(info
.koid
);
59 CHECK_EQ(pid
, info
.koid
);
63 uptr
GetThreadSelf() { return reinterpret_cast<uptr
>(thrd_current()); }
65 uptr
GetTid() { return GetThreadSelf(); }
67 void Abort() { abort(); }
69 int Atexit(void (*function
)(void)) { return atexit(function
); }
71 void SleepForSeconds(int seconds
) { internal_sleep(seconds
); }
73 void SleepForMillis(int millis
) { internal_nanosleep(ZX_MSEC(millis
)); }
75 void GetThreadStackTopAndBottom(bool, uptr
*stack_top
, uptr
*stack_bottom
) {
77 CHECK_EQ(pthread_getattr_np(pthread_self(), &attr
), 0);
80 CHECK_EQ(pthread_attr_getstack(&attr
, &base
, &size
), 0);
81 CHECK_EQ(pthread_attr_destroy(&attr
), 0);
83 *stack_bottom
= reinterpret_cast<uptr
>(base
);
84 *stack_top
= *stack_bottom
+ size
;
88 void PrepareForSandboxing(__sanitizer_sandbox_arguments
*args
) {}
89 void DisableCoreDumperIfNecessary() {}
90 void InstallDeadlySignalHandlers(SignalHandlerType handler
) {}
91 void StartReportDeadlySignal() {}
92 void ReportDeadlySignal(const SignalContext
&sig
, u32 tid
,
93 UnwindSignalStackCallbackType unwind
,
94 const void *unwind_context
) {}
95 void SetAlternateSignalStack() {}
96 void UnsetAlternateSignalStack() {}
99 void PrintModuleMap() {}
101 bool SignalContext::IsStackOverflow() const { return false; }
102 void SignalContext::DumpAllRegisters(void *context
) { UNIMPLEMENTED(); }
103 const char *SignalContext::Describe() const { UNIMPLEMENTED(); }
105 struct UnwindTraceArg
{
106 BufferedStackTrace
*stack
;
110 _Unwind_Reason_Code
Unwind_Trace(struct _Unwind_Context
*ctx
, void *param
) {
111 UnwindTraceArg
*arg
= static_cast<UnwindTraceArg
*>(param
);
112 CHECK_LT(arg
->stack
->size
, arg
->max_depth
);
113 uptr pc
= _Unwind_GetIP(ctx
);
114 if (pc
< PAGE_SIZE
) return _URC_NORMAL_STOP
;
115 arg
->stack
->trace_buffer
[arg
->stack
->size
++] = pc
;
116 return (arg
->stack
->size
== arg
->max_depth
? _URC_NORMAL_STOP
120 void BufferedStackTrace::SlowUnwindStack(uptr pc
, u32 max_depth
) {
121 CHECK_GE(max_depth
, 2);
123 UnwindTraceArg arg
= {this, Min(max_depth
+ 1, kStackTraceMax
)};
124 _Unwind_Backtrace(Unwind_Trace
, &arg
);
126 // We need to pop a few frames so that pc is on top.
127 uptr to_pop
= LocatePcInTrace(pc
);
128 // trace_buffer[0] belongs to the current function so we always pop it,
129 // unless there is only 1 frame in the stack trace (1 frame is always better
131 PopStackFrames(Min(to_pop
, static_cast<uptr
>(1)));
132 trace_buffer
[0] = pc
;
135 void BufferedStackTrace::SlowUnwindStackWithContext(uptr pc
, void *context
,
137 CHECK_NE(context
, nullptr);
138 UNREACHABLE("signal context doesn't exist");
141 enum MutexState
: int { MtxUnlocked
= 0, MtxLocked
= 1, MtxSleeping
= 2 };
143 BlockingMutex::BlockingMutex() {
144 // NOTE! It's important that this use internal_memset, because plain
145 // memset might be intercepted (e.g., actually be __asan_memset).
146 // Defining this so the compiler initializes each field, e.g.:
147 // BlockingMutex::BlockingMutex() : BlockingMutex(LINKER_INITIALIZED) {}
148 // might result in the compiler generating a call to memset, which would
149 // have the same problem.
150 internal_memset(this, 0, sizeof(*this));
153 void BlockingMutex::Lock() {
155 atomic_uint32_t
*m
= reinterpret_cast<atomic_uint32_t
*>(&opaque_storage_
);
156 if (atomic_exchange(m
, MtxLocked
, memory_order_acquire
) == MtxUnlocked
)
158 while (atomic_exchange(m
, MtxSleeping
, memory_order_acquire
) != MtxUnlocked
) {
159 zx_status_t status
= _zx_futex_wait(reinterpret_cast<zx_futex_t
*>(m
),
160 MtxSleeping
, ZX_TIME_INFINITE
);
161 if (status
!= ZX_ERR_BAD_STATE
) // Normal race.
162 CHECK_EQ(status
, ZX_OK
);
166 void BlockingMutex::Unlock() {
167 atomic_uint32_t
*m
= reinterpret_cast<atomic_uint32_t
*>(&opaque_storage_
);
168 u32 v
= atomic_exchange(m
, MtxUnlocked
, memory_order_release
);
169 CHECK_NE(v
, MtxUnlocked
);
170 if (v
== MtxSleeping
) {
171 zx_status_t status
= _zx_futex_wake(reinterpret_cast<zx_futex_t
*>(m
), 1);
172 CHECK_EQ(status
, ZX_OK
);
176 void BlockingMutex::CheckLocked() {
177 atomic_uint32_t
*m
= reinterpret_cast<atomic_uint32_t
*>(&opaque_storage_
);
178 CHECK_NE(MtxUnlocked
, atomic_load(m
, memory_order_relaxed
));
181 uptr
GetPageSize() { return PAGE_SIZE
; }
183 uptr
GetMmapGranularity() { return PAGE_SIZE
; }
185 sanitizer_shadow_bounds_t ShadowBounds
;
187 uptr
GetMaxVirtualAddress() {
188 ShadowBounds
= __sanitizer_shadow_bounds();
189 return ShadowBounds
.memory_limit
- 1;
192 static void *DoAnonymousMmapOrDie(uptr size
, const char *mem_type
,
193 bool raw_report
, bool die_for_nomem
) {
194 size
= RoundUpTo(size
, PAGE_SIZE
);
197 zx_status_t status
= _zx_vmo_create(size
, 0, &vmo
);
198 if (status
!= ZX_OK
) {
199 if (status
!= ZX_ERR_NO_MEMORY
|| die_for_nomem
)
200 ReportMmapFailureAndDie(size
, mem_type
, "zx_vmo_create", status
,
204 _zx_object_set_property(vmo
, ZX_PROP_NAME
, mem_type
,
205 internal_strlen(mem_type
));
207 // TODO(mcgrathr): Maybe allocate a VMAR for all sanitizer heap and use that?
209 status
= _zx_vmar_map(_zx_vmar_root_self(), 0, vmo
, 0, size
,
210 ZX_VM_FLAG_PERM_READ
| ZX_VM_FLAG_PERM_WRITE
, &addr
);
211 _zx_handle_close(vmo
);
213 if (status
!= ZX_OK
) {
214 if (status
!= ZX_ERR_NO_MEMORY
|| die_for_nomem
)
215 ReportMmapFailureAndDie(size
, mem_type
, "zx_vmar_map", status
,
220 IncreaseTotalMmap(size
);
222 return reinterpret_cast<void *>(addr
);
225 void *MmapOrDie(uptr size
, const char *mem_type
, bool raw_report
) {
226 return DoAnonymousMmapOrDie(size
, mem_type
, raw_report
, true);
229 void *MmapNoReserveOrDie(uptr size
, const char *mem_type
) {
230 return MmapOrDie(size
, mem_type
);
233 void *MmapOrDieOnFatalError(uptr size
, const char *mem_type
) {
234 return DoAnonymousMmapOrDie(size
, mem_type
, false, false);
237 // MmapNoAccess and MmapFixedOrDie are used only by sanitizer_allocator.
238 // Instead of doing exactly what they say, we make MmapNoAccess actually
239 // just allocate a VMAR to reserve the address space. Then MmapFixedOrDie
240 // uses that VMAR instead of the root.
242 zx_handle_t allocator_vmar
= ZX_HANDLE_INVALID
;
243 uintptr_t allocator_vmar_base
;
244 size_t allocator_vmar_size
;
246 void *MmapNoAccess(uptr size
) {
247 size
= RoundUpTo(size
, PAGE_SIZE
);
248 CHECK_EQ(allocator_vmar
, ZX_HANDLE_INVALID
);
251 _zx_vmar_allocate(_zx_vmar_root_self(), 0, size
,
252 ZX_VM_FLAG_CAN_MAP_READ
| ZX_VM_FLAG_CAN_MAP_WRITE
|
253 ZX_VM_FLAG_CAN_MAP_SPECIFIC
,
254 &allocator_vmar
, &base
);
256 ReportMmapFailureAndDie(size
, "sanitizer allocator address space",
257 "zx_vmar_allocate", status
);
259 allocator_vmar_base
= base
;
260 allocator_vmar_size
= size
;
261 return reinterpret_cast<void *>(base
);
264 constexpr const char kAllocatorVmoName
[] = "sanitizer_allocator";
266 static void *DoMmapFixedOrDie(uptr fixed_addr
, uptr size
, bool die_for_nomem
) {
267 size
= RoundUpTo(size
, PAGE_SIZE
);
270 zx_status_t status
= _zx_vmo_create(size
, 0, &vmo
);
271 if (status
!= ZX_OK
) {
272 if (status
!= ZX_ERR_NO_MEMORY
|| die_for_nomem
)
273 ReportMmapFailureAndDie(size
, kAllocatorVmoName
, "zx_vmo_create", status
);
276 _zx_object_set_property(vmo
, ZX_PROP_NAME
, kAllocatorVmoName
,
277 sizeof(kAllocatorVmoName
) - 1);
279 DCHECK_GE(fixed_addr
, allocator_vmar_base
);
280 uintptr_t offset
= fixed_addr
- allocator_vmar_base
;
281 DCHECK_LE(size
, allocator_vmar_size
);
282 DCHECK_GE(allocator_vmar_size
- offset
, size
);
285 status
= _zx_vmar_map(
286 allocator_vmar
, offset
, vmo
, 0, size
,
287 ZX_VM_FLAG_PERM_READ
| ZX_VM_FLAG_PERM_WRITE
| ZX_VM_FLAG_SPECIFIC
,
289 _zx_handle_close(vmo
);
290 if (status
!= ZX_OK
) {
291 if (status
!= ZX_ERR_NO_MEMORY
|| die_for_nomem
)
292 ReportMmapFailureAndDie(size
, kAllocatorVmoName
, "zx_vmar_map", status
);
296 IncreaseTotalMmap(size
);
298 return reinterpret_cast<void *>(addr
);
301 void *MmapFixedOrDie(uptr fixed_addr
, uptr size
) {
302 return DoMmapFixedOrDie(fixed_addr
, size
, true);
305 void *MmapFixedOrDieOnFatalError(uptr fixed_addr
, uptr size
) {
306 return DoMmapFixedOrDie(fixed_addr
, size
, false);
309 // This should never be called.
310 void *MmapFixedNoAccess(uptr fixed_addr
, uptr size
, const char *name
) {
314 void *MmapAlignedOrDieOnFatalError(uptr size
, uptr alignment
,
315 const char *mem_type
) {
316 CHECK_GE(size
, PAGE_SIZE
);
317 CHECK(IsPowerOfTwo(size
));
318 CHECK(IsPowerOfTwo(alignment
));
321 zx_status_t status
= _zx_vmo_create(size
, 0, &vmo
);
322 if (status
!= ZX_OK
) {
323 if (status
!= ZX_ERR_NO_MEMORY
)
324 ReportMmapFailureAndDie(size
, mem_type
, "zx_vmo_create", status
, false);
327 _zx_object_set_property(vmo
, ZX_PROP_NAME
, mem_type
,
328 internal_strlen(mem_type
));
330 // TODO(mcgrathr): Maybe allocate a VMAR for all sanitizer heap and use that?
332 // Map a larger size to get a chunk of address space big enough that
333 // it surely contains an aligned region of the requested size. Then
334 // overwrite the aligned middle portion with a mapping from the
335 // beginning of the VMO, and unmap the excess before and after.
336 size_t map_size
= size
+ alignment
;
338 status
= _zx_vmar_map(_zx_vmar_root_self(), 0, vmo
, 0, map_size
,
339 ZX_VM_FLAG_PERM_READ
| ZX_VM_FLAG_PERM_WRITE
, &addr
);
340 if (status
== ZX_OK
) {
341 uintptr_t map_addr
= addr
;
342 uintptr_t map_end
= map_addr
+ map_size
;
343 addr
= RoundUpTo(map_addr
, alignment
);
344 uintptr_t end
= addr
+ size
;
345 if (addr
!= map_addr
) {
347 status
= _zx_object_get_info(_zx_vmar_root_self(), ZX_INFO_VMAR
, &info
,
348 sizeof(info
), NULL
, NULL
);
349 if (status
== ZX_OK
) {
352 _zx_vmar_map(_zx_vmar_root_self(), addr
- info
.base
, vmo
, 0, size
,
353 ZX_VM_FLAG_PERM_READ
| ZX_VM_FLAG_PERM_WRITE
|
354 ZX_VM_FLAG_SPECIFIC_OVERWRITE
,
356 if (status
== ZX_OK
) CHECK_EQ(new_addr
, addr
);
359 if (status
== ZX_OK
&& addr
!= map_addr
)
360 status
= _zx_vmar_unmap(_zx_vmar_root_self(), map_addr
, addr
- map_addr
);
361 if (status
== ZX_OK
&& end
!= map_end
)
362 status
= _zx_vmar_unmap(_zx_vmar_root_self(), end
, map_end
- end
);
364 _zx_handle_close(vmo
);
366 if (status
!= ZX_OK
) {
367 if (status
!= ZX_ERR_NO_MEMORY
)
368 ReportMmapFailureAndDie(size
, mem_type
, "zx_vmar_map", status
, false);
372 IncreaseTotalMmap(size
);
374 return reinterpret_cast<void *>(addr
);
377 void UnmapOrDie(void *addr
, uptr size
) {
378 if (!addr
|| !size
) return;
379 size
= RoundUpTo(size
, PAGE_SIZE
);
381 zx_status_t status
= _zx_vmar_unmap(_zx_vmar_root_self(),
382 reinterpret_cast<uintptr_t>(addr
), size
);
383 if (status
!= ZX_OK
) {
384 Report("ERROR: %s failed to deallocate 0x%zx (%zd) bytes at address %p\n",
385 SanitizerToolName
, size
, size
, addr
);
386 CHECK("unable to unmap" && 0);
389 DecreaseTotalMmap(size
);
392 // This is used on the shadow mapping, which cannot be changed.
393 // Zircon doesn't have anything like MADV_DONTNEED.
394 void ReleaseMemoryPagesToOS(uptr beg
, uptr end
) {}
396 void DumpProcessMap() {
397 UNIMPLEMENTED(); // TODO(mcgrathr): write it
400 bool IsAccessibleMemoryRange(uptr beg
, uptr size
) {
401 // TODO(mcgrathr): Figure out a better way.
403 zx_status_t status
= _zx_vmo_create(size
, 0, &vmo
);
404 if (status
== ZX_OK
) {
407 status
= _zx_vmo_write(vmo
, reinterpret_cast<const void *>(beg
), 0, size
,
409 if (status
!= ZX_OK
) break;
411 CHECK_LE(wrote
, size
);
415 _zx_handle_close(vmo
);
417 return status
== ZX_OK
;
420 // FIXME implement on this platform.
421 void GetMemoryProfile(fill_profile_f cb
, uptr
*stats
, uptr stats_size
) {}
423 bool ReadFileToBuffer(const char *file_name
, char **buff
, uptr
*buff_size
,
424 uptr
*read_len
, uptr max_len
, error_t
*errno_p
) {
426 zx_status_t status
= __sanitizer_get_configuration(file_name
, &vmo
);
427 if (status
== ZX_OK
) {
429 status
= _zx_vmo_get_size(vmo
, &vmo_size
);
430 if (status
== ZX_OK
) {
431 if (vmo_size
< max_len
) max_len
= vmo_size
;
432 size_t map_size
= RoundUpTo(max_len
, PAGE_SIZE
);
434 status
= _zx_vmar_map(_zx_vmar_root_self(), 0, vmo
, 0, map_size
,
435 ZX_VM_FLAG_PERM_READ
, &addr
);
436 if (status
== ZX_OK
) {
437 *buff
= reinterpret_cast<char *>(addr
);
438 *buff_size
= map_size
;
442 _zx_handle_close(vmo
);
444 if (status
!= ZX_OK
&& errno_p
) *errno_p
= status
;
445 return status
== ZX_OK
;
448 void RawWrite(const char *buffer
) {
449 __sanitizer_log_write(buffer
, internal_strlen(buffer
));
452 void CatastrophicErrorWrite(const char *buffer
, uptr length
) {
453 __sanitizer_log_write(buffer
, length
);
457 char **StoredEnviron
;
459 char **GetArgv() { return StoredArgv
; }
461 const char *GetEnv(const char *name
) {
463 uptr NameLen
= internal_strlen(name
);
464 for (char **Env
= StoredEnviron
; *Env
!= 0; Env
++) {
465 if (internal_strncmp(*Env
, name
, NameLen
) == 0 && (*Env
)[NameLen
] == '=')
466 return (*Env
) + NameLen
+ 1;
472 uptr
ReadBinaryName(/*out*/ char *buf
, uptr buf_len
) {
473 const char *argv0
= StoredArgv
[0];
474 if (!argv0
) argv0
= "<UNKNOWN>";
475 internal_strncpy(buf
, argv0
, buf_len
);
476 return internal_strlen(buf
);
479 uptr
ReadLongProcessName(/*out*/ char *buf
, uptr buf_len
) {
480 return ReadBinaryName(buf
, buf_len
);
483 uptr MainThreadStackBase
, MainThreadStackSize
;
485 bool GetRandom(void *buffer
, uptr length
, bool blocking
) {
486 CHECK_LE(length
, ZX_CPRNG_DRAW_MAX_LEN
);
488 CHECK_EQ(_zx_cprng_draw(buffer
, length
, &size
), ZX_OK
);
489 CHECK_EQ(size
, length
);
493 } // namespace __sanitizer
495 using namespace __sanitizer
; // NOLINT
498 void __sanitizer_startup_hook(int argc
, char **argv
, char **envp
,
499 void *stack_base
, size_t stack_size
) {
500 __sanitizer::StoredArgv
= argv
;
501 __sanitizer::StoredEnviron
= envp
;
502 __sanitizer::MainThreadStackBase
= reinterpret_cast<uintptr_t>(stack_base
);
503 __sanitizer::MainThreadStackSize
= stack_size
;
506 void __sanitizer_set_report_path(const char *path
) {
507 // Handle the initialization code in each sanitizer, but no other calls.
508 // This setting is never consulted on Fuchsia.
509 DCHECK_EQ(path
, common_flags()->log_path
);
512 void __sanitizer_set_report_fd(void *fd
) {
513 UNREACHABLE("not available on Fuchsia");
517 #endif // SANITIZER_FUCHSIA