2015-08-05 03:57:37 +02:00
|
|
|
/*
|
|
|
|
* firm.c
|
|
|
|
* by Reisyukaku
|
2015-08-15 04:28:26 +02:00
|
|
|
* Copyright (c) 2015 All Rights Reserved
|
2015-08-05 03:57:37 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "firm.h"
|
|
|
|
#include "patches.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "fs.h"
|
|
|
|
#include "emunand.h"
|
2015-08-21 20:11:23 +02:00
|
|
|
#include "crypto.h"
|
2016-02-29 16:28:43 +01:00
|
|
|
#include "draw.h"
|
2016-03-08 15:13:55 +01:00
|
|
|
#include "loader.h"
|
2015-08-05 03:57:37 +02:00
|
|
|
|
2016-03-10 14:58:11 +01:00
|
|
|
static firmHeader *const firmLocation = (firmHeader *)0x24000000;
|
|
|
|
static const firmSectionHeader *section;
|
|
|
|
static u32 firmSize = 0,
|
|
|
|
mode = 1,
|
|
|
|
console = 1,
|
|
|
|
emuNAND = 0,
|
|
|
|
a9lhSetup = 0,
|
|
|
|
updatedSys = 0,
|
|
|
|
usePatchedFirm = 0;
|
|
|
|
static u16 pressed;
|
|
|
|
static const char *firmPathPatched = NULL;
|
2015-08-05 03:57:37 +02:00
|
|
|
|
2016-02-25 20:19:20 +01:00
|
|
|
void setupCFW(void){
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-13 16:48:57 +01:00
|
|
|
//Determine if booting with A9LH
|
|
|
|
u32 a9lhBoot = (PDN_SPI_CNT == 0x0) ? 1 : 0;
|
|
|
|
//Retrieve the last booted FIRM
|
|
|
|
u8 previousFirm = CFG_BOOTENV;
|
2016-03-06 18:29:47 +01:00
|
|
|
u32 overrideConfig = 0;
|
2016-03-20 01:00:45 +01:00
|
|
|
const char lastConfigPath[] = "aurei/lastbootcfg";
|
2016-03-05 15:35:06 +01:00
|
|
|
|
2016-02-19 21:32:07 +01:00
|
|
|
//Detect the console being used
|
2016-02-08 03:37:03 +01:00
|
|
|
if(PDN_MPCORE_CFG == 1) console = 0;
|
2016-02-25 20:19:20 +01:00
|
|
|
|
2016-02-19 21:32:07 +01:00
|
|
|
//Get pressed buttons
|
2016-02-08 03:37:03 +01:00
|
|
|
pressed = HID_PAD;
|
2016-02-25 20:19:20 +01:00
|
|
|
|
2016-03-05 20:22:31 +01:00
|
|
|
//Determine if A9LH is installed
|
2016-03-20 01:00:45 +01:00
|
|
|
if(a9lhBoot || fileExists("/aurei/installeda9lh")){
|
2016-02-19 21:32:07 +01:00
|
|
|
a9lhSetup = 1;
|
|
|
|
//Check flag for > 9.2 SysNAND
|
2016-03-20 01:00:45 +01:00
|
|
|
if(fileExists("/aurei/updatedsysnand")) updatedSys = 1;
|
2016-02-19 21:32:07 +01:00
|
|
|
}
|
|
|
|
|
2016-03-05 20:22:31 +01:00
|
|
|
//If booting with A9LH and it's a MCU reboot, try to force boot options
|
|
|
|
if(a9lhBoot && previousFirm && fileExists(lastConfigPath)){
|
2016-03-05 15:35:06 +01:00
|
|
|
u8 tempConfig;
|
2016-03-06 16:24:42 +01:00
|
|
|
fileRead(&tempConfig, lastConfigPath, 1);
|
2016-03-05 15:35:06 +01:00
|
|
|
|
|
|
|
//Always force a sysNAND boot when quitting AGB_FIRM
|
2016-03-17 00:08:13 +01:00
|
|
|
if(previousFirm == 0x7){
|
2016-03-05 18:47:47 +01:00
|
|
|
if(!updatedSys) mode = tempConfig & 0x1;
|
2016-03-05 15:35:06 +01:00
|
|
|
overrideConfig = 1;
|
2016-03-05 20:22:31 +01:00
|
|
|
//Else, force the last used boot options unless A is pressed
|
2016-03-17 00:08:13 +01:00
|
|
|
} else if(!(pressed & BUTTON_A)){
|
2016-03-05 15:35:06 +01:00
|
|
|
mode = tempConfig & 0x1;
|
|
|
|
emuNAND = (tempConfig >> 1) & 0x1;
|
|
|
|
overrideConfig = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!overrideConfig){
|
|
|
|
|
2016-03-08 15:13:55 +01:00
|
|
|
//If L and R are pressed, chainload an external payload
|
|
|
|
if(a9lhBoot && (pressed & BUTTON_L1R1) == BUTTON_L1R1) loadPayload();
|
|
|
|
|
2016-03-13 16:48:57 +01:00
|
|
|
//Check if it's a no-screen-init A9LH boot
|
|
|
|
if(PDN_GPU_CNT != 0x1) loadSplash();
|
2016-03-09 14:59:20 +01:00
|
|
|
|
2016-03-05 15:35:06 +01:00
|
|
|
/* If L is pressed, and on an updated SysNAND setup the SAFE MODE combo
|
|
|
|
is not pressed, boot 9.0 FIRM */
|
|
|
|
if((pressed & BUTTON_L1) && !(updatedSys && pressed == SAFEMODE)) mode = 0;
|
2016-03-04 23:43:22 +01:00
|
|
|
|
2016-03-05 15:35:06 +01:00
|
|
|
/* If L or R aren't pressed on a 9.0/9.2 SysNAND, or the 9.0 FIRM is selected
|
|
|
|
or R is pressed on a > 9.2 SysNAND, boot emuNAND */
|
|
|
|
if((updatedSys && (!mode || ((pressed & BUTTON_R1) && pressed != SAFEMODE))) ||
|
2016-03-17 00:08:13 +01:00
|
|
|
(!updatedSys && mode && !(pressed & BUTTON_R1))){
|
|
|
|
//If not 9.0 FIRM and B is pressed, attempt booting the second emuNAND
|
|
|
|
if(mode && (pressed & BUTTON_B)) emuNAND = 2;
|
|
|
|
else emuNAND = 1;
|
|
|
|
}
|
2016-03-05 15:35:06 +01:00
|
|
|
|
|
|
|
//Write the current boot options on A9LH
|
2016-03-05 20:22:31 +01:00
|
|
|
if(a9lhBoot){
|
2016-03-05 15:35:06 +01:00
|
|
|
u8 tempConfig = (mode | (emuNAND << 1)) & 0x3;
|
2016-03-06 16:24:42 +01:00
|
|
|
fileWrite(&tempConfig, lastConfigPath, 1);
|
2016-03-05 15:35:06 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-04 23:43:22 +01:00
|
|
|
|
2016-03-20 01:00:45 +01:00
|
|
|
if(mode) firmPathPatched = emuNAND ? (emuNAND == 1 ? "/aurei/patched_firmware_emu.bin" :
|
|
|
|
"/aurei/patched_firmware_em2.bin") :
|
|
|
|
"/aurei/patched_firmware_sys.bin";
|
2016-03-04 23:43:22 +01:00
|
|
|
|
|
|
|
//Skip decrypting and patching FIRM
|
2016-03-20 01:00:45 +01:00
|
|
|
if(fileExists("/aurei/usepatchedfw")){
|
2016-03-04 23:43:22 +01:00
|
|
|
//Only needed with this flag
|
2016-03-20 01:00:45 +01:00
|
|
|
if(!mode) firmPathPatched = "/aurei/patched_firmware90.bin";
|
2016-03-05 18:47:47 +01:00
|
|
|
if(fileExists(firmPathPatched)) usePatchedFirm = 1;
|
2016-03-04 23:43:22 +01:00
|
|
|
}
|
2016-02-25 20:19:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//Load firm into FCRAM
|
2016-03-06 18:29:47 +01:00
|
|
|
u32 loadFirm(void){
|
2016-02-19 01:29:53 +01:00
|
|
|
|
2016-03-04 23:43:22 +01:00
|
|
|
//If not using an A9LH setup or the patched FIRM, load 9.0 FIRM from NAND
|
|
|
|
if(!usePatchedFirm && !a9lhSetup && !mode){
|
2016-02-08 03:37:03 +01:00
|
|
|
//Read FIRM from NAND and write to FCRAM
|
2016-02-11 00:45:24 +01:00
|
|
|
firmSize = console ? 0xF2000 : 0xE9000;
|
2016-03-06 18:29:47 +01:00
|
|
|
nandFirm0((u8 *)firmLocation, firmSize, console);
|
2016-02-25 20:19:20 +01:00
|
|
|
//Check for correct decryption
|
2016-03-06 18:29:47 +01:00
|
|
|
if(memcmp(firmLocation, "FIRM", 4) != 0) return 0;
|
2016-02-08 03:37:03 +01:00
|
|
|
}
|
2016-02-19 04:53:19 +01:00
|
|
|
//Load FIRM from SD
|
2016-02-08 03:37:03 +01:00
|
|
|
else{
|
2016-03-06 16:24:42 +01:00
|
|
|
const char *path = usePatchedFirm ? firmPathPatched :
|
2016-03-20 01:00:45 +01:00
|
|
|
(mode ? "/aurei/firmware.bin" : "/aurei/firmware90.bin");
|
2016-03-04 23:43:22 +01:00
|
|
|
firmSize = fileSize(path);
|
2016-03-05 23:27:02 +01:00
|
|
|
if(!firmSize) return 0;
|
2016-03-06 18:29:47 +01:00
|
|
|
fileRead((u8 *)firmLocation, path, firmSize);
|
2016-02-08 03:37:03 +01:00
|
|
|
}
|
2016-02-25 20:19:20 +01:00
|
|
|
|
|
|
|
section = firmLocation->section;
|
|
|
|
|
|
|
|
//Check that the loaded FIRM matches the console
|
2016-03-05 23:27:02 +01:00
|
|
|
if((((u32)section[2].address >> 8) & 0xFF) != (console ? 0x60 : 0x68)) return 0;
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-04 23:43:22 +01:00
|
|
|
if(console && !usePatchedFirm)
|
2016-03-06 19:05:41 +01:00
|
|
|
decArm9Bin((u8 *)firmLocation + section[2].offset, mode);
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-05 23:27:02 +01:00
|
|
|
return 1;
|
2015-08-05 11:54:00 +02:00
|
|
|
}
|
|
|
|
|
2015-08-21 20:11:23 +02:00
|
|
|
//Nand redirection
|
2016-03-10 14:58:11 +01:00
|
|
|
static u32 loadEmu(void){
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-14 14:51:30 +01:00
|
|
|
u32 emuOffset = 1,
|
|
|
|
emuHeader = 1,
|
2016-03-11 15:08:05 +01:00
|
|
|
emuRead,
|
|
|
|
emuWrite,
|
|
|
|
sdmmcOffset,
|
|
|
|
mpuOffset,
|
|
|
|
emuCodeOffset;
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2015-08-21 20:11:23 +02:00
|
|
|
//Read emunand code from SD
|
2016-03-20 01:00:45 +01:00
|
|
|
const char path[] = "/aurei/emunand/emunand.bin";
|
2016-02-20 15:29:32 +01:00
|
|
|
u32 size = fileSize(path);
|
2016-03-05 23:27:02 +01:00
|
|
|
if(!size) return 0;
|
2016-03-21 03:20:15 +01:00
|
|
|
getEmuCode(firmLocation, &emuCodeOffset, firmSize);
|
2016-03-06 18:29:47 +01:00
|
|
|
fileRead((u8 *)emuCodeOffset, path, size);
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-01-23 09:53:45 +01:00
|
|
|
//Find and patch emunand related offsets
|
2016-03-17 00:08:13 +01:00
|
|
|
getEmunandSect(&emuOffset, &emuHeader, emuNAND);
|
2016-03-21 04:39:00 +01:00
|
|
|
//No emuNAND detected
|
|
|
|
if(!emuHeader) return 0;
|
|
|
|
getSDMMC(firmLocation, &sdmmcOffset, firmSize);
|
2016-01-23 09:53:45 +01:00
|
|
|
getEmuRW(firmLocation, firmSize, &emuRead, &emuWrite);
|
2016-02-08 03:37:03 +01:00
|
|
|
getMPU(firmLocation, &mpuOffset, firmSize);
|
2016-03-21 04:39:00 +01:00
|
|
|
u32 *pos_offset = (u32 *)memsearch((void *)emuCodeOffset, "NAND", size, 4);
|
|
|
|
u32 *pos_header = (u32 *)memsearch((void *)emuCodeOffset, "NCSD", size, 4);
|
|
|
|
u32 *pos_sdmmc = (u32 *)memsearch((void *)emuCodeOffset, "SDMC", size, 4);
|
2016-02-08 03:37:03 +01:00
|
|
|
*pos_sdmmc = sdmmcOffset;
|
|
|
|
*pos_offset = emuOffset;
|
|
|
|
*pos_header = emuHeader;
|
2016-02-25 20:19:20 +01:00
|
|
|
|
2016-03-21 03:20:15 +01:00
|
|
|
//Calculate offset for the hooks
|
|
|
|
*(u32 *)(nandRedir + 4) = emuCodeOffset - (u32)firmLocation -
|
|
|
|
section[2].offset + (u32)section[2].address;
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2015-08-07 09:01:42 +02:00
|
|
|
//Add emunand hooks
|
2016-03-06 16:24:42 +01:00
|
|
|
memcpy((void *)emuRead, nandRedir, sizeof(nandRedir));
|
|
|
|
memcpy((void *)emuWrite, nandRedir, sizeof(nandRedir));
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-02-06 00:54:24 +01:00
|
|
|
//Set MPU for emu code region
|
2016-03-06 16:24:42 +01:00
|
|
|
memcpy((void *)mpuOffset, mpu, sizeof(mpu));
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-05 23:27:02 +01:00
|
|
|
return 1;
|
2015-08-07 09:01:42 +02:00
|
|
|
}
|
|
|
|
|
2015-08-21 20:11:23 +02:00
|
|
|
//Patches
|
2016-03-06 18:29:47 +01:00
|
|
|
u32 patchFirm(void){
|
2016-03-05 15:35:06 +01:00
|
|
|
|
|
|
|
//Skip patching
|
2016-03-05 23:27:02 +01:00
|
|
|
if(usePatchedFirm) return 1;
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-05 15:35:06 +01:00
|
|
|
//Apply emuNAND patches
|
2016-03-04 23:43:22 +01:00
|
|
|
if(emuNAND){
|
2016-03-06 03:41:07 +01:00
|
|
|
if(!loadEmu()) return 0;
|
2016-02-19 21:32:07 +01:00
|
|
|
}
|
2016-03-05 23:27:02 +01:00
|
|
|
else if(a9lhSetup){
|
2016-02-19 21:32:07 +01:00
|
|
|
//Patch FIRM partitions writes on SysNAND to protect A9LH
|
|
|
|
u32 writeOffset = 0;
|
|
|
|
getFIRMWrite(firmLocation, firmSize, &writeOffset);
|
2016-03-06 16:24:42 +01:00
|
|
|
memcpy((void *)writeOffset, FIRMblock, sizeof(FIRMblock));
|
2016-02-19 21:32:07 +01:00
|
|
|
}
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-02-25 20:19:20 +01:00
|
|
|
//Disable signature checks
|
2016-03-11 15:08:05 +01:00
|
|
|
u32 sigOffset,
|
|
|
|
sigOffset2;
|
2016-02-08 23:46:01 +01:00
|
|
|
|
2016-02-08 03:37:03 +01:00
|
|
|
getSignatures(firmLocation, firmSize, &sigOffset, &sigOffset2);
|
2016-03-06 16:24:42 +01:00
|
|
|
memcpy((void *)sigOffset, sigPat1, sizeof(sigPat1));
|
|
|
|
memcpy((void *)sigOffset2, sigPat2, sizeof(sigPat2));
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-02-26 02:41:47 +01:00
|
|
|
//Patch ARM9 entrypoint on N3DS to skip arm9loader
|
2016-03-11 15:08:05 +01:00
|
|
|
if(console)
|
|
|
|
firmLocation->arm9Entry = (u8 *)0x801B01C;
|
2016-02-26 02:41:47 +01:00
|
|
|
|
2016-03-05 15:35:06 +01:00
|
|
|
//Patch FIRM reboots, not on 9.0 FIRM as it breaks firmlaunchhax
|
2016-02-25 20:19:20 +01:00
|
|
|
if(mode){
|
2016-03-11 15:08:05 +01:00
|
|
|
u32 rebootOffset,
|
|
|
|
fOpenOffset;
|
2016-02-08 23:46:01 +01:00
|
|
|
|
2016-02-25 20:19:20 +01:00
|
|
|
//Read reboot code from SD
|
2016-03-20 01:00:45 +01:00
|
|
|
const char path[] = "/aurei/reboot/reboot.bin";
|
2016-02-20 15:32:52 +01:00
|
|
|
u32 size = fileSize(path);
|
2016-03-05 23:27:02 +01:00
|
|
|
if(!size) return 0;
|
2016-02-25 20:19:20 +01:00
|
|
|
getReboot(firmLocation, firmSize, &rebootOffset);
|
2016-03-06 18:29:47 +01:00
|
|
|
fileRead((u8 *)rebootOffset, path, size);
|
2016-02-25 20:19:20 +01:00
|
|
|
|
|
|
|
//Calculate the fOpen offset and put it in the right location
|
|
|
|
getfOpen(firmLocation, firmSize, &fOpenOffset);
|
2016-03-21 04:39:00 +01:00
|
|
|
u32 *pos_fopen = (u32 *)memsearch((void *)rebootOffset, "OPEN", size, 4);
|
2016-02-25 20:19:20 +01:00
|
|
|
*pos_fopen = fOpenOffset;
|
2016-02-08 23:46:01 +01:00
|
|
|
|
2016-03-04 23:43:22 +01:00
|
|
|
//Patch path for emuNAND-patched FIRM
|
|
|
|
if(emuNAND){
|
2016-03-06 18:29:47 +01:00
|
|
|
void *pos_path = memsearch((void *)rebootOffset, L"sy", size, 4);
|
2016-03-17 00:08:13 +01:00
|
|
|
const wchar_t *path = emuNAND == 1 ? L"emu" : L"em2";
|
|
|
|
memcpy(pos_path, path, 5);
|
2016-03-04 23:43:22 +01:00
|
|
|
}
|
2016-02-08 03:37:03 +01:00
|
|
|
}
|
|
|
|
|
2016-03-04 23:43:22 +01:00
|
|
|
//Write patched FIRM to SD if needed
|
|
|
|
if(firmPathPatched)
|
2016-03-06 18:29:47 +01:00
|
|
|
if(!fileWrite((u8 *)firmLocation, firmPathPatched, firmSize)) return 0;
|
2016-03-04 23:43:22 +01:00
|
|
|
|
2016-03-05 23:27:02 +01:00
|
|
|
return 1;
|
2015-08-05 03:57:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void launchFirm(void){
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-06 19:05:41 +01:00
|
|
|
if(console && mode) setKeyXs((u8 *)firmLocation + section[2].offset);
|
2016-03-04 23:43:22 +01:00
|
|
|
|
2015-08-05 03:57:37 +02:00
|
|
|
//Copy firm partitions to respective memory locations
|
2016-03-06 19:05:41 +01:00
|
|
|
memcpy(section[0].address, (u8 *)firmLocation + section[0].offset, section[0].size);
|
|
|
|
memcpy(section[1].address, (u8 *)firmLocation + section[1].offset, section[1].size);
|
|
|
|
memcpy(section[2].address, (u8 *)firmLocation + section[2].offset, section[2].size);
|
2016-02-29 16:28:43 +01:00
|
|
|
|
|
|
|
//Run ARM11 screen stuff
|
2016-03-10 14:58:11 +01:00
|
|
|
vu32 *const arm11 = (u32 *)0x1FFFFFF8;
|
2016-02-29 16:28:43 +01:00
|
|
|
*arm11 = (u32)shutdownLCD;
|
2016-03-06 18:29:47 +01:00
|
|
|
while(*arm11);
|
2016-03-11 15:08:05 +01:00
|
|
|
|
2016-02-29 16:28:43 +01:00
|
|
|
//Set ARM11 kernel
|
|
|
|
*arm11 = (u32)firmLocation->arm11Entry;
|
2016-03-11 15:08:05 +01:00
|
|
|
|
2015-08-05 03:57:37 +02:00
|
|
|
//Final jump to arm9 binary
|
2016-02-26 02:41:47 +01:00
|
|
|
((void (*)())firmLocation->arm9Entry)();
|
2015-08-05 03:57:37 +02:00
|
|
|
}
|