2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -o %t1 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t1 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 04:31:18 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -DB32 -o %t2 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t2 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:36:08 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -DB64 -o %t3 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t3 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:36:08 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -DBM -o %t4 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t4 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:36:08 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O1 -o %t5 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t5 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O1 -DB32 -o %t6 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t6 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O1 -DB64 -o %t7 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t7 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O1 -DBM -o %t8 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t8 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O2 -o %t9 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t9 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O2 -DB32 -o %t10 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t10 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O2 -DB64 -o %t11 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t11 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O2 -DBM -o %t12 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t12 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O3 -o %t13 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t13 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O3 -DB32 -o %t14 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t14 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O3 -DB64 -o %t15 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t15 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi -O3 -DBM -o %t16 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %expect_crash %run %t16 2>&1 | FileCheck --check-prefix=CFI %s
|
2015-02-21 09:48:51 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx_cfi_diag -o %t17 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %run %t17 2>&1 | FileCheck --check-prefix=CFI-DIAG %s
|
2015-06-19 09:52:55 +08:00
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// RUN: %clangxx -o %t18 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %run %t18 2>&1 | FileCheck --check-prefix=NCFI %s
|
2015-02-21 04:31:18 +08:00
|
|
|
|
2016-08-13 01:26:37 +08:00
|
|
|
// RUN: %clangxx_cfi -DCHECK_NO_SANITIZE_CFI -o %t19 %s
|
2017-10-02 18:21:26 +08:00
|
|
|
// RUN: %run %t19 2>&1 | FileCheck --check-prefix=NCFI %s
|
2016-08-13 01:26:37 +08:00
|
|
|
|
2015-02-21 04:31:18 +08:00
|
|
|
// Tests that the CFI mechanism crashes the program when making a virtual call
|
|
|
|
// to an object of the wrong class but with a compatible vtable, by casting a
|
|
|
|
// pointer to such an object and attempting to make a call through it.
|
|
|
|
|
2015-06-26 02:45:30 +08:00
|
|
|
// REQUIRES: cxxabi
|
|
|
|
|
2015-02-21 04:31:18 +08:00
|
|
|
#include <stdio.h>
|
2015-02-21 09:36:08 +08:00
|
|
|
#include "utils.h"
|
2015-02-21 04:31:18 +08:00
|
|
|
|
|
|
|
struct A {
|
|
|
|
virtual void f();
|
|
|
|
};
|
|
|
|
|
|
|
|
void A::f() {}
|
|
|
|
|
|
|
|
struct B {
|
|
|
|
virtual void f();
|
|
|
|
};
|
|
|
|
|
|
|
|
void B::f() {}
|
|
|
|
|
2016-08-13 01:26:37 +08:00
|
|
|
#if defined(CHECK_NO_SANITIZE_CFI)
|
|
|
|
__attribute__((no_sanitize("cfi")))
|
|
|
|
#endif
|
2015-02-21 04:31:18 +08:00
|
|
|
int main() {
|
2015-07-30 02:12:45 +08:00
|
|
|
create_derivers<B>();
|
2015-02-21 09:36:08 +08:00
|
|
|
|
2015-02-21 04:31:18 +08:00
|
|
|
A *a = new A;
|
2015-02-21 09:36:08 +08:00
|
|
|
break_optimization(a);
|
2015-02-21 04:31:18 +08:00
|
|
|
|
|
|
|
// CFI: 1
|
|
|
|
// NCFI: 1
|
|
|
|
fprintf(stderr, "1\n");
|
|
|
|
|
2015-06-19 09:52:55 +08:00
|
|
|
// CFI-DIAG: runtime error: control flow integrity check for type 'B' failed during cast to unrelated type
|
2015-07-09 06:10:34 +08:00
|
|
|
// CFI-DIAG-NEXT: note: vtable is of type '{{(struct )?}}A'
|
2015-06-19 09:52:55 +08:00
|
|
|
// CFI-DIAG: runtime error: control flow integrity check for type 'B' failed during virtual call
|
2015-07-09 06:10:34 +08:00
|
|
|
// CFI-DIAG-NEXT: note: vtable is of type '{{(struct )?}}A'
|
2015-02-21 04:31:18 +08:00
|
|
|
((B *)a)->f(); // UB here
|
|
|
|
|
2015-07-09 06:10:34 +08:00
|
|
|
// CFI-NOT: {{^2$}}
|
|
|
|
// NCFI: {{^2$}}
|
2015-02-21 04:31:18 +08:00
|
|
|
fprintf(stderr, "2\n");
|
|
|
|
}
|