2013-02-22 23:10:16 +08:00
|
|
|
//===-- sanitizer_stacktrace_test.cc --------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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 ThreadSanitizer/AddressSanitizer runtime.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "sanitizer_common/sanitizer_common.h"
|
|
|
|
#include "sanitizer_common/sanitizer_stacktrace.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace __sanitizer {
|
|
|
|
|
|
|
|
class FastUnwindTest : public ::testing::Test {
|
|
|
|
protected:
|
|
|
|
virtual void SetUp();
|
2013-11-07 15:28:33 +08:00
|
|
|
bool TryFastUnwind(uptr max_depth) {
|
|
|
|
if (!StackTrace::WillUseFastUnwind(true))
|
|
|
|
return false;
|
2014-02-11 21:45:01 +08:00
|
|
|
trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
|
2013-11-07 15:28:33 +08:00
|
|
|
fake_bottom, true);
|
|
|
|
return true;
|
|
|
|
}
|
2013-02-22 23:10:16 +08:00
|
|
|
|
|
|
|
uptr fake_stack[10];
|
|
|
|
uptr start_pc;
|
|
|
|
uptr fake_top;
|
|
|
|
uptr fake_bottom;
|
|
|
|
StackTrace trace;
|
|
|
|
};
|
|
|
|
|
2013-04-04 14:52:40 +08:00
|
|
|
static uptr PC(uptr idx) {
|
|
|
|
return (1<<20) + idx;
|
|
|
|
}
|
|
|
|
|
2013-02-22 23:10:16 +08:00
|
|
|
void FastUnwindTest::SetUp() {
|
|
|
|
// Fill an array of pointers with fake fp+retaddr pairs. Frame pointers have
|
|
|
|
// even indices.
|
2013-02-25 17:00:03 +08:00
|
|
|
for (uptr i = 0; i+1 < ARRAY_SIZE(fake_stack); i += 2) {
|
2013-02-22 23:10:16 +08:00
|
|
|
fake_stack[i] = (uptr)&fake_stack[i+2]; // fp
|
2013-04-04 14:52:40 +08:00
|
|
|
fake_stack[i+1] = PC(i + 1); // retaddr
|
2013-02-22 23:10:16 +08:00
|
|
|
}
|
|
|
|
// Mark the last fp as zero to terminate the stack trace.
|
|
|
|
fake_stack[RoundDownTo(ARRAY_SIZE(fake_stack) - 1, 2)] = 0;
|
|
|
|
|
|
|
|
// Top is two slots past the end because FastUnwindStack subtracts two.
|
|
|
|
fake_top = (uptr)&fake_stack[ARRAY_SIZE(fake_stack) + 2];
|
|
|
|
// Bottom is one slot before the start because FastUnwindStack uses >.
|
|
|
|
fake_bottom = (uptr)&fake_stack[-1];
|
2013-04-04 14:52:40 +08:00
|
|
|
start_pc = PC(0);
|
2013-02-22 23:10:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(FastUnwindTest, Basic) {
|
2013-11-07 15:28:33 +08:00
|
|
|
if (!TryFastUnwind(kStackTraceMax))
|
|
|
|
return;
|
2013-02-22 23:10:16 +08:00
|
|
|
// Should get all on-stack retaddrs and start_pc.
|
2013-02-25 17:00:03 +08:00
|
|
|
EXPECT_EQ(6U, trace.size);
|
2013-02-22 23:10:16 +08:00
|
|
|
EXPECT_EQ(start_pc, trace.trace[0]);
|
2013-02-25 22:06:38 +08:00
|
|
|
for (uptr i = 1; i <= 5; i++) {
|
2013-04-04 14:52:40 +08:00
|
|
|
EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
|
2013-02-22 23:10:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// From: http://code.google.com/p/address-sanitizer/issues/detail?id=162
|
|
|
|
TEST_F(FastUnwindTest, FramePointerLoop) {
|
|
|
|
// Make one fp point to itself.
|
|
|
|
fake_stack[4] = (uptr)&fake_stack[4];
|
2013-11-07 15:28:33 +08:00
|
|
|
if (!TryFastUnwind(kStackTraceMax))
|
|
|
|
return;
|
2013-02-22 23:10:16 +08:00
|
|
|
// Should get all on-stack retaddrs up to the 4th slot and start_pc.
|
2013-02-25 17:00:03 +08:00
|
|
|
EXPECT_EQ(4U, trace.size);
|
2013-02-22 23:10:16 +08:00
|
|
|
EXPECT_EQ(start_pc, trace.trace[0]);
|
2013-02-25 22:06:38 +08:00
|
|
|
for (uptr i = 1; i <= 3; i++) {
|
2013-04-04 14:52:40 +08:00
|
|
|
EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
|
2013-02-22 23:10:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-04 14:52:40 +08:00
|
|
|
TEST_F(FastUnwindTest, MisalignedFramePointer) {
|
|
|
|
// Make one fp misaligned.
|
|
|
|
fake_stack[4] += 3;
|
2013-11-07 15:28:33 +08:00
|
|
|
if (!TryFastUnwind(kStackTraceMax))
|
|
|
|
return;
|
2013-04-04 14:52:40 +08:00
|
|
|
// Should get all on-stack retaddrs up to the 4th slot and start_pc.
|
|
|
|
EXPECT_EQ(4U, trace.size);
|
|
|
|
EXPECT_EQ(start_pc, trace.trace[0]);
|
|
|
|
for (uptr i = 1; i < 4U; i++) {
|
|
|
|
EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-11 17:58:30 +08:00
|
|
|
TEST_F(FastUnwindTest, OneFrameStackTrace) {
|
2013-11-07 15:28:33 +08:00
|
|
|
if (!TryFastUnwind(1))
|
|
|
|
return;
|
2013-10-11 17:58:30 +08:00
|
|
|
EXPECT_EQ(1U, trace.size);
|
|
|
|
EXPECT_EQ(start_pc, trace.trace[0]);
|
2013-11-13 22:46:58 +08:00
|
|
|
EXPECT_EQ((uptr)&fake_stack[0], trace.top_frame_bp);
|
2013-10-11 17:58:30 +08:00
|
|
|
}
|
2013-04-04 14:52:40 +08:00
|
|
|
|
2013-02-22 23:10:16 +08:00
|
|
|
} // namespace __sanitizer
|