blob: 90f995d87bca129af538e20ca3dd23ef84c99f49 [file] [log] [blame]
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -08001// RUN: %clangxx_cfi -o %t1 %s
2// RUN: %expect_crash %t1 2>&1 | FileCheck --check-prefix=CFI %s
Stephen Hines86277eb2015-03-23 12:06:32 -07003
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -08004// RUN: %clangxx_cfi -DB32 -o %t2 %s
5// RUN: %expect_crash %t2 2>&1 | FileCheck --check-prefix=CFI %s
Stephen Hines86277eb2015-03-23 12:06:32 -07006
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -08007// RUN: %clangxx_cfi -DB64 -o %t3 %s
8// RUN: %expect_crash %t3 2>&1 | FileCheck --check-prefix=CFI %s
Stephen Hines86277eb2015-03-23 12:06:32 -07009
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080010// RUN: %clangxx_cfi -DBM -o %t4 %s
11// RUN: %expect_crash %t4 2>&1 | FileCheck --check-prefix=CFI %s
Stephen Hines86277eb2015-03-23 12:06:32 -070012
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080013// RUN: %clangxx -o %t5 %s
14// RUN: %t5 2>&1 | FileCheck --check-prefix=NCFI %s
15
16// RUN: %clangxx_cfi_diag -o %t6 %s
17// RUN: %t6 2>&1 | FileCheck --check-prefix=CFI-DIAG %s
Stephen Hines86277eb2015-03-23 12:06:32 -070018
19// Tests that the CFI mechanism crashes the program when a virtual table is
20// replaced with a compatible table of function pointers that does not belong to
21// any class, by manually overwriting the virtual table of an object and
22// attempting to make a call through it.
23
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080024// REQUIRES: cxxabi
25
Stephen Hines86277eb2015-03-23 12:06:32 -070026#include <stdio.h>
27#include "utils.h"
28
29struct A {
30 virtual void f();
31};
32
33void A::f() {}
34
35void foo() {
36 fprintf(stderr, "foo\n");
37}
38
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080039void *fake_vtable[] = { 0, 0, (void *)&foo };
Stephen Hines86277eb2015-03-23 12:06:32 -070040
41int main() {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080042 create_derivers<A>();
Stephen Hines86277eb2015-03-23 12:06:32 -070043
44 A *a = new A;
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080045 *((void **)a) = fake_vtable + 2; // UB here
Stephen Hines86277eb2015-03-23 12:06:32 -070046 break_optimization(a);
47
48 // CFI: 1
49 // NCFI: 1
50 fprintf(stderr, "1\n");
51
52 // CFI-NOT: foo
53 // NCFI: foo
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080054 // CFI-DIAG: runtime error: control flow integrity check for type 'A' failed during virtual call
55 // CFI-DIAG-NEXT: note: invalid vtable
Stephen Hines86277eb2015-03-23 12:06:32 -070056 a->f();
57
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080058 // CFI-NOT: {{^2$}}
59 // NCFI: {{^2$}}
Stephen Hines86277eb2015-03-23 12:06:32 -070060 fprintf(stderr, "2\n");
61}