[llvm-commits] [compiler-rt] r170122 - in /compiler-rt/trunk/lib/asan/lit_tests: Linux/malloc-in-qsort.cc Linux/overflow-in-qsort.cc overflow-in-qsort.cc

Kostya Serebryany kcc at google.com
Thu Dec 13 03:47:49 PST 2012


Author: kcc
Date: Thu Dec 13 05:47:49 2012
New Revision: 170122

URL: http://llvm.org/viewvc/llvm-project?rev=170122&view=rev
Log:
[asan] extend overflow-in-qsort.cc to check both unwind kinds. One more test for SlowUnwind. Move both to Linux dir (no slow unwind on Mac)

Added:
    compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc
    compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc
      - copied, changed from r170121, compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc
Removed:
    compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc

Added: compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc?rev=170122&view=auto
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc (added)
+++ compiler-rt/trunk/lib/asan/lit_tests/Linux/malloc-in-qsort.cc Thu Dec 13 05:47:49 2012
@@ -0,0 +1,40 @@
+// RUN: %clangxx_asan -O2 %s -o %t
+// RUN: ASAN_OPTIONS=fast_unwind_on_malloc=1 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-FAST
+// RUN: ASAN_OPTIONS=fast_unwind_on_malloc=0 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-SLOW
+
+// Test how well we unwind in presence of qsort in the stack
+// (i.e. if we can unwind through a function compiled w/o frame pointers).
+// https://code.google.com/p/address-sanitizer/issues/detail?id=137
+#include <stdlib.h>
+#include <stdio.h>
+
+int *GlobalPtr;
+
+extern "C" {
+int QsortCallback(const void *a, const void *b) {
+  char *x = (char*)a;
+  char *y = (char*)b;
+  printf("Calling QsortCallback\n");
+  GlobalPtr = new int[10];
+  return (int)*x - (int)*y;
+}
+
+__attribute__((noinline))
+void MyQsort(char *a, size_t size) {
+  printf("Calling qsort\n");
+  qsort(a, size, sizeof(char), QsortCallback);
+  printf("Done\n");  // Avoid tail call.
+}
+}  // extern "C"
+
+int main() {
+  char a[2] = {1, 2};
+  MyQsort(a, 2);
+  return GlobalPtr[10];
+}
+
+// Fast unwind: can not unwind through qsort.
+// FIXME: this test does not properly work with slow unwind yet.
+
+// CHECK-FAST: ERROR: AddressSanitizer: heap-buffer-overflow
+// CHECK-SLOW: ERROR: AddressSanitizer: heap-buffer-overflow

Copied: compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc (from r170121, compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc)
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc?p2=compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc&p1=compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc&r1=170121&r2=170122&rev=170122&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/Linux/overflow-in-qsort.cc Thu Dec 13 05:47:49 2012
@@ -1,4 +1,6 @@
-// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | %symbolize | FileCheck %s
+// RUN: %clangxx_asan -O2 %s -o %t
+// RUN: ASAN_OPTIONS=fast_unwind_on_fatal=1 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-FAST
+// RUN: ASAN_OPTIONS=fast_unwind_on_fatal=0 %t 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK-SLOW
 
 // Test how well we unwind in presence of qsort in the stack
 // (i.e. if we can unwind through a function compiled w/o frame pointers).
@@ -9,7 +11,7 @@
 int global_array[10];
 volatile int one = 1;
 
-extern "C"
+extern "C" {
 int QsortCallback(const void *a, const void *b) {
   char *x = (char*)a;
   char *y = (char*)b;
@@ -24,12 +26,22 @@
   qsort(a, size, sizeof(char), QsortCallback);
   printf("Done\n");  // Avoid tail call.
 }
+}  // extern "C"
 
 int main() {
   char a[2] = {1, 2};
   MyQsort(a, 2);
 }
 
-// CHECK: ERROR: AddressSanitizer: global-buffer-overflow
-// CHECK: #0{{.*}} in {{_?}}QsortCallback
-// CHECK: is located 0 bytes to the right of global variable 'global_array
+// Fast unwind: can not unwind through qsort.
+
+// CHECK-FAST: ERROR: AddressSanitizer: global-buffer-overflow
+// CHECK-FAST: #0{{.*}} in QsortCallback
+// CHECK-FAST-NOT: MyQsort
+// CHECK-FAST: is located 0 bytes to the right of global variable 'global_array
+
+// CHECK-SLOW: ERROR: AddressSanitizer: global-buffer-overflow
+// CHECK-SLOW: #0{{.*}} in QsortCallback
+// CHECK-SLOW: #{{.*}} in MyQsort
+// CHECK-SLOW: #{{.*}} in main
+// CHECK-SLOW: is located 0 bytes to the right of global variable 'global_array

Removed: compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc?rev=170121&view=auto
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/overflow-in-qsort.cc (removed)
@@ -1,35 +0,0 @@
-// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | %symbolize | FileCheck %s
-
-// Test how well we unwind in presence of qsort in the stack
-// (i.e. if we can unwind through a function compiled w/o frame pointers).
-// https://code.google.com/p/address-sanitizer/issues/detail?id=137
-#include <stdlib.h>
-#include <stdio.h>
-
-int global_array[10];
-volatile int one = 1;
-
-extern "C"
-int QsortCallback(const void *a, const void *b) {
-  char *x = (char*)a;
-  char *y = (char*)b;
-  printf("Calling QsortCallback\n");
-  global_array[one * 10] = 0;  // BOOM
-  return (int)*x - (int)*y;
-}
-
-__attribute__((noinline))
-void MyQsort(char *a, size_t size) {
-  printf("Calling qsort\n");
-  qsort(a, size, sizeof(char), QsortCallback);
-  printf("Done\n");  // Avoid tail call.
-}
-
-int main() {
-  char a[2] = {1, 2};
-  MyQsort(a, 2);
-}
-
-// CHECK: ERROR: AddressSanitizer: global-buffer-overflow
-// CHECK: #0{{.*}} in {{_?}}QsortCallback
-// CHECK: is located 0 bytes to the right of global variable 'global_array





More information about the llvm-commits mailing list