mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 19:03:59 +08:00
696d846a56
libsanitizer/ 2015-10-20 Maxim Ostapenko <m.ostapenko@partner.samsung.com> * All source files: Merge from upstream r250806. * configure.ac (link_sanitizer_common): Add -lrt flag. * configure.tgt: Enable TSAN and LSAN for aarch64-linux targets. Set CXX_ABI_NEEDED=true for darwin. * asan/Makefile.am (asan_files): Add new files. (DEFS): Add DCAN_SANITIZE_UB=0 and remove unused and legacy DASAN_FLEXIBLE_MAPPING_AND_OFFSET=0. * asan/Makefile.in: Regenerate. * ubsan/Makefile.am (ubsan_files): Add new files. (DEFS): Add DCAN_SANITIZE_UB=1. (libubsan_la_LIBADD): Add -lc++abi if CXX_ABI_NEEDED is true. * ubsan/Makefile.in: Regenerate. * tsan/Makefile.am (tsan_files): Add new files. (DEFS): Add DCAN_SANITIZE_UB=0. * tsan/Makefile.in: Regenerate. * sanitizer_common/Makefile.am (sanitizer_common_files): Add new files. * sanitizer_common/Makefile.in: Regenerate. * asan/libtool-version: Bump the libasan SONAME. From-SVN: r229111
80 lines
3.2 KiB
C++
80 lines
3.2 KiB
C++
//===-- sanitizer_posix.h -------------------------------------------------===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is shared between AddressSanitizer and ThreadSanitizer
|
|
// run-time libraries and declares some useful POSIX-specific functions.
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef SANITIZER_POSIX_H
|
|
#define SANITIZER_POSIX_H
|
|
|
|
// ----------- ATTENTION -------------
|
|
// This header should NOT include any other headers from sanitizer runtime.
|
|
#include "sanitizer_internal_defs.h"
|
|
|
|
#if !SANITIZER_POSIX
|
|
// Make it hard to accidentally use any of functions declared in this file:
|
|
#error This file should only be included on POSIX
|
|
#endif
|
|
|
|
namespace __sanitizer {
|
|
|
|
// I/O
|
|
// Don't use directly, use __sanitizer::OpenFile() instead.
|
|
uptr internal_open(const char *filename, int flags);
|
|
uptr internal_open(const char *filename, int flags, u32 mode);
|
|
uptr internal_close(fd_t fd);
|
|
|
|
uptr internal_read(fd_t fd, void *buf, uptr count);
|
|
uptr internal_write(fd_t fd, const void *buf, uptr count);
|
|
|
|
// Memory
|
|
uptr internal_mmap(void *addr, uptr length, int prot, int flags,
|
|
int fd, OFF_T offset);
|
|
uptr internal_munmap(void *addr, uptr length);
|
|
int internal_mprotect(void *addr, uptr length, int prot);
|
|
|
|
// OS
|
|
uptr internal_filesize(fd_t fd); // -1 on error.
|
|
uptr internal_stat(const char *path, void *buf);
|
|
uptr internal_lstat(const char *path, void *buf);
|
|
uptr internal_fstat(fd_t fd, void *buf);
|
|
uptr internal_dup2(int oldfd, int newfd);
|
|
uptr internal_readlink(const char *path, char *buf, uptr bufsize);
|
|
uptr internal_unlink(const char *path);
|
|
uptr internal_rename(const char *oldpath, const char *newpath);
|
|
uptr internal_lseek(fd_t fd, OFF_T offset, int whence);
|
|
|
|
uptr internal_ptrace(int request, int pid, void *addr, void *data);
|
|
uptr internal_waitpid(int pid, int *status, int options);
|
|
|
|
int internal_fork();
|
|
|
|
// These functions call appropriate pthread_ functions directly, bypassing
|
|
// the interceptor. They are weak and may not be present in some tools.
|
|
SANITIZER_WEAK_ATTRIBUTE
|
|
int real_pthread_create(void *th, void *attr, void *(*callback)(void *),
|
|
void *param);
|
|
SANITIZER_WEAK_ATTRIBUTE
|
|
int real_pthread_join(void *th, void **ret);
|
|
|
|
#define DEFINE_REAL_PTHREAD_FUNCTIONS \
|
|
namespace __sanitizer { \
|
|
int real_pthread_create(void *th, void *attr, void *(*callback)(void *), \
|
|
void *param) { \
|
|
return REAL(pthread_create)(th, attr, callback, param); \
|
|
} \
|
|
int real_pthread_join(void *th, void **ret) { \
|
|
return REAL(pthread_join(th, ret)); \
|
|
} \
|
|
} // namespace __sanitizer
|
|
|
|
int internal_sigaction(int signum, const void *act, void *oldact);
|
|
|
|
} // namespace __sanitizer
|
|
|
|
#endif // SANITIZER_POSIX_H
|