2014-01-16 20:31:50 +08:00
|
|
|
//===-- asan_activation.cc --------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
|
|
//
|
|
|
|
// ASan activation/deactivation logic.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "asan_activation.h"
|
2014-02-03 22:19:08 +08:00
|
|
|
#include "asan_allocator.h"
|
2014-01-16 20:31:50 +08:00
|
|
|
#include "asan_flags.h"
|
|
|
|
#include "asan_internal.h"
|
|
|
|
#include "sanitizer_common/sanitizer_flags.h"
|
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
|
|
|
static struct AsanDeactivatedFlags {
|
|
|
|
int quarantine_size;
|
|
|
|
int max_redzone;
|
|
|
|
int malloc_context_size;
|
2014-01-16 22:21:17 +08:00
|
|
|
bool poison_heap;
|
2014-11-25 15:10:30 +08:00
|
|
|
bool alloc_dealloc_mismatch;
|
|
|
|
bool allocator_may_return_null;
|
2014-01-16 20:31:50 +08:00
|
|
|
} asan_deactivated_flags;
|
|
|
|
|
|
|
|
static bool asan_is_deactivated;
|
|
|
|
|
|
|
|
void AsanStartDeactivated() {
|
2014-01-16 21:17:13 +08:00
|
|
|
VReport(1, "Deactivating ASan\n");
|
2014-01-16 20:31:50 +08:00
|
|
|
// Save flag values.
|
|
|
|
asan_deactivated_flags.quarantine_size = flags()->quarantine_size;
|
|
|
|
asan_deactivated_flags.max_redzone = flags()->max_redzone;
|
|
|
|
asan_deactivated_flags.poison_heap = flags()->poison_heap;
|
|
|
|
asan_deactivated_flags.malloc_context_size =
|
|
|
|
common_flags()->malloc_context_size;
|
2014-11-25 15:10:30 +08:00
|
|
|
asan_deactivated_flags.alloc_dealloc_mismatch =
|
|
|
|
flags()->alloc_dealloc_mismatch;
|
|
|
|
asan_deactivated_flags.allocator_may_return_null =
|
|
|
|
common_flags()->allocator_may_return_null;
|
2014-01-16 20:31:50 +08:00
|
|
|
|
|
|
|
flags()->quarantine_size = 0;
|
|
|
|
flags()->max_redzone = 16;
|
|
|
|
flags()->poison_heap = false;
|
|
|
|
common_flags()->malloc_context_size = 0;
|
2014-11-25 15:10:30 +08:00
|
|
|
flags()->alloc_dealloc_mismatch = false;
|
|
|
|
common_flags()->allocator_may_return_null = true;
|
2014-01-16 20:31:50 +08:00
|
|
|
|
|
|
|
asan_is_deactivated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AsanActivate() {
|
|
|
|
if (!asan_is_deactivated) return;
|
2014-01-16 21:17:13 +08:00
|
|
|
VReport(1, "Activating ASan\n");
|
2014-01-16 20:31:50 +08:00
|
|
|
|
|
|
|
// Restore flag values.
|
|
|
|
// FIXME: this is not atomic, and there may be other threads alive.
|
|
|
|
flags()->max_redzone = asan_deactivated_flags.max_redzone;
|
|
|
|
flags()->poison_heap = asan_deactivated_flags.poison_heap;
|
|
|
|
common_flags()->malloc_context_size =
|
|
|
|
asan_deactivated_flags.malloc_context_size;
|
2014-11-25 15:10:30 +08:00
|
|
|
flags()->alloc_dealloc_mismatch =
|
|
|
|
asan_deactivated_flags.alloc_dealloc_mismatch;
|
2014-01-16 20:31:50 +08:00
|
|
|
|
2014-01-31 22:36:55 +08:00
|
|
|
ParseExtraActivationFlags();
|
|
|
|
|
2014-12-13 04:07:35 +08:00
|
|
|
ReInitializeAllocator(asan_deactivated_flags.allocator_may_return_null,
|
|
|
|
asan_deactivated_flags.quarantine_size);
|
2014-02-03 22:19:08 +08:00
|
|
|
|
2014-01-16 20:31:50 +08:00
|
|
|
asan_is_deactivated = false;
|
2014-12-13 04:07:35 +08:00
|
|
|
VReport(1, "quarantine_size %d, max_redzone %d, poison_heap %d, "
|
|
|
|
"malloc_context_size %d, alloc_dealloc_mismatch %d, "
|
|
|
|
"allocator_may_return_null %d\n",
|
|
|
|
asan_deactivated_flags.quarantine_size, flags()->max_redzone,
|
|
|
|
flags()->poison_heap, common_flags()->malloc_context_size,
|
|
|
|
flags()->alloc_dealloc_mismatch,
|
|
|
|
asan_deactivated_flags.allocator_may_return_null);
|
2014-01-16 20:31:50 +08:00
|
|
|
}
|
|
|
|
|
2014-01-16 21:17:13 +08:00
|
|
|
} // namespace __asan
|