Skip to content

Commit 5a4fdca

Browse files
author
Naomi Musgrave
committed
Runtime check of poisoning derived class members.
Summary: Simple test case to verify that an instance of a derived class with virtual base is properly poisoned Reviewers: eugenis, kcc Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D11733 modified test to be more concise, and check the local pointer to the destroyed object revised test to not examine padding- only explicit object members git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@243913 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 7bab808 commit 5a4fdca

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

test/msan/dtor-derived-class.cc

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
2+
// RUN: %clangxx_msan %s -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
3+
4+
// RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
5+
6+
// RUN: %clangxx_msan %s -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
7+
8+
#include <stdio.h>
9+
#include <sanitizer/msan_interface.h>
10+
#include <assert.h>
11+
12+
struct Base {
13+
int x;
14+
Base() {
15+
x = 5;
16+
}
17+
virtual ~Base() { }
18+
};
19+
20+
struct Derived:public Base {
21+
int y;
22+
Derived() {
23+
y = 10;
24+
}
25+
~Derived() { }
26+
};
27+
28+
int main() {
29+
Derived *d = new Derived();
30+
d->~Derived();
31+
32+
// Verify that local pointer is unpoisoned, and that the object's
33+
// members are.
34+
assert(__msan_test_shadow(&d, sizeof(d)) == -1);
35+
assert(__msan_test_shadow(&d->x, sizeof(d->x)) != -1);
36+
assert(__msan_test_shadow(&d->y, sizeof(d->y)) != -1);
37+
38+
Base *b = new Derived();
39+
b->~Base();
40+
41+
// Verify that local pointer is unpoisoned, and thate the object's
42+
// members are.
43+
assert(__msan_test_shadow(&b, sizeof(b)) == -1);
44+
assert(__msan_test_shadow(&b->x, sizeof(b->x)) != -1);
45+
46+
return 0;
47+
}

0 commit comments

Comments
 (0)