mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
[asan] Don't check ODR violations for particular types of globals
Summary: private and internal: should not trigger ODR at all. unnamed_addr: current ODR checking approach fail and rereport false violation if a linker merges such globals linkonce_odr, weak_odr: could cause similar problems and they are already not instrumented for ELF. Reviewers: eugenis, kcc Subscribers: kubamracek, hiraditya, llvm-commits Differential Revision: https://reviews.llvm.org/D55621 llvm-svn: 349015
This commit is contained in:
parent
35d66b880e
commit
1bfe6867e2
@ -2190,7 +2190,13 @@ bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M, bool
|
||||
GlobalAlias::create(GlobalValue::PrivateLinkage, "", NewGlobal);
|
||||
}
|
||||
|
||||
if (UseOdrIndicator) {
|
||||
// ODR check is not useful for the following, but we see false reports
|
||||
// caused by linker optimizations.
|
||||
if (NewGlobal->hasLocalLinkage() || NewGlobal->hasGlobalUnnamedAddr() ||
|
||||
NewGlobal->hasLinkOnceODRLinkage() || NewGlobal->hasWeakODRLinkage()) {
|
||||
ODRIndicator = ConstantExpr::getIntToPtr(ConstantInt::get(IntptrTy, -1),
|
||||
IRB.getInt8PtrTy());
|
||||
} else if (UseOdrIndicator) {
|
||||
// With local aliases, we need to provide another externally visible
|
||||
// symbol __odr_asan_XXX to detect ODR violation.
|
||||
auto *ODRIndicatorSym =
|
||||
|
@ -5,7 +5,9 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
; no action should be taken for these globals
|
||||
@global_noinst = linkonce_odr constant [2 x i8] [i8 1, i8 2]
|
||||
@global_weak_noinst = weak_odr constant [2 x i8] [i8 1, i8 2]
|
||||
@global_inst = private constant [2 x i8] [i8 1, i8 2]
|
||||
; CHECK-NOT: {{asan_gen.*global_noinst}}
|
||||
; CHECK-NOT: {{asan_gen.*global_weak_noinst}}
|
||||
; CHECK: {{asan_gen.*global_inst}}
|
||||
; CHECK: @asan.module_ctor
|
||||
|
@ -22,7 +22,7 @@ target triple = "x86_64-unknown-linux-gnu"
|
||||
; CHECK: [[FILENAME:@___asan_gen_.[0-9]+]] = private unnamed_addr constant [22 x i8] c"/tmp/asan-globals.cpp\00", align 1
|
||||
; CHECK: [[LOCDESCR:@___asan_gen_.[0-9]+]] = private unnamed_addr constant { [22 x i8]*, i32, i32 } { [22 x i8]* [[FILENAME]], i32 5, i32 5 }
|
||||
; CHECK: @__asan_global_global = {{.*}}i64 ptrtoint ({ i32, [60 x i8] }* @global to i64){{.*}} section "asan_globals"{{.*}}, !associated
|
||||
; CHECK: @__asan_global_.str = {{.*}}i64 ptrtoint ({ [14 x i8], [50 x i8] }* @.str to i64){{.*}} section "asan_globals"{{.*}}, !associated
|
||||
; CHECK: @__asan_global_.str = {{.*}}i64 ptrtoint ({ [14 x i8], [50 x i8] }* @{{.str|1}} to i64){{.*}} section "asan_globals"{{.*}}, !associated
|
||||
|
||||
; The metadata has to be inserted to llvm.compiler.used to avoid being stripped
|
||||
; during LTO.
|
||||
|
@ -6,14 +6,21 @@
|
||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
||||
@a = internal global [2 x i32] zeroinitializer, align 4
|
||||
@a = dso_local global [2 x i32] zeroinitializer, align 4
|
||||
@b = private global [2 x i32] zeroinitializer, align 4
|
||||
@c = internal global [2 x i32] zeroinitializer, align 4
|
||||
@d = unnamed_addr global [2 x i32] zeroinitializer, align 4
|
||||
|
||||
; Check that we generate internal alias and odr indicator symbols for global to be protected.
|
||||
; CHECK-NOINDICATOR-NOT: __odr_asan_gen_a
|
||||
; CHECK-NOALIAS-NOT: private alias
|
||||
; CHECK-INDICATOR: @__odr_asan_gen_a = internal global i8 0, align 1
|
||||
; CHECK-INDICATOR: @__odr_asan_gen_a = global i8 0, align 1
|
||||
; CHECK-ALIAS: @0 = private alias { [2 x i32], [56 x i8] }, { [2 x i32], [56 x i8] }* @a
|
||||
|
||||
; CHECK-ALIAS: @1 = private alias { [2 x i32], [56 x i8] }, { [2 x i32], [56 x i8] }* @b
|
||||
; CHECK-ALIAS: @2 = private alias { [2 x i32], [56 x i8] }, { [2 x i32], [56 x i8] }* @c
|
||||
; CHECK-ALIAS: @3 = private alias { [2 x i32], [56 x i8] }, { [2 x i32], [56 x i8] }* @d
|
||||
|
||||
; Function Attrs: nounwind sanitize_address uwtable
|
||||
define i32 @foo(i32 %M) #0 {
|
||||
entry:
|
||||
|
17
test/Instrumentation/AddressSanitizer/odr-check-ignore.ll
Normal file
17
test/Instrumentation/AddressSanitizer/odr-check-ignore.ll
Normal file
@ -0,0 +1,17 @@
|
||||
; RUN: opt < %s -asan -asan-module -S | FileCheck %s
|
||||
|
||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
||||
@a = global [2 x i32] zeroinitializer, align 4
|
||||
@b = private global [2 x i32] zeroinitializer, align 4
|
||||
@c = internal global [2 x i32] zeroinitializer, align 4
|
||||
@d = unnamed_addr global [2 x i32] zeroinitializer, align 4
|
||||
|
||||
; CHECK: @__asan_global_a = private global { i64, i64, i64, i64, i64, i64, i64, i64 } { i64 ptrtoint ({ [2 x i32], [56 x i8] }* @a to i64), i64 8, i64 64, i64 ptrtoint ([2 x i8]* @___asan_gen_.1 to i64), i64 ptrtoint ([8 x i8]* @___asan_gen_ to i64), i64 0, i64 0, i64 0 }
|
||||
|
||||
; CHECK: @__asan_global_b = private global { i64, i64, i64, i64, i64, i64, i64, i64 } { i64 ptrtoint ({ [2 x i32], [56 x i8] }* @b to i64), i64 8, i64 64, i64 ptrtoint ([2 x i8]* @___asan_gen_.2 to i64), i64 ptrtoint ([8 x i8]* @___asan_gen_ to i64), i64 0, i64 0, i64 -1 }
|
||||
|
||||
; CHECK: @__asan_global_c = private global { i64, i64, i64, i64, i64, i64, i64, i64 } { i64 ptrtoint ({ [2 x i32], [56 x i8] }* @c to i64), i64 8, i64 64, i64 ptrtoint ([2 x i8]* @___asan_gen_.3 to i64), i64 ptrtoint ([8 x i8]* @___asan_gen_ to i64), i64 0, i64 0, i64 -1 }
|
||||
|
||||
; CHECK: @__asan_global_d = private global { i64, i64, i64, i64, i64, i64, i64, i64 } { i64 ptrtoint ({ [2 x i32], [56 x i8] }* @d to i64), i64 8, i64 64, i64 ptrtoint ([2 x i8]* @___asan_gen_.4 to i64), i64 ptrtoint ([8 x i8]* @___asan_gen_ to i64), i64 0, i64 0, i64 -1 }
|
@ -15,7 +15,7 @@
|
||||
; CHECK-SAME: { i64 ptrtoint ({ [5 x i8], [59 x i8] }* @"??_C@_04JIHMPGLA@asdf?$AA@" to i64),
|
||||
; CHECK-SAME: i64 5, i64 64, i64 ptrtoint ([17 x i8]* @___asan_gen_.1 to i64),
|
||||
; CHECK-SAME: i64 ptrtoint ([8 x i8]* @___asan_gen_ to i64), i64 0,
|
||||
; CHECK-SAME: i64 ptrtoint ({ [6 x i8]*, i32, i32 }* @___asan_gen_.3 to i64), i64 0 },
|
||||
; CHECK-SAME: i64 ptrtoint ({ [6 x i8]*, i32, i32 }* @___asan_gen_.3 to i64), i64 -1 },
|
||||
; CHECK-SAME: section ".ASAN$GL", comdat($"??_C@_04JIHMPGLA@asdf?$AA@"), align 64
|
||||
|
||||
; ModuleID = 't.cpp'
|
||||
|
Loading…
Reference in New Issue
Block a user