1 //===-- sanitizer_platform.h ------------------------------------*- C++ -*-===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // Common platform macros.
9 //===----------------------------------------------------------------------===//
11 #ifndef SANITIZER_PLATFORM_H
12 #define SANITIZER_PLATFORM_H
14 #if !defined(__linux__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && \
15 !defined(__APPLE__) && !defined(_WIN32) && !defined(__Fuchsia__)
16 # error "This operating system is not supported"
19 #if defined(__linux__)
20 # define SANITIZER_LINUX 1
22 # define SANITIZER_LINUX 0
25 #if defined(__FreeBSD__)
26 # define SANITIZER_FREEBSD 1
28 # define SANITIZER_FREEBSD 0
31 #if defined(__NetBSD__)
32 # define SANITIZER_NETBSD 1
34 # define SANITIZER_NETBSD 0
37 #if defined(__APPLE__)
38 # define SANITIZER_MAC 1
39 # include <TargetConditionals.h>
41 # define SANITIZER_IOS 1
43 # define SANITIZER_IOS 0
45 # if TARGET_IPHONE_SIMULATOR
46 # define SANITIZER_IOSSIM 1
48 # define SANITIZER_IOSSIM 0
51 # define SANITIZER_MAC 0
52 # define SANITIZER_IOS 0
53 # define SANITIZER_IOSSIM 0
56 #if defined(__APPLE__) && TARGET_OS_IPHONE && TARGET_OS_WATCH
57 # define SANITIZER_WATCHOS 1
59 # define SANITIZER_WATCHOS 0
62 #if defined(__APPLE__) && TARGET_OS_IPHONE && TARGET_OS_TV
63 # define SANITIZER_TVOS 1
65 # define SANITIZER_TVOS 0
69 # define SANITIZER_WINDOWS 1
71 # define SANITIZER_WINDOWS 0
75 # define SANITIZER_WINDOWS64 1
77 # define SANITIZER_WINDOWS64 0
80 #if defined(__ANDROID__)
81 # define SANITIZER_ANDROID 1
83 # define SANITIZER_ANDROID 0
86 #if defined(__Fuchsia__)
87 # define SANITIZER_FUCHSIA 1
89 # define SANITIZER_FUCHSIA 0
92 #define SANITIZER_POSIX \
93 (SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_MAC || SANITIZER_NETBSD)
95 #if __LP64__ || defined(_WIN64)
96 # define SANITIZER_WORDSIZE 64
98 # define SANITIZER_WORDSIZE 32
101 #if SANITIZER_WORDSIZE == 64
102 # define FIRST_32_SECOND_64(a, b) (b)
104 # define FIRST_32_SECOND_64(a, b) (a)
107 #if defined(__x86_64__) && !defined(_LP64)
108 # define SANITIZER_X32 1
110 # define SANITIZER_X32 0
113 #if defined(__mips__)
114 # define SANITIZER_MIPS 1
115 # if defined(__mips64)
116 # define SANITIZER_MIPS32 0
117 # define SANITIZER_MIPS64 1
119 # define SANITIZER_MIPS32 1
120 # define SANITIZER_MIPS64 0
123 # define SANITIZER_MIPS 0
124 # define SANITIZER_MIPS32 0
125 # define SANITIZER_MIPS64 0
128 #if defined(__s390__)
129 # define SANITIZER_S390 1
130 # if defined(__s390x__)
131 # define SANITIZER_S390_31 0
132 # define SANITIZER_S390_64 1
134 # define SANITIZER_S390_31 1
135 # define SANITIZER_S390_64 0
138 # define SANITIZER_S390 0
139 # define SANITIZER_S390_31 0
140 # define SANITIZER_S390_64 0
143 #if defined(__powerpc__)
144 # define SANITIZER_PPC 1
145 # if defined(__powerpc64__)
146 # define SANITIZER_PPC32 0
147 # define SANITIZER_PPC64 1
148 // 64-bit PPC has two ABIs (v1 and v2). The old powerpc64 target is
149 // big-endian, and uses v1 ABI (known for its function descriptors),
150 // while the new powerpc64le target is little-endian and uses v2.
151 // In theory, you could convince gcc to compile for their evil twins
152 // (eg. big-endian v2), but you won't find such combinations in the wild
153 // (it'd require bootstrapping a whole system, which would be quite painful
154 // - there's no target triple for that). LLVM doesn't support them either.
156 # define SANITIZER_PPC64V1 0
157 # define SANITIZER_PPC64V2 1
159 # define SANITIZER_PPC64V1 1
160 # define SANITIZER_PPC64V2 0
163 # define SANITIZER_PPC32 1
164 # define SANITIZER_PPC64 0
165 # define SANITIZER_PPC64V1 0
166 # define SANITIZER_PPC64V2 0
169 # define SANITIZER_PPC 0
170 # define SANITIZER_PPC32 0
171 # define SANITIZER_PPC64 0
172 # define SANITIZER_PPC64V1 0
173 # define SANITIZER_PPC64V2 0
177 # define SANITIZER_ARM 1
179 # define SANITIZER_ARM 0
182 // By default we allow to use SizeClassAllocator64 on 64-bit platform.
183 // But in some cases (e.g. AArch64's 39-bit address space) SizeClassAllocator64
184 // does not work well and we need to fallback to SizeClassAllocator32.
185 // For such platforms build this code with -DSANITIZER_CAN_USE_ALLOCATOR64=0 or
186 // change the definition of SANITIZER_CAN_USE_ALLOCATOR64 here.
187 #ifndef SANITIZER_CAN_USE_ALLOCATOR64
188 # if (SANITIZER_ANDROID && defined(__aarch64__)) || SANITIZER_FUCHSIA
189 # define SANITIZER_CAN_USE_ALLOCATOR64 1
190 # elif defined(__mips64) || defined(__aarch64__)
191 # define SANITIZER_CAN_USE_ALLOCATOR64 0
193 # define SANITIZER_CAN_USE_ALLOCATOR64 (SANITIZER_WORDSIZE == 64)
197 // The range of addresses which can be returned my mmap.
198 // FIXME: this value should be different on different platforms. Larger values
199 // will still work but will consume more memory for TwoLevelByteMap.
200 #if defined(__mips__)
201 # define SANITIZER_MMAP_RANGE_SIZE FIRST_32_SECOND_64(1ULL << 32, 1ULL << 40)
202 #elif defined(__aarch64__)
203 # define SANITIZER_MMAP_RANGE_SIZE FIRST_32_SECOND_64(1ULL << 32, 1ULL << 48)
205 # define SANITIZER_MMAP_RANGE_SIZE FIRST_32_SECOND_64(1ULL << 32, 1ULL << 47)
208 // The AArch64 linux port uses the canonical syscall set as mandated by
209 // the upstream linux community for all new ports. Other ports may still
210 // use legacy syscalls.
211 #ifndef SANITIZER_USES_CANONICAL_LINUX_SYSCALLS
212 # if defined(__aarch64__) && SANITIZER_LINUX
213 # define SANITIZER_USES_CANONICAL_LINUX_SYSCALLS 1
215 # define SANITIZER_USES_CANONICAL_LINUX_SYSCALLS 0
219 // udi16 syscalls can only be used when the following conditions are
221 // * target is one of arm32, x86-32, sparc32, sh or m68k
222 // * libc version is libc5, glibc-2.0, glibc-2.1 or glibc-2.2 to 2.15
223 // built against > linux-2.2 kernel headers
224 // Since we don't want to include libc headers here, we check the
226 #if defined(__arm__) || SANITIZER_X32 || defined(__sparc__)
227 #define SANITIZER_USES_UID16_SYSCALLS 1
229 #define SANITIZER_USES_UID16_SYSCALLS 0
232 #if defined(__mips__)
233 # define SANITIZER_POINTER_FORMAT_LENGTH FIRST_32_SECOND_64(8, 10)
235 # define SANITIZER_POINTER_FORMAT_LENGTH FIRST_32_SECOND_64(8, 12)
238 // Assume obsolete RPC headers are available by default
239 #if !defined(HAVE_RPC_XDR_H) && !defined(HAVE_TIRPC_RPC_XDR_H)
240 # define HAVE_RPC_XDR_H (SANITIZER_LINUX && !SANITIZER_ANDROID)
241 # define HAVE_TIRPC_RPC_XDR_H 0
244 /// \macro MSC_PREREQ
245 /// \brief Is the compiler MSVC of at least the specified version?
246 /// The common \param version values to check for are:
247 /// * 1800: Microsoft Visual Studio 2013 / 12.0
248 /// * 1900: Microsoft Visual Studio 2015 / 14.0
250 # define MSC_PREREQ(version) (_MSC_VER >= (version))
252 # define MSC_PREREQ(version) 0
255 #if defined(__arm64__) && SANITIZER_IOS
256 # define SANITIZER_NON_UNIQUE_TYPEINFO 1
258 # define SANITIZER_NON_UNIQUE_TYPEINFO 0
261 // On linux, some architectures had an ABI transition from 64-bit long double
262 // (ie. same as double) to 128-bit long double. On those, glibc symbols
263 // involving long doubles come in two versions, and we need to pass the
264 // correct one to dlvsym when intercepting them.
265 #if SANITIZER_LINUX && (SANITIZER_S390 || SANITIZER_PPC32 || SANITIZER_PPC64V1)
266 #define SANITIZER_NLDBL_VERSION "GLIBC_2.4"
269 #if SANITIZER_GO == 0
270 # define SANITIZER_GO 0
273 // On PowerPC and ARM Thumb, calling pthread_exit() causes LSan to detect leaks.
274 // pthread_exit() performs unwinding that leads to dlopen'ing libgcc_s.so.
275 // dlopen mallocs "libgcc_s.so" string which confuses LSan, it fails to realize
276 // that this allocation happens in dynamic linker and should be ignored.
277 #if SANITIZER_PPC || defined(__thumb__)
278 # define SANITIZER_SUPPRESS_LEAK_ON_PTHREAD_EXIT 1
280 # define SANITIZER_SUPPRESS_LEAK_ON_PTHREAD_EXIT 0
284 #endif // SANITIZER_PLATFORM_H