summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/sanitizer_common/sanitizer_common.h
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2018-06-05 07:29:23 +0000
committerKamil Rytarowski <n54@gmx.com>2018-06-05 07:29:23 +0000
commit7d260775f34f215b873f8b6c0528d0edc8d3ea0a (patch)
tree7614e1fe33b2a869e84bd7918d31a03e07b7f547 /compiler-rt/lib/sanitizer_common/sanitizer_common.h
parentf17b33d6c6678bf2aad114b046b227c3ceaa500e (diff)
downloadbcm5719-llvm-7d260775f34f215b873f8b6c0528d0edc8d3ea0a.tar.gz
bcm5719-llvm-7d260775f34f215b873f8b6c0528d0edc8d3ea0a.zip
Introduce CheckASLR() in sanitizers
Summary: At least the ASan, MSan, TSan sanitizers require disabled ASLR on a NetBSD. Introduce a generic CheckASLR() routine, that implements a check for the current process. This flag depends on the global or per-process settings. There is no simple way to disable ASLR in the build process from the level of a sanitizer or during the runtime execution. With ASLR enabled sanitizers that operate over the process virtual address space can misbehave usually breaking with cryptic messages. This check is dummy for !NetBSD. Sponsored by <The NetBSD Foundation> Reviewers: vitalybuka, joerg Reviewed By: vitalybuka Subscribers: cryptoad, kubamracek, llvm-commits, #sanitizers Tags: #sanitizers Differential Revision: https://reviews.llvm.org/D47442 llvm-svn: 333985
Diffstat (limited to 'compiler-rt/lib/sanitizer_common/sanitizer_common.h')
-rw-r--r--compiler-rt/lib/sanitizer_common/sanitizer_common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_common.h b/compiler-rt/lib/sanitizer_common/sanitizer_common.h
index 150c97ea4f1..4246d2e7002 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_common.h
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_common.h
@@ -221,6 +221,7 @@ bool SetEnv(const char *name, const char *value);
u32 GetUid();
void ReExec();
+void CheckASLR();
char **GetArgv();
void PrintCmdline();
bool StackSizeIsUnlimited();
OpenPOWER on IntegriCloud