2016-04-26 22:06:19 +02:00
|
|
|
/*
|
2016-07-05 16:24:00 +02:00
|
|
|
* This file is part of Luma3DS
|
|
|
|
* Copyright (C) 2016 Aurora Wright, TuxSH
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that 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/>.
|
|
|
|
*
|
|
|
|
* Additional Terms 7.b of GPLv3 applies to this file: Requiring preservation of specified
|
|
|
|
* reasonable legal notices or author attributions in that material or in the Appropriate Legal
|
|
|
|
* Notices displayed by works containing it.
|
2016-04-26 22:06:19 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "exceptions.h"
|
|
|
|
#include "fs.h"
|
2016-08-30 21:02:45 +02:00
|
|
|
#include "strings.h"
|
2016-04-26 22:06:19 +02:00
|
|
|
#include "memory.h"
|
2016-06-11 00:00:53 +02:00
|
|
|
#include "screen.h"
|
2016-05-03 17:05:19 +02:00
|
|
|
#include "draw.h"
|
2016-04-26 22:06:19 +02:00
|
|
|
#include "utils.h"
|
2016-09-23 02:06:04 +02:00
|
|
|
#include "../build/bundled.h"
|
2016-06-02 22:33:44 +02:00
|
|
|
|
2016-04-26 22:06:19 +02:00
|
|
|
void installArm9Handlers(void)
|
|
|
|
{
|
2016-09-23 02:06:04 +02:00
|
|
|
memcpy((void *)0x01FF8000, arm9_exceptions_bin + 32, arm9_exceptions_bin_size - 32);
|
2016-06-03 21:38:35 +02:00
|
|
|
|
2016-09-03 02:02:03 +02:00
|
|
|
/* IRQHandler is at 0x08000000, but we won't handle it for some reasons
|
|
|
|
svcHandler is at 0x08000010, but we won't handle svc either */
|
2016-05-28 22:05:07 +02:00
|
|
|
|
2016-09-19 18:21:28 +02:00
|
|
|
const u32 offsets[] = {0x08, 0x18, 0x20, 0x28};
|
|
|
|
|
2016-05-28 22:05:07 +02:00
|
|
|
for(u32 i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
*(vu32 *)(0x08000000 + offsets[i]) = 0xE51FF004;
|
2016-09-23 02:06:04 +02:00
|
|
|
*(vu32 *)(0x08000000 + offsets[i] + 4) = *((u32 *)arm9_exceptions_bin + 1 + i);
|
2016-05-28 22:05:07 +02:00
|
|
|
}
|
2016-04-26 22:06:19 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 23:11:15 +01:00
|
|
|
u32 installArm11Handlers(u32 *exceptionsPage, u32 stackAddress, u32 codeSetOffset, u32 *dAbtHandler, u32 dAbtHandlerMemAddress)
|
2016-06-02 22:33:44 +02:00
|
|
|
{
|
2016-10-10 15:53:56 +02:00
|
|
|
u32 *endPos = exceptionsPage + 0x400;
|
|
|
|
|
2016-06-02 22:33:44 +02:00
|
|
|
u32 *initFPU;
|
2016-11-12 13:18:24 +01:00
|
|
|
for(initFPU = exceptionsPage; initFPU < endPos && *initFPU != 0xE1A0D002; initFPU++);
|
2016-10-10 01:34:53 +02:00
|
|
|
|
|
|
|
u32 *freeSpace;
|
2016-11-12 13:18:24 +01:00
|
|
|
for(freeSpace = initFPU; freeSpace < endPos && *freeSpace != 0xFFFFFFFF; freeSpace++);
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-06-02 22:33:44 +02:00
|
|
|
u32 *mcuReboot;
|
2016-11-12 13:18:24 +01:00
|
|
|
for(mcuReboot = exceptionsPage; mcuReboot < endPos && *mcuReboot != 0xE3A0A0C2; mcuReboot++);
|
2016-10-10 02:19:15 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
if(initFPU == endPos || freeSpace == endPos || mcuReboot == endPos || *(u32 *)((u8 *)freeSpace + arm11_exceptions_bin_size - 36) != 0xFFFFFFFF) return 1;
|
|
|
|
|
|
|
|
initFPU += 3;
|
|
|
|
mcuReboot -= 2;
|
2016-06-02 22:33:44 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
memcpy(freeSpace, arm11_exceptions_bin + 32, arm11_exceptions_bin_size - 32);
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
exceptionsPage[1] = MAKE_BRANCH(exceptionsPage + 1, (u8 *)freeSpace + *(u32 *)(arm11_exceptions_bin + 8) - 32); //Undefined Instruction
|
|
|
|
exceptionsPage[3] = MAKE_BRANCH(exceptionsPage + 3, (u8 *)freeSpace + *(u32 *)(arm11_exceptions_bin + 12) - 32); //Prefetch Abort
|
|
|
|
exceptionsPage[7] = MAKE_BRANCH(exceptionsPage + 7, (u8 *)freeSpace + *(u32 *)(arm11_exceptions_bin + 4) - 32); //FIQ
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-12-22 23:11:15 +01:00
|
|
|
for(u32 *pos = dAbtHandler; *pos != stackAddress; pos++)
|
|
|
|
{
|
|
|
|
u32 va_dst = 0xFFFF0000 + (((u8 *)freeSpace + *(u32 *)(arm11_exceptions_bin + 4)) - (u8 *)exceptionsPage);
|
|
|
|
u32 va_src;
|
|
|
|
switch(*pos)
|
|
|
|
{
|
|
|
|
case 0xF96D0513: //srsdb sp!, 0x13
|
|
|
|
va_src = dAbtHandlerMemAddress + ((u8 *)pos - (u8 *)dAbtHandler);
|
|
|
|
*pos = MAKE_BRANCH((u8 *)va_src, (u8 *)va_dst);
|
|
|
|
break;
|
|
|
|
case 0xE29EF004: //subs pc, lr, 4
|
|
|
|
pos++;
|
|
|
|
*pos++ = 0xE8BD000F;// pop {r0-r3}
|
|
|
|
va_src = dAbtHandlerMemAddress + ((u8 *)pos - (u8 *)dAbtHandler);
|
|
|
|
*pos = MAKE_BRANCH((u8 *)va_src, (u8 *)va_dst);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
for(u32 *pos = freeSpace; pos < (u32 *)((u8 *)freeSpace + arm11_exceptions_bin_size - 32); pos++)
|
|
|
|
{
|
|
|
|
switch(*pos) //Perform relocations
|
2016-06-02 22:33:44 +02:00
|
|
|
{
|
2016-12-22 23:11:15 +01:00
|
|
|
case 0xFFFF3000: *pos = stackAddress - 0x10; break;
|
2016-11-15 19:29:48 +01:00
|
|
|
case 0xEBFFFFFE: *pos = MAKE_BRANCH_LINK(pos, initFPU); break;
|
|
|
|
case 0xEAFFFFFE: *pos = MAKE_BRANCH(pos, mcuReboot); break;
|
|
|
|
case 0xE12FFF1C: pos[1] = 0xFFFF0000 + 4 * (u32)(freeSpace - exceptionsPage) + pos[1] - 32; break; //bx r12 (mainHandler)
|
|
|
|
case 0xBEEFBEEF: *pos = codeSetOffset; break;
|
2016-06-02 22:33:44 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-10 01:34:53 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
return 0;
|
2016-06-02 22:33:44 +02:00
|
|
|
}
|
|
|
|
|
2016-04-26 22:06:19 +02:00
|
|
|
void detectAndProcessExceptionDumps(void)
|
|
|
|
{
|
2016-06-08 21:44:04 +02:00
|
|
|
volatile ExceptionDumpHeader *dumpHeader = (volatile ExceptionDumpHeader *)0x25000000;
|
2016-04-26 22:06:19 +02:00
|
|
|
|
2016-11-15 20:18:28 +01:00
|
|
|
if(dumpHeader->magic[0] != 0xDEADC0DE || dumpHeader->magic[1] != 0xDEADCAFE || (dumpHeader->processor != 9 && dumpHeader->processor != 11)) return;
|
2016-08-30 02:03:56 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
const vu32 *regs = (vu32 *)((vu8 *)dumpHeader + sizeof(ExceptionDumpHeader));
|
|
|
|
const vu8 *stackDump = (vu8 *)regs + dumpHeader->registerDumpSize + dumpHeader->codeDumpSize;
|
|
|
|
const vu8 *additionalData = stackDump + dumpHeader->stackDumpSize;
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-12-22 23:11:15 +01:00
|
|
|
const char *handledExceptionNames[] = {
|
2016-11-15 19:29:48 +01:00
|
|
|
"FIQ", "undefined instruction", "prefetch abort", "data abort"
|
|
|
|
};
|
2016-09-13 02:29:57 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
const char *specialExceptions[] = {
|
|
|
|
"(kernel panic)", "(svcBreak)"
|
|
|
|
};
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
const char *registerNames[] = {
|
|
|
|
"R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10", "R11", "R12",
|
|
|
|
"SP", "LR", "PC", "CPSR", "FPEXC"
|
|
|
|
};
|
2016-08-30 02:03:56 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
char hexString[] = "00000000";
|
2016-05-03 17:05:19 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
initScreens();
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
drawString("An exception occurred", true, 10, 10, COLOR_RED);
|
|
|
|
u32 posY = drawString(dumpHeader->processor == 11 ? "Processor: ARM11 (core )" : "Processor: ARM9", true, 10, 30, COLOR_WHITE);
|
|
|
|
if(dumpHeader->processor == 11) drawCharacter('0' + dumpHeader->core, true, 10 + 29 * SPACING_X, 30, COLOR_WHITE);
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
posY = drawString("Exception type: ", true, 10, posY + SPACING_Y, COLOR_WHITE);
|
|
|
|
drawString(handledExceptionNames[dumpHeader->type], true, 10 + 17 * SPACING_X, posY, COLOR_WHITE);
|
2016-08-12 15:17:19 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
if(dumpHeader->type == 2)
|
|
|
|
{
|
|
|
|
if((regs[16] & 0x20) == 0 && dumpHeader->codeDumpSize >= 4)
|
2016-06-07 19:25:45 +02:00
|
|
|
{
|
2016-11-17 15:38:28 +01:00
|
|
|
u32 instr = *(vu32 *)(stackDump - 4);
|
|
|
|
if(instr == 0xE12FFF7E) drawString(specialExceptions[0], true, 10 + 32 * SPACING_X, posY, COLOR_WHITE);
|
|
|
|
else if(instr == 0xEF00003C) drawString(specialExceptions[1], true, 10 + 32 * SPACING_X, posY, COLOR_WHITE);
|
2016-06-07 19:25:45 +02:00
|
|
|
}
|
2016-11-26 14:07:48 +01:00
|
|
|
else if((regs[16] & 0x20) != 0 && dumpHeader->codeDumpSize >= 2)
|
2016-05-06 22:50:01 +02:00
|
|
|
{
|
2016-11-17 15:38:28 +01:00
|
|
|
u16 instr = *(vu16 *)(stackDump - 2);
|
|
|
|
if(instr == 0xDF3C) drawString(specialExceptions[1], true, 10 + 32 * SPACING_X, posY, COLOR_WHITE);
|
2016-05-06 22:50:01 +02:00
|
|
|
}
|
2016-11-15 19:29:48 +01:00
|
|
|
}
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
if(dumpHeader->processor == 11 && dumpHeader->additionalDataSize != 0)
|
|
|
|
{
|
2017-04-27 22:17:19 +02:00
|
|
|
char processName[45] = "Current process: ";
|
|
|
|
memcpy(processName + 17, (void *)additionalData, 8);
|
2017-04-27 22:32:46 +02:00
|
|
|
hexItoa(*(vu32 *)(additionalData + 12), hexString, 8, true);
|
2017-04-27 22:17:19 +02:00
|
|
|
concatenateStrings(processName, " (");
|
|
|
|
concatenateStrings(processName, hexString);
|
2017-04-27 22:32:46 +02:00
|
|
|
hexItoa(*(vu32 *)(additionalData + 8), hexString, 8, true);
|
2017-04-27 22:17:19 +02:00
|
|
|
concatenateStrings(processName, hexString);
|
|
|
|
concatenateStrings(processName, ")");
|
2016-11-15 19:29:48 +01:00
|
|
|
posY = drawString(processName, true, 10, posY + SPACING_Y, COLOR_WHITE);
|
|
|
|
}
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
posY += SPACING_Y;
|
2016-09-03 02:02:03 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
for(u32 i = 0; i < 17; i += 2)
|
|
|
|
{
|
|
|
|
posY = drawString(registerNames[i], true, 10, posY + SPACING_Y, COLOR_WHITE);
|
|
|
|
hexItoa(regs[i], hexString, 8, true);
|
|
|
|
drawString(hexString, true, 10 + 7 * SPACING_X, posY, COLOR_WHITE);
|
2016-09-13 01:43:44 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
if(i != 16 || dumpHeader->processor != 9)
|
2016-09-13 00:52:15 +02:00
|
|
|
{
|
2016-11-17 15:38:28 +01:00
|
|
|
drawString(registerNames[i + 1], true, 10 + 22 * SPACING_X, posY, COLOR_WHITE);
|
|
|
|
hexItoa(i == 16 ? regs[20] : regs[i + 1], hexString, 8, true);
|
|
|
|
drawString(hexString, true, 10 + 29 * SPACING_X, posY, COLOR_WHITE);
|
2016-09-13 00:52:15 +02:00
|
|
|
}
|
2016-11-15 19:29:48 +01:00
|
|
|
}
|
2016-09-13 00:52:15 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
posY += SPACING_Y;
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
u32 mode = regs[16] & 0xF;
|
|
|
|
if(dumpHeader->type == 3 && (mode == 7 || mode == 11))
|
|
|
|
posY = drawString("Incorrect dump: failed to dump code and/or stack", true, 10, posY + SPACING_Y, COLOR_YELLOW) + SPACING_Y;
|
|
|
|
|
|
|
|
u32 posYBottom = drawString("Stack dump:", false, 10, 10, COLOR_WHITE) + SPACING_Y;
|
|
|
|
|
|
|
|
for(u32 line = 0; line < 19 && stackDump < additionalData; line++)
|
|
|
|
{
|
|
|
|
hexItoa(regs[13] + 8 * line, hexString, 8, true);
|
|
|
|
posYBottom = drawString(hexString, false, 10, posYBottom + SPACING_Y, COLOR_WHITE);
|
|
|
|
drawCharacter(':', false, 10 + 8 * SPACING_X, posYBottom, COLOR_WHITE);
|
2016-08-30 02:03:56 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
for(u32 i = 0; i < 8 && stackDump < additionalData; i++, stackDump++)
|
2016-09-06 19:17:45 +02:00
|
|
|
{
|
2016-11-17 15:38:28 +01:00
|
|
|
char byteString[] = "00";
|
|
|
|
hexItoa(*stackDump, byteString, 2, false);
|
|
|
|
drawString(byteString, false, 10 + 10 * SPACING_X + 3 * i * SPACING_X, posYBottom, COLOR_WHITE);
|
2016-09-06 19:17:45 +02:00
|
|
|
}
|
2016-11-15 19:29:48 +01:00
|
|
|
}
|
2016-08-30 02:03:56 +02:00
|
|
|
|
2016-11-26 22:46:46 +01:00
|
|
|
char path[36] = "dumps/",
|
|
|
|
fileName[] = "crash_dump_00000000.dmp";
|
2016-09-06 19:17:45 +02:00
|
|
|
|
2016-11-26 22:46:46 +01:00
|
|
|
concatenateStrings(path, dumpHeader->processor == 9 ? "arm9" : "arm11");
|
|
|
|
findDumpFile(path, fileName);
|
2016-11-15 19:29:48 +01:00
|
|
|
concatenateStrings(path, "/");
|
|
|
|
concatenateStrings(path, fileName);
|
2016-09-06 19:17:45 +02:00
|
|
|
|
2016-11-15 19:29:48 +01:00
|
|
|
if(fileWrite((void *)dumpHeader, path, dumpHeader->totalSize))
|
|
|
|
{
|
|
|
|
posY = drawString("You can find a dump in the following file:", true, 10, posY + SPACING_Y, COLOR_WHITE);
|
|
|
|
posY = drawString(path, true, 10, posY + SPACING_Y, COLOR_WHITE) + SPACING_Y;
|
2016-04-26 22:06:19 +02:00
|
|
|
}
|
2016-11-15 19:29:48 +01:00
|
|
|
else posY = drawString("Error writing the dump file", true, 10, posY + SPACING_Y, COLOR_RED);
|
|
|
|
|
|
|
|
drawString("Press any button to shutdown", true, 10, posY + SPACING_Y, COLOR_WHITE);
|
|
|
|
|
|
|
|
memset32((void *)dumpHeader, 0, dumpHeader->totalSize);
|
|
|
|
|
|
|
|
waitInput(false);
|
|
|
|
mcuPowerOff();
|
2016-12-22 23:11:15 +01:00
|
|
|
}
|