Files
clang-p2996/compiler-rt/test/msan/sigwait.cc
Evgeniy Stepanov 8b80b328d1 [msan] Check sigset_t and sigaction arguments.
Summary:
Check sigset_t arguments in ppoll, sig*wait*, sigprocmask
interceptors, and the entire "struct sigaction" in sigaction. This
can be done because sigemptyset/sigfullset are intercepted and
signal masks should be correctly marked as initialized.

Reviewers: vitalybuka

Subscribers: kubamracek, llvm-commits

Differential Revision: https://reviews.llvm.org/D37367

llvm-svn: 312576
2017-09-05 21:08:56 +00:00

36 lines
752 B
C++

// RUN: %clangxx_msan -std=c++11 -O0 -g %s -o %t && %run %t
// RUN: %clangxx_msan -DPOSITIVE -std=c++11 -O0 -g %s -o %t && not %run %t 2>&1 | FileCheck %s
#include <assert.h>
#include <signal.h>
#include <sys/time.h>
#include <unistd.h>
#include <sanitizer/msan_interface.h>
void test_sigwait() {
sigset_t s;
#ifndef POSITIVE
sigemptyset(&s);
sigaddset(&s, SIGUSR1);
#endif
sigprocmask(SIG_BLOCK, &s, 0);
// CHECK: MemorySanitizer: use-of-uninitialized-value
if (pid_t pid = fork()) {
kill(pid, SIGUSR1);
_exit(0);
} else {
int sig;
int res = sigwait(&s, &sig);
assert(!res);
// The following checks that sig is initialized.
assert(sig == SIGUSR1);
}
}
int main(void) {
test_sigwait();
return 0;
}