2015-08-21 20:11:23 +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-21 20:11:23 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "patches.h"
|
2016-02-08 03:37:03 +01:00
|
|
|
#include "memory.h"
|
2016-05-25 14:34:43 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "../build/rebootpatch.h"
|
2016-08-17 23:47:30 +02:00
|
|
|
#include "../build/svcGetCFWInfopatch.h"
|
2016-08-25 00:13:43 +02:00
|
|
|
#include "../build/twl_k11modulespatch.h"
|
2016-08-17 23:47:30 +02:00
|
|
|
|
2016-05-11 19:28:28 +02:00
|
|
|
u8 *getProcess9(u8 *pos, u32 size, u32 *process9Size, u32 *process9MemAddr)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-05-11 19:28:28 +02:00
|
|
|
u8 *off = memsearch(pos, "ess9", size, 4);
|
|
|
|
|
2016-05-12 02:59:21 +02:00
|
|
|
*process9Size = *(u32 *)(off - 0x60) * 0x200;
|
2016-05-11 19:28:28 +02:00
|
|
|
*process9MemAddr = *(u32 *)(off + 0xC);
|
|
|
|
|
|
|
|
//Process9 code offset (start of NCCH + ExeFS offset + ExeFS header size)
|
|
|
|
return off - 0x204 + (*(u32 *)(off - 0x64) * 0x200) + 0x200;
|
2016-03-21 18:56:41 +01:00
|
|
|
}
|
|
|
|
|
2016-08-29 15:35:24 +02:00
|
|
|
u32 *getKernel11Info(u8 *pos, u32 size, u8 **freeK11Space)
|
|
|
|
{
|
|
|
|
const u8 pattern[] = {0x00, 0xB0, 0x9C, 0xE5};
|
|
|
|
|
|
|
|
u32 *arm11ExceptionsPage = (u32 *)memsearch(pos, pattern, size, 4) - 0xB;
|
|
|
|
u32 svcOffset = (-((arm11ExceptionsPage[2] & 0xFFFFFF) << 2) & (0xFFFFFF << 2)) - 8; //Branch offset + 8 for prefetch
|
|
|
|
u32 *arm11SvcTable = (u32 *)(pos + *(u32 *)(pos + 0xFFFF0008 - svcOffset - 0xFFF00000 + 8) - 0xFFF00000); //SVC handler address
|
|
|
|
while(*arm11SvcTable) arm11SvcTable++; //Look for SVC0 (NULL)
|
|
|
|
|
|
|
|
const u8 pattern2[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
|
|
|
|
|
|
|
|
*freeK11Space = memsearch(pos, pattern2, size, 5) + 1;
|
|
|
|
|
|
|
|
return arm11SvcTable;
|
|
|
|
}
|
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
void patchSignatureChecks(u8 *pos, u32 size)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-05-25 14:34:43 +02:00
|
|
|
const u16 sigPatch[2] = {0x2000, 0x4770};
|
|
|
|
|
2016-02-08 03:37:03 +01:00
|
|
|
//Look for signature checks
|
2016-03-29 17:43:53 +02:00
|
|
|
const u8 pattern[] = {0xC0, 0x1C, 0x76, 0xE7},
|
|
|
|
pattern2[] = {0xB5, 0x22, 0x4D, 0x0C};
|
2015-08-21 20:11:23 +02:00
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
u16 *off = (u16 *)memsearch(pos, pattern, size, 4),
|
|
|
|
*off2 = (u16 *)(memsearch(pos, pattern2, size, 4) - 1);
|
|
|
|
|
|
|
|
*off = sigPatch[0];
|
|
|
|
off2[0] = sigPatch[0];
|
|
|
|
off2[1] = sigPatch[1];
|
2015-08-21 20:11:23 +02:00
|
|
|
}
|
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
void patchFirmlaunches(u8 *pos, u32 size, u32 process9MemAddr)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-05-27 04:16:49 +02:00
|
|
|
//Look for firmlaunch code
|
2016-08-27 16:00:15 +02:00
|
|
|
const u8 pattern[] = {0xE2, 0x20, 0x20, 0x90};
|
2015-08-21 20:11:23 +02:00
|
|
|
|
2016-08-27 16:00:15 +02:00
|
|
|
u8 *off = memsearch(pos, pattern, size, 4) - 0x13;
|
2016-03-21 20:24:12 +01:00
|
|
|
|
2016-03-26 17:24:16 +01:00
|
|
|
//Firmlaunch function offset - offset in BLX opcode (A4-16 - ARM DDI 0100E) + 1
|
2016-05-25 14:34:43 +02:00
|
|
|
u32 fOpenOffset = (u32)(off + 9 - (-((*(u32 *)off & 0x00FFFFFF) << 2) & (0xFFFFFF << 2)) - pos + process9MemAddr);
|
2016-05-11 19:28:28 +02:00
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
//Copy firmlaunch code
|
|
|
|
memcpy(off, reboot, reboot_size);
|
|
|
|
|
|
|
|
//Put the fOpen offset in the right location
|
|
|
|
u32 *pos_fopen = (u32 *)memsearch(off, "OPEN", reboot_size, 4);
|
|
|
|
*pos_fopen = fOpenOffset;
|
2016-02-19 21:32:07 +01:00
|
|
|
}
|
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
void patchFirmWrites(u8 *pos, u32 size)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-05-25 14:34:43 +02:00
|
|
|
const u16 writeBlock[2] = {0x2000, 0x46C0};
|
|
|
|
|
2016-02-19 21:32:07 +01:00
|
|
|
//Look for FIRM writing code
|
2016-05-25 14:34:43 +02:00
|
|
|
u8 *const off1 = memsearch(pos, "exe:", size, 4);
|
2016-03-26 19:21:17 +01:00
|
|
|
const u8 pattern[] = {0x00, 0x28, 0x01, 0xDA};
|
2016-02-19 21:32:07 +01:00
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
u16 *off2 = (u16 *)memsearch(off1 - 0x100, pattern, 0x100, 4);
|
|
|
|
|
|
|
|
off2[0] = writeBlock[0];
|
|
|
|
off2[1] = writeBlock[1];
|
2016-03-29 17:43:53 +02:00
|
|
|
}
|
|
|
|
|
2016-08-28 13:49:15 +02:00
|
|
|
void patchOldFirmWrites(u8 *pos, u32 size)
|
2016-05-03 01:17:22 +02:00
|
|
|
{
|
2016-08-28 13:49:15 +02:00
|
|
|
const u16 writeBlockOld[2] = {0x2400, 0xE01D};
|
2016-05-25 14:34:43 +02:00
|
|
|
|
2016-05-03 01:17:22 +02:00
|
|
|
//Look for FIRM writing code
|
|
|
|
const u8 pattern[] = {0x04, 0x1E, 0x1D, 0xDB};
|
|
|
|
|
2016-05-25 14:34:43 +02:00
|
|
|
u16 *off = (u16 *)memsearch(pos, pattern, size, 4);
|
|
|
|
|
2016-08-28 13:49:15 +02:00
|
|
|
off[0] = writeBlockOld[0];
|
|
|
|
off[1] = writeBlockOld[1];
|
2016-05-25 14:34:43 +02:00
|
|
|
}
|
|
|
|
|
2016-08-29 15:35:24 +02:00
|
|
|
void reimplementSvcBackdoor(u8 *pos, u32 *arm11SvcTable, u8 **freeK11Space)
|
2016-05-25 14:34:43 +02:00
|
|
|
{
|
|
|
|
//Official implementation of svcBackdoor
|
2016-08-28 13:49:15 +02:00
|
|
|
const u8 svcBackdoor[40] = {0xFF, 0x10, 0xCD, 0xE3, //bic r1, sp, #0xff
|
2016-08-29 15:35:24 +02:00
|
|
|
0x0F, 0x1C, 0x81, 0xE3, //orr r1, r1, #0xf00
|
|
|
|
0x28, 0x10, 0x81, 0xE2, //add r1, r1, #0x28
|
|
|
|
0x00, 0x20, 0x91, 0xE5, //ldr r2, [r1]
|
|
|
|
0x00, 0x60, 0x22, 0xE9, //stmdb r2!, {sp, lr}
|
|
|
|
0x02, 0xD0, 0xA0, 0xE1, //mov sp, r2
|
|
|
|
0x30, 0xFF, 0x2F, 0xE1, //blx r0
|
|
|
|
0x03, 0x00, 0xBD, 0xE8, //pop {r0, r1}
|
|
|
|
0x00, 0xD0, 0xA0, 0xE1, //mov sp, r0
|
|
|
|
0x11, 0xFF, 0x2F, 0xE1}; //bx r1
|
2016-05-25 14:34:43 +02:00
|
|
|
|
2016-08-17 23:47:30 +02:00
|
|
|
if(!arm11SvcTable[0x7B])
|
2016-08-04 00:05:01 +02:00
|
|
|
{
|
2016-08-29 15:35:24 +02:00
|
|
|
memcpy(*freeK11Space, svcBackdoor, 40);
|
2016-05-25 14:34:43 +02:00
|
|
|
|
2016-08-29 15:35:24 +02:00
|
|
|
arm11SvcTable[0x7B] = 0xFFF00000 + *freeK11Space - pos;
|
|
|
|
(*freeK11Space) += 40;
|
2016-08-04 00:05:01 +02:00
|
|
|
}
|
2016-05-25 14:34:43 +02:00
|
|
|
}
|
|
|
|
|
2016-08-29 15:35:24 +02:00
|
|
|
void implementSvcGetCFWInfo(u8 *pos, u32 *arm11SvcTable, u8 **freeK11Space)
|
2016-08-17 23:47:30 +02:00
|
|
|
{
|
2016-08-29 15:35:24 +02:00
|
|
|
memcpy(*freeK11Space, svcGetCFWInfo, svcGetCFWInfo_size);
|
2016-08-17 23:47:30 +02:00
|
|
|
|
2016-08-29 15:35:24 +02:00
|
|
|
CFWInfo *info = (CFWInfo *)memsearch(*freeK11Space, "LUMA", svcGetCFWInfo_size, 4);
|
2016-08-17 23:47:30 +02:00
|
|
|
|
2016-08-27 17:34:37 +02:00
|
|
|
const char *rev = REVISION;
|
|
|
|
bool isRelease;
|
|
|
|
|
2016-08-17 23:47:30 +02:00
|
|
|
info->commitHash = COMMIT_HASH;
|
2016-08-27 16:00:15 +02:00
|
|
|
info->config = configData.config;
|
2016-08-17 23:47:30 +02:00
|
|
|
info->versionMajor = (u8)(rev[1] - '0');
|
|
|
|
info->versionMinor = (u8)(rev[3] - '0');
|
|
|
|
if(rev[4] == '.')
|
|
|
|
{
|
|
|
|
info->versionBuild = (u8)(rev[5] - '0');
|
|
|
|
isRelease = rev[6] == 0;
|
|
|
|
}
|
2016-08-27 17:34:37 +02:00
|
|
|
else isRelease = rev[4] == 0;
|
2016-08-17 23:47:30 +02:00
|
|
|
|
2016-08-28 13:49:15 +02:00
|
|
|
info->flags = 0 /* master branch */ | ((isRelease ? 1 : 0) << 1) /* is release */;
|
2016-08-17 23:47:30 +02:00
|
|
|
|
2016-08-29 15:35:24 +02:00
|
|
|
arm11SvcTable[0x2E] = 0xFFF00000 + *freeK11Space - pos; //Stubbed svc
|
|
|
|
(*freeK11Space) += svcGetCFWInfo_size;
|
2016-08-17 23:47:30 +02:00
|
|
|
}
|
|
|
|
|
2016-05-27 04:16:49 +02:00
|
|
|
void patchTitleInstallMinVersionCheck(u8 *pos, u32 size)
|
|
|
|
{
|
|
|
|
const u8 pattern[] = {0x0A, 0x81, 0x42, 0x02};
|
|
|
|
|
|
|
|
u8 *off = memsearch(pos, pattern, size, 4);
|
|
|
|
|
2016-08-04 00:05:01 +02:00
|
|
|
if(off != NULL) off[4] = 0xE0;
|
2016-05-27 04:16:49 +02:00
|
|
|
}
|
|
|
|
|
2016-07-18 16:58:29 +02:00
|
|
|
void applyLegacyFirmPatches(u8 *pos, FirmwareType firmType)
|
2016-05-25 14:34:43 +02:00
|
|
|
{
|
|
|
|
const patchData twlPatches[] = {
|
|
|
|
{{0x1650C0, 0x165D64}, {{ 6, 0x00, 0x20, 0x4E, 0xB0, 0x70, 0xBD }}, 0},
|
|
|
|
{{0x173A0E, 0x17474A}, { .type1 = 0x2001 }, 1},
|
|
|
|
{{0x174802, 0x17553E}, { .type1 = 0x2000 }, 2},
|
|
|
|
{{0x174964, 0x1756A0}, { .type1 = 0x2000 }, 2},
|
|
|
|
{{0x174D52, 0x175A8E}, { .type1 = 0x2001 }, 2},
|
|
|
|
{{0x174D5E, 0x175A9A}, { .type1 = 0x2001 }, 2},
|
|
|
|
{{0x174D6A, 0x175AA6}, { .type1 = 0x2001 }, 2},
|
|
|
|
{{0x174E56, 0x175B92}, { .type1 = 0x2001 }, 1},
|
|
|
|
{{0x174E58, 0x175B94}, { .type1 = 0x4770 }, 1}
|
|
|
|
},
|
|
|
|
agbPatches[] = {
|
|
|
|
{{0x9D2A8, 0x9DF64}, {{ 6, 0x00, 0x20, 0x4E, 0xB0, 0x70, 0xBD }}, 0},
|
|
|
|
{{0xD7A12, 0xD8B8A}, { .type1 = 0xEF26 }, 1}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Calculate the amount of patches to apply. Only count the boot screen patch for AGB_FIRM
|
|
|
|
if the matching option was enabled (keep it as last) */
|
2016-06-12 22:14:52 +02:00
|
|
|
u32 numPatches = firmType == TWL_FIRM ? (sizeof(twlPatches) / sizeof(patchData)) :
|
2016-08-27 16:00:15 +02:00
|
|
|
(sizeof(agbPatches) / sizeof(patchData) - !CONFIG(6));
|
2016-06-12 22:14:52 +02:00
|
|
|
const patchData *patches = firmType == TWL_FIRM ? twlPatches : agbPatches;
|
2016-05-25 14:34:43 +02:00
|
|
|
|
|
|
|
//Patch
|
|
|
|
for(u32 i = 0; i < numPatches; i++)
|
|
|
|
{
|
|
|
|
switch(patches[i].type)
|
|
|
|
{
|
|
|
|
case 0:
|
2016-07-02 14:44:01 +02:00
|
|
|
memcpy(pos + patches[i].offset[isN3DS ? 1 : 0], patches[i].patch.type0 + 1, patches[i].patch.type0[0]);
|
2016-05-25 14:34:43 +02:00
|
|
|
break;
|
|
|
|
case 2:
|
2016-07-02 14:44:01 +02:00
|
|
|
*(u16 *)(pos + patches[i].offset[isN3DS ? 1 : 0] + 2) = 0;
|
2016-05-25 14:34:43 +02:00
|
|
|
case 1:
|
2016-07-02 14:44:01 +02:00
|
|
|
*(u16 *)(pos + patches[i].offset[isN3DS ? 1 : 0]) = patches[i].patch.type1;
|
2016-05-25 14:34:43 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-25 00:13:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void patchTwlBg(u8 *pos)
|
|
|
|
{
|
2016-08-29 18:11:59 +02:00
|
|
|
u8 *dst = pos + (isN3DS ? 0xFEA4 : 0xFCA0);
|
2016-08-27 17:34:37 +02:00
|
|
|
|
|
|
|
memcpy(dst, twl_k11modules, twl_k11modules_size); //Install K11 hook
|
2016-08-25 00:13:43 +02:00
|
|
|
|
2016-08-27 17:34:37 +02:00
|
|
|
u32 *off = (u32 *)memsearch(dst, "LAUN", twl_k11modules_size, 4);
|
2016-08-28 13:49:15 +02:00
|
|
|
*off = isN3DS ? 0xCDE88 : 0xCD5F8; //Dev SRL launcher offset
|
2016-08-27 17:34:37 +02:00
|
|
|
|
2016-08-28 13:49:15 +02:00
|
|
|
u16 *src1 = (u16 *)(pos + (isN3DS ? 0xE38 : 0xE3C)),
|
|
|
|
*src2 = (u16 *)(pos + (isN3DS ? 0xE54 : 0xE58));
|
2016-08-25 00:13:43 +02:00
|
|
|
|
|
|
|
//Construct BLX instructions:
|
|
|
|
src1[0] = 0xF000 | ((((u32)dst - (u32)src1 - 4) & (0xFFF << 11)) >> 12);
|
|
|
|
src1[1] = 0xE800 | ((((u32)dst - (u32)src1 - 4) & 0xFFF) >> 1);
|
|
|
|
|
|
|
|
src2[0] = 0xF000 | ((((u32)dst - (u32)src2 - 4) & (0xFFF << 11)) >> 12);
|
|
|
|
src2[1] = 0xE800 | ((((u32)dst - (u32)src2 - 4) & 0xFFF) >> 1);
|
2016-08-21 22:09:27 +02:00
|
|
|
}
|