summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2012-09-17 08:02:19 +0000
committerAlexey Samsonov <samsonov@google.com>2012-09-17 08:02:19 +0000
commit62e27098b97e5ef74931c536350123a3df9dec6d (patch)
treeda266afac04ada44bc4ea522fd8be8017faa51c7 /lib
parent9c6c5a26ec1e49f379515d2403b8b206bf2755c3 (diff)
[ASan] increase sleep time if ASan finds two bugs simultaneously to make sure full error report is printed
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@164018 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/asan/asan_report.cc20
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/asan/asan_report.cc b/lib/asan/asan_report.cc
index 2a00c4e69..d31c97ff3 100644
--- a/lib/asan/asan_report.cc
+++ b/lib/asan/asan_report.cc
@@ -229,27 +229,33 @@ class ScopedInErrorReport {
public:
ScopedInErrorReport() {
static atomic_uint32_t num_calls;
+ static u32 reporting_thread_tid;
if (atomic_fetch_add(&num_calls, 1, memory_order_relaxed) != 0) {
// Do not print more than one report, otherwise they will mix up.
// Error reporting functions shouldn't return at this situation, as
// they are defined as no-return.
Report("AddressSanitizer: while reporting a bug found another one."
"Ignoring.\n");
- // We can't use infinite busy loop here, as ASan may try to report an
- // error while another error report is being printed (e.g. if the code
- // that prints error report for buffer overflow results in SEGV).
- SleepForSeconds(Max(5, flags()->sleep_before_dying + 1));
+ u32 current_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
+ if (current_tid != reporting_thread_tid) {
+ // ASan found two bugs in different threads simultaneously. Sleep
+ // long enough to make sure that the thread which started to print
+ // an error report will finish doing it.
+ SleepForSeconds(Max(100, flags()->sleep_before_dying + 1));
+ }
Die();
}
if (on_error_callback) {
on_error_callback();
}
+ reporting_thread_tid = asanThreadRegistry().GetCurrentTidOrInvalid();
Printf("===================================================="
- "=============\n");
- AsanThread *curr_thread = asanThreadRegistry().GetCurrent();
- if (curr_thread) {
+ "=============\n");
+ if (reporting_thread_tid != kInvalidTid) {
// We started reporting an error message. Stop using the fake stack
// in case we call an instrumented function from a symbolizer.
+ AsanThread *curr_thread = asanThreadRegistry().GetCurrent();
+ CHECK(curr_thread);
curr_thread->fake_stack().StopUsingFakeStack();
}
}