mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-25 10:48:14 +00:00
36597fa128
test/msan/dtor-trivial.cpp. Runtime testing for poisoning vtable pointer in dtor. Summary: Runtime testing for vtable ptr poisoning in dtor. Reviewers: eugenis, kcc Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D12713 Clean test case & comments. Update tests for vptr poisoning order. Simplify test to rely upon globals. Assertions verify that vtable still accessible from dtors. Testing linear inheritance and multiple inheritance for vtable poisoning. Macros for testing expected failing functions. Rename macros. Removed xfail, modified FileCheck commands, to expect test to crash. llvm-svn: 247763
69 lines
1.6 KiB
C++
69 lines
1.6 KiB
C++
// RUN: %clangxx_msan %s -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t
|
|
|
|
// RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t
|
|
|
|
// RUN: %clangxx_msan %s -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t
|
|
|
|
// RUN: %clangxx_msan %s -DVPTRA=1 -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t
|
|
|
|
// RUN: %clangxx_msan %s -DVPTRCA=1 -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t
|
|
|
|
// RUN: %clangxx_msan %s -DVPTRCB=1 -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t
|
|
|
|
// RUN: %clangxx_msan %s -DVPTRC=1 -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 not %run %t
|
|
|
|
// Expected to quit due to invalid access when invoking
|
|
// function using vtable.
|
|
|
|
#include <sanitizer/msan_interface.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
|
|
class A {
|
|
public:
|
|
int x;
|
|
~A() {}
|
|
virtual void A_Foo() {}
|
|
};
|
|
|
|
class B {
|
|
public:
|
|
int y;
|
|
~B() {}
|
|
virtual void B_Foo() {}
|
|
};
|
|
|
|
class C : public A, public B {
|
|
public:
|
|
int z;
|
|
~C() {}
|
|
virtual void C_Foo() {}
|
|
};
|
|
|
|
int main() {
|
|
A *a = new A();
|
|
a->~A();
|
|
|
|
// Shouldn't be allowed to invoke function via vtable.
|
|
#ifdef VPTRA
|
|
a->A_Foo();
|
|
#endif
|
|
|
|
C *c = new C();
|
|
c->~C();
|
|
|
|
#ifdef VPTRCA
|
|
c->A_Foo();
|
|
#endif
|
|
|
|
#ifdef VPTRCB
|
|
c->B_Foo();
|
|
#endif
|
|
|
|
#ifdef VPTRC
|
|
c->C_Foo();
|
|
#endif
|
|
|
|
return 0;
|
|
}
|