forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TySan] Add initial Type Sanitizer support to Clang) (llvm#76260)
This patch introduces the Clang components of type sanitizer: a sanitizer for type-based aliasing violations. It is based on Hal Finkel's https://reviews.llvm.org/D32198. The Clang changes are mostly formulaic, the one specific change being that when the TBAA sanitizer is enabled, TBAA is always generated, even at -O0. It goes together with the corresponding LLVM changes (llvm#76259) and compiler-rt changes (llvm#76261) PR: llvm#76260
- Loading branch information
Showing
16 changed files
with
183 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -o - %s | FileCheck -check-prefix=WITHOUT %s | ||
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -o - %s -fsanitize=type | FileCheck -check-prefix=TYSAN %s | ||
// RUN: echo "src:%s" | sed -e 's/\\/\\\\/g' > %t | ||
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -o - %s -fsanitize=type -fsanitize-blacklist=%t | FileCheck -check-prefix=BL %s | ||
|
||
// The sanitize_type attribute should be attached to functions | ||
// when TypeSanitizer is enabled, unless no_sanitize("type") attribute | ||
// is present. | ||
|
||
// WITHOUT: NoTYSAN1{{.*}}) [[NOATTR:#[0-9]+]] | ||
// BL: NoTYSAN1{{.*}}) [[NOATTR:#[0-9]+]] | ||
// TYSAN: NoTYSAN1{{.*}}) [[NOATTR:#[0-9]+]] | ||
__attribute__((no_sanitize("type"))) int NoTYSAN1(int *a) { return *a; } | ||
|
||
// WITHOUT: NoTYSAN2{{.*}}) [[NOATTR]] | ||
// BL: NoTYSAN2{{.*}}) [[NOATTR]] | ||
// TYSAN: NoTYSAN2{{.*}}) [[NOATTR]] | ||
__attribute__((no_sanitize("type"))) int NoTYSAN2(int *a); | ||
int NoTYSAN2(int *a) { return *a; } | ||
|
||
// WITHOUT: NoTYSAN3{{.*}}) [[NOATTR:#[0-9]+]] | ||
// BL: NoTYSAN3{{.*}}) [[NOATTR:#[0-9]+]] | ||
// TYSAN: NoTYSAN3{{.*}}) [[NOATTR:#[0-9]+]] | ||
__attribute__((no_sanitize("type"))) int NoTYSAN3(int *a) { return *a; } | ||
|
||
// WITHOUT: TYSANOk{{.*}}) [[NOATTR]] | ||
// BL: TYSANOk{{.*}}) [[NOATTR]] | ||
// TYSAN: TYSANOk{{.*}}) [[WITH:#[0-9]+]] | ||
int TYSANOk(int *a) { return *a; } | ||
|
||
// WITHOUT: TemplateTYSANOk{{.*}}) [[NOATTR]] | ||
// BL: TemplateTYSANOk{{.*}}) [[NOATTR]] | ||
// TYSAN: TemplateTYSANOk{{.*}}) [[WITH]] | ||
template <int i> | ||
int TemplateTYSANOk() { return i; } | ||
|
||
// WITHOUT: TemplateNoTYSAN{{.*}}) [[NOATTR]] | ||
// BL: TemplateNoTYSAN{{.*}}) [[NOATTR]] | ||
// TYSAN: TemplateNoTYSAN{{.*}}) [[NOATTR]] | ||
template <int i> | ||
__attribute__((no_sanitize("type"))) int TemplateNoTYSAN() { return i; } | ||
|
||
int force_instance = TemplateTYSANOk<42>() + TemplateNoTYSAN<42>(); | ||
|
||
// Check that __cxx_global_var_init* get the sanitize_type attribute. | ||
int global1 = 0; | ||
int global2 = *(int *)((char *)&global1 + 1); | ||
// WITHOUT: @__cxx_global_var_init{{.*}}[[NOATTR:#[0-9]+]] | ||
// BL: @__cxx_global_var_init{{.*}}[[NOATTR:#[0-9]+]] | ||
// TYSAN: @__cxx_global_var_init{{.*}}[[WITH:#[0-9]+]] | ||
|
||
// Make sure that we don't add globals to the list for which we don't have a | ||
// specific type description. | ||
// FIXME: We now have a type description for this type and a global is added. Should it? | ||
struct SX { | ||
int a, b; | ||
}; | ||
SX sx; | ||
|
||
void consumer(const char *); | ||
|
||
void char_caller() { | ||
// TYSAN: void @_Z11char_callerv() | ||
// TYSAN-NEXT: entry: | ||
// TYSAN-NEXT: call void @_Z8consumerPKc(ptr noundef @.str) | ||
// TYSAN-NEXT: ret void | ||
|
||
consumer("foo"); | ||
} | ||
|
||
// WITHOUT: attributes [[NOATTR]] = { noinline nounwind{{.*}} } | ||
|
||
// BL: attributes [[NOATTR]] = { noinline nounwind{{.*}} } | ||
|
||
// TYSAN: attributes [[NOATTR]] = { mustprogress noinline nounwind{{.*}} } | ||
// TYSAN: attributes [[WITH]] = { noinline nounwind sanitize_type{{.*}} } | ||
|
||
// TYSAN-DAG: !llvm.tysan.globals = !{[[G1MD:![0-9]+]], [[G2MD:![0-9]+]], [[G3MD:![0-9]+]], [[SXMD:![0-9]+]]} | ||
// TYSAN-DAG: [[G1MD]] = !{ptr @force_instance, [[INTMD:![0-9]+]]} | ||
// TYSAN-DAG: [[INTMD]] = !{!"int", | ||
// TYSAN-DAG: [[G2MD]] = !{ptr @global1, [[INTMD]]} | ||
// TYSAN-DAG: [[G3MD]] = !{ptr @global2, [[INTMD]]} | ||
// TYSAN-DAG: [[SXMD]] = !{ptr @sx, [[SXTYMD:![0-9]+]]} | ||
// TYSAN-DAG: [[SXTYMD]] = !{!"_ZTS2SX", [[INTMD]], i64 0, !1, i64 4} | ||
// TYSAN-DAG: Simple C++ TBAA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters