5d3805fca3
* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch builtins, store max (log2 (align), 0) into uchar field instead of align into uptr field. (ubsan_expand_objsize_ifn): Use _v1 suffixed type mismatch builtins, store uchar 0 field instead of uptr 0 field. (instrument_nonnull_return): Use _v1 suffixed nonnull return builtin, instead of passing one address of struct with 2 locations pass two addresses of structs with 1 location each. * sanitizer.def (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH, BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): Removed. (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1, BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1_ABORT, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1, BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1_ABORT): New builtins. * c-c++-common/ubsan/float-cast-overflow-1.c: Drop value keyword from expected output regexps. * c-c++-common/ubsan/float-cast-overflow-2.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-3.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-4.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-5.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-6.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-8.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-9.c: Likewise. * c-c++-common/ubsan/float-cast-overflow-10.c: Likewise. * g++.dg/ubsan/float-cast-overflow-bf.C: Likewise. * gcc.dg/ubsan/float-cast-overflow-bf.c: Likewise. * g++.dg/asan/default-options-1.C (__asan_default_options): Add used attribute. * g++.dg/asan/asan_test.C: Run with ASAN_OPTIONS=handle_segv=2 in the environment. * All source files: Merge from upstream 315899. * asan/Makefile.am (nodist_saninclude_HEADERS): Add include/sanitizer/tsan_interface.h. * asan/libtool-version: Bump the libasan SONAME. * lsan/Makefile.am (sanitizer_lsan_files): Add lsan_common_mac.cc. (lsan_files): Add lsan_linux.cc, lsan_mac.cc and lsan_malloc_mac.cc. * sanitizer_common/Makefile.am (sanitizer_common_files): Add sancov_flags.cc, sanitizer_allocator_checks.cc, sanitizer_coverage_libcdep_new.cc, sanitizer_errno.cc, sanitizer_file.cc, sanitizer_mac_libcdep.cc and sanitizer_stoptheworld_mac.cc. Remove sanitizer_coverage_libcdep.cc and sanitizer_coverage_mapping_libcdep.cc. * tsan/Makefile.am (tsan_files): Add tsan_external.cc. * ubsan/Makefile.am (DEFS): Add -DUBSAN_CAN_USE_CXXABI=1. (ubsan_files): Add ubsan_init_standalone.cc and ubsan_signals_standalone.cc. * ubsan/libtool-version: Bump the libubsan SONAME. * asan/Makefile.in: Regenerate. * lsan/Makefile.in: Regenerate. * sanitizer_common/Makefile.in: Regenerate. * tsan/Makefile.in: Regenerate. * ubsan/Makefile.in: Regenerate. From-SVN: r253887
145 lines
4.6 KiB
C++
145 lines
4.6 KiB
C++
//===-- sanitizer_linux.h ---------------------------------------*- C++ -*-===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Linux-specific syscall wrappers and classes.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef SANITIZER_LINUX_H
|
|
#define SANITIZER_LINUX_H
|
|
|
|
#include "sanitizer_platform.h"
|
|
#if SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD
|
|
#include "sanitizer_common.h"
|
|
#include "sanitizer_internal_defs.h"
|
|
#include "sanitizer_platform_limits_netbsd.h"
|
|
#include "sanitizer_platform_limits_posix.h"
|
|
#include "sanitizer_posix.h"
|
|
|
|
struct link_map; // Opaque type returned by dlopen().
|
|
|
|
namespace __sanitizer {
|
|
// Dirent structure for getdents(). Note that this structure is different from
|
|
// the one in <dirent.h>, which is used by readdir().
|
|
struct linux_dirent;
|
|
|
|
struct ProcSelfMapsBuff {
|
|
char *data;
|
|
uptr mmaped_size;
|
|
uptr len;
|
|
};
|
|
|
|
struct MemoryMappingLayoutData {
|
|
ProcSelfMapsBuff proc_self_maps;
|
|
const char *current;
|
|
};
|
|
|
|
void ReadProcMaps(ProcSelfMapsBuff *proc_maps);
|
|
|
|
// Syscall wrappers.
|
|
uptr internal_getdents(fd_t fd, struct linux_dirent *dirp, unsigned int count);
|
|
uptr internal_sigaltstack(const void* ss, void* oss);
|
|
uptr internal_sigprocmask(int how, __sanitizer_sigset_t *set,
|
|
__sanitizer_sigset_t *oldset);
|
|
|
|
// Linux-only syscalls.
|
|
#if SANITIZER_LINUX
|
|
uptr internal_prctl(int option, uptr arg2, uptr arg3, uptr arg4, uptr arg5);
|
|
// Used only by sanitizer_stoptheworld. Signal handlers that are actually used
|
|
// (like the process-wide error reporting SEGV handler) must use
|
|
// internal_sigaction instead.
|
|
int internal_sigaction_norestorer(int signum, const void *act, void *oldact);
|
|
#if (defined(__x86_64__) || SANITIZER_MIPS64) && !SANITIZER_GO
|
|
// Uses a raw system call to avoid interceptors.
|
|
int internal_sigaction_syscall(int signum, const void *act, void *oldact);
|
|
#endif
|
|
void internal_sigdelset(__sanitizer_sigset_t *set, int signum);
|
|
#if defined(__x86_64__) || defined(__mips__) || defined(__aarch64__) \
|
|
|| defined(__powerpc64__) || defined(__s390__) || defined(__i386__) \
|
|
|| defined(__arm__)
|
|
uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg,
|
|
int *parent_tidptr, void *newtls, int *child_tidptr);
|
|
#endif
|
|
#endif // SANITIZER_LINUX
|
|
|
|
// This class reads thread IDs from /proc/<pid>/task using only syscalls.
|
|
class ThreadLister {
|
|
public:
|
|
explicit ThreadLister(int pid);
|
|
~ThreadLister();
|
|
// GetNextTID returns -1 if the list of threads is exhausted, or if there has
|
|
// been an error.
|
|
int GetNextTID();
|
|
void Reset();
|
|
bool error();
|
|
|
|
private:
|
|
bool GetDirectoryEntries();
|
|
|
|
int pid_;
|
|
int descriptor_;
|
|
InternalScopedBuffer<char> buffer_;
|
|
bool error_;
|
|
struct linux_dirent* entry_;
|
|
int bytes_read_;
|
|
};
|
|
|
|
// Exposed for testing.
|
|
uptr ThreadDescriptorSize();
|
|
uptr ThreadSelf();
|
|
uptr ThreadSelfOffset();
|
|
|
|
// Matches a library's file name against a base name (stripping path and version
|
|
// information).
|
|
bool LibraryNameIs(const char *full_name, const char *base_name);
|
|
|
|
// Call cb for each region mapped by map.
|
|
void ForEachMappedRegion(link_map *map, void (*cb)(const void *, uptr));
|
|
|
|
#if SANITIZER_ANDROID
|
|
|
|
#if defined(__aarch64__)
|
|
# define __get_tls() \
|
|
({ void** __v; __asm__("mrs %0, tpidr_el0" : "=r"(__v)); __v; })
|
|
#elif defined(__arm__)
|
|
# define __get_tls() \
|
|
({ void** __v; __asm__("mrc p15, 0, %0, c13, c0, 3" : "=r"(__v)); __v; })
|
|
#elif defined(__mips__)
|
|
// On mips32r1, this goes via a kernel illegal instruction trap that's
|
|
// optimized for v1.
|
|
# define __get_tls() \
|
|
({ register void** __v asm("v1"); \
|
|
__asm__(".set push\n" \
|
|
".set mips32r2\n" \
|
|
"rdhwr %0,$29\n" \
|
|
".set pop\n" : "=r"(__v)); \
|
|
__v; })
|
|
#elif defined(__i386__)
|
|
# define __get_tls() \
|
|
({ void** __v; __asm__("movl %%gs:0, %0" : "=r"(__v)); __v; })
|
|
#elif defined(__x86_64__)
|
|
# define __get_tls() \
|
|
({ void** __v; __asm__("mov %%fs:0, %0" : "=r"(__v)); __v; })
|
|
#else
|
|
#error "Unsupported architecture."
|
|
#endif
|
|
|
|
// The Android Bionic team has allocated a TLS slot for TSan starting with N,
|
|
// given that Android currently doesn't support ELF TLS. It is used to store
|
|
// Sanitizers thread specific data.
|
|
static const int TLS_SLOT_TSAN = 8;
|
|
|
|
ALWAYS_INLINE uptr *get_android_tls_ptr() {
|
|
return reinterpret_cast<uptr *>(&__get_tls()[TLS_SLOT_TSAN]);
|
|
}
|
|
|
|
#endif // SANITIZER_ANDROID
|
|
|
|
} // namespace __sanitizer
|
|
|
|
#endif // SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD
|
|
#endif // SANITIZER_LINUX_H
|