2015-08-05 03:57:37 +02:00
|
|
|
/*
|
2016-07-05 16:05:53 +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.
|
2015-08-05 03:57:37 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "firm.h"
|
2016-04-05 05:27:28 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "fs.h"
|
2015-08-05 03:57:37 +02:00
|
|
|
#include "patches.h"
|
|
|
|
#include "memory.h"
|
2016-06-13 21:14:53 +02:00
|
|
|
#include "cache.h"
|
2015-08-05 03:57:37 +02:00
|
|
|
#include "emunand.h"
|
2015-08-21 20:11:23 +02:00
|
|
|
#include "crypto.h"
|
2016-05-03 16:57:00 +02:00
|
|
|
#include "exceptions.h"
|
2016-02-29 16:28:43 +01:00
|
|
|
#include "draw.h"
|
2016-06-10 21:48:22 +02:00
|
|
|
#include "screen.h"
|
2016-03-23 02:27:53 +01:00
|
|
|
#include "buttons.h"
|
2016-08-03 14:13:26 +02:00
|
|
|
#include "pin.h"
|
2016-05-25 14:34:43 +02:00
|
|
|
#include "../build/injector.h"
|
2016-03-23 02:27:53 +01:00
|
|
|
|
2016-08-13 20:49:40 +02:00
|
|
|
extern u16 launchedFirmTIDLow[8]; //defined in start.s
|
|
|
|
|
2016-03-27 19:19:35 +02:00
|
|
|
static firmHeader *const firm = (firmHeader *)0x24000000;
|
2016-03-10 14:58:11 +01:00
|
|
|
static const firmSectionHeader *section;
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
u32 config,
|
2016-04-14 17:10:55 +02:00
|
|
|
emuOffset;
|
2016-07-01 20:27:28 +02:00
|
|
|
|
2016-08-25 16:39:43 +02:00
|
|
|
bool isN3DS, isDevUnit, isFirmlaunch;
|
2016-07-02 14:44:01 +02:00
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
FirmwareSource firmSource;
|
2016-04-11 05:15:44 +02:00
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
2016-08-25 18:53:37 +02:00
|
|
|
bool isA9lh;
|
2016-07-02 14:44:01 +02:00
|
|
|
|
2016-08-26 21:38:03 +02:00
|
|
|
u32 configTemp,
|
2016-08-15 03:51:48 +02:00
|
|
|
emuHeader;
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
FirmwareType firmType;
|
|
|
|
FirmwareSource nandType;
|
|
|
|
ConfigurationStatus needConfig;
|
2016-07-01 20:27:28 +02:00
|
|
|
|
2016-02-19 21:32:07 +01:00
|
|
|
//Detect the console being used
|
2016-06-12 22:14:52 +02:00
|
|
|
isN3DS = PDN_MPCORE_CFG == 7;
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-08-06 22:38:06 +02:00
|
|
|
//Detect dev units
|
|
|
|
isDevUnit = CFG_UNITINFO != 0;
|
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Mount filesystems. CTRNAND will be mounted only if/when needed
|
|
|
|
mountFs();
|
2016-03-23 02:27:53 +01:00
|
|
|
|
2016-04-23 01:43:11 +02:00
|
|
|
const char configPath[] = "/luma/config.bin";
|
2016-05-03 01:17:22 +02:00
|
|
|
|
|
|
|
//Attempt to read the configuration file
|
2016-06-12 22:14:52 +02:00
|
|
|
needConfig = fileRead(&config, configPath) ? MODIFY_CONFIGURATION : CREATE_CONFIGURATION;
|
2016-02-25 20:19:20 +01:00
|
|
|
|
2016-08-23 20:39:42 +02:00
|
|
|
if(DEV_OPTIONS != 2)
|
|
|
|
{
|
|
|
|
detectAndProcessExceptionDumps();
|
|
|
|
installArm9Handlers();
|
|
|
|
}
|
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Determine if this is a firmlaunch boot
|
2016-08-13 20:49:40 +02:00
|
|
|
if(launchedFirmTIDLow[5] != 0)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-06-12 22:14:52 +02:00
|
|
|
if(needConfig == CREATE_CONFIGURATION) mcuReboot();
|
2016-04-15 15:58:40 +02:00
|
|
|
|
2016-07-02 14:44:01 +02:00
|
|
|
isFirmlaunch = true;
|
2016-03-24 17:27:02 +01:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//'0' = NATIVE_FIRM, '1' = TWL_FIRM, '2' = AGB_FIRM
|
2016-08-13 20:49:40 +02:00
|
|
|
firmType = launchedFirmTIDLow[7] == u'3' ? SAFE_FIRM : (FirmwareType)(launchedFirmTIDLow[5] - u'0');
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
nandType = (FirmwareSource)BOOTCONFIG(0, 3);
|
|
|
|
firmSource = (FirmwareSource)BOOTCONFIG(2, 1);
|
2016-07-18 15:32:32 +02:00
|
|
|
isA9lh = BOOTCONFIG(3, 1) != 0;
|
2016-04-02 17:58:06 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-05-03 01:17:22 +02:00
|
|
|
//Get pressed buttons
|
|
|
|
u32 pressed = HID_PAD;
|
|
|
|
|
2016-07-02 14:44:01 +02:00
|
|
|
isFirmlaunch = false;
|
2016-06-12 22:14:52 +02:00
|
|
|
firmType = NATIVE_FIRM;
|
2016-02-19 21:32:07 +01:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Determine if booting with A9LH
|
2016-07-18 18:51:04 +02:00
|
|
|
isA9lh = !PDN_SPI_CNT;
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-07-18 19:10:41 +02:00
|
|
|
//Determine if the user chose to use the SysNAND FIRM as default for a R boot
|
|
|
|
bool useSysAsDefault = isA9lh ? CONFIG(1) : false;
|
2016-03-05 15:35:06 +01:00
|
|
|
|
2016-08-26 21:38:03 +02:00
|
|
|
//Save old options and begin saving the new boot configuration
|
|
|
|
configTemp = (config & 0xFFFFFFC0) | ((u32)isA9lh << 3);
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-07-18 15:06:35 +02:00
|
|
|
//If it's a MCU reboot, try to force boot options
|
2016-07-18 18:51:04 +02:00
|
|
|
if(isA9lh && CFG_BOOTENV)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-07-18 15:06:35 +02:00
|
|
|
//Always force a sysNAND boot when quitting AGB_FIRM
|
|
|
|
if(CFG_BOOTENV == 7)
|
2016-05-03 01:17:22 +02:00
|
|
|
{
|
2016-07-18 15:06:35 +02:00
|
|
|
nandType = FIRMWARE_SYSNAND;
|
2016-07-18 19:10:41 +02:00
|
|
|
firmSource = useSysAsDefault ? FIRMWARE_SYSNAND : (FirmwareSource)BOOTCONFIG(2, 1);
|
2016-07-18 15:06:35 +02:00
|
|
|
needConfig = DONT_CONFIGURE;
|
2016-05-03 01:17:22 +02:00
|
|
|
|
2016-07-18 15:06:35 +02:00
|
|
|
//Flag to prevent multiple boot options-forcing
|
2016-08-26 21:38:03 +02:00
|
|
|
configTemp |= 1 << 4;
|
2016-04-11 05:15:44 +02:00
|
|
|
}
|
2016-05-03 01:17:22 +02:00
|
|
|
|
2016-07-18 15:06:35 +02:00
|
|
|
/* Else, force the last used boot options unless a button is pressed
|
|
|
|
or the no-forcing flag is set */
|
|
|
|
else if(!pressed && !BOOTCONFIG(4, 1))
|
2016-04-11 05:15:44 +02:00
|
|
|
{
|
2016-07-18 15:06:35 +02:00
|
|
|
nandType = (FirmwareSource)BOOTCONFIG(0, 3);
|
|
|
|
firmSource = (FirmwareSource)BOOTCONFIG(2, 1);
|
2016-06-12 22:14:52 +02:00
|
|
|
needConfig = DONT_CONFIGURE;
|
2016-04-11 05:15:44 +02:00
|
|
|
}
|
2016-04-02 18:48:31 +02:00
|
|
|
}
|
2016-03-05 15:35:06 +01:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Boot options aren't being forced
|
2016-07-02 14:44:01 +02:00
|
|
|
if(needConfig != DONT_CONFIGURE)
|
2016-04-11 05:15:44 +02:00
|
|
|
{
|
2016-08-16 22:37:57 +02:00
|
|
|
PINData pin;
|
|
|
|
|
2016-08-03 16:58:03 +02:00
|
|
|
bool pinExists = CONFIG(7) && readPin(&pin);
|
2016-03-31 15:57:02 +02:00
|
|
|
|
2016-08-15 13:23:27 +02:00
|
|
|
//If we get here we should check the PIN (if it exists) in all cases
|
2016-08-16 22:59:25 +02:00
|
|
|
if(pinExists) verifyPin(&pin);
|
2016-07-18 15:06:35 +02:00
|
|
|
|
2016-08-15 13:23:27 +02:00
|
|
|
//If no configuration file exists or SELECT is held, load configuration menu
|
|
|
|
bool shouldLoadConfigurationMenu = needConfig == CREATE_CONFIGURATION || ((pressed & BUTTON_SELECT) && !(pressed & BUTTON_L1));
|
2016-07-18 15:06:35 +02:00
|
|
|
|
2016-08-15 13:23:27 +02:00
|
|
|
if(shouldLoadConfigurationMenu)
|
|
|
|
{
|
2016-08-26 18:44:39 +02:00
|
|
|
configureCFW();
|
2016-03-31 01:38:28 +02:00
|
|
|
|
2016-08-16 22:37:57 +02:00
|
|
|
if(!pinExists && CONFIG(7)) newPin();
|
2016-08-03 16:58:03 +02:00
|
|
|
|
2016-08-15 16:50:58 +02:00
|
|
|
chrono(2);
|
|
|
|
|
2016-08-15 13:23:27 +02:00
|
|
|
//Update pressed buttons
|
|
|
|
pressed = HID_PAD;
|
2016-05-01 19:31:58 +02:00
|
|
|
}
|
2016-04-21 23:39:05 +02:00
|
|
|
|
2016-08-03 16:58:03 +02:00
|
|
|
if(isA9lh && !CFG_BOOTENV && pressed == SAFE_MODE)
|
2016-05-01 19:31:58 +02:00
|
|
|
{
|
2016-08-03 16:58:03 +02:00
|
|
|
nandType = FIRMWARE_SYSNAND;
|
|
|
|
firmSource = FIRMWARE_SYSNAND;
|
2016-08-26 22:24:23 +02:00
|
|
|
|
|
|
|
//Flag to tell loader to init SD
|
|
|
|
configTemp |= 1 << 5;
|
2016-05-01 19:31:58 +02:00
|
|
|
}
|
|
|
|
else
|
2016-08-15 13:28:43 +02:00
|
|
|
{
|
2016-08-15 13:11:27 +02:00
|
|
|
if(CONFIG(6) && loadSplash()) pressed = HID_PAD;
|
2016-08-13 22:23:14 +02:00
|
|
|
|
2016-08-03 16:58:03 +02:00
|
|
|
/* If L and R/A/Select or one of the single payload buttons are pressed,
|
2016-08-13 22:23:14 +02:00
|
|
|
chainload an external payload (the PIN, if any, has been verified)*/
|
2016-08-03 16:58:03 +02:00
|
|
|
bool shouldLoadPayload = (pressed & SINGLE_PAYLOAD_BUTTONS) || ((pressed & BUTTON_L1) && (pressed & L_PAYLOAD_BUTTONS));
|
|
|
|
|
2016-08-15 03:51:48 +02:00
|
|
|
if(shouldLoadPayload) loadPayload(pressed);
|
2016-08-03 16:58:03 +02:00
|
|
|
|
2016-08-15 13:11:27 +02:00
|
|
|
if(!CONFIG(6)) loadSplash();
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-08-03 16:58:03 +02:00
|
|
|
//If R is pressed, boot the non-updated NAND with the FIRM of the opposite one
|
|
|
|
if(pressed & BUTTON_R1)
|
|
|
|
{
|
|
|
|
nandType = (useSysAsDefault) ? FIRMWARE_EMUNAND : FIRMWARE_SYSNAND;
|
|
|
|
firmSource = (useSysAsDefault) ? FIRMWARE_SYSNAND : FIRMWARE_EMUNAND;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Else, boot the NAND the user set to autoboot or the opposite one, depending on L,
|
|
|
|
with their own FIRM */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nandType = (CONFIG(0) != !(pressed & BUTTON_L1)) ? FIRMWARE_EMUNAND : FIRMWARE_SYSNAND;
|
|
|
|
firmSource = nandType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we're booting emuNAND the second emuNAND is set as default and B isn't pressed,
|
|
|
|
or vice-versa, boot the second emuNAND */
|
|
|
|
if(nandType != FIRMWARE_SYSNAND && (CONFIG(2) == !(pressed & BUTTON_B))) nandType = FIRMWARE_EMUNAND2;
|
2016-05-01 19:31:58 +02:00
|
|
|
}
|
2016-03-05 15:35:06 +01:00
|
|
|
}
|
2016-04-11 05:15:44 +02:00
|
|
|
}
|
2016-04-04 18:19:00 +02:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//If we need to boot emuNAND, make sure it exists
|
2016-06-12 22:14:52 +02:00
|
|
|
if(nandType != FIRMWARE_SYSNAND)
|
2016-04-11 05:15:44 +02:00
|
|
|
{
|
2016-05-25 14:34:43 +02:00
|
|
|
locateEmuNAND(&emuOffset, &emuHeader, &nandType);
|
2016-06-12 22:14:52 +02:00
|
|
|
if(nandType == FIRMWARE_SYSNAND) firmSource = FIRMWARE_SYSNAND;
|
2016-03-05 15:35:06 +01:00
|
|
|
}
|
2016-03-04 23:43:22 +01:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Same if we're using emuNAND as the FIRM source
|
2016-06-12 22:14:52 +02:00
|
|
|
else if(firmSource != FIRMWARE_SYSNAND)
|
2016-05-25 14:34:43 +02:00
|
|
|
locateEmuNAND(&emuOffset, &emuHeader, &firmSource);
|
2016-03-04 23:43:22 +01:00
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
if(!isFirmlaunch)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-08-26 21:38:03 +02:00
|
|
|
configTemp |= (u32)nandType | ((u32)firmSource << 2);
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-08-26 21:38:03 +02:00
|
|
|
/* If the configuration is different from previously, overwrite it.
|
2016-04-11 05:15:44 +02:00
|
|
|
Just the no-forcing flag being set is not enough */
|
2016-08-26 21:38:03 +02:00
|
|
|
if((configTemp & 0xFFFFFFEF) != config)
|
2016-04-11 05:15:44 +02:00
|
|
|
{
|
2016-08-26 21:38:03 +02:00
|
|
|
//Merge the new options and new boot configuration
|
|
|
|
config = (config & 0xFFFFFFC0) | (configTemp & 0x3F);
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-08-26 18:44:39 +02:00
|
|
|
if(!fileWrite(&config, configPath, 4))
|
|
|
|
{
|
|
|
|
createDirectory("luma");
|
|
|
|
if(!fileWrite(&config, configPath, 4))
|
|
|
|
error("Error writing the configuration file");
|
|
|
|
}
|
2016-04-11 05:15:44 +02:00
|
|
|
}
|
2016-03-31 15:57:02 +02:00
|
|
|
}
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
u32 firmVersion = loadFirm(firmType);
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-05-03 01:17:22 +02:00
|
|
|
switch(firmType)
|
|
|
|
{
|
2016-06-12 22:14:52 +02:00
|
|
|
case NATIVE_FIRM:
|
2016-07-18 16:58:29 +02:00
|
|
|
patchNativeFirm(firmVersion, nandType, emuHeader, isA9lh);
|
2016-05-03 01:17:22 +02:00
|
|
|
break;
|
2016-06-12 22:14:52 +02:00
|
|
|
case SAFE_FIRM:
|
2016-05-03 01:17:22 +02:00
|
|
|
patchSafeFirm();
|
|
|
|
break;
|
|
|
|
default:
|
2016-07-18 16:58:29 +02:00
|
|
|
//Skip patching on unsupported O3DS AGB/TWL FIRMs
|
|
|
|
if(isN3DS || firmVersion >= (firmType == TWL_FIRM ? 0x16 : 0xB)) patchLegacyFirm(firmType);
|
2016-05-03 01:17:22 +02:00
|
|
|
break;
|
|
|
|
}
|
2016-04-11 05:15:44 +02:00
|
|
|
|
2016-08-25 16:39:43 +02:00
|
|
|
launchFirm(firmType);
|
2016-02-25 20:19:20 +01:00
|
|
|
}
|
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
static inline u32 loadFirm(FirmwareType firmType)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-04-11 05:15:44 +02:00
|
|
|
section = firm->section;
|
2016-08-04 13:44:51 +02:00
|
|
|
const char *firmwareFiles[4] = {
|
|
|
|
"/luma/firmware.bin",
|
|
|
|
"/luma/firmware_twl.bin",
|
|
|
|
"/luma/firmware_agb.bin",
|
|
|
|
"/luma/firmware_safe.bin"
|
|
|
|
};
|
2016-04-04 18:19:00 +02:00
|
|
|
|
2016-08-04 13:44:51 +02:00
|
|
|
u32 firmVersion;
|
2016-04-28 16:11:25 +02:00
|
|
|
|
2016-08-04 13:44:51 +02:00
|
|
|
if(fileRead(firm, firmwareFiles[(u32)firmType]))
|
2016-04-04 18:07:13 +02:00
|
|
|
{
|
2016-08-04 13:44:51 +02:00
|
|
|
firmVersion = 0xffffffff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
firmVersion = firmRead(firm, (u32)firmType);
|
|
|
|
if(firmType == NATIVE_FIRM && !isN3DS && firmVersion < 0x25)
|
2016-07-18 22:42:55 +02:00
|
|
|
error("An old unsupported FIRM has been detected.\nCopy firmware.bin in /luma to boot");
|
2016-04-14 17:10:55 +02:00
|
|
|
|
2016-08-04 13:44:51 +02:00
|
|
|
decryptExeFs((u8 *)firm);
|
2016-04-04 18:07:13 +02:00
|
|
|
}
|
2016-07-18 16:58:29 +02:00
|
|
|
|
|
|
|
return firmVersion;
|
2015-08-05 11:54:00 +02:00
|
|
|
}
|
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
static inline void patchNativeFirm(u32 firmVersion, FirmwareSource nandType, u32 emuHeader, bool isA9lh)
|
2016-04-03 17:56:09 +02:00
|
|
|
{
|
2016-05-27 14:50:30 +02:00
|
|
|
u8 *arm9Section = (u8 *)firm + section[2].offset,
|
|
|
|
*arm11Section1 = (u8 *)firm + section[1].offset;
|
2016-05-27 14:08:06 +02:00
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
if(isN3DS)
|
2016-04-11 05:15:44 +02:00
|
|
|
{
|
|
|
|
//Decrypt ARM9Bin and patch ARM9 entrypoint to skip arm9loader
|
2016-07-18 15:32:32 +02:00
|
|
|
arm9Loader(arm9Section);
|
2016-04-11 05:15:44 +02:00
|
|
|
firm->arm9Entry = (u8 *)0x801B01C;
|
|
|
|
}
|
2016-04-03 17:56:09 +02:00
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
//Sets the 7.x NCCH KeyX and the 6.x gamecard save data KeyY on >= 6.0 O3DS FIRMs, if not using A9LH
|
|
|
|
else if(!isA9lh && firmVersion >= 0x29) setRSAMod0DerivedKeys();
|
2016-07-18 15:06:35 +02:00
|
|
|
|
2016-05-12 15:27:22 +02:00
|
|
|
//Find the Process9 .code location, size and memory address
|
2016-05-11 19:28:28 +02:00
|
|
|
u32 process9Size,
|
|
|
|
process9MemAddr;
|
|
|
|
u8 *process9Offset = getProcess9(arm9Section + 0x15000, section[2].size - 0x15000, &process9Size, &process9MemAddr);
|
2016-04-03 17:56:09 +02:00
|
|
|
|
2016-05-25 20:08:37 +02:00
|
|
|
//Apply signature patches
|
|
|
|
patchSignatureChecks(process9Offset, process9Size);
|
2016-05-27 14:08:06 +02:00
|
|
|
|
2016-05-11 19:28:28 +02:00
|
|
|
//Apply emuNAND patches
|
2016-07-02 14:44:01 +02:00
|
|
|
if(nandType != FIRMWARE_SYSNAND)
|
2016-05-25 14:34:43 +02:00
|
|
|
{
|
2016-05-25 20:08:37 +02:00
|
|
|
u32 branchAdditive = (u32)firm + section[2].offset - (u32)section[2].address;
|
2016-05-25 15:26:51 +02:00
|
|
|
patchEmuNAND(arm9Section, section[2].size, process9Offset, process9Size, emuOffset, emuHeader, branchAdditive);
|
2016-05-25 14:34:43 +02:00
|
|
|
}
|
2016-04-03 17:56:09 +02:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Apply FIRM0/1 writes patches on sysNAND to protect A9LH
|
2016-07-18 15:32:32 +02:00
|
|
|
else if(isA9lh) patchFirmWrites(process9Offset, process9Size);
|
2016-05-11 19:28:28 +02:00
|
|
|
|
2016-07-19 20:03:35 +02:00
|
|
|
//Apply firmlaunch patches
|
2016-07-18 15:32:32 +02:00
|
|
|
patchFirmlaunches(process9Offset, process9Size, process9MemAddr);
|
2016-04-03 17:56:09 +02:00
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
//11.0 FIRM patches
|
|
|
|
if(firmVersion >= (isN3DS ? 0x21 : 0x52))
|
2016-05-27 04:16:49 +02:00
|
|
|
{
|
2016-07-18 16:58:29 +02:00
|
|
|
//Apply anti-anti-DG patches
|
2016-05-27 04:16:49 +02:00
|
|
|
patchTitleInstallMinVersionCheck(process9Offset, process9Size);
|
|
|
|
|
2016-08-03 14:13:26 +02:00
|
|
|
//Restore svcBackdoor
|
2016-05-27 14:50:30 +02:00
|
|
|
reimplementSvcBackdoor(arm11Section1, section[1].size);
|
|
|
|
}
|
2016-04-03 17:56:09 +02:00
|
|
|
|
2016-08-13 15:31:08 +02:00
|
|
|
//Apply UNITINFO patch
|
2016-08-23 20:51:48 +02:00
|
|
|
if(DEV_OPTIONS == 1) patchUnitInfoValueSet(arm9Section, section[2].size);
|
2016-08-13 15:31:08 +02:00
|
|
|
|
2016-08-23 20:39:42 +02:00
|
|
|
if(DEV_OPTIONS != 2)
|
|
|
|
{
|
|
|
|
//Install arm11 exception handlers
|
|
|
|
u32 stackAddress, codeSetOffset;
|
|
|
|
u32 *exceptionsPage = getInfoForArm11ExceptionHandlers(arm11Section1, section[1].size, &stackAddress, &codeSetOffset);
|
|
|
|
installArm11Handlers(exceptionsPage, stackAddress, codeSetOffset);
|
|
|
|
|
|
|
|
//Kernel9/Process9 debugging
|
|
|
|
patchExceptionHandlersInstall(arm9Section, section[2].size);
|
|
|
|
patchSvcBreak9(arm9Section, section[2].size, (u32)(section[2].address));
|
|
|
|
patchKernel9Panic(arm9Section, section[2].size, NATIVE_FIRM);
|
|
|
|
|
|
|
|
//Stub svcBreak11 with "bkpt 65535"
|
|
|
|
patchSvcBreak11(arm11Section1, section[1].size);
|
|
|
|
//Stub kernel11panic with "bkpt 65534"
|
|
|
|
patchKernel11Panic(arm11Section1, section[1].size);
|
|
|
|
}
|
|
|
|
|
2016-08-26 23:28:31 +02:00
|
|
|
if(CONFIG(9))
|
2016-08-04 20:10:31 +02:00
|
|
|
{
|
|
|
|
patchArm11SvcAccessChecks(arm11Section1, section[1].size);
|
|
|
|
patchK11ModuleChecks(arm11Section1, section[1].size);
|
2016-08-23 20:39:42 +02:00
|
|
|
patchP9AccessChecks(process9Offset, process9Size);
|
2016-08-04 20:10:31 +02:00
|
|
|
}
|
2016-08-17 23:47:30 +02:00
|
|
|
|
2016-08-25 00:13:43 +02:00
|
|
|
implementSvcGetCFWInfo(arm11Section1, section[1].size);
|
2015-08-07 09:01:42 +02:00
|
|
|
}
|
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
static inline void patchLegacyFirm(FirmwareType firmType)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-06-05 12:08:55 +02:00
|
|
|
u8 *arm9Section = (u8 *)firm + section[3].offset;
|
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
//On N3DS, decrypt ARM9Bin and patch ARM9 entrypoint to skip arm9loader
|
2016-06-12 22:14:52 +02:00
|
|
|
if(isN3DS)
|
2016-05-25 14:34:43 +02:00
|
|
|
{
|
2016-08-03 22:52:51 +02:00
|
|
|
arm9Loader(arm9Section);
|
2016-05-25 14:34:43 +02:00
|
|
|
firm->arm9Entry = (u8 *)0x801301C;
|
|
|
|
}
|
2016-06-05 12:08:55 +02:00
|
|
|
|
2016-08-23 20:39:42 +02:00
|
|
|
//Apply UNITINFO patch
|
2016-08-23 20:51:48 +02:00
|
|
|
if(DEV_OPTIONS == 1) patchUnitInfoValueSet(arm9Section, section[3].size);
|
2016-08-23 20:39:42 +02:00
|
|
|
|
|
|
|
if(DEV_OPTIONS != 2)
|
|
|
|
{
|
|
|
|
//Kernel9/Process9 debugging
|
|
|
|
patchExceptionHandlersInstall(arm9Section, section[3].size);
|
|
|
|
patchSvcBreak9(arm9Section, section[3].size, (u32)(section[3].address));
|
|
|
|
patchKernel9Panic(arm9Section, section[3].size, firmType);
|
|
|
|
}
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
applyLegacyFirmPatches((u8 *)firm, firmType);
|
2016-08-23 20:39:42 +02:00
|
|
|
|
2016-08-26 19:09:14 +02:00
|
|
|
if(firmType == TWL_FIRM && CONFIG(8))
|
2016-08-25 00:13:43 +02:00
|
|
|
patchTwlBg((u8 *)firm + section[1].offset);
|
2016-06-04 21:11:15 +02:00
|
|
|
}
|
2016-04-02 17:58:06 +02:00
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
static inline void patchSafeFirm(void)
|
2016-05-10 23:06:32 +02:00
|
|
|
{
|
2016-05-25 14:34:43 +02:00
|
|
|
u8 *arm9Section = (u8 *)firm + section[2].offset;
|
2016-05-11 19:28:28 +02:00
|
|
|
|
2016-06-12 22:14:52 +02:00
|
|
|
if(isN3DS)
|
2016-05-11 19:28:28 +02:00
|
|
|
{
|
2016-05-25 14:34:43 +02:00
|
|
|
//Decrypt ARM9Bin and patch ARM9 entrypoint to skip arm9loader
|
2016-07-18 15:32:32 +02:00
|
|
|
arm9Loader(arm9Section);
|
2016-05-25 14:34:43 +02:00
|
|
|
firm->arm9Entry = (u8 *)0x801B01C;
|
2016-05-12 02:59:21 +02:00
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
patchFirmWrites(arm9Section, section[2].size);
|
2016-05-11 19:28:28 +02:00
|
|
|
}
|
2016-06-27 13:21:08 +02:00
|
|
|
else patchFirmWriteSafe(arm9Section, section[2].size);
|
2016-08-23 20:39:42 +02:00
|
|
|
|
|
|
|
if(DEV_OPTIONS != 2)
|
|
|
|
{
|
|
|
|
//Kernel9/Process9 debugging
|
|
|
|
patchExceptionHandlersInstall(arm9Section, section[2].size);
|
|
|
|
patchSvcBreak9(arm9Section, section[2].size, (u32)(section[2].address));
|
|
|
|
}
|
2016-05-10 23:06:32 +02:00
|
|
|
}
|
|
|
|
|
2016-08-12 15:17:19 +02:00
|
|
|
static inline void copySection0AndInjectSystemModules(FirmwareType firmType)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-05-07 23:40:02 +02:00
|
|
|
u8 *arm11Section0 = (u8 *)firm + section[0].offset;
|
2016-06-27 13:21:08 +02:00
|
|
|
char fileName[] = "/luma/sysmodules/--------.cxi";
|
|
|
|
const char *ext = ".cxi";
|
2016-05-12 14:48:52 +02:00
|
|
|
|
2016-06-27 13:21:08 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
u32 size;
|
|
|
|
char name[8];
|
|
|
|
const u8 *addr;
|
2016-08-26 18:44:39 +02:00
|
|
|
} modules[5];
|
2016-06-27 13:21:08 +02:00
|
|
|
|
2016-08-26 18:44:39 +02:00
|
|
|
u8 *pos = arm11Section0;
|
2016-08-12 15:17:19 +02:00
|
|
|
u32 n = 0;
|
|
|
|
|
2016-08-25 16:39:43 +02:00
|
|
|
u32 loaderIndex = 0;
|
2016-08-12 15:17:19 +02:00
|
|
|
|
2016-08-26 18:44:39 +02:00
|
|
|
for(u8 *end = pos + section[0].size; pos < end; pos += modules[n++].size)
|
2016-06-27 13:21:08 +02:00
|
|
|
{
|
2016-08-12 15:17:19 +02:00
|
|
|
modules[n].addr = pos;
|
|
|
|
modules[n].size = *(u32 *)(pos + 0x104) * 0x200;
|
2016-06-27 13:21:08 +02:00
|
|
|
|
2016-08-12 15:17:19 +02:00
|
|
|
memcpy(modules[n].name, pos + 0x200, 8);
|
2016-06-27 13:21:08 +02:00
|
|
|
|
|
|
|
//Read modules from files if they exist
|
|
|
|
u32 nameOff;
|
2016-08-12 15:17:19 +02:00
|
|
|
for(nameOff = 0; nameOff < 8 && modules[n].name[nameOff] != 0; nameOff++);
|
|
|
|
memcpy(fileName + 17, modules[n].name, nameOff);
|
2016-06-27 13:21:08 +02:00
|
|
|
memcpy(fileName + 17 + nameOff, ext, 5);
|
|
|
|
|
|
|
|
u32 fileSize = getFileSize(fileName);
|
|
|
|
if(fileSize != 0)
|
|
|
|
{
|
2016-08-12 15:17:19 +02:00
|
|
|
modules[n].addr = NULL;
|
|
|
|
modules[n].size = fileSize;
|
2016-06-27 13:21:08 +02:00
|
|
|
}
|
2016-05-09 03:41:00 +02:00
|
|
|
|
2016-08-12 15:17:19 +02:00
|
|
|
if(firmType == NATIVE_FIRM && memcmp(modules[n].name, "loader", 7) == 0) loaderIndex = n;
|
2016-06-27 13:21:08 +02:00
|
|
|
}
|
|
|
|
|
2016-08-12 15:17:19 +02:00
|
|
|
if(firmType == NATIVE_FIRM && modules[loaderIndex].addr != NULL)
|
2016-06-27 13:21:08 +02:00
|
|
|
{
|
|
|
|
modules[loaderIndex].size = injector_size;
|
|
|
|
modules[loaderIndex].addr = injector;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = section[0].address;
|
2016-08-26 18:44:39 +02:00
|
|
|
for(u32 i = 0; i < n; pos += modules[i++].size)
|
2016-06-27 13:21:08 +02:00
|
|
|
{
|
2016-08-25 18:49:00 +02:00
|
|
|
if(modules[i].addr != NULL)
|
2016-06-27 13:21:08 +02:00
|
|
|
memcpy(pos, modules[i].addr, modules[i].size);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Read modules from files if they exist
|
|
|
|
u32 nameOff;
|
|
|
|
for(nameOff = 0; nameOff < 8 && modules[i].name[nameOff] != 0; nameOff++);
|
|
|
|
memcpy(fileName + 17, modules[i].name, nameOff);
|
|
|
|
memcpy(fileName + 17 + nameOff, ext, 5);
|
|
|
|
fileRead(pos, fileName);
|
2016-08-26 23:28:31 +02:00
|
|
|
}
|
2016-06-27 13:21:08 +02:00
|
|
|
}
|
2016-04-02 17:58:06 +02:00
|
|
|
}
|
|
|
|
|
2016-08-25 16:39:43 +02:00
|
|
|
static inline void launchFirm(FirmwareType firmType)
|
2016-05-11 19:28:28 +02:00
|
|
|
{
|
2016-05-25 14:34:43 +02:00
|
|
|
//If we're booting NATIVE_FIRM, section0 needs to be copied separately to inject 3ds_injector
|
|
|
|
u32 sectionNum;
|
2016-08-04 13:44:51 +02:00
|
|
|
if(firmType != SAFE_FIRM)
|
2016-05-11 19:28:28 +02:00
|
|
|
{
|
2016-08-12 15:17:19 +02:00
|
|
|
copySection0AndInjectSystemModules(firmType);
|
2016-05-25 14:34:43 +02:00
|
|
|
sectionNum = 1;
|
2016-02-19 21:32:07 +01:00
|
|
|
}
|
2016-05-25 14:34:43 +02:00
|
|
|
else sectionNum = 0;
|
2015-08-05 03:57:37 +02:00
|
|
|
|
2016-04-26 20:06:31 +02:00
|
|
|
//Copy FIRM sections to respective memory locations
|
2016-05-12 02:59:21 +02:00
|
|
|
for(; sectionNum < 4 && section[sectionNum].size; sectionNum++)
|
|
|
|
memcpy(section[sectionNum].address, (u8 *)firm + section[sectionNum].offset, section[sectionNum].size);
|
2016-02-29 16:28:43 +01:00
|
|
|
|
2016-04-11 05:15:44 +02:00
|
|
|
//Determine the ARM11 entry to use
|
|
|
|
vu32 *arm11;
|
2016-06-12 22:14:52 +02:00
|
|
|
if(isFirmlaunch) arm11 = (u32 *)0x1FFFFFFC;
|
2016-04-11 05:15:44 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
deinitScreens();
|
|
|
|
arm11 = (u32 *)0x1FFFFFF8;
|
|
|
|
}
|
2016-03-11 15:08:05 +01:00
|
|
|
|
2016-03-23 02:27:53 +01:00
|
|
|
//Set ARM11 kernel entrypoint
|
2016-04-11 05:15:44 +02:00
|
|
|
*arm11 = (u32)firm->arm11Entry;
|
2016-03-11 15:08:05 +01:00
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
flushEntireDCache(); //Ensure that all memory transfers have completed and that the data cache has been flushed
|
|
|
|
flushEntireICache();
|
|
|
|
|
2016-04-24 19:23:40 +02:00
|
|
|
//Final jump to ARM9 kernel
|
2016-03-27 19:19:35 +02:00
|
|
|
((void (*)())firm->arm9Entry)();
|
2016-05-11 19:28:28 +02:00
|
|
|
}
|