2011-11-30 09:07:02 +08:00
|
|
|
//===-- asan_stack.h --------------------------------------------*- 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-private header for asan_stack.cc.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ASAN_STACK_H
|
|
|
|
#define ASAN_STACK_H
|
|
|
|
|
2012-08-28 22:11:57 +08:00
|
|
|
#include "sanitizer_common/sanitizer_stacktrace.h"
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
namespace __asan {
|
|
|
|
|
2012-08-28 21:49:49 +08:00
|
|
|
void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp);
|
|
|
|
void PrintStack(StackTrace *stack);
|
2012-08-28 21:25:55 +08:00
|
|
|
|
2011-11-30 09:07:02 +08:00
|
|
|
} // namespace __asan
|
|
|
|
|
|
|
|
// Get the stack trace with the given pc and bp.
|
|
|
|
// The pc will be in the position 0 of the resulting stack trace.
|
|
|
|
// The bp may refer to the current frame or to the caller's frame.
|
|
|
|
// fast_unwind is currently unused.
|
2012-01-19 19:34:18 +08:00
|
|
|
#define GET_STACK_TRACE_WITH_PC_AND_BP(max_s, pc, bp) \
|
2012-08-28 19:54:30 +08:00
|
|
|
StackTrace stack; \
|
2012-08-28 21:25:55 +08:00
|
|
|
GetStackTrace(&stack, max_s, pc, bp)
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2012-01-17 14:35:31 +08:00
|
|
|
// NOTE: A Rule of thumb is to retrieve stack trace in the interceptors
|
|
|
|
// as early as possible (in functions exposed to the user), as we generally
|
|
|
|
// don't want stack trace to contain functions from ASan internals.
|
|
|
|
|
2012-01-19 19:34:18 +08:00
|
|
|
#define GET_STACK_TRACE_HERE(max_size) \
|
|
|
|
GET_STACK_TRACE_WITH_PC_AND_BP(max_size, \
|
2012-08-28 19:54:30 +08:00
|
|
|
StackTrace::GetCurrentPc(), GET_CURRENT_FRAME())
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2012-01-19 19:34:18 +08:00
|
|
|
#define GET_STACK_TRACE_HERE_FOR_MALLOC \
|
2012-07-09 22:36:04 +08:00
|
|
|
GET_STACK_TRACE_HERE(flags()->malloc_context_size)
|
2011-11-30 09:07:02 +08:00
|
|
|
|
2012-01-19 19:34:18 +08:00
|
|
|
#define GET_STACK_TRACE_HERE_FOR_FREE(ptr) \
|
2012-07-09 22:36:04 +08:00
|
|
|
GET_STACK_TRACE_HERE(flags()->malloc_context_size)
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
#define PRINT_CURRENT_STACK() \
|
|
|
|
{ \
|
2012-01-19 19:34:18 +08:00
|
|
|
GET_STACK_TRACE_HERE(kStackTraceMax); \
|
2012-08-28 21:49:49 +08:00
|
|
|
PrintStack(&stack); \
|
2012-06-25 14:53:10 +08:00
|
|
|
}
|
2011-11-30 09:07:02 +08:00
|
|
|
|
|
|
|
#endif // ASAN_STACK_H
|