blob: e26b400562df7728d972014f7b26624872940833 [file] [log] [blame]
Kostya Serebryany1e172b42011-11-30 01:07:02 +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// Linux-specific details.
13//===----------------------------------------------------------------------===//
Evgeniy Stepanov24e13722013-03-19 14:33:38 +000014
15#include "sanitizer_common/sanitizer_platform.h"
Stephen Hines2d1fdb22014-05-28 23:58:16 -070016#if SANITIZER_FREEBSD || SANITIZER_LINUX
Kostya Serebryany1e172b42011-11-30 01:07:02 +000017
Kostya Serebryanydf499b42012-01-05 00:44:33 +000018#include "asan_interceptors.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000019#include "asan_internal.h"
Kostya Serebryanyc549dd72012-01-05 01:07:27 +000020#include "asan_thread.h"
Stephen Hines2d1fdb22014-05-28 23:58:16 -070021#include "sanitizer_common/sanitizer_flags.h"
Stephen Hines6a211c52014-07-21 00:49:56 -070022#include "sanitizer_common/sanitizer_freebsd.h"
Alexey Samsonovae4d9ca2012-06-04 14:27:50 +000023#include "sanitizer_common/sanitizer_libc.h"
Alexey Samsonov6895adc2012-06-07 06:15:12 +000024#include "sanitizer_common/sanitizer_procmaps.h"
Kostya Serebryany1e172b42011-11-30 01:07:02 +000025
Kostya Serebryanyc549dd72012-01-05 01:07:27 +000026#include <sys/time.h>
27#include <sys/resource.h>
Kostya Serebryany1e172b42011-11-30 01:07:02 +000028#include <sys/mman.h>
29#include <sys/syscall.h>
Kostya Serebryanyde496f42011-12-28 22:58:01 +000030#include <sys/types.h>
Stephen Hines6a211c52014-07-21 00:49:56 -070031#include <dlfcn.h>
Kostya Serebryanyde496f42011-12-28 22:58:01 +000032#include <fcntl.h>
Kostya Serebryanyc549dd72012-01-05 01:07:27 +000033#include <pthread.h>
Kostya Serebryanydf499b42012-01-05 00:44:33 +000034#include <stdio.h>
Kostya Serebryany1e172b42011-11-30 01:07:02 +000035#include <unistd.h>
Evgeniy Stepanov9cfa1942012-01-19 11:34:18 +000036#include <unwind.h>
Kostya Serebryany1e172b42011-11-30 01:07:02 +000037
Stephen Hines2d1fdb22014-05-28 23:58:16 -070038#if SANITIZER_FREEBSD
39#include <sys/link_elf.h>
Kostya Serebryany9107c262012-01-06 19:11:09 +000040#endif
41
Stephen Hines2d1fdb22014-05-28 23:58:16 -070042#if SANITIZER_ANDROID || SANITIZER_FREEBSD
43#include <ucontext.h>
Evgeniy Stepanovaa33a502012-03-26 09:48:41 +000044extern "C" void* _DYNAMIC;
Stephen Hines2d1fdb22014-05-28 23:58:16 -070045#else
46#include <sys/ucontext.h>
Stephen Hines2d1fdb22014-05-28 23:58:16 -070047#include <link.h>
48#endif
49
Stephen Hines6a211c52014-07-21 00:49:56 -070050// x86-64 FreeBSD 9.2 and older define 'ucontext_t' incorrectly in
51// 32-bit mode.
52#if SANITIZER_FREEBSD && (SANITIZER_WORDSIZE == 32) && \
53 __FreeBSD_version <= 902001 // v9.2
54#define ucontext_t xucontext_t
Stephen Hines2d1fdb22014-05-28 23:58:16 -070055#endif
56
57typedef enum {
58 ASAN_RT_VERSION_UNDEFINED = 0,
59 ASAN_RT_VERSION_DYNAMIC,
60 ASAN_RT_VERSION_STATIC,
61} asan_rt_version_t;
62
63// FIXME: perhaps also store abi version here?
64extern "C" {
65SANITIZER_INTERFACE_ATTRIBUTE
66asan_rt_version_t __asan_rt_version;
67}
Evgeniy Stepanovaa33a502012-03-26 09:48:41 +000068
Kostya Serebryany1e172b42011-11-30 01:07:02 +000069namespace __asan {
70
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070071void InitializePlatformInterceptors() {}
72
Kostya Serebryany1e172b42011-11-30 01:07:02 +000073void *AsanDoesNotSupportStaticLinkage() {
74 // This will fail to link with -static.
Kostya Serebryanyefb3fa32012-01-05 23:50:34 +000075 return &_DYNAMIC; // defined in link.h
Kostya Serebryany1e172b42011-11-30 01:07:02 +000076}
77
Evgeniy Stepanov83cb7872013-03-19 13:54:41 +000078#if SANITIZER_ANDROID
Stephen Hines2d1fdb22014-05-28 23:58:16 -070079// FIXME: should we do anything for Android?
80void AsanCheckDynamicRTPrereqs() {}
81void AsanCheckIncompatibleRT() {}
82#else
83static int FindFirstDSOCallback(struct dl_phdr_info *info, size_t size,
84 void *data) {
85 // Continue until the first dynamic library is found
86 if (!info->dlpi_name || info->dlpi_name[0] == 0)
87 return 0;
88
Stephen Hines6a211c52014-07-21 00:49:56 -070089 // Ignore vDSO
90 if (internal_strncmp(info->dlpi_name, "linux-", sizeof("linux-") - 1) == 0)
91 return 0;
92
Stephen Hines2d1fdb22014-05-28 23:58:16 -070093 *(const char **)data = info->dlpi_name;
94 return 1;
95}
96
97static bool IsDynamicRTName(const char *libname) {
98 return internal_strstr(libname, "libclang_rt.asan") ||
99 internal_strstr(libname, "libasan.so");
100}
101
102static void ReportIncompatibleRT() {
103 Report("Your application is linked against incompatible ASan runtimes.\n");
104 Die();
105}
106
107void AsanCheckDynamicRTPrereqs() {
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -0700108 if (!ASAN_DYNAMIC)
109 return;
110
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700111 // Ensure that dynamic RT is the first DSO in the list
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800112 const char *first_dso_name = nullptr;
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700113 dl_iterate_phdr(FindFirstDSOCallback, &first_dso_name);
114 if (first_dso_name && !IsDynamicRTName(first_dso_name)) {
115 Report("ASan runtime does not come first in initial library list; "
116 "you should either link runtime to your application or "
117 "manually preload it with LD_PRELOAD.\n");
118 Die();
119 }
120}
121
122void AsanCheckIncompatibleRT() {
123 if (ASAN_DYNAMIC) {
124 if (__asan_rt_version == ASAN_RT_VERSION_UNDEFINED) {
125 __asan_rt_version = ASAN_RT_VERSION_DYNAMIC;
126 } else if (__asan_rt_version != ASAN_RT_VERSION_DYNAMIC) {
127 ReportIncompatibleRT();
128 }
129 } else {
130 if (__asan_rt_version == ASAN_RT_VERSION_UNDEFINED) {
131 // Ensure that dynamic runtime is not present. We should detect it
132 // as early as possible, otherwise ASan interceptors could bind to
133 // the functions in dynamic ASan runtime instead of the functions in
134 // system libraries, causing crashes later in ASan initialization.
135 MemoryMappingLayout proc_maps(/*cache_enabled*/true);
136 char filename[128];
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800137 while (proc_maps.Next(nullptr, nullptr, nullptr, filename,
138 sizeof(filename), nullptr)) {
Stephen Hines2d1fdb22014-05-28 23:58:16 -0700139 if (IsDynamicRTName(filename)) {
140 Report("Your application is linked against "
141 "incompatible ASan runtimes.\n");
142 Die();
143 }
144 }
145 __asan_rt_version = ASAN_RT_VERSION_STATIC;
146 } else if (__asan_rt_version != ASAN_RT_VERSION_STATIC) {
147 ReportIncompatibleRT();
148 }
149 }
150}
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800151#endif // SANITIZER_ANDROID
Alexander Potapenko75b19eb2012-07-23 14:07:58 +0000152
Evgeniy Stepanov83cb7872013-03-19 13:54:41 +0000153#if !SANITIZER_ANDROID
Alexey Samsonov57db4ba2013-01-17 15:45:28 +0000154void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
Alexey Samsonovf3950c62012-11-23 10:14:44 +0000155 ucontext_t *ucp = (ucontext_t*)context;
Alexey Samsonov57db4ba2013-01-17 15:45:28 +0000156 *stack = (uptr)ucp->uc_stack.ss_sp;
157 *ssize = ucp->uc_stack.ss_size;
Alexey Samsonovf3950c62012-11-23 10:14:44 +0000158}
159#else
Alexey Samsonov57db4ba2013-01-17 15:45:28 +0000160void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
Alexey Samsonovca2849c2013-01-18 09:20:06 +0000161 UNIMPLEMENTED();
Alexey Samsonovf3950c62012-11-23 10:14:44 +0000162}
163#endif
164
Stephen Hines6a211c52014-07-21 00:49:56 -0700165void *AsanDlSymNext(const char *sym) {
166 return dlsym(RTLD_NEXT, sym);
167}
168
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800169} // namespace __asan
Kostya Serebryanyd6567c52011-12-01 21:40:52 +0000170
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -0800171#endif // SANITIZER_FREEBSD || SANITIZER_LINUX