Files
clang-p2996/compiler-rt/test/hwasan/TestCases/stack-underflow.c
Vitaly Buka 7db28dd3f8 [hwasan] Classify stack overflow, and use after scope (#76133)
We can't distinguish UAR and UAS, but by definition
UAR is already UAS.
2023-12-21 17:51:14 -08:00

26 lines
784 B
C

// RUN: %clang_hwasan -g %s -o %t && not %run %t 2>&1 | FileCheck %s
// Stack histories currently are not recorded on x86.
// XFAIL: target=x86_64{{.*}}
__attribute((noinline)) void buggy() {
char c[64];
char *volatile p = c;
p[-2] = 0;
}
int main() {
buggy();
// CHECK: WRITE of size 1 at
// CHECK: #0 {{.*}} in buggy{{.*}}stack-underflow.c:[[@LINE-6]]
// CHECK: Cause: stack tag-mismatch
// CHECK: is located in stack of thread
// CHECK: Potentially referenced stack objects:
// CHECK: Cause: stack-buffer-overflow
// CHECK-NEXT: 0x{{.*}} is located 2 bytes before a 64-byte region
// CHECK-NEXT: c in buggy {{.*}}stack-underflow.c:
// CHECK: Memory tags around the buggy address
// CHECK: SUMMARY: HWAddressSanitizer: tag-mismatch {{.*}} in buggy
}