blob: 699af68123f2eef1bac4d976b3cae0f435548c0a [file] [log] [blame]
Kostya Serebryanya7e760a2012-01-09 19:18:27 +00001//===-- asan_linux.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// Posix-specific details.
13//===----------------------------------------------------------------------===//
14#if defined(__linux__) || defined(__APPLE__)
15
16#include "asan_internal.h"
17#include "asan_interceptors.h"
Evgeniy Stepanovc99f7002012-05-23 15:21:50 +000018#include "asan_mapping.h"
Alexey Samsonov73545092012-08-09 07:40:58 +000019#include "asan_report.h"
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000020#include "asan_stack.h"
21#include "asan_thread_registry.h"
Alexey Samsonov2221f552012-06-05 08:48:10 +000022#include "sanitizer_common/sanitizer_libc.h"
Alexey Samsonov6895adc2012-06-07 06:15:12 +000023#include "sanitizer_common/sanitizer_procmaps.h"
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000024
Kostya Serebryanycc4e6862012-01-11 02:21:06 +000025#include <pthread.h>
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000026#include <signal.h>
Alexey Samsonovb823e3c2012-02-22 14:07:06 +000027#include <stdlib.h>
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000028#include <sys/time.h>
29#include <sys/resource.h>
Alexey Samsonov08700282012-11-23 09:46:34 +000030#include <ucontext.h>
Kostya Serebryany0ecf5eb2012-01-09 23:11:26 +000031#include <unistd.h>
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000032
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000033static const uptr kAltStackSize = SIGSTKSZ * 4; // SIGSTKSZ is not enough.
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000034
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000035namespace __asan {
36
37static void MaybeInstallSigaction(int signum,
38 void (*handler)(int, siginfo_t *, void *)) {
39 if (!AsanInterceptsSignal(signum))
40 return;
41 struct sigaction sigact;
Alexey Samsonov09672ca2012-02-08 13:45:31 +000042 REAL(memset)(&sigact, 0, sizeof(sigact));
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000043 sigact.sa_sigaction = handler;
44 sigact.sa_flags = SA_SIGINFO;
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +000045 if (flags()->use_sigaltstack) sigact.sa_flags |= SA_ONSTACK;
Alexey Samsonov09672ca2012-02-08 13:45:31 +000046 CHECK(0 == REAL(sigaction)(signum, &sigact, 0));
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +000047 if (flags()->verbosity >= 1) {
Alexander Potapenkoa87bdaa2012-05-30 15:29:11 +000048 Report("Installed the sigaction for signal %d\n", signum);
49 }
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000050}
51
52static void ASAN_OnSIGSEGV(int, siginfo_t *siginfo, void *context) {
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000053 uptr addr = (uptr)siginfo->si_addr;
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000054 // Write the first message using the bullet-proof write.
Alexey Samsonov47657ce2012-06-06 07:02:44 +000055 if (13 != internal_write(2, "ASAN:SIGSEGV\n", 13)) Die();
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000056 uptr pc, sp, bp;
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000057 GetPcSpBp(context, &pc, &sp, &bp);
Alexey Samsonov73545092012-08-09 07:40:58 +000058 ReportSIGSEGV(pc, sp, bp, addr);
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000059}
60
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000061void SetAlternateSignalStack() {
62 stack_t altstack, oldstack;
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000063 CHECK(0 == sigaltstack(0, &oldstack));
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000064 // If the alternate stack is already in place, do nothing.
65 if ((oldstack.ss_flags & SS_DISABLE) == 0) return;
66 // TODO(glider): the mapped stack should have the MAP_STACK flag in the
67 // future. It is not required by man 2 sigaltstack now (they're using
68 // malloc()).
Alexey Samsonova25b3462012-06-06 16:15:07 +000069 void* base = MmapOrDie(kAltStackSize, __FUNCTION__);
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000070 altstack.ss_sp = base;
71 altstack.ss_flags = 0;
72 altstack.ss_size = kAltStackSize;
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000073 CHECK(0 == sigaltstack(&altstack, 0));
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +000074 if (flags()->verbosity > 0) {
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000075 Report("Alternative stack for T%d set: [%p,%p)\n",
Kostya Serebryanye0cff0b2012-06-06 15:06:58 +000076 asanThreadRegistry().GetCurrentTidOrInvalid(),
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000077 altstack.ss_sp, (char*)altstack.ss_sp + altstack.ss_size);
78 }
79}
80
81void UnsetAlternateSignalStack() {
82 stack_t altstack, oldstack;
Kostya Serebryany3f4c3872012-05-31 14:35:53 +000083 altstack.ss_sp = 0;
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000084 altstack.ss_flags = SS_DISABLE;
85 altstack.ss_size = 0;
86 CHECK(0 == sigaltstack(&altstack, &oldstack));
Alexey Samsonova25b3462012-06-06 16:15:07 +000087 UnmapOrDie(oldstack.ss_sp, oldstack.ss_size);
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000088}
89
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000090void InstallSignalHandlers() {
Alexander Potapenkof03d8af2012-04-05 10:54:52 +000091 // Set the alternate signal stack for the main thread.
92 // This will cause SetAlternateSignalStack to be called twice, but the stack
93 // will be actually set only once.
Alexey Samsonovcb8c4dc2012-07-09 14:36:04 +000094 if (flags()->use_sigaltstack) SetAlternateSignalStack();
Kostya Serebryanya7e760a2012-01-09 19:18:27 +000095 MaybeInstallSigaction(SIGSEGV, ASAN_OnSIGSEGV);
96 MaybeInstallSigaction(SIGBUS, ASAN_OnSIGSEGV);
97}
98
Alexey Samsonov08700282012-11-23 09:46:34 +000099void ClearShadowMemoryForContext(void *context) {
100 ucontext_t *ucp = (ucontext_t*)context;
101 uptr sp = (uptr)ucp->uc_stack.ss_sp;
102 uptr size = ucp->uc_stack.ss_size;
103 // Align to page size.
104 uptr bottom = sp & ~(kPageSize - 1);
105 size += sp - bottom;
106 size = RoundUpTo(size, kPageSize);
107 PoisonShadow(bottom, size, 0);
108}
109
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000110// ---------------------- TSD ---------------- {{{1
111
112static pthread_key_t tsd_key;
113static bool tsd_key_inited = false;
Kostya Serebryanyf58f9982012-02-07 00:27:15 +0000114void AsanTSDInit(void (*destructor)(void *tsd)) {
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000115 CHECK(!tsd_key_inited);
116 tsd_key_inited = true;
Kostya Serebryanyf58f9982012-02-07 00:27:15 +0000117 CHECK(0 == pthread_key_create(&tsd_key, destructor));
Kostya Serebryanycc4e6862012-01-11 02:21:06 +0000118}
119
120void *AsanTSDGet() {
121 CHECK(tsd_key_inited);
122 return pthread_getspecific(tsd_key);
123}
124
125void AsanTSDSet(void *tsd) {
126 CHECK(tsd_key_inited);
127 pthread_setspecific(tsd_key, tsd);
128}
129
Kostya Serebryanya7e760a2012-01-09 19:18:27 +0000130} // namespace __asan
131
132#endif // __linux__ || __APPLE_