2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-06-25 10:04:17 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
2018-06-26 07:44:58 +01:00
|
|
|
#include <cstdio>
|
2018-06-25 10:04:17 +01:00
|
|
|
|
|
|
|
#include "creport_debug_types.hpp"
|
2018-07-28 04:34:09 +01:00
|
|
|
#include "creport_code_info.hpp"
|
2018-06-25 10:04:17 +01:00
|
|
|
|
|
|
|
struct FpuReg {
|
|
|
|
u64 _[2]; /* TODO: uint128? */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DebugThreadContext {
|
|
|
|
union {
|
|
|
|
u64 x[0x20];
|
|
|
|
struct {
|
|
|
|
u64 _x[29];
|
|
|
|
u64 fp;
|
|
|
|
u64 lr;
|
|
|
|
u64 sp;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
u64 pc;
|
|
|
|
u32 psr;
|
|
|
|
/* 32-bits of padding. */
|
|
|
|
FpuReg fpu_reg[0x20];
|
|
|
|
u32 fpcr;
|
|
|
|
u32 fpsr;
|
|
|
|
u64 tpidr;
|
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(DebugThreadContext) == 0x320, "Incorrect DebugThreadContext Definition!");
|
|
|
|
|
|
|
|
class ThreadInfo {
|
|
|
|
private:
|
2018-07-02 15:26:03 +01:00
|
|
|
DebugThreadContext context{};
|
|
|
|
u64 thread_id = 0;
|
|
|
|
u64 stack_top = 0;
|
|
|
|
u64 stack_bottom = 0;
|
|
|
|
u64 stack_trace[0x20]{};
|
|
|
|
u32 stack_trace_size = 0;
|
2018-07-28 04:34:09 +01:00
|
|
|
CodeList *code_list;
|
2018-07-02 15:26:03 +01:00
|
|
|
public:
|
2018-06-25 11:38:54 +01:00
|
|
|
u64 GetPC() { return context.pc; }
|
|
|
|
u64 GetLR() { return context.lr; }
|
2018-06-26 07:44:58 +01:00
|
|
|
u64 GetId() { return thread_id; }
|
2018-06-25 11:38:54 +01:00
|
|
|
|
2018-06-25 10:04:17 +01:00
|
|
|
bool ReadFromProcess(Handle debug_handle, u64 thread_id, bool is_64_bit);
|
2018-06-26 07:44:58 +01:00
|
|
|
void SaveToFile(FILE *f_report);
|
|
|
|
void DumpBinary(FILE *f_bin);
|
2018-07-28 04:34:09 +01:00
|
|
|
void SetCodeList(CodeList *cl) { this->code_list = cl; }
|
2018-06-25 11:07:44 +01:00
|
|
|
private:
|
|
|
|
void TryGetStackInfo(Handle debug_handle);
|
|
|
|
};
|
|
|
|
|
|
|
|
class ThreadList {
|
|
|
|
private:
|
|
|
|
static const size_t max_thread_count = 0x60;
|
2018-07-02 15:26:03 +01:00
|
|
|
u32 thread_count = 0;
|
2018-06-25 11:07:44 +01:00
|
|
|
ThreadInfo thread_infos[max_thread_count];
|
2018-07-02 15:26:03 +01:00
|
|
|
public:
|
2018-06-26 07:44:58 +01:00
|
|
|
void SaveToFile(FILE *f_report);
|
|
|
|
void DumpBinary(FILE *f_bin, u64 crashed_id);
|
2018-06-25 11:07:44 +01:00
|
|
|
void ReadThreadsFromProcess(Handle debug_handle, bool is_64_bit);
|
2018-07-28 04:34:09 +01:00
|
|
|
void SetCodeList(CodeList *cl) {
|
|
|
|
for (u32 i = 0; i < thread_count; i++) {
|
|
|
|
thread_infos[i].SetCodeList(cl);
|
|
|
|
}
|
|
|
|
}
|
2018-06-25 11:07:44 +01:00
|
|
|
};
|