Fix a brown paper bag error made by me in D129418. I didn't set ASAN_INTERCEPT_VFORK correctly for loongarch64, but created an all-zero object for __interception::real_vfork. This caused anything calling vfork() to die instantly. Fix this issue by setting ASAN_INTERCEPT_VFORK and remove the bad all-zero definition. Other ports have an all-zero common definition but we don't need it at least for now. And, enable ASAN vfork test for loongarch64 to prevent regression in the future. Differential Revision: https://reviews.llvm.org/D137160
32 lines
792 B
C++
32 lines
792 B
C++
// https://github.com/google/sanitizers/issues/925
|
|
// RUN: %clang_asan -O0 %s -o %t && %run %t 2>&1
|
|
|
|
// REQUIRES: aarch64-target-arch || x86_64-target-arch || i386-target-arch || arm-target-arch || riscv64-target-arch || loongarch64-target-arch
|
|
|
|
#include <assert.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <sanitizer/asan_interface.h>
|
|
|
|
__attribute__((noinline, no_sanitize("address"))) void child() {
|
|
alignas(8) char x[100000];
|
|
__asan_poison_memory_region(x, sizeof(x));
|
|
_exit(0);
|
|
}
|
|
|
|
__attribute__((noinline, no_sanitize("address"))) void parent() {
|
|
alignas(8) char x[100000];
|
|
assert(__asan_address_is_poisoned(x + 5000) == 0);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
if (vfork())
|
|
parent();
|
|
else
|
|
child();
|
|
|
|
return 0;
|
|
}
|