mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-29 10:45:28 +01:00
Added riscv and riscv64 support for Linux
Change-Id: I62cd157d00a87720db001072662a81d8eb9112b0 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3873291 Reviewed-by: Mike Frysinger <vapier@chromium.org>
This commit is contained in:
parent
e059dad5ea
commit
28cf16bc34
37 changed files with 4901 additions and 48 deletions
|
|
@ -139,6 +139,24 @@ const MDRawContextMIPS* DumpContext::GetContextMIPS() const {
|
|||
return context_.ctx_mips;
|
||||
}
|
||||
|
||||
const MDRawContextRISCV* DumpContext::GetContextRISCV() const {
|
||||
if (GetContextCPU() != MD_CONTEXT_RISCV) {
|
||||
BPLOG(ERROR) << "DumpContext cannot get RISCV context";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return context_.riscv;
|
||||
}
|
||||
|
||||
const MDRawContextRISCV64* DumpContext::GetContextRISCV64() const {
|
||||
if (GetContextCPU() != MD_CONTEXT_RISCV64) {
|
||||
BPLOG(ERROR) << "DumpContext cannot get RISCV64 context";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return context_.riscv64;
|
||||
}
|
||||
|
||||
bool DumpContext::GetInstructionPointer(uint64_t* ip) const {
|
||||
BPLOG_IF(ERROR, !ip) << "DumpContext::GetInstructionPointer requires |ip|";
|
||||
assert(ip);
|
||||
|
|
@ -175,6 +193,12 @@ bool DumpContext::GetInstructionPointer(uint64_t* ip) const {
|
|||
case MD_CONTEXT_MIPS64:
|
||||
*ip = GetContextMIPS()->epc;
|
||||
break;
|
||||
case MD_CONTEXT_RISCV:
|
||||
*ip = GetContextRISCV()->pc;
|
||||
break;
|
||||
case MD_CONTEXT_RISCV64:
|
||||
*ip = GetContextRISCV64()->pc;
|
||||
break;
|
||||
default:
|
||||
// This should never happen.
|
||||
BPLOG(ERROR) << "Unknown CPU architecture in GetInstructionPointer";
|
||||
|
|
@ -219,6 +243,12 @@ bool DumpContext::GetStackPointer(uint64_t* sp) const {
|
|||
case MD_CONTEXT_MIPS64:
|
||||
*sp = GetContextMIPS()->iregs[MD_CONTEXT_MIPS_REG_SP];
|
||||
break;
|
||||
case MD_CONTEXT_RISCV:
|
||||
*sp = GetContextRISCV()->sp;
|
||||
break;
|
||||
case MD_CONTEXT_RISCV64:
|
||||
*sp = GetContextRISCV64()->sp;
|
||||
break;
|
||||
default:
|
||||
// This should never happen.
|
||||
BPLOG(ERROR) << "Unknown CPU architecture in GetStackPointer";
|
||||
|
|
@ -263,6 +293,14 @@ void DumpContext::SetContextMIPS(MDRawContextMIPS* ctx_mips) {
|
|||
context_.ctx_mips = ctx_mips;
|
||||
}
|
||||
|
||||
void DumpContext::SetContextRISCV(MDRawContextRISCV* riscv) {
|
||||
context_.riscv = riscv;
|
||||
}
|
||||
|
||||
void DumpContext::SetContextRISCV64(MDRawContextRISCV64* riscv64) {
|
||||
context_.riscv64 = riscv64;
|
||||
}
|
||||
|
||||
void DumpContext::FreeContext() {
|
||||
switch (GetContextCPU()) {
|
||||
case MD_CONTEXT_X86:
|
||||
|
|
@ -298,6 +336,14 @@ void DumpContext::FreeContext() {
|
|||
delete context_.ctx_mips;
|
||||
break;
|
||||
|
||||
case MD_CONTEXT_RISCV:
|
||||
delete context_.riscv;
|
||||
break;
|
||||
|
||||
case MD_CONTEXT_RISCV64:
|
||||
delete context_.riscv64;
|
||||
break;
|
||||
|
||||
default:
|
||||
// There is no context record (valid_ is false) or there's a
|
||||
// context record for an unknown CPU (shouldn't happen, only known
|
||||
|
|
@ -654,6 +700,195 @@ void DumpContext::Print() {
|
|||
break;
|
||||
}
|
||||
|
||||
case MD_CONTEXT_RISCV: {
|
||||
const MDRawContextRISCV* context_riscv = GetContextRISCV();
|
||||
printf("MDRawContextRISCV\n");
|
||||
printf(" context_flags = 0x%x\n",
|
||||
context_riscv->context_flags);
|
||||
|
||||
printf(" pc = 0x%" PRIx32 "\n",
|
||||
context_riscv->pc);
|
||||
printf(" ra = 0x%" PRIx32 "\n",
|
||||
context_riscv->ra);
|
||||
printf(" sp = 0x%" PRIx32 "\n",
|
||||
context_riscv->sp);
|
||||
printf(" gp = 0x%" PRIx32 "\n",
|
||||
context_riscv->gp);
|
||||
printf(" tp = 0x%" PRIx32 "\n",
|
||||
context_riscv->tp);
|
||||
printf(" t0 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t0);
|
||||
printf(" t1 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t1);
|
||||
printf(" t2 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t2);
|
||||
printf(" s0 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s0);
|
||||
printf(" s1 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s1);
|
||||
printf(" a0 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a0);
|
||||
printf(" a1 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a1);
|
||||
printf(" a2 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a2);
|
||||
printf(" a3 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a3);
|
||||
printf(" a4 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a4);
|
||||
printf(" a5 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a5);
|
||||
printf(" a6 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a6);
|
||||
printf(" a7 = 0x%" PRIx32 "\n",
|
||||
context_riscv->a7);
|
||||
printf(" s2 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s2);
|
||||
printf(" s3 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s3);
|
||||
printf(" s4 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s4);
|
||||
printf(" s5 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s5);
|
||||
printf(" s6 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s6);
|
||||
printf(" s7 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s7);
|
||||
printf(" s8 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s8);
|
||||
printf(" s9 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s9);
|
||||
printf(" s10 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s10);
|
||||
printf(" s11 = 0x%" PRIx32 "\n",
|
||||
context_riscv->s11);
|
||||
printf(" t3 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t3);
|
||||
printf(" t4 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t4);
|
||||
printf(" t5 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t5);
|
||||
printf(" t6 = 0x%" PRIx32 "\n",
|
||||
context_riscv->t6);
|
||||
|
||||
#if defined(__riscv)
|
||||
for (unsigned int freg_index = 0;
|
||||
freg_index < MD_FLOATINGSAVEAREA_RISCV_FPR_COUNT; ++freg_index) {
|
||||
riscv_fpr_size fp_value = context_riscv->float_save.regs[freg_index];
|
||||
# if __riscv_flen == 32
|
||||
printf(" float_save.regs[%2d] = 0x%" PRIx32 "\n",
|
||||
freg_index, fp_value);
|
||||
# elif __riscv_flen == 64
|
||||
printf(" float_save.regs[%2d] = 0x%" PRIx64 "\n",
|
||||
freg_index, fp_value);
|
||||
# elif __riscv_flen == 128
|
||||
printf(" float_save.regs[%2d] = 0x%" PRIx64 "%" PRIx64 "\n",
|
||||
freg_index, fp_value.high, fp_value.low);
|
||||
# else
|
||||
# error "Unexpected __riscv_flen"
|
||||
# endif
|
||||
}
|
||||
printf(" float_save.fpcsr = 0x%" PRIx32 "\n",
|
||||
context_riscv->float_save.fpcsr);
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
||||
case MD_CONTEXT_RISCV64: {
|
||||
const MDRawContextRISCV64* context_riscv64 = GetContextRISCV64();
|
||||
printf("MDRawContextRISCV64\n");
|
||||
printf(" context_flags = 0x%x\n",
|
||||
context_riscv64->context_flags);
|
||||
|
||||
printf(" pc = 0x%" PRIx64 "\n",
|
||||
context_riscv64->pc);
|
||||
printf(" ra = 0x%" PRIx64 "\n",
|
||||
context_riscv64->ra);
|
||||
printf(" sp = 0x%" PRIx64 "\n",
|
||||
context_riscv64->sp);
|
||||
printf(" gp = 0x%" PRIx64 "\n",
|
||||
context_riscv64->gp);
|
||||
printf(" tp = 0x%" PRIx64 "\n",
|
||||
context_riscv64->tp);
|
||||
printf(" t0 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t0);
|
||||
printf(" t1 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t1);
|
||||
printf(" t2 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t2);
|
||||
printf(" s0 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s0);
|
||||
printf(" s1 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s1);
|
||||
printf(" a0 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a0);
|
||||
printf(" a1 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a1);
|
||||
printf(" a2 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a2);
|
||||
printf(" a3 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a3);
|
||||
printf(" a4 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a4);
|
||||
printf(" a5 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a5);
|
||||
printf(" a6 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a6);
|
||||
printf(" a7 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->a7);
|
||||
printf(" s2 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s2);
|
||||
printf(" s3 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s3);
|
||||
printf(" s4 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s4);
|
||||
printf(" s5 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s5);
|
||||
printf(" s6 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s6);
|
||||
printf(" s7 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s7);
|
||||
printf(" s8 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s8);
|
||||
printf(" s9 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s9);
|
||||
printf(" s10 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s10);
|
||||
printf(" s11 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->s11);
|
||||
printf(" t3 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t3);
|
||||
printf(" t4 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t4);
|
||||
printf(" t5 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t5);
|
||||
printf(" t6 = 0x%" PRIx64 "\n",
|
||||
context_riscv64->t6);
|
||||
|
||||
#if defined(__riscv)
|
||||
for (unsigned int freg_index = 0;
|
||||
freg_index < MD_FLOATINGSAVEAREA_RISCV_FPR_COUNT; ++freg_index) {
|
||||
riscv_fpr_size fp_value = context_riscv64->float_save.regs[freg_index];
|
||||
# if __riscv_flen == 32
|
||||
printf(" float_save.regs[%2d] = 0x%" PRIx32 "\n",
|
||||
freg_index, fp_value);
|
||||
# elif __riscv_flen == 64
|
||||
printf(" float_save.regs[%2d] = 0x%" PRIx64 "\n",
|
||||
freg_index, fp_value);
|
||||
# elif __riscv_flen == 128
|
||||
printf(" float_save.regs[%2d] = 0x%"
|
||||
PRIx64 "%" PRIx64 "\n",
|
||||
freg_index, fp_value.high, fp_value.low);
|
||||
# else
|
||||
# error "Unexpected __riscv_flen"
|
||||
# endif
|
||||
}
|
||||
printf(" float_save.fpcsr = 0x%" PRIx32 "\n",
|
||||
context_riscv64->float_save.fpcsr);
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -95,6 +95,10 @@ bool IsContextSizeUnique(uint32_t context_size) {
|
|||
num_matching_contexts++;
|
||||
if (context_size == sizeof(MDRawContextMIPS))
|
||||
num_matching_contexts++;
|
||||
if (context_size == sizeof(MDRawContextRISCV))
|
||||
num_matching_contexts++;
|
||||
if (context_size == sizeof(MDRawContextRISCV64))
|
||||
num_matching_contexts++;
|
||||
return num_matching_contexts == 1;
|
||||
}
|
||||
|
||||
|
|
@ -1169,6 +1173,163 @@ bool MinidumpContext::Read(uint32_t expected_size) {
|
|||
break;
|
||||
}
|
||||
|
||||
case MD_CONTEXT_RISCV: {
|
||||
if (expected_size != sizeof(MDRawContextRISCV)) {
|
||||
BPLOG(ERROR) << "MinidumpContext RISCV size mismatch, "
|
||||
<< expected_size
|
||||
<< " != "
|
||||
<< sizeof(MDRawContextRISCV);
|
||||
return false;
|
||||
}
|
||||
|
||||
scoped_ptr<MDRawContextRISCV> context_riscv(new MDRawContextRISCV());
|
||||
|
||||
// Set the context_flags member, which has already been read, and
|
||||
// read the rest of the structure beginning with the first member
|
||||
// after context_flags.
|
||||
context_riscv->context_flags = context_flags;
|
||||
|
||||
size_t flags_size = sizeof(context_riscv->context_flags);
|
||||
uint8_t* context_after_flags =
|
||||
reinterpret_cast<uint8_t*>(context_riscv.get()) + flags_size;
|
||||
if (!minidump_->ReadBytes(context_after_flags,
|
||||
sizeof(MDRawContextRISCV) - flags_size)) {
|
||||
BPLOG(ERROR) << "MinidumpContext could not read RISCV context";
|
||||
return false;
|
||||
}
|
||||
|
||||
// Do this after reading the entire MDRawContext structure because
|
||||
// GetSystemInfo may seek minidump to a new position.
|
||||
if (!CheckAgainstSystemInfo(cpu_type)) {
|
||||
BPLOG(ERROR) << "MinidumpContext RISCV does not match system info";
|
||||
return false;
|
||||
}
|
||||
|
||||
if (minidump_->swap()) {
|
||||
Swap(&context_riscv->pc);
|
||||
Swap(&context_riscv->ra);
|
||||
Swap(&context_riscv->sp);
|
||||
Swap(&context_riscv->gp);
|
||||
Swap(&context_riscv->tp);
|
||||
Swap(&context_riscv->t0);
|
||||
Swap(&context_riscv->t1);
|
||||
Swap(&context_riscv->t2);
|
||||
Swap(&context_riscv->s0);
|
||||
Swap(&context_riscv->s1);
|
||||
Swap(&context_riscv->a0);
|
||||
Swap(&context_riscv->a1);
|
||||
Swap(&context_riscv->a2);
|
||||
Swap(&context_riscv->a3);
|
||||
Swap(&context_riscv->a4);
|
||||
Swap(&context_riscv->a5);
|
||||
Swap(&context_riscv->a6);
|
||||
Swap(&context_riscv->a7);
|
||||
Swap(&context_riscv->s2);
|
||||
Swap(&context_riscv->s3);
|
||||
Swap(&context_riscv->s4);
|
||||
Swap(&context_riscv->s5);
|
||||
Swap(&context_riscv->s6);
|
||||
Swap(&context_riscv->s7);
|
||||
Swap(&context_riscv->s8);
|
||||
Swap(&context_riscv->s9);
|
||||
Swap(&context_riscv->s10);
|
||||
Swap(&context_riscv->s11);
|
||||
Swap(&context_riscv->t3);
|
||||
Swap(&context_riscv->t4);
|
||||
Swap(&context_riscv->t5);
|
||||
Swap(&context_riscv->t6);
|
||||
|
||||
for (int fpr_index = 0;
|
||||
fpr_index < MD_FLOATINGSAVEAREA_RISCV_FPR_COUNT;
|
||||
++fpr_index) {
|
||||
Swap(&context_riscv->float_save.regs[fpr_index]);
|
||||
}
|
||||
Swap(&context_riscv->float_save.fpcsr);
|
||||
}
|
||||
SetContextRISCV(context_riscv.release());
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case MD_CONTEXT_RISCV64: {
|
||||
if (expected_size != sizeof(MDRawContextRISCV64)) {
|
||||
BPLOG(ERROR) << "MinidumpContext RISCV64 size mismatch, "
|
||||
<< expected_size
|
||||
<< " != "
|
||||
<< sizeof(MDRawContextRISCV64);
|
||||
return false;
|
||||
}
|
||||
|
||||
scoped_ptr<MDRawContextRISCV64> context_riscv64(
|
||||
new MDRawContextRISCV64());
|
||||
|
||||
// Set the context_flags member, which has already been read, and
|
||||
// read the rest of the structure beginning with the first member
|
||||
// after context_flags.
|
||||
context_riscv64->context_flags = context_flags;
|
||||
|
||||
size_t flags_size = sizeof(context_riscv64->context_flags);
|
||||
uint8_t* context_after_flags =
|
||||
reinterpret_cast<uint8_t*>(context_riscv64.get()) + flags_size;
|
||||
if (!minidump_->ReadBytes(context_after_flags,
|
||||
sizeof(MDRawContextRISCV64) - flags_size)) {
|
||||
BPLOG(ERROR) << "MinidumpContext could not read RISCV context";
|
||||
return false;
|
||||
}
|
||||
|
||||
// Do this after reading the entire MDRawContext structure because
|
||||
// GetSystemInfo may seek minidump to a new position.
|
||||
if (!CheckAgainstSystemInfo(cpu_type)) {
|
||||
BPLOG(ERROR) << "MinidumpContext RISCV does not match system info";
|
||||
return false;
|
||||
}
|
||||
|
||||
if (minidump_->swap()) {
|
||||
Swap(&context_riscv64->pc);
|
||||
Swap(&context_riscv64->ra);
|
||||
Swap(&context_riscv64->sp);
|
||||
Swap(&context_riscv64->gp);
|
||||
Swap(&context_riscv64->tp);
|
||||
Swap(&context_riscv64->t0);
|
||||
Swap(&context_riscv64->t1);
|
||||
Swap(&context_riscv64->t2);
|
||||
Swap(&context_riscv64->s0);
|
||||
Swap(&context_riscv64->s1);
|
||||
Swap(&context_riscv64->a0);
|
||||
Swap(&context_riscv64->a1);
|
||||
Swap(&context_riscv64->a2);
|
||||
Swap(&context_riscv64->a3);
|
||||
Swap(&context_riscv64->a4);
|
||||
Swap(&context_riscv64->a5);
|
||||
Swap(&context_riscv64->a6);
|
||||
Swap(&context_riscv64->a7);
|
||||
Swap(&context_riscv64->s2);
|
||||
Swap(&context_riscv64->s3);
|
||||
Swap(&context_riscv64->s4);
|
||||
Swap(&context_riscv64->s5);
|
||||
Swap(&context_riscv64->s6);
|
||||
Swap(&context_riscv64->s7);
|
||||
Swap(&context_riscv64->s8);
|
||||
Swap(&context_riscv64->s9);
|
||||
Swap(&context_riscv64->s10);
|
||||
Swap(&context_riscv64->s11);
|
||||
Swap(&context_riscv64->t3);
|
||||
Swap(&context_riscv64->t4);
|
||||
Swap(&context_riscv64->t5);
|
||||
Swap(&context_riscv64->t6);
|
||||
|
||||
for (int fpr_index = 0;
|
||||
fpr_index < MD_FLOATINGSAVEAREA_RISCV_FPR_COUNT;
|
||||
++fpr_index) {
|
||||
Swap(&context_riscv64->float_save.regs[fpr_index]);
|
||||
}
|
||||
Swap(&context_riscv64->float_save.fpcsr);
|
||||
}
|
||||
SetContextRISCV64(context_riscv64.release());
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
default: {
|
||||
// Unknown context type - Don't log as an error yet. Let the
|
||||
// caller work that out.
|
||||
|
|
@ -1261,6 +1422,16 @@ bool MinidumpContext::CheckAgainstSystemInfo(uint32_t context_cpu_type) {
|
|||
if (system_info_cpu_type == MD_CPU_ARCHITECTURE_MIPS64)
|
||||
return_value = true;
|
||||
break;
|
||||
|
||||
case MD_CONTEXT_RISCV:
|
||||
if (system_info_cpu_type == MD_CPU_ARCHITECTURE_RISCV)
|
||||
return_value = true;
|
||||
break;
|
||||
|
||||
case MD_CONTEXT_RISCV64:
|
||||
if (system_info_cpu_type == MD_CPU_ARCHITECTURE_RISCV64)
|
||||
return_value = true;
|
||||
break;
|
||||
}
|
||||
|
||||
BPLOG_IF(ERROR, !return_value) << "MinidumpContext CPU " <<
|
||||
|
|
@ -3772,6 +3943,14 @@ string MinidumpSystemInfo::GetCPU() {
|
|||
cpu = "arm64";
|
||||
break;
|
||||
|
||||
case MD_CPU_ARCHITECTURE_RISCV:
|
||||
cpu = "riscv";
|
||||
break;
|
||||
|
||||
case MD_CPU_ARCHITECTURE_RISCV64:
|
||||
cpu = "riscv64";
|
||||
break;
|
||||
|
||||
default:
|
||||
BPLOG(ERROR) << "MinidumpSystemInfo unknown CPU for architecture " <<
|
||||
HexString(system_info_.processor_architecture);
|
||||
|
|
@ -5381,6 +5560,12 @@ bool Minidump::GetContextCPUFlagsFromSystemInfo(uint32_t* context_cpu_flags) {
|
|||
case MD_CPU_ARCHITECTURE_SPARC:
|
||||
*context_cpu_flags = MD_CONTEXT_SPARC;
|
||||
break;
|
||||
case MD_CPU_ARCHITECTURE_RISCV:
|
||||
*context_cpu_flags = MD_CONTEXT_RISCV;
|
||||
break;
|
||||
case MD_CPU_ARCHITECTURE_RISCV64:
|
||||
*context_cpu_flags = MD_CONTEXT_RISCV64;
|
||||
break;
|
||||
case MD_CPU_ARCHITECTURE_UNKNOWN:
|
||||
*context_cpu_flags = 0;
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -165,6 +165,8 @@
|
|||
'stackwalker_arm_unittest.cc',
|
||||
'stackwalker_mips_unittest.cc',
|
||||
'stackwalker_mips64_unittest.cc',
|
||||
'stackwalker_riscv_unittest.cc',
|
||||
'stackwalker_riscv64_unittest.cc',
|
||||
'stackwalker_unittest_utils.h',
|
||||
'stackwalker_x86_unittest.cc',
|
||||
'static_address_map_unittest.cc',
|
||||
|
|
|
|||
|
|
@ -149,7 +149,8 @@ static void PrintStackContents(const string& indent,
|
|||
const StackFrameARM* frame_arm = static_cast<const StackFrameARM*>(frame);
|
||||
const StackFrameARM* prev_frame_arm =
|
||||
static_cast<const StackFrameARM*>(prev_frame);
|
||||
if ((frame_arm->context_validity & StackFrameARM::CONTEXT_VALID_SP) &&
|
||||
if ((frame_arm->context_validity &
|
||||
StackFrameARM::CONTEXT_VALID_SP) &&
|
||||
(prev_frame_arm->context_validity & StackFrameARM::CONTEXT_VALID_SP)) {
|
||||
stack_begin = frame_arm->context.iregs[13];
|
||||
stack_end = prev_frame_arm->context.iregs[13];
|
||||
|
|
@ -160,12 +161,39 @@ static void PrintStackContents(const string& indent,
|
|||
static_cast<const StackFrameARM64*>(frame);
|
||||
const StackFrameARM64* prev_frame_arm64 =
|
||||
static_cast<const StackFrameARM64*>(prev_frame);
|
||||
if ((frame_arm64->context_validity & StackFrameARM64::CONTEXT_VALID_SP) &&
|
||||
if ((frame_arm64->context_validity &
|
||||
StackFrameARM64::CONTEXT_VALID_SP) &&
|
||||
(prev_frame_arm64->context_validity &
|
||||
StackFrameARM64::CONTEXT_VALID_SP)) {
|
||||
stack_begin = frame_arm64->context.iregs[31];
|
||||
stack_end = prev_frame_arm64->context.iregs[31];
|
||||
}
|
||||
} else if (cpu == "riscv") {
|
||||
word_length = 4;
|
||||
const StackFrameRISCV* frame_riscv =
|
||||
static_cast<const StackFrameRISCV*>(frame);
|
||||
const StackFrameRISCV* prev_frame_riscv =
|
||||
static_cast<const StackFrameRISCV*>(prev_frame);
|
||||
if ((frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_SP) &&
|
||||
(prev_frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_SP)) {
|
||||
stack_begin = frame_riscv->context.sp;
|
||||
stack_end = prev_frame_riscv->context.sp;
|
||||
}
|
||||
} else if (cpu == "riscv64") {
|
||||
word_length = 8;
|
||||
const StackFrameRISCV64* frame_riscv64 =
|
||||
static_cast<const StackFrameRISCV64*>(frame);
|
||||
const StackFrameRISCV64* prev_frame_riscv64 =
|
||||
static_cast<const StackFrameRISCV64*>(prev_frame);
|
||||
if ((frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP) &&
|
||||
(prev_frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP)) {
|
||||
stack_begin = frame_riscv64->context.sp;
|
||||
stack_end = prev_frame_riscv64->context.sp;
|
||||
}
|
||||
}
|
||||
if (!word_length || !stack_begin || !stack_end)
|
||||
return;
|
||||
|
|
@ -636,6 +664,270 @@ static void PrintStack(const CallStack* stack,
|
|||
sequence = PrintRegister64(
|
||||
"s7", frame_mips->context.iregs[MD_CONTEXT_MIPS_REG_S7],
|
||||
sequence);
|
||||
} else if (cpu == "riscv") {
|
||||
const StackFrameRISCV* frame_riscv =
|
||||
reinterpret_cast<const StackFrameRISCV*>(frame);
|
||||
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_PC)
|
||||
sequence = PrintRegister(
|
||||
"pc", frame_riscv->context.pc, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_RA)
|
||||
sequence = PrintRegister(
|
||||
"ra", frame_riscv->context.ra, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_SP)
|
||||
sequence = PrintRegister(
|
||||
"sp", frame_riscv->context.sp, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_GP)
|
||||
sequence = PrintRegister(
|
||||
"gp", frame_riscv->context.gp, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_TP)
|
||||
sequence = PrintRegister(
|
||||
"tp", frame_riscv->context.tp, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T0)
|
||||
sequence = PrintRegister(
|
||||
"t0", frame_riscv->context.t0, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T1)
|
||||
sequence = PrintRegister(
|
||||
"t1", frame_riscv->context.t1, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T2)
|
||||
sequence = PrintRegister(
|
||||
"t2", frame_riscv->context.t2, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S0)
|
||||
sequence = PrintRegister(
|
||||
"s0", frame_riscv->context.s0, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S1)
|
||||
sequence = PrintRegister(
|
||||
"s1", frame_riscv->context.s1, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A0)
|
||||
sequence = PrintRegister(
|
||||
"a0", frame_riscv->context.a0, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A1)
|
||||
sequence = PrintRegister(
|
||||
"a1", frame_riscv->context.a1, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A2)
|
||||
sequence = PrintRegister(
|
||||
"a2", frame_riscv->context.a2, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A3)
|
||||
sequence = PrintRegister(
|
||||
"a3", frame_riscv->context.a3, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A4)
|
||||
sequence = PrintRegister(
|
||||
"a4", frame_riscv->context.a4, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A5)
|
||||
sequence = PrintRegister(
|
||||
"a5", frame_riscv->context.a5, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A6)
|
||||
sequence = PrintRegister(
|
||||
"a6", frame_riscv->context.a6, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_A7)
|
||||
sequence = PrintRegister(
|
||||
"a7", frame_riscv->context.a7, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S2)
|
||||
sequence = PrintRegister(
|
||||
"s2", frame_riscv->context.s2, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S3)
|
||||
sequence = PrintRegister(
|
||||
"s3", frame_riscv->context.s3, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S4)
|
||||
sequence = PrintRegister(
|
||||
"s4", frame_riscv->context.s4, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S5)
|
||||
sequence = PrintRegister(
|
||||
"s5", frame_riscv->context.s5, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S6)
|
||||
sequence = PrintRegister(
|
||||
"s6", frame_riscv->context.s6, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S7)
|
||||
sequence = PrintRegister(
|
||||
"s7", frame_riscv->context.s7, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S8)
|
||||
sequence = PrintRegister(
|
||||
"s8", frame_riscv->context.s8, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S9)
|
||||
sequence = PrintRegister(
|
||||
"s9", frame_riscv->context.s9, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S10)
|
||||
sequence = PrintRegister(
|
||||
"s10", frame_riscv->context.s10, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S11)
|
||||
sequence = PrintRegister(
|
||||
"s11", frame_riscv->context.s11, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T3)
|
||||
sequence = PrintRegister(
|
||||
"t3", frame_riscv->context.t3, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T4)
|
||||
sequence = PrintRegister(
|
||||
"t4", frame_riscv->context.t4, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T5)
|
||||
sequence = PrintRegister(
|
||||
"t5", frame_riscv->context.t5, sequence);
|
||||
if (frame_riscv->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_T6)
|
||||
sequence = PrintRegister(
|
||||
"t6", frame_riscv->context.t6, sequence);
|
||||
} else if (cpu == "riscv64") {
|
||||
const StackFrameRISCV64* frame_riscv64 =
|
||||
reinterpret_cast<const StackFrameRISCV64*>(frame);
|
||||
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_PC)
|
||||
sequence = PrintRegister64(
|
||||
"pc", frame_riscv64->context.pc, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_RA)
|
||||
sequence = PrintRegister64(
|
||||
"ra", frame_riscv64->context.ra, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP)
|
||||
sequence = PrintRegister64(
|
||||
"sp", frame_riscv64->context.sp, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_GP)
|
||||
sequence = PrintRegister64(
|
||||
"gp", frame_riscv64->context.gp, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_TP)
|
||||
sequence = PrintRegister64(
|
||||
"tp", frame_riscv64->context.tp, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T0)
|
||||
sequence = PrintRegister64(
|
||||
"t0", frame_riscv64->context.t0, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T1)
|
||||
sequence = PrintRegister64(
|
||||
"t1", frame_riscv64->context.t1, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T2)
|
||||
sequence = PrintRegister64(
|
||||
"t2", frame_riscv64->context.t2, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0)
|
||||
sequence = PrintRegister64(
|
||||
"s0", frame_riscv64->context.s0, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S1)
|
||||
sequence = PrintRegister64(
|
||||
"s1", frame_riscv64->context.s1, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A0)
|
||||
sequence = PrintRegister64(
|
||||
"a0", frame_riscv64->context.a0, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A1)
|
||||
sequence = PrintRegister64(
|
||||
"a1", frame_riscv64->context.a1, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A2)
|
||||
sequence = PrintRegister64(
|
||||
"a2", frame_riscv64->context.a2, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A3)
|
||||
sequence = PrintRegister64(
|
||||
"a3", frame_riscv64->context.a3, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A4)
|
||||
sequence = PrintRegister64(
|
||||
"a4", frame_riscv64->context.a4, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A5)
|
||||
sequence = PrintRegister64(
|
||||
"a5", frame_riscv64->context.a5, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A6)
|
||||
sequence = PrintRegister64(
|
||||
"a6", frame_riscv64->context.a6, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_A7)
|
||||
sequence = PrintRegister64(
|
||||
"a7", frame_riscv64->context.a7, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S2)
|
||||
sequence = PrintRegister64(
|
||||
"s2", frame_riscv64->context.s2, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S3)
|
||||
sequence = PrintRegister64(
|
||||
"s3", frame_riscv64->context.s3, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S4)
|
||||
sequence = PrintRegister64(
|
||||
"s4", frame_riscv64->context.s4, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S5)
|
||||
sequence = PrintRegister64(
|
||||
"s5", frame_riscv64->context.s5, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S6)
|
||||
sequence = PrintRegister64(
|
||||
"s6", frame_riscv64->context.s6, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S7)
|
||||
sequence = PrintRegister64(
|
||||
"s7", frame_riscv64->context.s7, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S8)
|
||||
sequence = PrintRegister64(
|
||||
"s8", frame_riscv64->context.s8, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S9)
|
||||
sequence = PrintRegister64(
|
||||
"s9", frame_riscv64->context.s9, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S10)
|
||||
sequence = PrintRegister64(
|
||||
"s10", frame_riscv64->context.s10, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S11)
|
||||
sequence = PrintRegister64(
|
||||
"s11", frame_riscv64->context.s11, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T3)
|
||||
sequence = PrintRegister64(
|
||||
"t3", frame_riscv64->context.t3, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T4)
|
||||
sequence = PrintRegister64(
|
||||
"t4", frame_riscv64->context.t4, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T5)
|
||||
sequence = PrintRegister64(
|
||||
"t5", frame_riscv64->context.t5, sequence);
|
||||
if (frame_riscv64->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_T6)
|
||||
sequence = PrintRegister64(
|
||||
"t6", frame_riscv64->context.t6, sequence);
|
||||
}
|
||||
}
|
||||
printf("\n Found by: %s\n", frame->trust_description().c_str());
|
||||
|
|
|
|||
|
|
@ -54,6 +54,8 @@
|
|||
#include "processor/stackwalker_arm.h"
|
||||
#include "processor/stackwalker_arm64.h"
|
||||
#include "processor/stackwalker_mips.h"
|
||||
#include "processor/stackwalker_riscv.h"
|
||||
#include "processor/stackwalker_riscv64.h"
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
|
|
@ -270,6 +272,20 @@ Stackwalker* Stackwalker::StackwalkerForCPU(
|
|||
memory, modules,
|
||||
frame_symbolizer);
|
||||
break;
|
||||
|
||||
case MD_CONTEXT_RISCV:
|
||||
cpu_stackwalker = new StackwalkerRISCV(system_info,
|
||||
context->GetContextRISCV(),
|
||||
memory, modules,
|
||||
frame_symbolizer);
|
||||
break;
|
||||
|
||||
case MD_CONTEXT_RISCV64:
|
||||
cpu_stackwalker = new StackwalkerRISCV64(system_info,
|
||||
context->GetContextRISCV64(),
|
||||
memory, modules,
|
||||
frame_symbolizer);
|
||||
break;
|
||||
}
|
||||
|
||||
BPLOG_IF(ERROR, !cpu_stackwalker) << "Unknown CPU type " << HexString(cpu) <<
|
||||
|
|
|
|||
535
src/processor/stackwalker_riscv.cc
Normal file
535
src/processor/stackwalker_riscv.cc
Normal file
|
|
@ -0,0 +1,535 @@
|
|||
// Copyright 2013 Google LLC
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
/* stackwalker_riscv.cc: riscv-specific stackwalker.
|
||||
*
|
||||
* See stackwalker_riscv.h for documentation.
|
||||
*
|
||||
* Author: Iacopo Colonnelli
|
||||
*/
|
||||
|
||||
#include "common/scoped_ptr.h"
|
||||
#include "google_breakpad/processor/call_stack.h"
|
||||
#include "google_breakpad/processor/code_modules.h"
|
||||
#include "google_breakpad/processor/memory_region.h"
|
||||
#include "google_breakpad/processor/stack_frame_cpu.h"
|
||||
#include "google_breakpad/processor/system_info.h"
|
||||
#include "processor/cfi_frame_info.h"
|
||||
#include "processor/logging.h"
|
||||
#include "processor/stackwalker_riscv.h"
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
StackwalkerRISCV::StackwalkerRISCV(const SystemInfo* system_info,
|
||||
const MDRawContextRISCV* context,
|
||||
MemoryRegion* memory,
|
||||
const CodeModules* modules,
|
||||
StackFrameSymbolizer* resolver_helper)
|
||||
: Stackwalker(system_info, memory, modules, resolver_helper),
|
||||
context_(context),
|
||||
context_frame_validity_(StackFrameRISCV::CONTEXT_VALID_ALL) {
|
||||
}
|
||||
|
||||
|
||||
StackFrame* StackwalkerRISCV::GetContextFrame() {
|
||||
if (!context_) {
|
||||
BPLOG(ERROR) << "Can't get context frame without context";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
StackFrameRISCV* frame = new StackFrameRISCV();
|
||||
|
||||
frame->context = *context_;
|
||||
frame->context_validity = context_frame_validity_;
|
||||
frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
|
||||
frame->instruction = frame->context.pc;
|
||||
|
||||
return frame;
|
||||
}
|
||||
|
||||
StackFrameRISCV* StackwalkerRISCV::GetCallerByCFIFrameInfo(
|
||||
const vector<StackFrame*>& frames,
|
||||
CFIFrameInfo* cfi_frame_info) {
|
||||
StackFrameRISCV* last_frame =
|
||||
static_cast<StackFrameRISCV*>(frames.back());
|
||||
|
||||
// Populate a dictionary with the valid register values in last_frame.
|
||||
CFIFrameInfo::RegisterValueMap<uint32_t> callee_registers;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_PC)
|
||||
callee_registers["pc"] = last_frame->context.pc;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_RA)
|
||||
callee_registers["ra"] = last_frame->context.ra;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_SP)
|
||||
callee_registers["sp"] = last_frame->context.sp;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_GP)
|
||||
callee_registers["gp"] = last_frame->context.gp;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_TP)
|
||||
callee_registers["tp"] = last_frame->context.tp;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T0)
|
||||
callee_registers["t0"] = last_frame->context.t0;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T1)
|
||||
callee_registers["t1"] = last_frame->context.t1;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T2)
|
||||
callee_registers["t2"] = last_frame->context.t2;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S0)
|
||||
callee_registers["s0"] = last_frame->context.s0;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S1)
|
||||
callee_registers["s1"] = last_frame->context.s1;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A0)
|
||||
callee_registers["a0"] = last_frame->context.a0;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A1)
|
||||
callee_registers["a1"] = last_frame->context.a1;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A2)
|
||||
callee_registers["a2"] = last_frame->context.a2;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A3)
|
||||
callee_registers["a3"] = last_frame->context.a3;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A4)
|
||||
callee_registers["a4"] = last_frame->context.a4;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A5)
|
||||
callee_registers["a5"] = last_frame->context.a5;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A6)
|
||||
callee_registers["a6"] = last_frame->context.a6;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_A7)
|
||||
callee_registers["a7"] = last_frame->context.a7;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S2)
|
||||
callee_registers["s2"] = last_frame->context.s2;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S3)
|
||||
callee_registers["s3"] = last_frame->context.s3;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S4)
|
||||
callee_registers["s4"] = last_frame->context.s4;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S5)
|
||||
callee_registers["s5"] = last_frame->context.s5;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S6)
|
||||
callee_registers["s6"] = last_frame->context.s6;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S7)
|
||||
callee_registers["s7"] = last_frame->context.s7;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S8)
|
||||
callee_registers["s8"] = last_frame->context.s8;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S9)
|
||||
callee_registers["s9"] = last_frame->context.s9;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S10)
|
||||
callee_registers["s10"] = last_frame->context.s10;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_S11)
|
||||
callee_registers["s11"] = last_frame->context.s11;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T3)
|
||||
callee_registers["t3"] = last_frame->context.t3;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T4)
|
||||
callee_registers["t4"] = last_frame->context.t4;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T5)
|
||||
callee_registers["t5"] = last_frame->context.t5;
|
||||
if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_T6)
|
||||
callee_registers["t6"] = last_frame->context.t6;
|
||||
|
||||
// Use the STACK CFI data to recover the caller's register values.
|
||||
CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers;
|
||||
if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_,
|
||||
&caller_registers)) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Construct a new stack frame given the values the CFI recovered.
|
||||
CFIFrameInfo::RegisterValueMap<uint32_t>::iterator entry;
|
||||
scoped_ptr<StackFrameRISCV> frame(new StackFrameRISCV());
|
||||
entry = caller_registers.find("pc");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_PC;
|
||||
frame->context.pc = entry->second;
|
||||
} else{
|
||||
// If the CFI doesn't recover the PC explicitly, then use .ra.
|
||||
entry = caller_registers.find(".ra");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_PC;
|
||||
frame->context.pc = entry->second;
|
||||
}
|
||||
}
|
||||
entry = caller_registers.find("ra");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_RA;
|
||||
frame->context.ra = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("sp");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_SP;
|
||||
frame->context.sp = entry->second;
|
||||
} else {
|
||||
// If the CFI doesn't recover the SP explicitly, then use .cfa.
|
||||
entry = caller_registers.find(".cfa");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_SP;
|
||||
frame->context.sp = entry->second;
|
||||
}
|
||||
}
|
||||
entry = caller_registers.find("gp");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_GP;
|
||||
frame->context.gp = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("tp");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_TP;
|
||||
frame->context.tp = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t0");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T0;
|
||||
frame->context.t0 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t1");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T1;
|
||||
frame->context.t1 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t2");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T2;
|
||||
frame->context.t2 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("s0");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S0;
|
||||
frame->context.s0 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S0) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S0;
|
||||
frame->context.s0 = last_frame->context.s0;
|
||||
}
|
||||
entry = caller_registers.find("s1");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S1;
|
||||
frame->context.s1 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S1) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S1;
|
||||
frame->context.s1 = last_frame->context.s1;
|
||||
}
|
||||
entry = caller_registers.find("a0");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A0;
|
||||
frame->context.a0 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a1");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A1;
|
||||
frame->context.a1 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a2");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A2;
|
||||
frame->context.a2 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a3");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A3;
|
||||
frame->context.a3 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a4");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A4;
|
||||
frame->context.a4 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a5");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A5;
|
||||
frame->context.a5 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a6");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A6;
|
||||
frame->context.a6 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a7");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_A7;
|
||||
frame->context.a7 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("s2");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S2;
|
||||
frame->context.s2 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S2) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S2;
|
||||
frame->context.s2 = last_frame->context.s2;
|
||||
}
|
||||
entry = caller_registers.find("s3");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S3;
|
||||
frame->context.s3 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S3) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S3;
|
||||
frame->context.s3 = last_frame->context.s3;
|
||||
}
|
||||
entry = caller_registers.find("s4");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S4;
|
||||
frame->context.s4 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S4) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S4;
|
||||
frame->context.s4 = last_frame->context.s4;
|
||||
}
|
||||
entry = caller_registers.find("s5");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S5;
|
||||
frame->context.s5 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S5) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S5;
|
||||
frame->context.s5 = last_frame->context.s5;
|
||||
}
|
||||
entry = caller_registers.find("s6");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S6;
|
||||
frame->context.s6 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S6) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S6;
|
||||
frame->context.s6 = last_frame->context.s6;
|
||||
}
|
||||
entry = caller_registers.find("s7");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S7;
|
||||
frame->context.s7 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S7) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S7;
|
||||
frame->context.s7 = last_frame->context.s7;
|
||||
}
|
||||
entry = caller_registers.find("s8");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S8;
|
||||
frame->context.s8 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S8) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S8;
|
||||
frame->context.s8 = last_frame->context.s8;
|
||||
}
|
||||
entry = caller_registers.find("s9");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S9;
|
||||
frame->context.s9 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S9) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S9;
|
||||
frame->context.s9 = last_frame->context.s9;
|
||||
}
|
||||
entry = caller_registers.find("s10");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S10;
|
||||
frame->context.s10 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S10) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S10;
|
||||
frame->context.s10 = last_frame->context.s10;
|
||||
}
|
||||
entry = caller_registers.find("s11");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S11;
|
||||
frame->context.s11 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV::CONTEXT_VALID_S11) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_S11;
|
||||
frame->context.s11 = last_frame->context.s11;
|
||||
}
|
||||
entry = caller_registers.find("t3");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T3;
|
||||
frame->context.t3 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t4");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T4;
|
||||
frame->context.t4 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t5");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T5;
|
||||
frame->context.t5 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t6");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV::CONTEXT_VALID_T6;
|
||||
frame->context.t6 = entry->second;
|
||||
}
|
||||
|
||||
// If we didn't recover the PC and the SP, then the frame isn't very useful.
|
||||
static const uint64_t essentials = (StackFrameRISCV::CONTEXT_VALID_SP
|
||||
| StackFrameRISCV::CONTEXT_VALID_PC);
|
||||
if ((frame->context_validity & essentials) != essentials)
|
||||
return NULL;
|
||||
|
||||
frame->trust = StackFrame::FRAME_TRUST_CFI;
|
||||
return frame.release();
|
||||
}
|
||||
|
||||
StackFrameRISCV* StackwalkerRISCV::GetCallerByStackScan(
|
||||
const vector<StackFrame*>& frames) {
|
||||
StackFrameRISCV* last_frame =
|
||||
static_cast<StackFrameRISCV*>(frames.back());
|
||||
uint32_t last_sp = last_frame->context.sp;
|
||||
uint32_t caller_sp, caller_pc;
|
||||
|
||||
if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc,
|
||||
last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT)) {
|
||||
// No plausible return address was found.
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// ScanForReturnAddress found a reasonable return address. Advance
|
||||
// sp to the location above the one where the return address was
|
||||
// found.
|
||||
caller_sp += 4;
|
||||
|
||||
// Create a new stack frame (ownership will be transferred to the caller)
|
||||
// and fill it in.
|
||||
StackFrameRISCV* frame = new StackFrameRISCV();
|
||||
|
||||
frame->trust = StackFrame::FRAME_TRUST_SCAN;
|
||||
frame->context = last_frame->context;
|
||||
frame->context.pc = caller_pc;
|
||||
frame->context.sp = caller_sp;
|
||||
frame->context_validity = StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP;
|
||||
|
||||
return frame;
|
||||
}
|
||||
|
||||
StackFrameRISCV* StackwalkerRISCV::GetCallerByFramePointer(
|
||||
const vector<StackFrame*>& frames) {
|
||||
StackFrameRISCV* last_frame =
|
||||
static_cast<StackFrameRISCV*>(frames.back());
|
||||
|
||||
uint32_t last_fp = last_frame->context.s0;
|
||||
|
||||
uint32_t caller_fp = 0;
|
||||
if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) {
|
||||
BPLOG(ERROR) << "Unable to read caller_fp from last_fp: 0x"
|
||||
<< std::hex << last_fp;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
uint32_t caller_ra = 0;
|
||||
if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_ra)) {
|
||||
BPLOG(ERROR) << "Unable to read caller_ra from last_fp + 4: 0x"
|
||||
<< std::hex << (last_fp + 4);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
uint32_t caller_sp = last_fp ? last_fp + 8 : last_frame->context.s0;
|
||||
|
||||
// Create a new stack frame (ownership will be transferred to the caller)
|
||||
// and fill it in.
|
||||
StackFrameRISCV* frame = new StackFrameRISCV();
|
||||
|
||||
frame->trust = StackFrame::FRAME_TRUST_FP;
|
||||
frame->context = last_frame->context;
|
||||
frame->context.s0 = caller_fp;
|
||||
frame->context.sp = caller_sp;
|
||||
frame->context.pc = last_frame->context.ra;
|
||||
frame->context.ra = caller_ra;
|
||||
frame->context_validity = StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_RA |
|
||||
StackFrameRISCV::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP;
|
||||
return frame;
|
||||
}
|
||||
|
||||
StackFrame* StackwalkerRISCV::GetCallerFrame(const CallStack* stack,
|
||||
bool stack_scan_allowed) {
|
||||
if (!memory_ || !stack) {
|
||||
BPLOG(ERROR) << "Can't get caller frame without memory or stack";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const vector<StackFrame*>& frames = *stack->frames();
|
||||
StackFrameRISCV* last_frame =
|
||||
static_cast<StackFrameRISCV*>(frames.back());
|
||||
scoped_ptr<StackFrameRISCV> frame;
|
||||
|
||||
// Try to recover caller information from CFI.
|
||||
scoped_ptr<CFIFrameInfo> cfi_frame_info(
|
||||
frame_symbolizer_->FindCFIFrameInfo(last_frame));
|
||||
if (cfi_frame_info.get())
|
||||
frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
|
||||
|
||||
// If CFI failed, or there wasn't CFI available, fall back to frame pointer.
|
||||
if (!frame.get())
|
||||
frame.reset(GetCallerByFramePointer(frames));
|
||||
|
||||
// If everything failed, fall back to stack scanning.
|
||||
if (stack_scan_allowed && !frame.get())
|
||||
frame.reset(GetCallerByStackScan(frames));
|
||||
|
||||
// If nothing worked, tell the caller.
|
||||
if (!frame.get())
|
||||
return NULL;
|
||||
|
||||
// Should we terminate the stack walk? (end-of-stack or broken invariant)
|
||||
if (TerminateWalk(frame->context.pc, frame->context.sp,
|
||||
last_frame->context.sp,
|
||||
last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT)) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// The new frame's context's PC is the return address, which is one
|
||||
// instruction past the instruction that caused us to arrive at the callee.
|
||||
// RISCV instructions have a uniform 4-byte encoding, so subtracting 4 off
|
||||
// the return address gets back to the beginning of the call instruction.
|
||||
// Callers that require the exact return address value may access
|
||||
// frame->context.pc.
|
||||
frame->instruction = frame->context.pc - 4;
|
||||
|
||||
return frame.release();
|
||||
}
|
||||
|
||||
} // namespace google_breakpad
|
||||
100
src/processor/stackwalker_riscv.h
Normal file
100
src/processor/stackwalker_riscv.h
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
// Copyright 2013 Google LLC
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
/* stackwalker_riscv.h: riscv-specific stackwalker.
|
||||
*
|
||||
* Provides stack frames given riscv register context and a memory region
|
||||
* corresponding to a riscv stack.
|
||||
*
|
||||
* Author: Iacopo Colonnelli
|
||||
*/
|
||||
|
||||
#ifndef PROCESSOR_STACKWALKER_RISCV_H__
|
||||
#define PROCESSOR_STACKWALKER_RISCV_H__
|
||||
|
||||
#include "google_breakpad/common/minidump_format.h"
|
||||
#include "google_breakpad/processor/stackwalker.h"
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
class CodeModules;
|
||||
|
||||
class StackwalkerRISCV : public Stackwalker {
|
||||
public:
|
||||
// Context is a riscv context object that gives access to riscv-specific
|
||||
// register state corresponding to the innermost called frame to be
|
||||
// included in the stack. The other arguments are passed directly
|
||||
// through to the base Stackwalker constructor.
|
||||
StackwalkerRISCV(const SystemInfo* system_info,
|
||||
const MDRawContextRISCV* context,
|
||||
MemoryRegion* memory,
|
||||
const CodeModules* modules,
|
||||
StackFrameSymbolizer* frame_symbolizer);
|
||||
|
||||
// Change the context validity mask of the frame returned by
|
||||
// GetContextFrame to VALID. This is only for use by unit tests; the
|
||||
// default behavior is correct for all application code.
|
||||
void SetContextFrameValidity(int valid) {
|
||||
context_frame_validity_ = valid;
|
||||
}
|
||||
|
||||
private:
|
||||
// Implementation of Stackwalker, using riscv context and stack conventions.
|
||||
virtual StackFrame* GetContextFrame();
|
||||
virtual StackFrame* GetCallerFrame(
|
||||
const CallStack* stack, bool stack_scan_allowed);
|
||||
|
||||
// Use cfi_frame_info (derived from STACK CFI records) to construct
|
||||
// the frame that called frames.back(). The caller takes ownership
|
||||
// of the returned frame. Return NULL on failure.
|
||||
StackFrameRISCV* GetCallerByCFIFrameInfo(
|
||||
const vector<StackFrame*>& frames, CFIFrameInfo* cfi_frame_info);
|
||||
|
||||
// Use the frame pointer. The caller takes ownership of the returned frame.
|
||||
// Return NULL on failure.
|
||||
StackFrameRISCV* GetCallerByFramePointer(
|
||||
const vector<StackFrame*>& frames);
|
||||
|
||||
// Scan the stack for plausible return addresses. The caller takes ownership
|
||||
// of the returned frame. Return NULL on failure.
|
||||
StackFrameRISCV* GetCallerByStackScan(
|
||||
const vector<StackFrame*>& frames);
|
||||
|
||||
// Stores the CPU context corresponding to the innermost stack frame to
|
||||
// be returned by GetContextFrame.
|
||||
const MDRawContextRISCV* context_;
|
||||
|
||||
// Validity mask for youngest stack frame. This is always
|
||||
// CONTEXT_VALID_ALL in real use; it is only changeable for the sake of
|
||||
// unit tests.
|
||||
int context_frame_validity_;
|
||||
};
|
||||
|
||||
} // namespace google_breakpad
|
||||
|
||||
#endif // PROCESSOR_STACKWALKER_RISCV_H__
|
||||
535
src/processor/stackwalker_riscv64.cc
Normal file
535
src/processor/stackwalker_riscv64.cc
Normal file
|
|
@ -0,0 +1,535 @@
|
|||
// Copyright 2013 Google LLC
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
/* stackwalker_riscv64.cc: riscv64-specific stackwalker.
|
||||
*
|
||||
* See stackwalker_riscv64.h for documentation.
|
||||
*
|
||||
* Author: Iacopo Colonnelli
|
||||
*/
|
||||
|
||||
#include "common/scoped_ptr.h"
|
||||
#include "google_breakpad/processor/call_stack.h"
|
||||
#include "google_breakpad/processor/code_modules.h"
|
||||
#include "google_breakpad/processor/memory_region.h"
|
||||
#include "google_breakpad/processor/stack_frame_cpu.h"
|
||||
#include "google_breakpad/processor/system_info.h"
|
||||
#include "processor/cfi_frame_info.h"
|
||||
#include "processor/logging.h"
|
||||
#include "processor/stackwalker_riscv64.h"
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
StackwalkerRISCV64::StackwalkerRISCV64(const SystemInfo* system_info,
|
||||
const MDRawContextRISCV64* context,
|
||||
MemoryRegion* memory,
|
||||
const CodeModules* modules,
|
||||
StackFrameSymbolizer* resolver_helper)
|
||||
: Stackwalker(system_info, memory, modules, resolver_helper),
|
||||
context_(context),
|
||||
context_frame_validity_(StackFrameRISCV::CONTEXT_VALID_ALL) {
|
||||
}
|
||||
|
||||
|
||||
StackFrame* StackwalkerRISCV64::GetContextFrame() {
|
||||
if (!context_) {
|
||||
BPLOG(ERROR) << "Can't get context frame without context";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
StackFrameRISCV64* frame = new StackFrameRISCV64();
|
||||
|
||||
frame->context = *context_;
|
||||
frame->context_validity = context_frame_validity_;
|
||||
frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
|
||||
frame->instruction = frame->context.pc;
|
||||
|
||||
return frame;
|
||||
}
|
||||
|
||||
StackFrameRISCV64* StackwalkerRISCV64::GetCallerByCFIFrameInfo(
|
||||
const vector<StackFrame*>& frames,
|
||||
CFIFrameInfo* cfi_frame_info) {
|
||||
StackFrameRISCV64* last_frame =
|
||||
static_cast<StackFrameRISCV64*>(frames.back());
|
||||
|
||||
// Populate a dictionary with the valid register values in last_frame.
|
||||
CFIFrameInfo::RegisterValueMap<uint64_t> callee_registers;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_PC)
|
||||
callee_registers["pc"] = last_frame->context.pc;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_RA)
|
||||
callee_registers["ra"] = last_frame->context.ra;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_SP)
|
||||
callee_registers["sp"] = last_frame->context.sp;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_GP)
|
||||
callee_registers["gp"] = last_frame->context.gp;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_TP)
|
||||
callee_registers["tp"] = last_frame->context.tp;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T0)
|
||||
callee_registers["t0"] = last_frame->context.t0;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T1)
|
||||
callee_registers["t1"] = last_frame->context.t1;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T2)
|
||||
callee_registers["t2"] = last_frame->context.t2;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S0)
|
||||
callee_registers["s0"] = last_frame->context.s0;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S1)
|
||||
callee_registers["s1"] = last_frame->context.s1;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A0)
|
||||
callee_registers["a0"] = last_frame->context.a0;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A1)
|
||||
callee_registers["a1"] = last_frame->context.a1;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A2)
|
||||
callee_registers["a2"] = last_frame->context.a2;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A3)
|
||||
callee_registers["a3"] = last_frame->context.a3;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A4)
|
||||
callee_registers["a4"] = last_frame->context.a4;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A5)
|
||||
callee_registers["a5"] = last_frame->context.a5;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A6)
|
||||
callee_registers["a6"] = last_frame->context.a6;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_A7)
|
||||
callee_registers["a7"] = last_frame->context.a7;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S2)
|
||||
callee_registers["s2"] = last_frame->context.s2;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S3)
|
||||
callee_registers["s3"] = last_frame->context.s3;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S4)
|
||||
callee_registers["s4"] = last_frame->context.s4;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S5)
|
||||
callee_registers["s5"] = last_frame->context.s5;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S6)
|
||||
callee_registers["s6"] = last_frame->context.s6;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S7)
|
||||
callee_registers["s7"] = last_frame->context.s7;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S8)
|
||||
callee_registers["s8"] = last_frame->context.s8;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S9)
|
||||
callee_registers["s9"] = last_frame->context.s9;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S10)
|
||||
callee_registers["s10"] = last_frame->context.s10;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_S11)
|
||||
callee_registers["s11"] = last_frame->context.s11;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T3)
|
||||
callee_registers["t3"] = last_frame->context.t3;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T4)
|
||||
callee_registers["t4"] = last_frame->context.t4;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T5)
|
||||
callee_registers["t5"] = last_frame->context.t5;
|
||||
if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_T6)
|
||||
callee_registers["t6"] = last_frame->context.t6;
|
||||
|
||||
// Use the STACK CFI data to recover the caller's register values.
|
||||
CFIFrameInfo::RegisterValueMap<uint64_t> caller_registers;
|
||||
if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_,
|
||||
&caller_registers)) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Construct a new stack frame given the values the CFI recovered.
|
||||
CFIFrameInfo::RegisterValueMap<uint64_t>::iterator entry;
|
||||
scoped_ptr<StackFrameRISCV64> frame(new StackFrameRISCV64());
|
||||
entry = caller_registers.find("pc");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_PC;
|
||||
frame->context.pc = entry->second;
|
||||
} else{
|
||||
// If the CFI doesn't recover the PC explicitly, then use .ra.
|
||||
entry = caller_registers.find(".ra");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_PC;
|
||||
frame->context.pc = entry->second;
|
||||
}
|
||||
}
|
||||
entry = caller_registers.find("ra");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_RA;
|
||||
frame->context.ra = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("sp");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_SP;
|
||||
frame->context.sp = entry->second;
|
||||
} else {
|
||||
// If the CFI doesn't recover the SP explicitly, then use .cfa.
|
||||
entry = caller_registers.find(".cfa");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_SP;
|
||||
frame->context.sp = entry->second;
|
||||
}
|
||||
}
|
||||
entry = caller_registers.find("gp");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_GP;
|
||||
frame->context.gp = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("tp");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_TP;
|
||||
frame->context.tp = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t0");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T0;
|
||||
frame->context.t0 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t1");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T1;
|
||||
frame->context.t1 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t2");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T2;
|
||||
frame->context.t2 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("s0");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S0;
|
||||
frame->context.s0 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S0;
|
||||
frame->context.s0 = last_frame->context.s0;
|
||||
}
|
||||
entry = caller_registers.find("s1");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S1;
|
||||
frame->context.s1 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S1) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S1;
|
||||
frame->context.s1 = last_frame->context.s1;
|
||||
}
|
||||
entry = caller_registers.find("a0");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A0;
|
||||
frame->context.a0 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a1");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A1;
|
||||
frame->context.a1 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a2");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A2;
|
||||
frame->context.a2 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a3");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A3;
|
||||
frame->context.a3 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a4");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A4;
|
||||
frame->context.a4 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a5");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A5;
|
||||
frame->context.a5 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a6");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A6;
|
||||
frame->context.a6 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("a7");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_A7;
|
||||
frame->context.a7 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("s2");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S2;
|
||||
frame->context.s2 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S2) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S2;
|
||||
frame->context.s2 = last_frame->context.s2;
|
||||
}
|
||||
entry = caller_registers.find("s3");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S3;
|
||||
frame->context.s3 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S3) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S3;
|
||||
frame->context.s3 = last_frame->context.s3;
|
||||
}
|
||||
entry = caller_registers.find("s4");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S4;
|
||||
frame->context.s4 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S4) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S4;
|
||||
frame->context.s4 = last_frame->context.s4;
|
||||
}
|
||||
entry = caller_registers.find("s5");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S5;
|
||||
frame->context.s5 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S5) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S5;
|
||||
frame->context.s5 = last_frame->context.s5;
|
||||
}
|
||||
entry = caller_registers.find("s6");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S6;
|
||||
frame->context.s6 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S6) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S6;
|
||||
frame->context.s6 = last_frame->context.s6;
|
||||
}
|
||||
entry = caller_registers.find("s7");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S7;
|
||||
frame->context.s7 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S7) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S7;
|
||||
frame->context.s7 = last_frame->context.s7;
|
||||
}
|
||||
entry = caller_registers.find("s8");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S8;
|
||||
frame->context.s8 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S8) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S8;
|
||||
frame->context.s8 = last_frame->context.s8;
|
||||
}
|
||||
entry = caller_registers.find("s9");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S9;
|
||||
frame->context.s9 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S9) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S9;
|
||||
frame->context.s9 = last_frame->context.s9;
|
||||
}
|
||||
entry = caller_registers.find("s10");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S10;
|
||||
frame->context.s10 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S10) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S10;
|
||||
frame->context.s10 = last_frame->context.s10;
|
||||
}
|
||||
entry = caller_registers.find("s11");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S11;
|
||||
frame->context.s11 = entry->second;
|
||||
} else if (last_frame->context_validity &
|
||||
StackFrameRISCV64::CONTEXT_VALID_S11) {
|
||||
// Since the register is callee-saves, assume the callee
|
||||
// has not yet changed it.
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_S11;
|
||||
frame->context.s11 = last_frame->context.s11;
|
||||
}
|
||||
entry = caller_registers.find("t3");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T3;
|
||||
frame->context.t3 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t4");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T4;
|
||||
frame->context.t4 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t5");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T5;
|
||||
frame->context.t5 = entry->second;
|
||||
}
|
||||
entry = caller_registers.find("t6");
|
||||
if (entry != caller_registers.end()) {
|
||||
frame->context_validity |= StackFrameRISCV64::CONTEXT_VALID_T6;
|
||||
frame->context.t6 = entry->second;
|
||||
}
|
||||
|
||||
// If we didn't recover the PC and the SP, then the frame isn't very useful.
|
||||
static const uint64_t essentials = (StackFrameRISCV64::CONTEXT_VALID_SP
|
||||
| StackFrameRISCV64::CONTEXT_VALID_PC);
|
||||
if ((frame->context_validity & essentials) != essentials)
|
||||
return NULL;
|
||||
|
||||
frame->trust = StackFrame::FRAME_TRUST_CFI;
|
||||
return frame.release();
|
||||
}
|
||||
|
||||
StackFrameRISCV64* StackwalkerRISCV64::GetCallerByStackScan(
|
||||
const vector<StackFrame*>& frames) {
|
||||
StackFrameRISCV64* last_frame =
|
||||
static_cast<StackFrameRISCV64*>(frames.back());
|
||||
uint64_t last_sp = last_frame->context.sp;
|
||||
uint64_t caller_sp, caller_pc;
|
||||
|
||||
if (!ScanForReturnAddress(last_sp, &caller_sp, &caller_pc,
|
||||
last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT)) {
|
||||
// No plausible return address was found.
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// ScanForReturnAddress found a reasonable return address. Advance
|
||||
// sp to the location above the one where the return address was
|
||||
// found.
|
||||
caller_sp += 8;
|
||||
|
||||
// Create a new stack frame (ownership will be transferred to the caller)
|
||||
// and fill it in.
|
||||
StackFrameRISCV64* frame = new StackFrameRISCV64();
|
||||
|
||||
frame->trust = StackFrame::FRAME_TRUST_SCAN;
|
||||
frame->context = last_frame->context;
|
||||
frame->context.pc = caller_pc;
|
||||
frame->context.sp = caller_sp;
|
||||
frame->context_validity = StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP;
|
||||
|
||||
return frame;
|
||||
}
|
||||
|
||||
StackFrameRISCV64* StackwalkerRISCV64::GetCallerByFramePointer(
|
||||
const vector<StackFrame*>& frames) {
|
||||
StackFrameRISCV64* last_frame =
|
||||
static_cast<StackFrameRISCV64*>(frames.back());
|
||||
|
||||
uint64_t last_fp = last_frame->context.s0;
|
||||
|
||||
uint64_t caller_fp = 0;
|
||||
if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) {
|
||||
BPLOG(ERROR) << "Unable to read caller_fp from last_fp: 0x"
|
||||
<< std::hex << last_fp;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
uint64_t caller_ra = 0;
|
||||
if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_ra)) {
|
||||
BPLOG(ERROR) << "Unable to read caller_ra from last_fp + 8: 0x"
|
||||
<< std::hex << (last_fp + 8);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
uint64_t caller_sp = last_fp ? last_fp + 16 : last_frame->context.s0;
|
||||
|
||||
// Create a new stack frame (ownership will be transferred to the caller)
|
||||
// and fill it in.
|
||||
StackFrameRISCV64* frame = new StackFrameRISCV64();
|
||||
|
||||
frame->trust = StackFrame::FRAME_TRUST_FP;
|
||||
frame->context = last_frame->context;
|
||||
frame->context.s0 = caller_fp;
|
||||
frame->context.sp = caller_sp;
|
||||
frame->context.pc = last_frame->context.ra;
|
||||
frame->context.ra = caller_ra;
|
||||
frame->context_validity = StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_RA |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP;
|
||||
return frame;
|
||||
}
|
||||
|
||||
StackFrame* StackwalkerRISCV64::GetCallerFrame(const CallStack* stack,
|
||||
bool stack_scan_allowed) {
|
||||
if (!memory_ || !stack) {
|
||||
BPLOG(ERROR) << "Can't get caller frame without memory or stack";
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const vector<StackFrame*>& frames = *stack->frames();
|
||||
StackFrameRISCV64* last_frame =
|
||||
static_cast<StackFrameRISCV64*>(frames.back());
|
||||
scoped_ptr<StackFrameRISCV64> frame;
|
||||
|
||||
// Try to recover caller information from CFI.
|
||||
scoped_ptr<CFIFrameInfo> cfi_frame_info(
|
||||
frame_symbolizer_->FindCFIFrameInfo(last_frame));
|
||||
if (cfi_frame_info.get())
|
||||
frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
|
||||
|
||||
// If CFI failed, or there wasn't CFI available, fall back to frame pointer.
|
||||
if (!frame.get())
|
||||
frame.reset(GetCallerByFramePointer(frames));
|
||||
|
||||
// If everything failed, fall back to stack scanning.
|
||||
if (stack_scan_allowed && !frame.get())
|
||||
frame.reset(GetCallerByStackScan(frames));
|
||||
|
||||
// If nothing worked, tell the caller.
|
||||
if (!frame.get())
|
||||
return NULL;
|
||||
|
||||
// Should we terminate the stack walk? (end-of-stack or broken invariant)
|
||||
if (TerminateWalk(frame->context.pc, frame->context.sp,
|
||||
last_frame->context.sp,
|
||||
last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT)) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// The new frame's context's PC is the return address, which is one
|
||||
// instruction past the instruction that caused us to arrive at the callee.
|
||||
// RISCV instructions have a uniform 4-byte encoding, so subtracting 4 off
|
||||
// the return address gets back to the beginning of the call instruction.
|
||||
// Callers that require the exact return address value may access
|
||||
// frame->context.pc.
|
||||
frame->instruction = frame->context.pc - 4;
|
||||
|
||||
return frame.release();
|
||||
}
|
||||
|
||||
} // namespace google_breakpad
|
||||
100
src/processor/stackwalker_riscv64.h
Normal file
100
src/processor/stackwalker_riscv64.h
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
// Copyright 2013 Google LLC
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
/* stackwalker_riscv64.h: riscv64-specific stackwalker.
|
||||
*
|
||||
* Provides stack frames given riscv64 register context and a memory region
|
||||
* corresponding to a riscv64 stack.
|
||||
*
|
||||
* Author: Iacopo Colonnelli
|
||||
*/
|
||||
|
||||
#ifndef PROCESSOR_STACKWALKER_RISCV64_H__
|
||||
#define PROCESSOR_STACKWALKER_RISCV64_H__
|
||||
|
||||
#include "google_breakpad/common/minidump_format.h"
|
||||
#include "google_breakpad/processor/stackwalker.h"
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
class CodeModules;
|
||||
|
||||
class StackwalkerRISCV64 : public Stackwalker {
|
||||
public:
|
||||
// Context is a riscv context object that gives access to riscv-specific
|
||||
// register state corresponding to the innermost called frame to be
|
||||
// included in the stack. The other arguments are passed directly
|
||||
// through to the base Stackwalker constructor.
|
||||
StackwalkerRISCV64(const SystemInfo* system_info,
|
||||
const MDRawContextRISCV64* context,
|
||||
MemoryRegion* memory,
|
||||
const CodeModules* modules,
|
||||
StackFrameSymbolizer* frame_symbolizer);
|
||||
|
||||
// Change the context validity mask of the frame returned by
|
||||
// GetContextFrame to VALID. This is only for use by unit tests; the
|
||||
// default behavior is correct for all application code.
|
||||
void SetContextFrameValidity(int valid) {
|
||||
context_frame_validity_ = valid;
|
||||
}
|
||||
|
||||
private:
|
||||
// Implementation of Stackwalker, using riscv context and stack conventions.
|
||||
virtual StackFrame* GetContextFrame();
|
||||
virtual StackFrame* GetCallerFrame(
|
||||
const CallStack* stack, bool stack_scan_allowed);
|
||||
|
||||
// Use cfi_frame_info (derived from STACK CFI records) to construct
|
||||
// the frame that called frames.back(). The caller takes ownership
|
||||
// of the returned frame. Return NULL on failure.
|
||||
StackFrameRISCV64* GetCallerByCFIFrameInfo(
|
||||
const vector<StackFrame*>& frames, CFIFrameInfo* cfi_frame_info);
|
||||
|
||||
// Use the frame pointer. The caller takes ownership of the returned frame.
|
||||
// Return NULL on failure.
|
||||
StackFrameRISCV64* GetCallerByFramePointer(
|
||||
const vector<StackFrame*>& frames);
|
||||
|
||||
// Scan the stack for plausible return addresses. The caller takes ownership
|
||||
// of the returned frame. Return NULL on failure.
|
||||
StackFrameRISCV64* GetCallerByStackScan(
|
||||
const vector<StackFrame*>& frames);
|
||||
|
||||
// Stores the CPU context corresponding to the innermost stack frame to
|
||||
// be returned by GetContextFrame.
|
||||
const MDRawContextRISCV64* context_;
|
||||
|
||||
// Validity mask for youngest stack frame. This is always
|
||||
// CONTEXT_VALID_ALL in real use; it is only changeable for the sake of
|
||||
// unit tests.
|
||||
int context_frame_validity_;
|
||||
};
|
||||
|
||||
} // namespace google_breakpad
|
||||
|
||||
#endif // PROCESSOR_STACKWALKER_RISCV64_H__
|
||||
883
src/processor/stackwalker_riscv64_unittest.cc
Normal file
883
src/processor/stackwalker_riscv64_unittest.cc
Normal file
|
|
@ -0,0 +1,883 @@
|
|||
// Copyright 2013 Google LLC
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
/* stackwalker_riscv64_unittest.cc: Unit tests for StackwalkerRISCV64 class.
|
||||
*
|
||||
* Author: Iacopo Colonnelli
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "breakpad_googletest_includes.h"
|
||||
#include "common/test_assembler.h"
|
||||
#include "common/using_std_string.h"
|
||||
#include "google_breakpad/common/minidump_format.h"
|
||||
#include "google_breakpad/processor/basic_source_line_resolver.h"
|
||||
#include "google_breakpad/processor/call_stack.h"
|
||||
#include "google_breakpad/processor/code_module.h"
|
||||
#include "google_breakpad/processor/source_line_resolver_interface.h"
|
||||
#include "google_breakpad/processor/stack_frame_cpu.h"
|
||||
#include "processor/stackwalker_unittest_utils.h"
|
||||
#include "processor/stackwalker_riscv64.h"
|
||||
#include "processor/windows_frame_info.h"
|
||||
|
||||
using google_breakpad::BasicSourceLineResolver;
|
||||
using google_breakpad::CallStack;
|
||||
using google_breakpad::CodeModule;
|
||||
using google_breakpad::StackFrameSymbolizer;
|
||||
using google_breakpad::StackFrame;
|
||||
using google_breakpad::StackFrameRISCV64;
|
||||
using google_breakpad::Stackwalker;
|
||||
using google_breakpad::StackwalkerRISCV64;
|
||||
using google_breakpad::SystemInfo;
|
||||
using google_breakpad::WindowsFrameInfo;
|
||||
using google_breakpad::test_assembler::kLittleEndian;
|
||||
using google_breakpad::test_assembler::Label;
|
||||
using google_breakpad::test_assembler::Section;
|
||||
using std::vector;
|
||||
using testing::_;
|
||||
using testing::AnyNumber;
|
||||
using testing::DoAll;
|
||||
using testing::Return;
|
||||
using testing::SetArgumentPointee;
|
||||
using testing::Test;
|
||||
|
||||
class StackwalkerRISCV64Fixture {
|
||||
public:
|
||||
StackwalkerRISCV64Fixture()
|
||||
: stack_section(kLittleEndian),
|
||||
// Give the two modules reasonable standard locations and names
|
||||
// for tests to play with.
|
||||
module1(0x40000000, 0x10000, "module1", "version1"),
|
||||
module2(0x50000000, 0x10000, "module2", "version2") {
|
||||
// Identify the system as an iOS system.
|
||||
system_info.os = "iOS";
|
||||
system_info.os_short = "ios";
|
||||
system_info.cpu = "riscv64";
|
||||
system_info.cpu_info = "";
|
||||
|
||||
// Put distinctive values in the raw CPU context.
|
||||
BrandContext(&raw_context);
|
||||
|
||||
// Create some modules with some stock debugging information.
|
||||
modules.Add(&module1);
|
||||
modules.Add(&module2);
|
||||
|
||||
// By default, none of the modules have symbol info; call
|
||||
// SetModuleSymbols to override this.
|
||||
EXPECT_CALL(supplier, GetCStringSymbolData(_, _, _, _, _))
|
||||
.WillRepeatedly(Return(MockSymbolSupplier::NOT_FOUND));
|
||||
|
||||
// Avoid GMOCK WARNING "Uninteresting mock function call - returning
|
||||
// directly" for FreeSymbolData().
|
||||
EXPECT_CALL(supplier, FreeSymbolData(_)).Times(AnyNumber());
|
||||
|
||||
// Reset max_frames_scanned since it's static.
|
||||
Stackwalker::set_max_frames_scanned(1024);
|
||||
}
|
||||
|
||||
// Set the Breakpad symbol information that supplier should return for
|
||||
// MODULE to INFO.
|
||||
void SetModuleSymbols(MockCodeModule* module, const string& info) {
|
||||
size_t buffer_size;
|
||||
char *buffer = supplier.CopySymbolDataAndOwnTheCopy(info, &buffer_size);
|
||||
EXPECT_CALL(supplier, GetCStringSymbolData(module, &system_info, _, _, _))
|
||||
.WillRepeatedly(DoAll(SetArgumentPointee<3>(buffer),
|
||||
SetArgumentPointee<4>(buffer_size),
|
||||
Return(MockSymbolSupplier::FOUND)));
|
||||
}
|
||||
|
||||
// Populate stack_region with the contents of stack_section. Use
|
||||
// stack_section.start() as the region's starting address.
|
||||
void RegionFromSection() {
|
||||
string contents;
|
||||
ASSERT_TRUE(stack_section.GetContents(&contents));
|
||||
stack_region.Init(stack_section.start().Value(), contents);
|
||||
}
|
||||
|
||||
// Fill RAW_CONTEXT with pseudo-random data, for round-trip checking.
|
||||
void BrandContext(MDRawContextRISCV64 *raw_context) {
|
||||
uint8_t x = 173;
|
||||
for (size_t i = 0; i < sizeof(*raw_context); i++)
|
||||
reinterpret_cast<uint8_t*>(raw_context)[i] = (x += 17);
|
||||
}
|
||||
|
||||
SystemInfo system_info;
|
||||
MDRawContextRISCV64 raw_context;
|
||||
Section stack_section;
|
||||
MockMemoryRegion stack_region;
|
||||
MockCodeModule module1;
|
||||
MockCodeModule module2;
|
||||
MockCodeModules modules;
|
||||
MockSymbolSupplier supplier;
|
||||
BasicSourceLineResolver resolver;
|
||||
CallStack call_stack;
|
||||
const vector<StackFrame*>* frames;
|
||||
};
|
||||
|
||||
class SanityCheck: public StackwalkerRISCV64Fixture, public Test { };
|
||||
|
||||
TEST_F(SanityCheck, NoResolver) {
|
||||
// Since the context's frame pointer is garbage, the stack walk will end after
|
||||
// the first frame.
|
||||
StackFrameSymbolizer frame_symbolizer(NULL, NULL);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region, &modules,
|
||||
&frame_symbolizer);
|
||||
// This should succeed even without a resolver or supplier.
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
StackFrameRISCV64 *frame = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
// Check that the values from the original raw context made it
|
||||
// through to the context in the stack frame.
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame->context, sizeof(raw_context)));
|
||||
}
|
||||
|
||||
class GetContextFrame: public StackwalkerRISCV64Fixture, public Test { };
|
||||
|
||||
// The stackwalker should be able to produce the context frame even
|
||||
// without stack memory present.
|
||||
TEST_F(GetContextFrame, NoStackMemory) {
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, NULL, &modules,
|
||||
&frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
StackFrameRISCV64 *frame = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
// Check that the values from the original raw context made it
|
||||
// through to the context in the stack frame.
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame->context, sizeof(raw_context)));
|
||||
}
|
||||
|
||||
class GetCallerFrame: public StackwalkerRISCV64Fixture, public Test { };
|
||||
|
||||
TEST_F(GetCallerFrame, ScanWithoutSymbols) {
|
||||
// When the stack walker resorts to scanning the stack,
|
||||
// only addresses located within loaded modules are
|
||||
// considered valid return addresses.
|
||||
// Force scanning through three frames to ensure that the
|
||||
// stack pointer is set properly in scan-recovered frames.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D64(0x40090000) // junk that's not
|
||||
.D64(0x60000000) // a return address
|
||||
|
||||
.D64(return_address1) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D64(0xF0000000) // more junk
|
||||
.D64(0x0000000D)
|
||||
|
||||
.D64(return_address2) // actual return address
|
||||
// frame 2
|
||||
.Mark(&frame2_sp)
|
||||
.Append(64, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region, &modules,
|
||||
&frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(2U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ("module2", modules_without_symbols[1]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(3U, frames->size());
|
||||
|
||||
StackFrameRISCV64 *frame0 = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV64::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
|
||||
StackFrameRISCV64 *frame1 = static_cast<StackFrameRISCV64*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address1, frame1->context.pc);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
|
||||
StackFrameRISCV64 *frame2 = static_cast<StackFrameRISCV64*>(frames->at(2));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame2->trust);
|
||||
ASSERT_EQ((StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP),
|
||||
frame2->context_validity);
|
||||
EXPECT_EQ(return_address2, frame2->context.pc);
|
||||
EXPECT_EQ(frame2_sp.Value(), frame2->context.sp);
|
||||
}
|
||||
|
||||
TEST_F(GetCallerFrame, ScanWithFunctionSymbols) {
|
||||
// During stack scanning, if a potential return address
|
||||
// is located within a loaded module that has symbols,
|
||||
// it is only considered a valid return address if it
|
||||
// lies within a function's bounds.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address = 0x50000200;
|
||||
Label frame1_sp;
|
||||
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D64(0x40090000) // junk that's not
|
||||
.D64(0x60000000) // a return address
|
||||
|
||||
.D64(0x40001000) // a couple of plausible addresses
|
||||
.D64(0x5000F000) // that are not within functions
|
||||
|
||||
.D64(return_address) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(64, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40000200;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
SetModuleSymbols(&module1,
|
||||
// The youngest frame's function.
|
||||
"FUNC 100 400 10 monotreme\n");
|
||||
SetModuleSymbols(&module2,
|
||||
// The calling frame's function.
|
||||
"FUNC 100 400 10 marsupial\n");
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(2U, frames->size());
|
||||
|
||||
StackFrameRISCV64 *frame0 = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV64::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
EXPECT_EQ("monotreme", frame0->function_name);
|
||||
EXPECT_EQ(0x40000100ULL, frame0->function_base);
|
||||
|
||||
StackFrameRISCV64 *frame1 = static_cast<StackFrameRISCV64*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address, frame1->context.pc);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
EXPECT_EQ("marsupial", frame1->function_name);
|
||||
EXPECT_EQ(0x50000100ULL, frame1->function_base);
|
||||
}
|
||||
|
||||
TEST_F(GetCallerFrame, ScanFirstFrame) {
|
||||
// If the stackwalker resorts to stack scanning, it will scan much
|
||||
// farther to find the caller of the context frame.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(32, 0) // space
|
||||
|
||||
.D64(0x40090000) // junk that's not
|
||||
.D64(0x60000000) // a return address
|
||||
|
||||
.Append(96, 0) // more space
|
||||
|
||||
.D64(return_address1) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(32, 0) // space
|
||||
|
||||
.D64(0xF0000000) // more junk
|
||||
.D64(0x0000000D)
|
||||
|
||||
.Append(336, 0) // more space
|
||||
|
||||
.D64(return_address2) // actual return address
|
||||
// (won't be found)
|
||||
// frame 2
|
||||
.Mark(&frame2_sp)
|
||||
.Append(64, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(2U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ("module2", modules_without_symbols[1]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(2U, frames->size());
|
||||
|
||||
StackFrameRISCV64 *frame0 = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV64::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
|
||||
StackFrameRISCV64 *frame1 = static_cast<StackFrameRISCV64*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address1, frame1->context.pc);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
}
|
||||
|
||||
// Test that set_max_frames_scanned prevents using stack scanning
|
||||
// to find caller frames.
|
||||
TEST_F(GetCallerFrame, ScanningNotAllowed) {
|
||||
// When the stack walker resorts to scanning the stack,
|
||||
// only addresses located within loaded modules are
|
||||
// considered valid return addresses.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D64(0x40090000) // junk that's not
|
||||
.D64(0x60000000) // a return address
|
||||
|
||||
.D64(return_address1) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D64(0xF0000000) // more junk
|
||||
.D64(0x0000000D)
|
||||
|
||||
.D64(return_address2) // actual return address
|
||||
// frame 2
|
||||
.Mark(&frame2_sp)
|
||||
.Append(64, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
Stackwalker::set_max_frames_scanned(0);
|
||||
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(1U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
|
||||
StackFrameRISCV64 *frame0 = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV64::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
}
|
||||
|
||||
class GetFramesByFramePointer:
|
||||
public StackwalkerRISCV64Fixture,
|
||||
public Test { };
|
||||
|
||||
TEST_F(GetFramesByFramePointer, OnlyFramePointer) {
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
Label frame1_fp, frame2_fp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(64, 0) // Whatever values on the stack.
|
||||
.D64(0x0000000D) // junk that's not
|
||||
.D64(0xF0000000) // a return address.
|
||||
|
||||
.Mark(&frame1_fp) // Next fp will point to the next value.
|
||||
.D64(frame2_fp) // Save current frame pointer.
|
||||
.D64(return_address2) // Save current link register.
|
||||
.Mark(&frame1_sp)
|
||||
|
||||
// frame 1
|
||||
.Append(64, 0) // Whatever values on the stack.
|
||||
.D64(0x0000000D) // junk that's not
|
||||
.D64(0xF0000000) // a return address.
|
||||
|
||||
.Mark(&frame2_fp)
|
||||
.D64(0)
|
||||
.D64(0)
|
||||
.Mark(&frame2_sp)
|
||||
|
||||
// frame 2
|
||||
.Append(64, 0) // Whatever values on the stack.
|
||||
.D64(0x0000000D) // junk that's not
|
||||
.D64(0xF0000000); // a return address.
|
||||
RegionFromSection();
|
||||
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.ra = return_address1;
|
||||
raw_context.s0 = frame1_fp.Value();
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context,
|
||||
&stack_region, &modules, &frame_symbolizer);
|
||||
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(2U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ("module2", modules_without_symbols[1]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(3U, frames->size());
|
||||
|
||||
StackFrameRISCV64 *frame0 = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV64::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
|
||||
StackFrameRISCV64 *frame1 = static_cast<StackFrameRISCV64*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_FP, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_RA |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address1, frame1->context.pc);
|
||||
EXPECT_EQ(return_address2, frame1->context.ra);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
EXPECT_EQ(frame2_fp.Value(), frame1->context.s0);
|
||||
|
||||
StackFrameRISCV64 *frame2 = static_cast<StackFrameRISCV64*>(frames->at(2));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_FP, frame2->trust);
|
||||
ASSERT_EQ((StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_RA |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP),
|
||||
frame2->context_validity);
|
||||
EXPECT_EQ(return_address2, frame2->context.pc);
|
||||
EXPECT_EQ(0U, frame2->context.ra);
|
||||
EXPECT_EQ(frame2_sp.Value(), frame2->context.sp);
|
||||
EXPECT_EQ(0U, frame2->context.s0);
|
||||
}
|
||||
|
||||
struct CFIFixture: public StackwalkerRISCV64Fixture {
|
||||
CFIFixture() {
|
||||
// Provide a bunch of STACK CFI records; we'll walk to the caller
|
||||
// from every point in this series, expecting to find the same set
|
||||
// of register values.
|
||||
SetModuleSymbols(&module1,
|
||||
// The youngest frame's function.
|
||||
"FUNC 4000 1000 10 enchiridion\n"
|
||||
// Initially, nothing has been pushed on the stack,
|
||||
// and the return address is still in the return
|
||||
// address register (ra).
|
||||
"STACK CFI INIT 4000 100 .cfa: sp 0 + .ra: ra\n"
|
||||
// Push s1, s2, the frame pointer (s0) and the
|
||||
// return address register.
|
||||
"STACK CFI 4001 .cfa: sp 32 + .ra: .cfa -8 + ^"
|
||||
" s1: .cfa -32 + ^ s2: .cfa -24 + ^ "
|
||||
" s0: .cfa -16 + ^\n"
|
||||
// Save s1..s4 in a1..a4: verify that we populate
|
||||
// the youngest frame with all the values we have.
|
||||
"STACK CFI 4002 s1: a1 s2: a2 s3: a3 s4: a4\n"
|
||||
// Restore s1..s4. Save the non-callee-saves register a2.
|
||||
"STACK CFI 4003 .cfa: sp 40 + a2: .cfa 40 - ^"
|
||||
" s1: s1 s2: s2 s3: s3 s4: s4\n"
|
||||
// Move the .cfa back eight bytes, to point at the return
|
||||
// address, and restore the sp explicitly.
|
||||
"STACK CFI 4005 .cfa: sp 32 + a2: .cfa 32 - ^"
|
||||
" s0: .cfa 8 - ^ .ra: .cfa ^ sp: .cfa 8 +\n"
|
||||
// Recover the PC explicitly from a new stack slot;
|
||||
// provide garbage for the .ra.
|
||||
"STACK CFI 4006 .cfa: sp 40 + pc: .cfa 40 - ^\n"
|
||||
|
||||
// The calling function.
|
||||
"FUNC 5000 1000 10 epictetus\n"
|
||||
// Mark it as end of stack.
|
||||
"STACK CFI INIT 5000 1000 .cfa: 0 .ra: 0\n"
|
||||
|
||||
// A function whose CFI makes the stack pointer
|
||||
// go backwards.
|
||||
"FUNC 6000 1000 20 palinal\n"
|
||||
"STACK CFI INIT 6000 1000 .cfa: sp 8 - .ra: ra\n"
|
||||
|
||||
// A function with CFI expressions that can't be
|
||||
// evaluated.
|
||||
"FUNC 7000 1000 20 rhetorical\n"
|
||||
"STACK CFI INIT 7000 1000 .cfa: moot .ra: ambiguous\n");
|
||||
|
||||
// Provide some distinctive values for the caller's registers.
|
||||
expected.pc = 0x0000000040005510L;
|
||||
expected.sp = 0x0000000080000000L;
|
||||
expected.s1 = 0x5e68b5d5b5d55e68L;
|
||||
expected.s2 = 0x34f3ebd1ebd134f3L;
|
||||
expected.s3 = 0x74bca31ea31e74bcL;
|
||||
expected.s4 = 0x16b32dcb2dcb16b3L;
|
||||
expected.s5 = 0x21372ada2ada2137L;
|
||||
expected.s6 = 0x557dbbbbbbbb557dL;
|
||||
expected.s7 = 0x8ca748bf48bf8ca7L;
|
||||
expected.s8 = 0x21f0ab46ab4621f0L;
|
||||
expected.s9 = 0x146732b732b71467L;
|
||||
expected.s10 = 0xa673645fa673645fL;
|
||||
expected.s11 = 0xa673645fa673645fL;
|
||||
expected.s0 = 0xe11081128112e110L;
|
||||
|
||||
// Expect CFI to recover all callee-saves registers. Since CFI is the
|
||||
// only stack frame construction technique we have, aside from the
|
||||
// context frame itself, there's no way for us to have a set of valid
|
||||
// registers smaller than this.
|
||||
expected_validity = (StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S1 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S2 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S3 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S4 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S5 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S6 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S7 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S8 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S9 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S10 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S11 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0);
|
||||
|
||||
// By default, context frames provide all registers, as normal.
|
||||
context_frame_validity = StackFrameRISCV64::CONTEXT_VALID_ALL;
|
||||
|
||||
// By default, registers are unchanged.
|
||||
raw_context = expected;
|
||||
}
|
||||
|
||||
// Walk the stack, using stack_section as the contents of the stack
|
||||
// and raw_context as the current register values. (Set the stack
|
||||
// pointer to the stack's starting address.) Expect two stack
|
||||
// frames; in the older frame, expect the callee-saves registers to
|
||||
// have values matching those in 'expected'.
|
||||
void CheckWalk() {
|
||||
RegionFromSection();
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
walker.SetContextFrameValidity(context_frame_validity);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(2U, frames->size());
|
||||
|
||||
StackFrameRISCV64 *frame0 = static_cast<StackFrameRISCV64*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(context_frame_validity, frame0->context_validity);
|
||||
EXPECT_EQ("enchiridion", frame0->function_name);
|
||||
EXPECT_EQ(0x0000000040004000UL, frame0->function_base);
|
||||
|
||||
StackFrameRISCV64 *frame1 = static_cast<StackFrameRISCV64*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CFI, frame1->trust);
|
||||
ASSERT_EQ(expected_validity, frame1->context_validity);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_A2)
|
||||
EXPECT_EQ(expected.a2, frame1->context.a2);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S1)
|
||||
EXPECT_EQ(expected.s1, frame1->context.s1);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S2)
|
||||
EXPECT_EQ(expected.s2, frame1->context.s2);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S3)
|
||||
EXPECT_EQ(expected.s3, frame1->context.s3);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S4)
|
||||
EXPECT_EQ(expected.s4, frame1->context.s4);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S5)
|
||||
EXPECT_EQ(expected.s5, frame1->context.s5);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S6)
|
||||
EXPECT_EQ(expected.s6, frame1->context.s6);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S7)
|
||||
EXPECT_EQ(expected.s7, frame1->context.s7);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S8)
|
||||
EXPECT_EQ(expected.s8, frame1->context.s8);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S9)
|
||||
EXPECT_EQ(expected.s9, frame1->context.s9);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S10)
|
||||
EXPECT_EQ(expected.s10, frame1->context.s10);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S11)
|
||||
EXPECT_EQ(expected.s11, frame1->context.s11);
|
||||
if (expected_validity & StackFrameRISCV64::CONTEXT_VALID_S0)
|
||||
EXPECT_EQ(expected.s0, frame1->context.s0);
|
||||
|
||||
// We would never have gotten a frame in the first place if the SP
|
||||
// and PC weren't valid or ->instruction weren't set.
|
||||
EXPECT_EQ(expected.sp, frame1->context.sp);
|
||||
EXPECT_EQ(expected.pc, frame1->context.pc);
|
||||
EXPECT_EQ(expected.pc, frame1->instruction + 4);
|
||||
EXPECT_EQ("epictetus", frame1->function_name);
|
||||
}
|
||||
|
||||
// The values we expect to find for the caller's registers.
|
||||
MDRawContextRISCV64 expected;
|
||||
|
||||
// The validity mask for expected.
|
||||
int expected_validity;
|
||||
|
||||
// The validity mask to impose on the context frame.
|
||||
int context_frame_validity;
|
||||
};
|
||||
|
||||
class CFI: public CFIFixture, public Test { };
|
||||
|
||||
TEST_F(CFI, At4000) {
|
||||
stack_section.start() = expected.sp;
|
||||
raw_context.pc = 0x0000000040004000L;
|
||||
raw_context.ra = 0x0000000040005510L;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
TEST_F(CFI, At4001) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0x5e68b5d5b5d55e68L) // saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0x0000000040005510L) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x0000000040004001L;
|
||||
// distinct callee s1, s2 and s0
|
||||
raw_context.s1 = 0xadc9f635a635adc9L;
|
||||
raw_context.s2 = 0x623135ac35ac6231L;
|
||||
raw_context.s0 = 0x5fc4be14be145fc4L;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// As above, but unwind from a context that has only the PC and SP.
|
||||
TEST_F(CFI, At4001LimitedValidity) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0x5e68b5d5b5d55e68L) // saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0x0000000040005510L) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
context_frame_validity = StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP;
|
||||
raw_context.pc = 0x0000000040004001L;
|
||||
raw_context.s0 = 0x5fc4be14be145fc4L;
|
||||
|
||||
expected_validity = (StackFrameRISCV64::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV64::CONTEXT_VALID_SP |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S1 |
|
||||
StackFrameRISCV64::CONTEXT_VALID_S2);
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
TEST_F(CFI, At4002) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0xff3dfb81fb81ff3dL) // no longer saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // no longer saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0x0000000040005510L) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x0000000040004002L;
|
||||
raw_context.a1 = 0x5e68b5d5b5d55e68L; // saved s1
|
||||
raw_context.a2 = 0x34f3ebd1ebd134f3L; // saved s2
|
||||
raw_context.a3 = 0x74bca31ea31e74bcL; // saved s3
|
||||
raw_context.a4 = 0x16b32dcb2dcb16b3L; // saved s4
|
||||
raw_context.s1 = 0xadc9f635a635adc9L; // distinct callee s1
|
||||
raw_context.s2 = 0x623135ac35ac6231L; // distinct callee s2
|
||||
raw_context.s3 = 0xac4543564356ac45L; // distinct callee s3
|
||||
raw_context.s4 = 0x2561562f562f2561L; // distinct callee s4
|
||||
// distinct callee s0
|
||||
raw_context.s0 = 0x5fc4be14be145fc4L;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
TEST_F(CFI, At4003) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0xdd5a48c848c8dd5aL) // saved a2 (even though it's not callee-saves)
|
||||
.D64(0xff3dfb81fb81ff3dL) // no longer saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // no longer saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0x0000000040005510L) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x0000000040004003L;
|
||||
// distinct callee a2 and fp
|
||||
raw_context.a2 = 0xfb756319fb756319L;
|
||||
raw_context.s0 = 0x5fc4be14be145fc4L;
|
||||
// caller's a2
|
||||
expected.a2 = 0xdd5a48c848c8dd5aL;
|
||||
expected_validity |= StackFrameRISCV64::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// We have no new rule at module offset 0x4004, so the results here should
|
||||
// be the same as those at module offset 0x4003.
|
||||
TEST_F(CFI, At4004) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0xdd5a48c848c8dd5aL) // saved a2 (even though it's not callee-saves)
|
||||
.D64(0xff3dfb81fb81ff3dL) // no longer saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // no longer saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0x0000000040005510L) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x0000000040004004L;
|
||||
// distinct callee a2 and s0
|
||||
raw_context.a2 = 0xfb756319fb756319L;
|
||||
raw_context.s0 = 0x5fc4be14be145fc4L;
|
||||
// caller's a2
|
||||
expected.a2 = 0xdd5a48c848c8dd5aL;
|
||||
expected_validity |= StackFrameRISCV64::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// Here we move the .cfa, but provide an explicit rule to recover the SP,
|
||||
// so again there should be no change in the registers recovered.
|
||||
TEST_F(CFI, At4005) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0xdd5a48c848c8dd5aL) // saved a2 (even though it's not callee-saves)
|
||||
.D64(0xff3dfb81fb81ff3dL) // no longer saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // no longer saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0x0000000040005510L) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x0000000040004005L;
|
||||
raw_context.a2 = 0xfb756319fb756319L; // distinct callee a2
|
||||
expected.a2 = 0xdd5a48c848c8dd5aL; // caller's a2
|
||||
expected_validity |= StackFrameRISCV64::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// Here we provide an explicit rule for the PC, and have the saved .ra be
|
||||
// bogus.
|
||||
TEST_F(CFI, At4006) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D64(0x0000000040005510L) // saved pc
|
||||
.D64(0xdd5a48c848c8dd5aL) // saved a2 (even though it's not callee-saves)
|
||||
.D64(0xff3dfb81fb81ff3dL) // no longer saved s1
|
||||
.D64(0x34f3ebd1ebd134f3L) // no longer saved s2
|
||||
.D64(0xe11081128112e110L) // saved s0
|
||||
.D64(0xf8d157835783f8d1L) // .ra rule recovers this, which is garbage
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x0000000040004006L;
|
||||
raw_context.a2 = 0xfb756319fb756319L; // distinct callee a2
|
||||
expected.a2 = 0xdd5a48c848c8dd5aL; // caller's a2
|
||||
expected_validity |= StackFrameRISCV64::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// Check that we reject rules that would cause the stack pointer to
|
||||
// move in the wrong direction.
|
||||
TEST_F(CFI, RejectBackwards) {
|
||||
raw_context.pc = 0x0000000040006000L;
|
||||
raw_context.sp = 0x0000000080000000L;
|
||||
raw_context.ra = 0x0000000040005510L;
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
}
|
||||
|
||||
// Check that we reject rules whose expressions' evaluation fails.
|
||||
TEST_F(CFI, RejectBadExpressions) {
|
||||
raw_context.pc = 0x0000000040007000L;
|
||||
raw_context.sp = 0x0000000080000000L;
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV64 walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
}
|
||||
883
src/processor/stackwalker_riscv_unittest.cc
Normal file
883
src/processor/stackwalker_riscv_unittest.cc
Normal file
|
|
@ -0,0 +1,883 @@
|
|||
// Copyright 2013 Google LLC
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
/* stackwalker_riscv_unittest.cc: Unit tests for StackwalkerRISCV class.
|
||||
*
|
||||
* Author: Iacopo Colonnelli
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "breakpad_googletest_includes.h"
|
||||
#include "common/test_assembler.h"
|
||||
#include "common/using_std_string.h"
|
||||
#include "google_breakpad/common/minidump_format.h"
|
||||
#include "google_breakpad/processor/basic_source_line_resolver.h"
|
||||
#include "google_breakpad/processor/call_stack.h"
|
||||
#include "google_breakpad/processor/code_module.h"
|
||||
#include "google_breakpad/processor/source_line_resolver_interface.h"
|
||||
#include "google_breakpad/processor/stack_frame_cpu.h"
|
||||
#include "processor/stackwalker_unittest_utils.h"
|
||||
#include "processor/stackwalker_riscv.h"
|
||||
#include "processor/windows_frame_info.h"
|
||||
|
||||
using google_breakpad::BasicSourceLineResolver;
|
||||
using google_breakpad::CallStack;
|
||||
using google_breakpad::CodeModule;
|
||||
using google_breakpad::StackFrameSymbolizer;
|
||||
using google_breakpad::StackFrame;
|
||||
using google_breakpad::StackFrameRISCV;
|
||||
using google_breakpad::Stackwalker;
|
||||
using google_breakpad::StackwalkerRISCV;
|
||||
using google_breakpad::SystemInfo;
|
||||
using google_breakpad::WindowsFrameInfo;
|
||||
using google_breakpad::test_assembler::kLittleEndian;
|
||||
using google_breakpad::test_assembler::Label;
|
||||
using google_breakpad::test_assembler::Section;
|
||||
using std::vector;
|
||||
using testing::_;
|
||||
using testing::AnyNumber;
|
||||
using testing::DoAll;
|
||||
using testing::Return;
|
||||
using testing::SetArgumentPointee;
|
||||
using testing::Test;
|
||||
|
||||
class StackwalkerRISCVFixture {
|
||||
public:
|
||||
StackwalkerRISCVFixture()
|
||||
: stack_section(kLittleEndian),
|
||||
// Give the two modules reasonable standard locations and names
|
||||
// for tests to play with.
|
||||
module1(0x40000000, 0x10000, "module1", "version1"),
|
||||
module2(0x50000000, 0x10000, "module2", "version2") {
|
||||
// Identify the system as an iOS system.
|
||||
system_info.os = "iOS";
|
||||
system_info.os_short = "ios";
|
||||
system_info.cpu = "riscv";
|
||||
system_info.cpu_info = "";
|
||||
|
||||
// Put distinctive values in the raw CPU context.
|
||||
BrandContext(&raw_context);
|
||||
|
||||
// Create some modules with some stock debugging information.
|
||||
modules.Add(&module1);
|
||||
modules.Add(&module2);
|
||||
|
||||
// By default, none of the modules have symbol info; call
|
||||
// SetModuleSymbols to override this.
|
||||
EXPECT_CALL(supplier, GetCStringSymbolData(_, _, _, _, _))
|
||||
.WillRepeatedly(Return(MockSymbolSupplier::NOT_FOUND));
|
||||
|
||||
// Avoid GMOCK WARNING "Uninteresting mock function call - returning
|
||||
// directly" for FreeSymbolData().
|
||||
EXPECT_CALL(supplier, FreeSymbolData(_)).Times(AnyNumber());
|
||||
|
||||
// Reset max_frames_scanned since it's static.
|
||||
Stackwalker::set_max_frames_scanned(1024);
|
||||
}
|
||||
|
||||
// Set the Breakpad symbol information that supplier should return for
|
||||
// MODULE to INFO.
|
||||
void SetModuleSymbols(MockCodeModule* module, const string& info) {
|
||||
size_t buffer_size;
|
||||
char *buffer = supplier.CopySymbolDataAndOwnTheCopy(info, &buffer_size);
|
||||
EXPECT_CALL(supplier, GetCStringSymbolData(module, &system_info, _, _, _))
|
||||
.WillRepeatedly(DoAll(SetArgumentPointee<3>(buffer),
|
||||
SetArgumentPointee<4>(buffer_size),
|
||||
Return(MockSymbolSupplier::FOUND)));
|
||||
}
|
||||
|
||||
// Populate stack_region with the contents of stack_section. Use
|
||||
// stack_section.start() as the region's starting address.
|
||||
void RegionFromSection() {
|
||||
string contents;
|
||||
ASSERT_TRUE(stack_section.GetContents(&contents));
|
||||
stack_region.Init(stack_section.start().Value(), contents);
|
||||
}
|
||||
|
||||
// Fill RAW_CONTEXT with pseudo-random data, for round-trip checking.
|
||||
void BrandContext(MDRawContextRISCV *raw_context) {
|
||||
uint8_t x = 173;
|
||||
for (size_t i = 0; i < sizeof(*raw_context); i++)
|
||||
reinterpret_cast<uint8_t*>(raw_context)[i] = (x += 17);
|
||||
}
|
||||
|
||||
SystemInfo system_info;
|
||||
MDRawContextRISCV raw_context;
|
||||
Section stack_section;
|
||||
MockMemoryRegion stack_region;
|
||||
MockCodeModule module1;
|
||||
MockCodeModule module2;
|
||||
MockCodeModules modules;
|
||||
MockSymbolSupplier supplier;
|
||||
BasicSourceLineResolver resolver;
|
||||
CallStack call_stack;
|
||||
const vector<StackFrame*>* frames;
|
||||
};
|
||||
|
||||
class SanityCheck: public StackwalkerRISCVFixture, public Test { };
|
||||
|
||||
TEST_F(SanityCheck, NoResolver) {
|
||||
// Since the context's frame pointer is garbage, the stack walk will end after
|
||||
// the first frame.
|
||||
StackFrameSymbolizer frame_symbolizer(NULL, NULL);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
// This should succeed even without a resolver or supplier.
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
StackFrameRISCV *frame = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
// Check that the values from the original raw context made it
|
||||
// through to the context in the stack frame.
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame->context, sizeof(raw_context)));
|
||||
}
|
||||
|
||||
class GetContextFrame: public StackwalkerRISCVFixture, public Test { };
|
||||
|
||||
// The stackwalker should be able to produce the context frame even
|
||||
// without stack memory present.
|
||||
TEST_F(GetContextFrame, NoStackMemory) {
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, NULL, &modules,
|
||||
&frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
StackFrameRISCV *frame = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
// Check that the values from the original raw context made it
|
||||
// through to the context in the stack frame.
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame->context, sizeof(raw_context)));
|
||||
}
|
||||
|
||||
class GetCallerFrame: public StackwalkerRISCVFixture, public Test { };
|
||||
|
||||
TEST_F(GetCallerFrame, ScanWithoutSymbols) {
|
||||
// When the stack walker resorts to scanning the stack,
|
||||
// only addresses located within loaded modules are
|
||||
// considered valid return addresses.
|
||||
// Force scanning through three frames to ensure that the
|
||||
// stack pointer is set properly in scan-recovered frames.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(8, 0) // space
|
||||
|
||||
.D32(0x40090000) // junk that's not
|
||||
.D32(0x60000000) // a return address
|
||||
|
||||
.D32(return_address1) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(8, 0) // space
|
||||
|
||||
.D32(0xF0000000) // more junk
|
||||
.D32(0x0000000D)
|
||||
|
||||
.D32(return_address2) // actual return address
|
||||
// frame 2
|
||||
.Mark(&frame2_sp)
|
||||
.Append(32, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(2U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ("module2", modules_without_symbols[1]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(3U, frames->size());
|
||||
|
||||
StackFrameRISCV *frame0 = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
|
||||
StackFrameRISCV *frame1 = static_cast<StackFrameRISCV*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address1, frame1->context.pc);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
|
||||
StackFrameRISCV *frame2 = static_cast<StackFrameRISCV*>(frames->at(2));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame2->trust);
|
||||
ASSERT_EQ((StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP),
|
||||
frame2->context_validity);
|
||||
EXPECT_EQ(return_address2, frame2->context.pc);
|
||||
EXPECT_EQ(frame2_sp.Value(), frame2->context.sp);
|
||||
}
|
||||
|
||||
TEST_F(GetCallerFrame, ScanWithFunctionSymbols) {
|
||||
// During stack scanning, if a potential return address
|
||||
// is located within a loaded module that has symbols,
|
||||
// it is only considered a valid return address if it
|
||||
// lies within a function's bounds.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address = 0x50000200;
|
||||
Label frame1_sp;
|
||||
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(8, 0) // space
|
||||
|
||||
.D32(0x40090000) // junk that's not
|
||||
.D32(0x60000000) // a return address
|
||||
|
||||
.D32(0x40001000) // a couple of plausible addresses
|
||||
.D32(0x5000F000) // that are not within functions
|
||||
|
||||
.D32(return_address) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(32, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40000200;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
SetModuleSymbols(&module1,
|
||||
// The youngest frame's function.
|
||||
"FUNC 100 400 10 monotreme\n");
|
||||
SetModuleSymbols(&module2,
|
||||
// The calling frame's function.
|
||||
"FUNC 100 400 10 marsupial\n");
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(2U, frames->size());
|
||||
|
||||
StackFrameRISCV *frame0 = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
EXPECT_EQ("monotreme", frame0->function_name);
|
||||
EXPECT_EQ(0x40000100UL, frame0->function_base);
|
||||
|
||||
StackFrameRISCV *frame1 = static_cast<StackFrameRISCV*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address, frame1->context.pc);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
EXPECT_EQ("marsupial", frame1->function_name);
|
||||
EXPECT_EQ(0x50000100UL, frame1->function_base);
|
||||
}
|
||||
|
||||
TEST_F(GetCallerFrame, ScanFirstFrame) {
|
||||
// If the stackwalker resorts to stack scanning, it will scan much
|
||||
// farther to find the caller of the context frame.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D32(0x40090000) // junk that's not
|
||||
.D32(0x60000000) // a return address
|
||||
|
||||
.Append(48, 0) // more space
|
||||
|
||||
.D32(return_address1) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(16, 0) // space
|
||||
|
||||
.D32(0xF0000000) // more junk
|
||||
.D32(0x0000000D)
|
||||
|
||||
.Append(168, 0) // more space
|
||||
|
||||
.D32(return_address2) // actual return address
|
||||
// (won't be found)
|
||||
// frame 2
|
||||
.Mark(&frame2_sp)
|
||||
.Append(32, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(2U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ("module2", modules_without_symbols[1]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(2U, frames->size());
|
||||
|
||||
StackFrameRISCV *frame0 = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
|
||||
StackFrameRISCV *frame1 = static_cast<StackFrameRISCV*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_SCAN, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address1, frame1->context.pc);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
}
|
||||
|
||||
// Test that set_max_frames_scanned prevents using stack scanning
|
||||
// to find caller frames.
|
||||
TEST_F(GetCallerFrame, ScanningNotAllowed) {
|
||||
// When the stack walker resorts to scanning the stack,
|
||||
// only addresses located within loaded modules are
|
||||
// considered valid return addresses.
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(8, 0) // space
|
||||
|
||||
.D32(0x40090000) // junk that's not
|
||||
.D32(0x60000000) // a return address
|
||||
|
||||
.D32(return_address1) // actual return address
|
||||
// frame 1
|
||||
.Mark(&frame1_sp)
|
||||
.Append(8, 0) // space
|
||||
|
||||
.D32(0xF0000000) // more junk
|
||||
.D32(0x0000000D)
|
||||
|
||||
.D32(return_address2) // actual return address
|
||||
// frame 2
|
||||
.Mark(&frame2_sp)
|
||||
.Append(32, 0); // end of stack
|
||||
RegionFromSection();
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
Stackwalker::set_max_frames_scanned(0);
|
||||
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(1U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
|
||||
StackFrameRISCV *frame0 = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
}
|
||||
|
||||
class GetFramesByFramePointer:
|
||||
public StackwalkerRISCVFixture,
|
||||
public Test { };
|
||||
|
||||
TEST_F(GetFramesByFramePointer, OnlyFramePointer) {
|
||||
stack_section.start() = 0x80000000;
|
||||
uint64_t return_address1 = 0x50000100;
|
||||
uint64_t return_address2 = 0x50000900;
|
||||
Label frame1_sp, frame2_sp;
|
||||
Label frame1_fp, frame2_fp;
|
||||
stack_section
|
||||
// frame 0
|
||||
.Append(32, 0) // Whatever values on the stack.
|
||||
.D32(0x0000000D) // junk that's not
|
||||
.D32(0xF0000000) // a return address.
|
||||
|
||||
.Mark(&frame1_fp) // Next fp will point to the next value.
|
||||
.D32(frame2_fp) // Save current frame pointer.
|
||||
.D32(return_address2) // Save current link register.
|
||||
.Mark(&frame1_sp)
|
||||
|
||||
// frame 1
|
||||
.Append(32, 0) // Whatever values on the stack.
|
||||
.D32(0x0000000D) // junk that's not
|
||||
.D32(0xF0000000) // a return address.
|
||||
|
||||
.Mark(&frame2_fp)
|
||||
.D32(0)
|
||||
.D32(0)
|
||||
.Mark(&frame2_sp)
|
||||
|
||||
// frame 2
|
||||
.Append(32, 0) // Whatever values on the stack.
|
||||
.D32(0x0000000D) // junk that's not
|
||||
.D32(0xF0000000); // a return address.
|
||||
RegionFromSection();
|
||||
|
||||
|
||||
raw_context.pc = 0x40005510;
|
||||
raw_context.ra = return_address1;
|
||||
raw_context.s0 = frame1_fp.Value();
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context,
|
||||
&stack_region, &modules, &frame_symbolizer);
|
||||
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(2U, modules_without_symbols.size());
|
||||
ASSERT_EQ("module1", modules_without_symbols[0]->debug_file());
|
||||
ASSERT_EQ("module2", modules_without_symbols[1]->debug_file());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(3U, frames->size());
|
||||
|
||||
StackFrameRISCV *frame0 = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(StackFrameRISCV::CONTEXT_VALID_ALL,
|
||||
frame0->context_validity);
|
||||
EXPECT_EQ(0, memcmp(&raw_context, &frame0->context, sizeof(raw_context)));
|
||||
|
||||
StackFrameRISCV *frame1 = static_cast<StackFrameRISCV*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_FP, frame1->trust);
|
||||
ASSERT_EQ((StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_RA |
|
||||
StackFrameRISCV::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP),
|
||||
frame1->context_validity);
|
||||
EXPECT_EQ(return_address1, frame1->context.pc);
|
||||
EXPECT_EQ(return_address2, frame1->context.ra);
|
||||
EXPECT_EQ(frame1_sp.Value(), frame1->context.sp);
|
||||
EXPECT_EQ(frame2_fp.Value(), frame1->context.s0);
|
||||
|
||||
StackFrameRISCV *frame2 = static_cast<StackFrameRISCV*>(frames->at(2));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_FP, frame2->trust);
|
||||
ASSERT_EQ((StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_RA |
|
||||
StackFrameRISCV::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP),
|
||||
frame2->context_validity);
|
||||
EXPECT_EQ(return_address2, frame2->context.pc);
|
||||
EXPECT_EQ(0U, frame2->context.ra);
|
||||
EXPECT_EQ(frame2_sp.Value(), frame2->context.sp);
|
||||
EXPECT_EQ(0U, frame2->context.s0);
|
||||
}
|
||||
|
||||
struct CFIFixture: public StackwalkerRISCVFixture {
|
||||
CFIFixture() {
|
||||
// Provide a bunch of STACK CFI records; we'll walk to the caller
|
||||
// from every point in this series, expecting to find the same set
|
||||
// of register values.
|
||||
SetModuleSymbols(&module1,
|
||||
// The youngest frame's function.
|
||||
"FUNC 4000 1000 10 enchiridion\n"
|
||||
// Initially, nothing has been pushed on the stack,
|
||||
// and the return address is still in the return
|
||||
// address register (ra).
|
||||
"STACK CFI INIT 4000 100 .cfa: sp 0 + .ra: ra\n"
|
||||
// Push s1, s2, the frame pointer (s0) and the
|
||||
// return address register.
|
||||
"STACK CFI 4001 .cfa: sp 16 + .ra: .cfa -4 + ^"
|
||||
" s1: .cfa -16 + ^ s2: .cfa -12 + ^ "
|
||||
" s0: .cfa -8 + ^\n"
|
||||
// Save s1..s4 in a1..a4: verify that we populate
|
||||
// the youngest frame with all the values we have.
|
||||
"STACK CFI 4002 s1: a1 s2: a2 s3: a3 s4: a4\n"
|
||||
// Restore s1..s4. Save the non-callee-saves register a2.
|
||||
"STACK CFI 4003 .cfa: sp 20 + a2: .cfa 20 - ^"
|
||||
" s1: s1 s2: s2 s3: s3 s4: s4\n"
|
||||
// Move the .cfa back eight bytes, to point at the return
|
||||
// address, and restore the sp explicitly.
|
||||
"STACK CFI 4005 .cfa: sp 16 + a2: .cfa 16 - ^"
|
||||
" s0: .cfa 4 - ^ .ra: .cfa ^ sp: .cfa 4 +\n"
|
||||
// Recover the PC explicitly from a new stack slot;
|
||||
// provide garbage for the .ra.
|
||||
"STACK CFI 4006 .cfa: sp 20 + pc: .cfa 20 - ^\n"
|
||||
|
||||
// The calling function.
|
||||
"FUNC 5000 1000 10 epictetus\n"
|
||||
// Mark it as end of stack.
|
||||
"STACK CFI INIT 5000 1000 .cfa: 0 .ra: 0\n"
|
||||
|
||||
// A function whose CFI makes the stack pointer
|
||||
// go backwards.
|
||||
"FUNC 6000 1000 20 palinal\n"
|
||||
"STACK CFI INIT 6000 1000 .cfa: sp 4 - .ra: ra\n"
|
||||
|
||||
// A function with CFI expressions that can't be
|
||||
// evaluated.
|
||||
"FUNC 7000 1000 20 rhetorical\n"
|
||||
"STACK CFI INIT 7000 1000 .cfa: moot .ra: ambiguous\n");
|
||||
|
||||
// Provide some distinctive values for the caller's registers.
|
||||
expected.pc = 0x40005510;
|
||||
expected.sp = 0x80000000;
|
||||
expected.s1 = 0xb5d55e68;
|
||||
expected.s2 = 0xebd134f3;
|
||||
expected.s3 = 0xa31e74bc;
|
||||
expected.s4 = 0x2dcb16b3;
|
||||
expected.s5 = 0x2ada2137;
|
||||
expected.s6 = 0xbbbb557d;
|
||||
expected.s7 = 0x48bf8ca7;
|
||||
expected.s8 = 0xab4621f0;
|
||||
expected.s9 = 0x32b71467;
|
||||
expected.s10 = 0xa673645f;
|
||||
expected.s11 = 0xa673645f;
|
||||
expected.s0 = 0x8112e110;
|
||||
|
||||
// Expect CFI to recover all callee-saves registers. Since CFI is the
|
||||
// only stack frame construction technique we have, aside from the
|
||||
// context frame itself, there's no way for us to have a set of valid
|
||||
// registers smaller than this.
|
||||
expected_validity = (StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP |
|
||||
StackFrameRISCV::CONTEXT_VALID_S1 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S2 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S3 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S4 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S5 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S6 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S7 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S8 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S9 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S10 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S11 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S0);
|
||||
|
||||
// By default, context frames provide all registers, as normal.
|
||||
context_frame_validity = StackFrameRISCV::CONTEXT_VALID_ALL;
|
||||
|
||||
// By default, registers are unchanged.
|
||||
raw_context = expected;
|
||||
}
|
||||
|
||||
// Walk the stack, using stack_section as the contents of the stack
|
||||
// and raw_context as the current register values. (Set the stack
|
||||
// pointer to the stack's starting address.) Expect two stack
|
||||
// frames; in the older frame, expect the callee-saves registers to
|
||||
// have values matching those in 'expected'.
|
||||
void CheckWalk() {
|
||||
RegionFromSection();
|
||||
raw_context.sp = stack_section.start().Value();
|
||||
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
walker.SetContextFrameValidity(context_frame_validity);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(2U, frames->size());
|
||||
|
||||
StackFrameRISCV *frame0 = static_cast<StackFrameRISCV*>(frames->at(0));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CONTEXT, frame0->trust);
|
||||
ASSERT_EQ(context_frame_validity, frame0->context_validity);
|
||||
EXPECT_EQ("enchiridion", frame0->function_name);
|
||||
EXPECT_EQ(0x40004000U, frame0->function_base);
|
||||
|
||||
StackFrameRISCV *frame1 = static_cast<StackFrameRISCV*>(frames->at(1));
|
||||
EXPECT_EQ(StackFrame::FRAME_TRUST_CFI, frame1->trust);
|
||||
ASSERT_EQ(expected_validity, frame1->context_validity);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_A2)
|
||||
EXPECT_EQ(expected.a2, frame1->context.a2);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S1)
|
||||
EXPECT_EQ(expected.s1, frame1->context.s1);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S2)
|
||||
EXPECT_EQ(expected.s2, frame1->context.s2);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S3)
|
||||
EXPECT_EQ(expected.s3, frame1->context.s3);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S4)
|
||||
EXPECT_EQ(expected.s4, frame1->context.s4);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S5)
|
||||
EXPECT_EQ(expected.s5, frame1->context.s5);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S6)
|
||||
EXPECT_EQ(expected.s6, frame1->context.s6);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S7)
|
||||
EXPECT_EQ(expected.s7, frame1->context.s7);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S8)
|
||||
EXPECT_EQ(expected.s8, frame1->context.s8);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S9)
|
||||
EXPECT_EQ(expected.s9, frame1->context.s9);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S10)
|
||||
EXPECT_EQ(expected.s10, frame1->context.s10);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S11)
|
||||
EXPECT_EQ(expected.s11, frame1->context.s11);
|
||||
if (expected_validity & StackFrameRISCV::CONTEXT_VALID_S0)
|
||||
EXPECT_EQ(expected.s0, frame1->context.s0);
|
||||
|
||||
// We would never have gotten a frame in the first place if the SP
|
||||
// and PC weren't valid or ->instruction weren't set.
|
||||
EXPECT_EQ(expected.sp, frame1->context.sp);
|
||||
EXPECT_EQ(expected.pc, frame1->context.pc);
|
||||
EXPECT_EQ(expected.pc, frame1->instruction + 4);
|
||||
EXPECT_EQ("epictetus", frame1->function_name);
|
||||
}
|
||||
|
||||
// The values we expect to find for the caller's registers.
|
||||
MDRawContextRISCV expected;
|
||||
|
||||
// The validity mask for expected.
|
||||
int expected_validity;
|
||||
|
||||
// The validity mask to impose on the context frame.
|
||||
int context_frame_validity;
|
||||
};
|
||||
|
||||
class CFI: public CFIFixture, public Test { };
|
||||
|
||||
TEST_F(CFI, At4000) {
|
||||
stack_section.start() = expected.sp;
|
||||
raw_context.pc = 0x40004000;
|
||||
raw_context.ra = 0x40005510;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
TEST_F(CFI, At4001) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0xb5d55e68) // saved s1
|
||||
.D32(0xebd134f3) // saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x40005510) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x40004001;
|
||||
// distinct callee s1, s2 and s0
|
||||
raw_context.s1 = 0xa635adc9;
|
||||
raw_context.s2 = 0x35ac6231;
|
||||
raw_context.s0 = 0xbe145fc4;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// As above, but unwind from a context that has only the PC and SP.
|
||||
TEST_F(CFI, At4001LimitedValidity) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0xb5d55e68) // saved s1
|
||||
.D32(0xebd134f3) // saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x40005510) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
context_frame_validity = StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP;
|
||||
raw_context.pc = 0x40004001;
|
||||
raw_context.s0 = 0xbe145fc4;
|
||||
|
||||
expected_validity = (StackFrameRISCV::CONTEXT_VALID_PC |
|
||||
StackFrameRISCV::CONTEXT_VALID_SP |
|
||||
StackFrameRISCV::CONTEXT_VALID_S0 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S1 |
|
||||
StackFrameRISCV::CONTEXT_VALID_S2);
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
TEST_F(CFI, At4002) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0xfb81ff3d) // no longer saved s1
|
||||
.D32(0xebd134f3) // no longer saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x40005510) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x40004002;
|
||||
raw_context.a1 = 0xb5d55e68; // saved a1
|
||||
raw_context.a2 = 0xebd134f3; // saved a2
|
||||
raw_context.a3 = 0xa31e74bc; // saved a3
|
||||
raw_context.a4 = 0x2dcb16b3; // saved a4
|
||||
raw_context.s1 = 0xa635adc9; // distinct callee s1
|
||||
raw_context.s2 = 0x35ac6231; // distinct callee s2
|
||||
raw_context.s3 = 0x4356ac45; // distinct callee s3
|
||||
raw_context.s4 = 0x562f2561; // distinct callee s4
|
||||
// distinct callee s0
|
||||
raw_context.s0 = 0xbe145fc4;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
TEST_F(CFI, At4003) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0x48c8dd5a) // saved a2 (even though it's not callee-saves)
|
||||
.D32(0xfb81ff3d) // no longer saved s1
|
||||
.D32(0xebd134f3) // no longer saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x40005510) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x40004003;
|
||||
// distinct callee a2 and fp
|
||||
raw_context.a2 = 0xfb756319;
|
||||
raw_context.s0 = 0xbe145fc4;
|
||||
// caller's a2
|
||||
expected.a2 = 0x48c8dd5a;
|
||||
expected_validity |= StackFrameRISCV::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// We have no new rule at module offset 0x4004, so the results here should
|
||||
// be the same as those at module offset 0x4003.
|
||||
TEST_F(CFI, At4004) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0x48c8dd5a) // saved a2 (even though it's not callee-saves)
|
||||
.D32(0xfb81ff3d) // no longer saved s1
|
||||
.D32(0xebd134f3) // no longer saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x40005510) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x40004004;
|
||||
// distinct callee a2 and s0
|
||||
raw_context.a2 = 0xfb756319;
|
||||
raw_context.s0 = 0xbe145fc4;
|
||||
// caller's a2
|
||||
expected.a2 = 0x48c8dd5a;
|
||||
expected_validity |= StackFrameRISCV::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// Here we move the .cfa, but provide an explicit rule to recover the SP,
|
||||
// so again there should be no change in the registers recovered.
|
||||
TEST_F(CFI, At4005) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0x48c8dd5a) // saved a2 (even though it's not callee-saves)
|
||||
.D32(0xfb81ff3d) // no longer saved s1
|
||||
.D32(0xebd134f3) // no longer saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x40005510) // return address
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x40004005;
|
||||
raw_context.a2 = 0xfb756319; // distinct callee a2
|
||||
expected.a2 = 0x48c8dd5a; // caller's a2
|
||||
expected_validity |= StackFrameRISCV::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// Here we provide an explicit rule for the PC, and have the saved .ra be
|
||||
// bogus.
|
||||
TEST_F(CFI, At4006) {
|
||||
Label frame1_sp = expected.sp;
|
||||
stack_section
|
||||
.D32(0x40005510) // saved pc
|
||||
.D32(0x48c8dd5a) // saved a2 (even though it's not callee-saves)
|
||||
.D32(0xfb81ff3d) // no longer saved s1
|
||||
.D32(0xebd134f3) // no longer saved s2
|
||||
.D32(0x8112e110) // saved s0
|
||||
.D32(0x5783f8d1) // .ra rule recovers this, which is garbage
|
||||
.Mark(&frame1_sp); // This effectively sets stack_section.start().
|
||||
raw_context.pc = 0x40004006;
|
||||
raw_context.a2 = 0xfb756319; // distinct callee a2
|
||||
expected.a2 = 0x48c8dd5a; // caller's a2
|
||||
expected_validity |= StackFrameRISCV::CONTEXT_VALID_A2;
|
||||
CheckWalk();
|
||||
}
|
||||
|
||||
// Check that we reject rules that would cause the stack pointer to
|
||||
// move in the wrong direction.
|
||||
TEST_F(CFI, RejectBackwards) {
|
||||
raw_context.pc = 0x40006000;
|
||||
raw_context.sp = 0x80000000;
|
||||
raw_context.ra = 0x40005510;
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
}
|
||||
|
||||
// Check that we reject rules whose expressions' evaluation fails.
|
||||
TEST_F(CFI, RejectBadExpressions) {
|
||||
raw_context.pc = 0x40007000;
|
||||
raw_context.sp = 0x80000000;
|
||||
StackFrameSymbolizer frame_symbolizer(&supplier, &resolver);
|
||||
StackwalkerRISCV walker(&system_info, &raw_context, &stack_region,
|
||||
&modules, &frame_symbolizer);
|
||||
vector<const CodeModule*> modules_without_symbols;
|
||||
vector<const CodeModule*> modules_with_corrupt_symbols;
|
||||
ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
|
||||
&modules_with_corrupt_symbols));
|
||||
ASSERT_EQ(0U, modules_without_symbols.size());
|
||||
ASSERT_EQ(0U, modules_with_corrupt_symbols.size());
|
||||
frames = call_stack.frames();
|
||||
ASSERT_EQ(1U, frames->size());
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue