[asan] add heavy_uar_test (disabled); fix lint
authorKostya Serebryany <kcc@google.com>
Thu, 11 Apr 2013 11:29:07 +0000 (11:29 +0000)
committerKostya Serebryany <kcc@google.com>
Thu, 11 Apr 2013 11:29:07 +0000 (11:29 +0000)
llvm-svn: 179271

compiler-rt/lib/asan/lit_tests/Linux/heavy_uar_test.cc [new file with mode: 0644]
compiler-rt/lib/asan/lit_tests/time_interceptor.cc

diff --git a/compiler-rt/lib/asan/lit_tests/Linux/heavy_uar_test.cc b/compiler-rt/lib/asan/lit_tests/Linux/heavy_uar_test.cc
new file mode 100644 (file)
index 0000000..f7b91b8
--- /dev/null
@@ -0,0 +1,46 @@
+// XFAIL *
+// RUN: %clangxx_asan -fsanitize=use-after-return -m64 -O0 %s -o %t && \
+// RUN:   %t 2>&1 | %symbolize | FileCheck %s
+// RUN: %clangxx_asan -fsanitize=use-after-return -m64 -O2 %s -o %t && \
+// RUN:   %t 2>&1 | %symbolize | FileCheck %s
+// RUN: %clangxx_asan -fsanitize=use-after-return -m32 -O2 %s -o %t && \
+// RUN:   %t 2>&1 | %symbolize | FileCheck %s
+
+#include <stdio.h>
+#include <string.h>
+
+__attribute__((noinline))
+inline char *pretend_to_do_something(char *x) {
+  __asm__ __volatile__("" : : "r" (x) : "memory");
+  return x;
+}
+
+__attribute__((noinline))
+char *LeakStack() {
+  char x[1024];
+  memset(x, 0, sizeof(x));
+  return pretend_to_do_something(x);
+}
+
+__attribute__((noinline))
+void RecuriveFunctionWithStackFrame(int depth) {
+  if (depth <= 0) return;
+  char x[1000];
+  memset(x, 0, sizeof(x));
+  pretend_to_do_something(x);
+  RecuriveFunctionWithStackFrame(depth - 1);
+  memset(x, 0, sizeof(x));
+}
+
+int main(int argc, char **argv) {
+  char *stale_stack = LeakStack();
+  RecuriveFunctionWithStackFrame(10);
+  RecuriveFunctionWithStackFrame(20);
+  RecuriveFunctionWithStackFrame(30);
+  stale_stack[100]++;
+  // CHECK: ERROR: AddressSanitizer: stack-use-after-return on address
+  // CHECK: is located in stack of thread T0 at offset 132 in frame
+  // CHECK:  in LeakStack(){{.*}}heavy_uar_test.cc:
+  // CHECK: [32, 1056) 'x'
+  return 0;
+}
index bade7bb..1c9e5b1 100644 (file)
@@ -11,10 +11,10 @@ int main() {
   time_t *tm = (time_t*)malloc(sizeof(time_t));
   free(tm);
   time_t t = time(NULL);
-  fprintf(stderr, "Time: %s\n", ctime(&t));
+  fprintf(stderr, "Time: %s\n", ctime(&t));  // NOLINT
   // CHECK: {{Time: .* .* .*}}
   t = time(tm);
-  printf("Time: %s\n", ctime(&t));
+  printf("Time: %s\n", ctime(&t));  // NOLINT
   // CHECK: use-after-free
   return 0;
 }