Skip to content

Commit

Permalink
[HWASAN] Don't instrument loads from global if globals are not tagged (
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybuka committed Mar 27, 2024
1 parent 453a63c commit 70e8cf0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
7 changes: 7 additions & 0 deletions llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,13 @@ bool HWAddressSanitizer::ignoreAccess(Instruction *Inst, Value *Ptr) {
if (SSI && SSI->stackAccessIsSafe(*Inst))
return true;
}

if (isa<GlobalVariable>(getUnderlyingObject(Ptr))) {
if (!InstrumentGlobals)
return true;
// TODO: Optimize inbound global accesses, like Asan `instrumentMop`.
}

return false;
}

Expand Down
16 changes: 0 additions & 16 deletions llvm/test/Instrumentation/HWAddressSanitizer/globals-access.ll
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,6 @@ define dso_local noundef i32 @_Z3tmpv() sanitize_hwaddress {
; NOGLOB-LABEL: define dso_local noundef i32 @_Z3tmpv(
; NOGLOB-SAME: ) #[[ATTR0:[0-9]+]] {
; NOGLOB-NEXT: entry:
; NOGLOB-NEXT: [[TMP12:%.*]] = load i64, ptr @__hwasan_tls, align 8
; NOGLOB-NEXT: [[TMP1:%.*]] = or i64 [[TMP12]], 4294967295
; NOGLOB-NEXT: [[HWASAN_SHADOW:%.*]] = add i64 [[TMP1]], 1
; NOGLOB-NEXT: [[TMP2:%.*]] = inttoptr i64 [[HWASAN_SHADOW]] to ptr
; NOGLOB-NEXT: [[TMP3:%.*]] = lshr i64 ptrtoint (ptr @x to i64), 56
; NOGLOB-NEXT: [[TMP4:%.*]] = trunc i64 [[TMP3]] to i8
; NOGLOB-NEXT: [[TMP5:%.*]] = and i64 ptrtoint (ptr @x to i64), 72057594037927935
; NOGLOB-NEXT: [[TMP6:%.*]] = lshr i64 [[TMP5]], 4
; NOGLOB-NEXT: [[TMP7:%.*]] = getelementptr i8, ptr [[TMP2]], i64 [[TMP6]]
; NOGLOB-NEXT: [[TMP8:%.*]] = load i8, ptr [[TMP7]], align 1
; NOGLOB-NEXT: [[TMP9:%.*]] = icmp ne i8 [[TMP4]], [[TMP8]]
; NOGLOB-NEXT: br i1 [[TMP9]], label [[TMP10:%.*]], label [[TMP11:%.*]], !prof [[PROF1:![0-9]+]]
; NOGLOB: 10:
; NOGLOB-NEXT: call void @llvm.hwasan.check.memaccess.shortgranules(ptr [[TMP2]], ptr @x, i32 2)
; NOGLOB-NEXT: br label [[TMP11]]
; NOGLOB: 11:
; NOGLOB-NEXT: [[TMP0:%.*]] = load i32, ptr @x, align 4
; NOGLOB-NEXT: ret i32 [[TMP0]]
;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ define dso_local noundef i1 @_Z6targetv() sanitize_hwaddress {
; CHECK: sw.bb1:
; CHECK-NEXT: br label [[RETURN]]
; CHECK: while.body:
; CHECK-NEXT: call void @llvm.hwasan.check.memaccess(ptr [[TMP16]], ptr @stackbuf, i32 19)
; CHECK-NEXT: store ptr [[BUF_HWASAN]], ptr @stackbuf, align 8
; CHECK-NEXT: call void @may_jump()
; CHECK-NEXT: br label [[RETURN]]
Expand Down

0 comments on commit 70e8cf0

Please sign in to comment.