2018-05-01 05:15:48 +00:00
|
|
|
/*
|
2018-08-05 11:40:32 +00:00
|
|
|
* Copyright (c) 2018 naehrwert
|
2022-01-20 11:31:16 +00:00
|
|
|
* Copyright (c) 2018-2022 CTCaer
|
2018-08-05 11:40:32 +00:00
|
|
|
*
|
|
|
|
* 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-05-01 05:15:48 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
2018-08-05 11:40:32 +00:00
|
|
|
|
2022-01-15 22:04:34 +00:00
|
|
|
#include <bdk.h>
|
|
|
|
|
2019-09-12 20:39:47 +00:00
|
|
|
#include "hos.h"
|
2018-05-01 05:15:48 +00:00
|
|
|
#include "pkg2.h"
|
2019-06-30 00:45:18 +00:00
|
|
|
#include "pkg2_ini_kippatch.h"
|
|
|
|
|
2020-06-14 13:45:45 +00:00
|
|
|
#include "../config.h"
|
|
|
|
#include <libs/compr/blz.h>
|
|
|
|
#include <libs/fatfs/ff.h>
|
2019-06-30 00:24:58 +00:00
|
|
|
#include "../storage/emummc.h"
|
2018-05-01 05:15:48 +00:00
|
|
|
|
2022-01-20 11:32:48 +00:00
|
|
|
//#define DPRINTF(...) gfx_printf(__VA_ARGS__)
|
|
|
|
#define DPRINTF(...)
|
|
|
|
|
2019-06-30 00:29:46 +00:00
|
|
|
extern hekate_config h_cfg;
|
2019-09-12 20:39:47 +00:00
|
|
|
extern const u8 package2_keyseed[];
|
|
|
|
|
2020-05-08 22:32:44 +00:00
|
|
|
u32 pkg2_newkern_ini1_val;
|
|
|
|
u32 pkg2_newkern_ini1_start;
|
|
|
|
u32 pkg2_newkern_ini1_end;
|
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
enum kip_offset_section
|
|
|
|
{
|
2019-09-12 20:08:38 +00:00
|
|
|
KIP_TEXT = 0,
|
|
|
|
KIP_RODATA = 1,
|
|
|
|
KIP_DATA = 2,
|
|
|
|
KIP_BSS = 3,
|
2018-07-22 20:22:10 +00:00
|
|
|
KIP_UNKSEC1 = 4,
|
|
|
|
KIP_UNKSEC2 = 5
|
|
|
|
};
|
|
|
|
|
2019-09-12 20:08:38 +00:00
|
|
|
#define KIP_PATCH_SECTION_SHIFT (29)
|
|
|
|
#define KIP_PATCH_SECTION_MASK (7 << KIP_PATCH_SECTION_SHIFT)
|
|
|
|
#define KIP_PATCH_OFFSET_MASK (~KIP_PATCH_SECTION_MASK)
|
2020-11-15 11:39:27 +00:00
|
|
|
#define GET_KIP_PATCH_SECTION(x) (((x) >> KIP_PATCH_SECTION_SHIFT) & 7)
|
|
|
|
#define GET_KIP_PATCH_OFFSET(x) ((x) & KIP_PATCH_OFFSET_MASK)
|
2022-01-20 11:32:48 +00:00
|
|
|
#define KPS(x) ((u32)(x) << KIP_PATCH_SECTION_SHIFT)
|
2018-07-22 20:22:10 +00:00
|
|
|
|
2021-05-11 06:45:12 +00:00
|
|
|
#include "pkg2_patches.inl"
|
2019-04-23 15:17:55 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
static kip1_id_t *_kip_id_sets = _kip_ids;
|
2020-11-15 11:56:45 +00:00
|
|
|
static u32 _kip_id_sets_cnt = ARRAY_SIZE(_kip_ids);
|
2020-04-27 06:38:09 +00:00
|
|
|
|
2020-04-30 00:25:22 +00:00
|
|
|
void pkg2_get_ids(kip1_id_t **ids, u32 *entries)
|
|
|
|
{
|
|
|
|
*ids = _kip_id_sets;
|
|
|
|
*entries = _kip_id_sets_cnt;
|
|
|
|
}
|
|
|
|
|
2019-06-30 00:45:18 +00:00
|
|
|
static void parse_external_kip_patches()
|
|
|
|
{
|
2022-01-20 11:31:16 +00:00
|
|
|
static bool ext_patches_parsed = false;
|
2020-04-27 06:38:09 +00:00
|
|
|
|
2022-01-20 11:31:16 +00:00
|
|
|
if (ext_patches_parsed)
|
2020-04-27 06:38:09 +00:00
|
|
|
return;
|
|
|
|
|
2019-06-30 00:45:18 +00:00
|
|
|
LIST_INIT(ini_kip_sections);
|
2022-01-20 11:31:16 +00:00
|
|
|
if (ini_patch_parse(&ini_kip_sections, "bootloader/patches.ini"))
|
2019-06-30 00:45:18 +00:00
|
|
|
{
|
2020-04-27 06:38:09 +00:00
|
|
|
// Copy ids into a new patchset.
|
|
|
|
_kip_id_sets = calloc(sizeof(kip1_id_t), 256); // Max 256 kip ids.
|
|
|
|
memcpy(_kip_id_sets, _kip_ids, sizeof(_kip_ids));
|
|
|
|
|
2019-06-30 00:45:18 +00:00
|
|
|
// Parse patchsets and glue them together.
|
|
|
|
LIST_FOREACH_ENTRY(ini_kip_sec_t, ini_psec, &ini_kip_sections, link)
|
|
|
|
{
|
2020-04-27 06:38:09 +00:00
|
|
|
kip1_id_t* curr_kip = NULL;
|
|
|
|
bool found = false;
|
2022-01-20 11:31:16 +00:00
|
|
|
for (u32 curr_kip_idx = 0; curr_kip_idx < _kip_id_sets_cnt + 1; curr_kip_idx++)
|
2019-06-30 00:45:18 +00:00
|
|
|
{
|
2020-04-27 06:38:09 +00:00
|
|
|
curr_kip = &_kip_id_sets[curr_kip_idx];
|
|
|
|
|
2022-01-20 11:31:16 +00:00
|
|
|
// Check if reached the end of predefined list.
|
2020-04-27 06:38:09 +00:00
|
|
|
if (!curr_kip->name)
|
|
|
|
break;
|
2019-06-30 00:45:18 +00:00
|
|
|
|
2022-01-20 11:31:16 +00:00
|
|
|
// Check if name and hash match.
|
2020-04-27 06:38:09 +00:00
|
|
|
if (!strcmp(curr_kip->name, ini_psec->name) && !memcmp(curr_kip->hash, ini_psec->hash, 8))
|
2019-06-30 00:45:18 +00:00
|
|
|
{
|
2020-04-27 06:38:09 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
2019-06-30 00:45:18 +00:00
|
|
|
}
|
2020-04-27 06:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!curr_kip)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// If not found, create a new empty entry.
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
curr_kip->name = ini_psec->name;
|
|
|
|
memcpy(curr_kip->hash, ini_psec->hash, 8);
|
|
|
|
curr_kip->patchset = calloc(sizeof(kip1_patchset_t), 1);
|
|
|
|
|
|
|
|
_kip_id_sets_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
kip1_patchset_t *patchsets = (kip1_patchset_t *)calloc(sizeof(kip1_patchset_t), 16); // Max 16 patchsets per kip.
|
|
|
|
|
|
|
|
u32 curr_patchset_idx;
|
|
|
|
for(curr_patchset_idx = 0; curr_kip->patchset[curr_patchset_idx].name != NULL; curr_patchset_idx++)
|
|
|
|
{
|
|
|
|
patchsets[curr_patchset_idx].name = curr_kip->patchset[curr_patchset_idx].name;
|
|
|
|
patchsets[curr_patchset_idx].patches = curr_kip->patchset[curr_patchset_idx].patches;
|
|
|
|
}
|
2019-06-30 00:45:18 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
curr_kip->patchset = patchsets;
|
|
|
|
bool first_ext_patch = true;
|
|
|
|
u32 curr_patch_idx = 0;
|
2019-06-30 00:45:18 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
// Parse patches and glue them together to a patchset.
|
|
|
|
kip1_patch_t *patches = calloc(sizeof(kip1_patch_t), 32); // Max 32 patches per set.
|
|
|
|
LIST_FOREACH_ENTRY(ini_patchset_t, pt, &ini_psec->pts, link)
|
|
|
|
{
|
|
|
|
if (first_ext_patch)
|
|
|
|
{
|
|
|
|
first_ext_patch = false;
|
2022-01-20 11:31:16 +00:00
|
|
|
patchsets[curr_patchset_idx].name = pt->name;
|
2020-04-27 06:38:09 +00:00
|
|
|
patchsets[curr_patchset_idx].patches = patches;
|
|
|
|
}
|
2022-01-20 11:31:16 +00:00
|
|
|
else if (strcmp(pt->name, patchsets[curr_patchset_idx].name))
|
2019-06-30 00:45:18 +00:00
|
|
|
{
|
2022-01-20 11:31:16 +00:00
|
|
|
// New patchset name found, create a new set.
|
|
|
|
curr_patchset_idx++;
|
|
|
|
curr_patch_idx = 0;
|
|
|
|
patches = calloc(sizeof(kip1_patch_t), 32); // Max 32 patches per set.
|
|
|
|
|
|
|
|
patchsets[curr_patchset_idx].name = pt->name;
|
|
|
|
patchsets[curr_patchset_idx].patches = patches;
|
2020-04-27 06:38:09 +00:00
|
|
|
}
|
2019-06-30 00:45:18 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
if (pt->length)
|
|
|
|
{
|
|
|
|
patches[curr_patch_idx].offset = pt->offset;
|
|
|
|
patches[curr_patch_idx].length = pt->length;
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2022-01-20 11:31:16 +00:00
|
|
|
patches[curr_patch_idx].srcData = (char *)pt->srcData;
|
|
|
|
patches[curr_patch_idx].dstData = (char *)pt->dstData;
|
2019-06-30 00:45:18 +00:00
|
|
|
}
|
2020-04-27 06:38:09 +00:00
|
|
|
else
|
|
|
|
patches[curr_patch_idx].srcData = malloc(1); // Empty patches check. Keep everything else as 0.
|
2019-06-30 00:45:18 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
curr_patch_idx++;
|
|
|
|
}
|
|
|
|
curr_patchset_idx++;
|
|
|
|
patchsets[curr_patchset_idx].name = NULL;
|
|
|
|
patchsets[curr_patchset_idx].patches = NULL;
|
2019-06-30 00:45:18 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-27 06:38:09 +00:00
|
|
|
|
2022-01-20 11:31:16 +00:00
|
|
|
ext_patches_parsed = true;
|
2019-06-30 00:45:18 +00:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:17:55 +00:00
|
|
|
const pkg2_kernel_id_t *pkg2_identify(u8 *hash)
|
|
|
|
{
|
2020-11-15 11:56:45 +00:00
|
|
|
for (u32 i = 0; i < ARRAY_SIZE(_pkg2_kernel_ids); i++)
|
2019-06-30 00:24:58 +00:00
|
|
|
{
|
2019-04-23 15:17:55 +00:00
|
|
|
if (!memcmp(hash, _pkg2_kernel_ids[i].hash, sizeof(_pkg2_kernel_ids[0].hash)))
|
2018-06-04 23:04:08 +00:00
|
|
|
return &_pkg2_kernel_ids[i];
|
2019-06-30 00:24:58 +00:00
|
|
|
}
|
2018-06-04 23:04:08 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-01 05:15:48 +00:00
|
|
|
static u32 _pkg2_calc_kip1_size(pkg2_kip1_t *kip1)
|
|
|
|
{
|
|
|
|
u32 size = sizeof(pkg2_kip1_t);
|
|
|
|
for (u32 j = 0; j < KIP1_NUM_SECTIONS; j++)
|
|
|
|
size += kip1->sections[j].size_comp;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2019-09-12 20:37:00 +00:00
|
|
|
void pkg2_get_newkern_info(u8 *kern_data)
|
|
|
|
{
|
2020-04-14 14:40:41 +00:00
|
|
|
u32 pkg2_newkern_ini1_off = 0;
|
|
|
|
pkg2_newkern_ini1_start = 0;
|
|
|
|
|
|
|
|
// Find static OP offset that is close to INI1 offset.
|
|
|
|
u32 counter_ops = 0x100;
|
|
|
|
while (counter_ops)
|
|
|
|
{
|
|
|
|
if (*(u32 *)(kern_data + 0x100 - counter_ops) == PKG2_NEWKERN_GET_INI1_HEURISTIC)
|
|
|
|
{
|
|
|
|
pkg2_newkern_ini1_off = 0x100 - counter_ops + 12; // OP found. Add 12 for the INI1 offset.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
counter_ops -= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Offset not found?
|
|
|
|
if (!counter_ops)
|
|
|
|
return;
|
|
|
|
|
|
|
|
u32 info_op = *(u32 *)(kern_data + pkg2_newkern_ini1_off);
|
|
|
|
pkg2_newkern_ini1_val = ((info_op & 0xFFFF) >> 3) + pkg2_newkern_ini1_off; // Parse ADR and PC.
|
2019-09-12 20:37:00 +00:00
|
|
|
|
|
|
|
pkg2_newkern_ini1_start = *(u32 *)(kern_data + pkg2_newkern_ini1_val);
|
|
|
|
pkg2_newkern_ini1_end = *(u32 *)(kern_data + pkg2_newkern_ini1_val + 0x8);
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:40:41 +00:00
|
|
|
bool pkg2_parse_kips(link_t *info, pkg2_hdr_t *pkg2, bool *new_pkg2)
|
2018-05-01 05:15:48 +00:00
|
|
|
{
|
2019-04-21 14:37:12 +00:00
|
|
|
u8 *ptr;
|
2019-04-23 00:41:07 +00:00
|
|
|
// Check for new pkg2 type.
|
2019-04-21 14:37:12 +00:00
|
|
|
if (!pkg2->sec_size[PKG2_SEC_INI1])
|
|
|
|
{
|
2019-09-12 20:37:00 +00:00
|
|
|
pkg2_get_newkern_info(pkg2->data);
|
|
|
|
|
2020-04-14 14:40:41 +00:00
|
|
|
if (!pkg2_newkern_ini1_start)
|
|
|
|
return false;
|
|
|
|
|
2019-09-12 20:37:00 +00:00
|
|
|
ptr = pkg2->data + pkg2_newkern_ini1_start;
|
2019-04-23 00:41:07 +00:00
|
|
|
*new_pkg2 = true;
|
2019-04-21 14:37:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ptr = pkg2->data + pkg2->sec_size[PKG2_SEC_KERNEL];
|
|
|
|
|
2018-05-01 05:15:48 +00:00
|
|
|
pkg2_ini1_t *ini1 = (pkg2_ini1_t *)ptr;
|
|
|
|
ptr += sizeof(pkg2_ini1_t);
|
|
|
|
|
|
|
|
for (u32 i = 0; i < ini1->num_procs; i++)
|
|
|
|
{
|
|
|
|
pkg2_kip1_t *kip1 = (pkg2_kip1_t *)ptr;
|
|
|
|
pkg2_kip1_info_t *ki = (pkg2_kip1_info_t *)malloc(sizeof(pkg2_kip1_info_t));
|
|
|
|
ki->kip1 = kip1;
|
|
|
|
ki->size = _pkg2_calc_kip1_size(kip1);
|
|
|
|
list_append(info, &ki->link);
|
|
|
|
ptr += ki->size;
|
|
|
|
DPRINTF(" kip1 %d:%s @ %08X (%08X)\n", i, kip1->name, (u32)kip1, ki->size);
|
|
|
|
}
|
2020-04-14 14:40:41 +00:00
|
|
|
|
|
|
|
return true;
|
2018-05-01 05:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int pkg2_has_kip(link_t *info, u64 tid)
|
|
|
|
{
|
|
|
|
LIST_FOREACH_ENTRY(pkg2_kip1_info_t, ki, info, link)
|
|
|
|
if(ki->kip1->tid == tid)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pkg2_replace_kip(link_t *info, u64 tid, pkg2_kip1_t *kip1)
|
|
|
|
{
|
|
|
|
LIST_FOREACH_ENTRY(pkg2_kip1_info_t, ki, info, link)
|
2019-06-30 00:24:58 +00:00
|
|
|
{
|
2018-05-01 05:15:48 +00:00
|
|
|
if (ki->kip1->tid == tid)
|
|
|
|
{
|
|
|
|
ki->kip1 = kip1;
|
|
|
|
ki->size = _pkg2_calc_kip1_size(kip1);
|
2019-06-30 00:40:37 +00:00
|
|
|
DPRINTF("replaced kip %s (new size %08X)\n", kip1->name, ki->size);
|
2018-05-01 05:15:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-06-30 00:24:58 +00:00
|
|
|
}
|
2018-05-01 05:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void pkg2_add_kip(link_t *info, pkg2_kip1_t *kip1)
|
|
|
|
{
|
|
|
|
pkg2_kip1_info_t *ki = (pkg2_kip1_info_t *)malloc(sizeof(pkg2_kip1_info_t));
|
|
|
|
ki->kip1 = kip1;
|
|
|
|
ki->size = _pkg2_calc_kip1_size(kip1);
|
2019-06-30 00:40:37 +00:00
|
|
|
DPRINTF("added kip %s (size %08X)\n", kip1->name, ki->size);
|
2018-05-01 05:15:48 +00:00
|
|
|
list_append(info, &ki->link);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pkg2_merge_kip(link_t *info, pkg2_kip1_t *kip1)
|
|
|
|
{
|
|
|
|
if (pkg2_has_kip(info, kip1->tid))
|
|
|
|
pkg2_replace_kip(info, kip1->tid, kip1);
|
|
|
|
else
|
|
|
|
pkg2_add_kip(info, kip1);
|
|
|
|
}
|
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
int pkg2_decompress_kip(pkg2_kip1_info_t* ki, u32 sectsToDecomp)
|
|
|
|
{
|
|
|
|
u32 compClearMask = ~sectsToDecomp;
|
|
|
|
if ((ki->kip1->flags & compClearMask) == ki->kip1->flags)
|
2018-08-05 11:40:32 +00:00
|
|
|
return 0; // Already decompressed, nothing to do.
|
2018-07-22 20:22:10 +00:00
|
|
|
|
|
|
|
pkg2_kip1_t hdr;
|
|
|
|
memcpy(&hdr, ki->kip1, sizeof(hdr));
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
unsigned int newKipSize = sizeof(hdr);
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 sectIdx = 0; sectIdx < KIP1_NUM_SECTIONS; sectIdx++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
u32 sectCompBit = BIT(sectIdx);
|
2018-08-05 11:40:32 +00:00
|
|
|
// For compressed, cant get actual decompressed size without doing it, so use safe "output size".
|
2019-10-18 15:02:06 +00:00
|
|
|
if (sectIdx < 3 && (sectsToDecomp & sectCompBit) && (hdr.flags & sectCompBit))
|
2018-07-22 20:22:10 +00:00
|
|
|
newKipSize += hdr.sections[sectIdx].size_decomp;
|
|
|
|
else
|
|
|
|
newKipSize += hdr.sections[sectIdx].size_comp;
|
|
|
|
}
|
|
|
|
|
2019-10-18 15:02:06 +00:00
|
|
|
pkg2_kip1_t* newKip = malloc(newKipSize);
|
2018-07-22 20:22:10 +00:00
|
|
|
unsigned char* dstDataPtr = newKip->data;
|
|
|
|
const unsigned char* srcDataPtr = ki->kip1->data;
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 sectIdx = 0; sectIdx < KIP1_NUM_SECTIONS; sectIdx++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
u32 sectCompBit = BIT(sectIdx);
|
2018-08-05 11:40:32 +00:00
|
|
|
// Easy copy path for uncompressed or ones we dont want to uncompress.
|
2018-07-22 20:22:10 +00:00
|
|
|
if (sectIdx >= 3 || !(sectsToDecomp & sectCompBit) || !(hdr.flags & sectCompBit))
|
|
|
|
{
|
|
|
|
unsigned int dataSize = hdr.sections[sectIdx].size_comp;
|
|
|
|
if (dataSize == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(dstDataPtr, srcDataPtr, dataSize);
|
|
|
|
srcDataPtr += dataSize;
|
|
|
|
dstDataPtr += dataSize;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int compSize = hdr.sections[sectIdx].size_comp;
|
|
|
|
unsigned int outputSize = hdr.sections[sectIdx].size_decomp;
|
2022-01-20 11:32:48 +00:00
|
|
|
gfx_printf("Decomping '%s', sect %d, size %d..\n", (const char*)hdr.name, sectIdx, compSize);
|
2018-07-22 20:22:10 +00:00
|
|
|
if (blz_uncompress_srcdest(srcDataPtr, compSize, dstDataPtr, outputSize) == 0)
|
|
|
|
{
|
2020-03-03 02:11:13 +00:00
|
|
|
gfx_con.mute = false;
|
2022-01-20 11:32:48 +00:00
|
|
|
gfx_printf("%kERROR decomping sect %d of '%s'!%k\n", 0xFFFF0000, sectIdx, (char*)hdr.name, 0xFFCCCCCC);
|
2018-07-22 20:22:10 +00:00
|
|
|
free(newKip);
|
2018-08-05 11:40:32 +00:00
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DPRINTF("Done! Decompressed size is %d!\n", outputSize);
|
|
|
|
}
|
|
|
|
hdr.sections[sectIdx].size_comp = outputSize;
|
|
|
|
srcDataPtr += compSize;
|
|
|
|
dstDataPtr += outputSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
hdr.flags &= compClearMask;
|
|
|
|
memcpy(newKip, &hdr, sizeof(hdr));
|
|
|
|
newKipSize = dstDataPtr-(unsigned char*)(newKip);
|
|
|
|
|
|
|
|
free(ki->kip1);
|
|
|
|
ki->kip1 = newKip;
|
|
|
|
ki->size = newKipSize;
|
2018-08-05 11:40:32 +00:00
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-06-30 00:24:58 +00:00
|
|
|
static int _kipm_inject(const char *kipm_path, char *target_name, pkg2_kip1_info_t* ki)
|
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
if (!strncmp((const char *)ki->kip1->name, target_name, sizeof(ki->kip1->name)))
|
2019-06-30 00:24:58 +00:00
|
|
|
{
|
|
|
|
u32 size = 0;
|
|
|
|
u8 *kipm_data = (u8 *)sd_file_read(kipm_path, &size);
|
|
|
|
if (!kipm_data)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
u32 inject_size = size - sizeof(ki->kip1->caps);
|
|
|
|
u8 *kip_patched_data = (u8 *)malloc(ki->size + inject_size);
|
|
|
|
|
|
|
|
// Copy headers.
|
|
|
|
memcpy(kip_patched_data, ki->kip1, sizeof(pkg2_kip1_t));
|
|
|
|
|
|
|
|
pkg2_kip1_t *fs_kip = ki->kip1;
|
|
|
|
ki->kip1 = (pkg2_kip1_t *)kip_patched_data;
|
|
|
|
ki->size = ki->size + inject_size;
|
|
|
|
|
|
|
|
// Patch caps.
|
|
|
|
memcpy(&ki->kip1->caps, kipm_data, sizeof(ki->kip1->caps));
|
|
|
|
// Copy our .text data.
|
|
|
|
memcpy(&ki->kip1->data, kipm_data + sizeof(ki->kip1->caps), inject_size);
|
|
|
|
|
|
|
|
u32 new_offset = 0;
|
|
|
|
|
|
|
|
for (u32 currSectIdx = 0; currSectIdx < KIP1_NUM_SECTIONS - 2; currSectIdx++)
|
|
|
|
{
|
|
|
|
if(!currSectIdx) // .text.
|
|
|
|
{
|
2019-08-27 22:08:57 +00:00
|
|
|
memcpy(ki->kip1->data + inject_size, fs_kip->data, fs_kip->sections[0].size_comp);
|
2019-06-30 00:24:58 +00:00
|
|
|
ki->kip1->sections[0].size_decomp += inject_size;
|
|
|
|
ki->kip1->sections[0].size_comp += inject_size;
|
|
|
|
}
|
|
|
|
else // Others.
|
|
|
|
{
|
|
|
|
if (currSectIdx < 3)
|
|
|
|
memcpy(ki->kip1->data + new_offset + inject_size, fs_kip->data + new_offset, fs_kip->sections[currSectIdx].size_comp);
|
|
|
|
ki->kip1->sections[currSectIdx].offset += inject_size;
|
|
|
|
}
|
|
|
|
new_offset += fs_kip->sections[currSectIdx].size_comp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Patch PMC capabilities for 1.0.0.
|
|
|
|
if (!emu_cfg.fs_ver)
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < 0x20; i++)
|
|
|
|
{
|
|
|
|
if (ki->kip1->caps[i] == 0xFFFFFFFF)
|
|
|
|
{
|
|
|
|
ki->kip1->caps[i] = 0x07000E7F;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(kipm_data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
const char* pkg2_patch_kips(link_t *info, char* patchNames)
|
|
|
|
{
|
|
|
|
if (patchNames == NULL || patchNames[0] == 0)
|
|
|
|
return NULL;
|
|
|
|
|
2019-04-23 15:17:55 +00:00
|
|
|
static const u32 MAX_NUM_PATCHES_REQUESTED = sizeof(u32) * 8;
|
2018-07-22 20:22:10 +00:00
|
|
|
char* patches[MAX_NUM_PATCHES_REQUESTED];
|
|
|
|
|
2019-02-11 22:34:35 +00:00
|
|
|
u32 numPatches = 1;
|
2018-07-22 20:22:10 +00:00
|
|
|
patches[0] = patchNames;
|
|
|
|
{
|
|
|
|
for (char* p = patchNames; *p != 0; p++)
|
|
|
|
{
|
|
|
|
if (*p == ',')
|
|
|
|
{
|
|
|
|
*p = 0;
|
2019-02-11 22:34:35 +00:00
|
|
|
patches[numPatches++] = p + 1;
|
2018-07-22 20:22:10 +00:00
|
|
|
if (numPatches >= MAX_NUM_PATCHES_REQUESTED)
|
|
|
|
return "too_many_patches";
|
|
|
|
}
|
2021-04-12 01:28:14 +00:00
|
|
|
else if (*p >= 'A' && *p <= 'Z') // Convert to lowercase.
|
2018-07-22 20:22:10 +00:00
|
|
|
*p += 0x20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-05 11:40:32 +00:00
|
|
|
u32 patchesApplied = 0; // Bitset over patches.
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 i = 0; i < numPatches; i++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2018-08-05 11:40:32 +00:00
|
|
|
// Eliminate leading spaces.
|
2019-02-11 22:34:35 +00:00
|
|
|
for (const char* p = patches[i]; *p != 0; p++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
|
|
|
if (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n')
|
|
|
|
patches[i]++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
int valueLen = strlen(patches[i]);
|
|
|
|
if (valueLen == 0)
|
|
|
|
continue;
|
|
|
|
|
2018-08-05 11:40:32 +00:00
|
|
|
// Eliminate trailing spaces.
|
2019-06-30 00:24:58 +00:00
|
|
|
for (int chIdx = valueLen - 1; chIdx >= 0; chIdx--)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
|
|
|
const char* p = patches[i] + chIdx;
|
|
|
|
if (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n')
|
|
|
|
valueLen = chIdx;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
patches[i][valueLen] = 0;
|
|
|
|
|
|
|
|
DPRINTF("Requested patch: '%s'\n", patches[i]);
|
|
|
|
}
|
|
|
|
|
2022-01-20 11:31:16 +00:00
|
|
|
// Parse external patches if needed.
|
|
|
|
for (u32 i = 0; i < numPatches; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(patches[i], "emummc") && strcmp(patches[i], "nogc"))
|
|
|
|
{
|
|
|
|
parse_external_kip_patches();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 11:32:48 +00:00
|
|
|
u32 shaBuf[SE_SHA_256_SIZE / sizeof(u32)];
|
2018-07-22 20:22:10 +00:00
|
|
|
LIST_FOREACH_ENTRY(pkg2_kip1_info_t, ki, info, link)
|
|
|
|
{
|
2018-08-05 11:40:32 +00:00
|
|
|
shaBuf[0] = 0; // sha256 for this kip not yet calculated.
|
2020-04-27 06:38:09 +00:00
|
|
|
for (u32 currKipIdx = 0; currKipIdx < _kip_id_sets_cnt; currKipIdx++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2020-04-27 06:38:09 +00:00
|
|
|
if (strncmp((const char*)ki->kip1->name, _kip_id_sets[currKipIdx].name, sizeof(ki->kip1->name)) != 0)
|
2018-07-22 20:22:10 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
u32 bitsAffected = 0;
|
2020-04-27 06:38:09 +00:00
|
|
|
kip1_patchset_t* currPatchset = _kip_id_sets[currKipIdx].patchset;
|
2018-07-22 20:22:10 +00:00
|
|
|
while (currPatchset != NULL && currPatchset->name != NULL)
|
|
|
|
{
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 i = 0; i < numPatches; i++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2020-06-14 10:55:41 +00:00
|
|
|
// Continue if patch name does not match.
|
2018-07-22 20:22:10 +00:00
|
|
|
if (strcmp(currPatchset->name, patches[i]) != 0)
|
2020-06-14 10:55:41 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
bitsAffected = i + 1;
|
|
|
|
break;
|
2018-07-22 20:22:10 +00:00
|
|
|
}
|
|
|
|
currPatchset++;
|
|
|
|
}
|
|
|
|
|
2018-08-05 11:40:32 +00:00
|
|
|
// Dont bother even hashing this KIP if we dont have any patches enabled for it.
|
2018-07-22 20:22:10 +00:00
|
|
|
if (bitsAffected == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (shaBuf[0] == 0)
|
|
|
|
{
|
2020-06-13 15:32:40 +00:00
|
|
|
if (!se_calc_sha256_oneshot(shaBuf, ki->kip1, ki->size))
|
2018-07-22 20:22:10 +00:00
|
|
|
memset(shaBuf, 0, sizeof(shaBuf));
|
2019-10-18 15:02:06 +00:00
|
|
|
}
|
2018-07-22 20:22:10 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
if (memcmp(shaBuf, _kip_id_sets[currKipIdx].hash, sizeof(_kip_id_sets[0].hash)) != 0)
|
2018-07-22 20:22:10 +00:00
|
|
|
continue;
|
|
|
|
|
2018-08-05 11:40:32 +00:00
|
|
|
// Find out which sections are affected by the enabled patches, to know which to decompress.
|
2018-07-22 20:22:10 +00:00
|
|
|
bitsAffected = 0;
|
2020-04-27 06:38:09 +00:00
|
|
|
currPatchset = _kip_id_sets[currKipIdx].patchset;
|
2018-07-22 20:22:10 +00:00
|
|
|
while (currPatchset != NULL && currPatchset->name != NULL)
|
|
|
|
{
|
|
|
|
if (currPatchset->patches != NULL)
|
|
|
|
{
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 currEnabIdx = 0; currEnabIdx < numPatches; currEnabIdx++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
|
|
|
if (strcmp(currPatchset->name, patches[currEnabIdx]))
|
|
|
|
continue;
|
|
|
|
|
2019-06-30 00:24:58 +00:00
|
|
|
if (!strcmp(currPatchset->name, "emummc"))
|
2022-01-20 11:32:48 +00:00
|
|
|
bitsAffected |= BIT(GET_KIP_PATCH_SECTION(currPatchset->patches->offset));
|
2019-06-30 00:24:58 +00:00
|
|
|
|
|
|
|
for (const kip1_patch_t* currPatch=currPatchset->patches; currPatch != NULL && (currPatch->length != 0); currPatch++)
|
2022-01-20 11:32:48 +00:00
|
|
|
bitsAffected |= BIT(GET_KIP_PATCH_SECTION(currPatch->offset));
|
2018-07-22 20:22:10 +00:00
|
|
|
}
|
2019-10-18 15:02:06 +00:00
|
|
|
}
|
2018-07-22 20:22:10 +00:00
|
|
|
currPatchset++;
|
|
|
|
}
|
|
|
|
|
2018-08-05 11:40:32 +00:00
|
|
|
// Got patches to apply to this kip, have to decompress it.
|
2018-07-22 20:22:10 +00:00
|
|
|
if (pkg2_decompress_kip(ki, bitsAffected))
|
2018-08-05 11:40:32 +00:00
|
|
|
return (const char*)ki->kip1->name; // Failed to decompress.
|
2018-07-22 20:22:10 +00:00
|
|
|
|
2020-04-27 06:38:09 +00:00
|
|
|
currPatchset = _kip_id_sets[currKipIdx].patchset;
|
2019-06-30 00:24:58 +00:00
|
|
|
bool emummc_patch_selected = false;
|
2018-07-22 20:22:10 +00:00
|
|
|
while (currPatchset != NULL && currPatchset->name != NULL)
|
|
|
|
{
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 currEnabIdx = 0; currEnabIdx < numPatches; currEnabIdx++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
|
|
|
if (strcmp(currPatchset->name, patches[currEnabIdx]))
|
|
|
|
continue;
|
|
|
|
|
2022-01-20 11:32:48 +00:00
|
|
|
u32 appliedMask = BIT(currEnabIdx);
|
2019-12-04 16:48:00 +00:00
|
|
|
|
|
|
|
if (!strcmp(currPatchset->name, "emummc"))
|
|
|
|
{
|
2019-12-08 16:32:09 +00:00
|
|
|
emummc_patch_selected = true;
|
|
|
|
patchesApplied |= appliedMask;
|
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
continue; // Patching is done later.
|
2019-12-04 16:48:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (currPatchset->patches == NULL)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
DPRINTF("Patch '%s' not necessary for %s\n", currPatchset->name, (const char*)ki->kip1->name);
|
2018-07-22 20:22:10 +00:00
|
|
|
patchesApplied |= appliedMask;
|
2019-06-30 00:24:58 +00:00
|
|
|
|
2021-04-12 01:28:14 +00:00
|
|
|
continue; // Continue in case it's double defined.
|
2018-07-22 20:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* kipSectData = ki->kip1->data;
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 currSectIdx = 0; currSectIdx < KIP1_NUM_SECTIONS; currSectIdx++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
if (bitsAffected & BIT(currSectIdx))
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
gfx_printf("Applying '%s' on %s, sect %d\n", currPatchset->name, (const char*)ki->kip1->name, currSectIdx);
|
|
|
|
for (const kip1_patch_t* currPatch = currPatchset->patches; currPatch != NULL && currPatch->srcData != NULL; currPatch++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
|
|
|
if (GET_KIP_PATCH_SECTION(currPatch->offset) != currSectIdx)
|
|
|
|
continue;
|
|
|
|
|
2019-12-04 16:44:59 +00:00
|
|
|
if (!currPatch->length)
|
|
|
|
{
|
2020-03-03 02:11:13 +00:00
|
|
|
gfx_con.mute = false;
|
2022-01-20 11:32:48 +00:00
|
|
|
gfx_printf("%kPatch empty!%k\n", 0xFFFF0000, 0xFFCCCCCC);
|
2019-12-04 16:44:59 +00:00
|
|
|
return currPatchset->name; // MUST stop here as it's not probably intended.
|
|
|
|
}
|
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
u32 currOffset = GET_KIP_PATCH_OFFSET(currPatch->offset);
|
2021-04-12 01:28:14 +00:00
|
|
|
// If source does not match and is not already patched, throw an error.
|
2019-12-04 16:48:00 +00:00
|
|
|
if ((memcmp(&kipSectData[currOffset], currPatch->srcData, currPatch->length) != 0) &&
|
|
|
|
(memcmp(&kipSectData[currOffset], currPatch->dstData, currPatch->length) != 0))
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2020-03-03 02:11:13 +00:00
|
|
|
gfx_con.mute = false;
|
2022-01-20 11:32:48 +00:00
|
|
|
gfx_printf("%kPatch mismatch at 0x%x!%k\n", 0xFFFF0000, currOffset, 0xFFCCCCCC);
|
2018-08-05 11:40:32 +00:00
|
|
|
return currPatchset->name; // MUST stop here as kip is likely corrupt.
|
2018-07-22 20:22:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DPRINTF("Patching %d bytes at offset 0x%x\n", currPatch->length, currOffset);
|
|
|
|
memcpy(&kipSectData[currOffset], currPatch->dstData, currPatch->length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kipSectData += ki->kip1->sections[currSectIdx].size_comp;
|
|
|
|
}
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2018-07-22 20:22:10 +00:00
|
|
|
patchesApplied |= appliedMask;
|
2021-04-12 01:28:14 +00:00
|
|
|
continue; // Continue in case it's double defined.
|
2018-07-22 20:22:10 +00:00
|
|
|
}
|
|
|
|
currPatchset++;
|
|
|
|
}
|
2021-10-15 13:42:39 +00:00
|
|
|
|
2021-04-09 16:49:44 +00:00
|
|
|
if (emummc_patch_selected && !strncmp(_kip_id_sets[currKipIdx].name, "FS", sizeof(ki->kip1->name)))
|
2019-06-30 00:24:58 +00:00
|
|
|
{
|
|
|
|
emummc_patch_selected = false;
|
|
|
|
emu_cfg.fs_ver = currKipIdx;
|
|
|
|
if (currKipIdx)
|
|
|
|
emu_cfg.fs_ver--;
|
2019-07-06 19:18:32 +00:00
|
|
|
if (currKipIdx > 17)
|
2019-06-30 00:24:58 +00:00
|
|
|
emu_cfg.fs_ver -= 2;
|
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
gfx_printf("Injecting emuMMC. FS ID: %d\n", emu_cfg.fs_ver);
|
2019-06-30 00:24:58 +00:00
|
|
|
if (_kipm_inject("/bootloader/sys/emummc.kipm", "FS", ki))
|
|
|
|
return "emummc";
|
|
|
|
}
|
2018-07-22 20:22:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-11 22:34:35 +00:00
|
|
|
for (u32 i = 0; i < numPatches; i++)
|
2018-07-22 20:22:10 +00:00
|
|
|
{
|
2022-01-20 11:32:48 +00:00
|
|
|
if ((patchesApplied & BIT(i)) == 0)
|
2018-07-22 20:22:10 +00:00
|
|
|
return patches[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Master key 7 encrypted with 8. (7.0.0 with 8.1.0). AES-ECB
|
|
|
|
static const u8 mkey_vector_7xx[SE_KEY_128_SIZE] =
|
|
|
|
{ 0xEA, 0x60, 0xB3, 0xEA, 0xCE, 0x8F, 0x24, 0x46, 0x7D, 0x33, 0x9C, 0xD1, 0xBC, 0x24, 0x98, 0x29 };
|
2019-12-08 16:32:09 +00:00
|
|
|
|
2020-06-20 18:31:58 +00:00
|
|
|
u8 pkg2_keyslot;
|
2021-08-28 14:53:14 +00:00
|
|
|
pkg2_hdr_t *pkg2_decrypt(void *data, u8 kb, bool is_exo)
|
2019-09-12 20:39:47 +00:00
|
|
|
{
|
2018-05-01 05:15:48 +00:00
|
|
|
u8 *pdata = (u8 *)data;
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2018-07-10 13:59:03 +00:00
|
|
|
// Skip signature.
|
2018-05-01 05:15:48 +00:00
|
|
|
pdata += 0x100;
|
|
|
|
|
|
|
|
pkg2_hdr_t *hdr = (pkg2_hdr_t *)pdata;
|
|
|
|
|
2018-07-10 13:59:03 +00:00
|
|
|
// Skip header.
|
2018-05-01 05:15:48 +00:00
|
|
|
pdata += sizeof(pkg2_hdr_t);
|
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Set pkg2 key slot to default. If 7.0.0 it will change to 9.
|
|
|
|
pkg2_keyslot = 8;
|
2019-12-08 16:32:09 +00:00
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Decrypt 7.0.0 pkg2 via 8.1.0 mkey on Erista.
|
|
|
|
if (!h_cfg.t210b01 && kb == KB_FIRMWARE_VERSION_700)
|
2019-09-12 20:39:47 +00:00
|
|
|
{
|
2021-02-06 00:55:58 +00:00
|
|
|
u8 tmp_mkey[SE_KEY_128_SIZE];
|
2019-09-12 20:39:47 +00:00
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Decrypt 7.0.0 encrypted mkey.
|
|
|
|
se_aes_crypt_ecb(!is_exo ? 7 : 13, DECRYPT, tmp_mkey, SE_KEY_128_SIZE, mkey_vector_7xx, SE_KEY_128_SIZE);
|
2020-04-27 06:38:09 +00:00
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Set and unwrap pkg2 key.
|
|
|
|
se_aes_key_set(9, tmp_mkey, SE_KEY_128_SIZE);
|
|
|
|
se_aes_unwrap_key(9, 9, package2_keyseed);
|
2019-12-08 16:32:09 +00:00
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
pkg2_keyslot = 9;
|
2019-09-12 20:39:47 +00:00
|
|
|
}
|
|
|
|
|
2018-07-10 13:59:03 +00:00
|
|
|
// Decrypt header.
|
2020-06-20 18:31:58 +00:00
|
|
|
se_aes_crypt_ctr(pkg2_keyslot, hdr, sizeof(pkg2_hdr_t), hdr, sizeof(pkg2_hdr_t), hdr);
|
2018-05-01 05:15:48 +00:00
|
|
|
|
|
|
|
if (hdr->magic != PKG2_MAGIC)
|
|
|
|
return NULL;
|
|
|
|
|
2021-10-15 13:42:39 +00:00
|
|
|
// Decrypt sections.
|
2018-05-01 05:15:48 +00:00
|
|
|
for (u32 i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
DPRINTF("sec %d has size %08X\n", i, hdr->sec_size[i]);
|
|
|
|
if (!hdr->sec_size[i])
|
|
|
|
continue;
|
|
|
|
|
2021-02-06 00:55:58 +00:00
|
|
|
se_aes_crypt_ctr(pkg2_keyslot, pdata, hdr->sec_size[i], pdata, hdr->sec_size[i], &hdr->sec_ctr[i * SE_AES_IV_SIZE]);
|
2018-05-01 05:15:48 +00:00
|
|
|
|
|
|
|
pdata += hdr->sec_size[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return hdr;
|
|
|
|
}
|
|
|
|
|
2019-04-21 14:37:12 +00:00
|
|
|
static u32 _pkg2_ini1_build(u8 *pdst, pkg2_hdr_t *hdr, link_t *kips_info, bool new_pkg2)
|
|
|
|
{
|
|
|
|
u32 ini1_size = sizeof(pkg2_ini1_t);
|
|
|
|
pkg2_ini1_t *ini1 = (pkg2_ini1_t *)pdst;
|
2021-09-17 20:32:13 +00:00
|
|
|
|
|
|
|
// Set initial header and magic.
|
2019-04-21 14:37:12 +00:00
|
|
|
memset(ini1, 0, sizeof(pkg2_ini1_t));
|
|
|
|
ini1->magic = INI1_MAGIC;
|
|
|
|
pdst += sizeof(pkg2_ini1_t);
|
2021-09-17 20:32:13 +00:00
|
|
|
|
|
|
|
// Merge kips into INI1.
|
2019-04-21 14:37:12 +00:00
|
|
|
LIST_FOREACH_ENTRY(pkg2_kip1_info_t, ki, kips_info, link)
|
|
|
|
{
|
|
|
|
DPRINTF("adding kip1 '%s' @ %08X (%08X)\n", ki->kip1->name, (u32)ki->kip1, ki->size);
|
|
|
|
memcpy(pdst, ki->kip1, ki->size);
|
|
|
|
pdst += ki->size;
|
|
|
|
ini1_size += ki->size;
|
|
|
|
ini1->num_procs++;
|
|
|
|
}
|
2021-09-17 20:32:13 +00:00
|
|
|
|
|
|
|
// Align size and set it.
|
2019-06-30 00:24:58 +00:00
|
|
|
ini1_size = ALIGN(ini1_size, 4);
|
2019-04-21 14:37:12 +00:00
|
|
|
ini1->size = ini1_size;
|
2021-09-17 20:32:13 +00:00
|
|
|
|
|
|
|
// Encrypt INI1 in its own section if old pkg2. Otherwise it gets embedded into Kernel.
|
2019-04-21 14:37:12 +00:00
|
|
|
if (!new_pkg2)
|
|
|
|
{
|
|
|
|
hdr->sec_size[PKG2_SEC_INI1] = ini1_size;
|
|
|
|
hdr->sec_off[PKG2_SEC_INI1] = 0x14080000;
|
2021-02-06 00:55:58 +00:00
|
|
|
se_aes_crypt_ctr(8, ini1, ini1_size, ini1, ini1_size, &hdr->sec_ctr[PKG2_SEC_INI1 * SE_AES_IV_SIZE]);
|
2019-04-21 14:37:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hdr->sec_size[PKG2_SEC_INI1] = 0;
|
|
|
|
hdr->sec_off[PKG2_SEC_INI1] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ini1_size;
|
|
|
|
}
|
|
|
|
|
2022-01-20 11:34:18 +00:00
|
|
|
void pkg2_build_encrypt(void *dst, void *hos_ctxt, link_t *kips_info, bool is_exo)
|
2018-05-01 05:15:48 +00:00
|
|
|
{
|
|
|
|
u8 *pdst = (u8 *)dst;
|
2020-10-17 20:16:16 +00:00
|
|
|
launch_ctxt_t * ctxt = (launch_ctxt_t *)hos_ctxt;
|
|
|
|
u32 kernel_size = ctxt->kernel_size;
|
2020-10-17 20:18:48 +00:00
|
|
|
bool is_meso = *(u32 *)(ctxt->kernel + 4) == ATM_MESOSPHERE;
|
2021-08-28 14:53:14 +00:00
|
|
|
u8 kb = ctxt->pkg1_id->kb;
|
2020-10-17 20:18:48 +00:00
|
|
|
|
|
|
|
// Force new Package2 if Mesosphere.
|
|
|
|
if (is_meso)
|
|
|
|
ctxt->new_pkg2 = true;
|
2018-05-01 05:15:48 +00:00
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Set key version. For Erista 7.0.0, use 8.1.0 because of a bug in Exo2?
|
|
|
|
u8 key_ver = kb ? kb + 1 : 0;
|
|
|
|
if (pkg2_keyslot == 9)
|
|
|
|
{
|
|
|
|
key_ver = KB_FIRMWARE_VERSION_810 + 1;
|
|
|
|
pkg2_keyslot = 8;
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:59:03 +00:00
|
|
|
// Signature.
|
2018-05-01 05:15:48 +00:00
|
|
|
memset(pdst, 0, 0x100);
|
|
|
|
pdst += 0x100;
|
|
|
|
|
2018-07-10 13:59:03 +00:00
|
|
|
// Header.
|
2018-05-01 05:15:48 +00:00
|
|
|
pkg2_hdr_t *hdr = (pkg2_hdr_t *)pdst;
|
|
|
|
memset(hdr, 0, sizeof(pkg2_hdr_t));
|
2020-06-13 23:23:02 +00:00
|
|
|
|
|
|
|
// Set initial header values.
|
2018-05-01 05:15:48 +00:00
|
|
|
hdr->magic = PKG2_MAGIC;
|
2020-06-13 23:23:02 +00:00
|
|
|
hdr->bl_ver = 0;
|
|
|
|
hdr->pkg2_ver = 0xFF;
|
|
|
|
|
2020-10-17 20:16:16 +00:00
|
|
|
if (!ctxt->new_pkg2)
|
2019-04-21 14:37:12 +00:00
|
|
|
hdr->base = 0x10000000;
|
|
|
|
else
|
|
|
|
hdr->base = 0x60000;
|
2020-10-17 20:18:48 +00:00
|
|
|
DPRINTF("%s @ %08X (%08X)\n", is_meso ? "Mesosphere": "kernel",(u32)ctxt->kernel, kernel_size);
|
2018-05-01 05:15:48 +00:00
|
|
|
|
2020-06-13 23:23:02 +00:00
|
|
|
pdst += sizeof(pkg2_hdr_t);
|
|
|
|
|
2018-07-10 13:59:03 +00:00
|
|
|
// Kernel.
|
2020-10-17 20:16:16 +00:00
|
|
|
memcpy(pdst, ctxt->kernel, kernel_size);
|
|
|
|
if (!ctxt->new_pkg2)
|
2019-04-21 14:37:12 +00:00
|
|
|
hdr->sec_off[PKG2_SEC_KERNEL] = 0x10000000;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Set new INI1 offset to kernel.
|
2020-10-17 20:18:48 +00:00
|
|
|
*(u32 *)(pdst + (is_meso ? 8 : pkg2_newkern_ini1_val)) = kernel_size;
|
2020-10-17 20:16:16 +00:00
|
|
|
|
|
|
|
// Build INI1 for new Package2.
|
|
|
|
kernel_size += _pkg2_ini1_build(pdst + kernel_size, hdr, kips_info, ctxt->new_pkg2);
|
2019-04-21 14:37:12 +00:00
|
|
|
hdr->sec_off[PKG2_SEC_KERNEL] = 0x60000;
|
|
|
|
}
|
2018-05-01 05:15:48 +00:00
|
|
|
hdr->sec_size[PKG2_SEC_KERNEL] = kernel_size;
|
2021-02-06 00:55:58 +00:00
|
|
|
se_aes_crypt_ctr(pkg2_keyslot, pdst, kernel_size, pdst, kernel_size, &hdr->sec_ctr[PKG2_SEC_KERNEL * SE_AES_IV_SIZE]);
|
2018-05-01 05:15:48 +00:00
|
|
|
pdst += kernel_size;
|
|
|
|
DPRINTF("kernel encrypted\n");
|
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Build INI1 for old Package2.
|
2019-04-21 14:37:12 +00:00
|
|
|
u32 ini1_size = 0;
|
2020-10-17 20:16:16 +00:00
|
|
|
if (!ctxt->new_pkg2)
|
|
|
|
ini1_size = _pkg2_ini1_build(pdst, hdr, kips_info, false);
|
2018-05-01 05:15:48 +00:00
|
|
|
DPRINTF("INI1 encrypted\n");
|
|
|
|
|
2022-01-20 11:34:18 +00:00
|
|
|
if (!is_exo) // Not needed on Exosphere 1.0.0 and up.
|
|
|
|
{
|
|
|
|
// Calculate SHA256 over encrypted Kernel and INI1.
|
|
|
|
u8 *pk2_hash_data = (u8 *)dst + 0x100 + sizeof(pkg2_hdr_t);
|
|
|
|
se_calc_sha256_oneshot(&hdr->sec_sha256[SE_SHA_256_SIZE * PKG2_SEC_KERNEL],
|
|
|
|
(void *)pk2_hash_data, hdr->sec_size[PKG2_SEC_KERNEL]);
|
|
|
|
pk2_hash_data += hdr->sec_size[PKG2_SEC_KERNEL];
|
|
|
|
se_calc_sha256_oneshot(&hdr->sec_sha256[SE_SHA_256_SIZE * PKG2_SEC_INI1],
|
|
|
|
(void *)pk2_hash_data, hdr->sec_size[PKG2_SEC_INI1]);
|
|
|
|
}
|
2020-06-13 23:23:02 +00:00
|
|
|
|
2021-09-17 20:32:13 +00:00
|
|
|
// Encrypt header.
|
2018-05-01 05:15:48 +00:00
|
|
|
*(u32 *)hdr->ctr = 0x100 + sizeof(pkg2_hdr_t) + kernel_size + ini1_size;
|
2020-06-13 23:23:02 +00:00
|
|
|
hdr->ctr[4] = key_ver;
|
2020-06-20 18:31:58 +00:00
|
|
|
se_aes_crypt_ctr(pkg2_keyslot, hdr, sizeof(pkg2_hdr_t), hdr, sizeof(pkg2_hdr_t), hdr);
|
2021-02-06 00:55:58 +00:00
|
|
|
memset(hdr->ctr, 0 , SE_AES_IV_SIZE);
|
2018-05-01 05:15:48 +00:00
|
|
|
*(u32 *)hdr->ctr = 0x100 + sizeof(pkg2_hdr_t) + kernel_size + ini1_size;
|
2020-06-13 23:23:02 +00:00
|
|
|
hdr->ctr[4] = key_ver;
|
2018-05-01 05:15:48 +00:00
|
|
|
}
|