2019-03-04 23:05:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 shchmue
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "keys.h"
|
2019-09-17 05:18:41 +01:00
|
|
|
|
|
|
|
#include "../config/config.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include "../gfx/di.h"
|
|
|
|
#include "../gfx/gfx.h"
|
2019-09-17 16:51:30 +01:00
|
|
|
#include "../gfx/tui.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include "../hos/pkg1.h"
|
|
|
|
#include "../hos/pkg2.h"
|
|
|
|
#include "../hos/sept.h"
|
2019-09-24 23:49:22 +01:00
|
|
|
#include "../libs/fatfs/ff.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include "../mem/heap.h"
|
2019-04-19 18:00:10 +01:00
|
|
|
#include "../mem/mc.h"
|
2019-04-18 16:02:15 +01:00
|
|
|
#include "../mem/sdram.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include "../sec/se.h"
|
|
|
|
#include "../sec/se_t210.h"
|
|
|
|
#include "../sec/tsec.h"
|
|
|
|
#include "../soc/fuse.h"
|
|
|
|
#include "../soc/smmu.h"
|
|
|
|
#include "../soc/t210.h"
|
2019-09-17 16:51:30 +01:00
|
|
|
#include "../storage/emummc.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include "../storage/nx_emmc.h"
|
|
|
|
#include "../storage/sdmmc.h"
|
|
|
|
#include "../utils/btn.h"
|
|
|
|
#include "../utils/list.h"
|
2019-05-12 18:15:23 +01:00
|
|
|
#include "../utils/sprintf.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include "../utils/util.h"
|
|
|
|
|
2019-05-12 18:15:23 +01:00
|
|
|
#include "key_sources.inl"
|
2019-09-24 14:18:28 +01:00
|
|
|
|
2019-09-23 15:12:04 +01:00
|
|
|
#include "../libs/fatfs/diskio.h"
|
2019-03-04 23:05:42 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
extern bool sd_mount();
|
|
|
|
extern void sd_unmount();
|
2019-09-28 23:18:17 +01:00
|
|
|
extern int sd_save_to_file(void *buf, u32 size, const char *filename);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-09-17 05:18:41 +01:00
|
|
|
extern hekate_config h_cfg;
|
|
|
|
|
2019-03-04 23:05:42 +00:00
|
|
|
u32 _key_count = 0;
|
|
|
|
sdmmc_storage_t storage;
|
2019-10-03 17:16:41 +01:00
|
|
|
sdmmc_t sdmmc;
|
2019-03-04 23:05:42 +00:00
|
|
|
emmc_part_t *system_part;
|
2019-09-23 20:40:31 +01:00
|
|
|
emmc_part_t *prodinfo_part;
|
2019-09-17 05:18:41 +01:00
|
|
|
u32 start_time, end_time;
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
#define ENCRYPTED 1
|
|
|
|
#define DECRYPTED 0
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
#define TPRINTF(text) \
|
|
|
|
end_time = get_tmr_us(); \
|
|
|
|
gfx_printf(text " done in %d us\n", end_time - start_time); \
|
2019-09-17 05:18:41 +01:00
|
|
|
start_time = get_tmr_us()
|
2019-09-28 23:18:17 +01:00
|
|
|
#define TPRINTFARGS(text, args...) \
|
|
|
|
end_time = get_tmr_us(); \
|
|
|
|
gfx_printf(text " done in %d us\n", args, end_time - start_time); \
|
2019-09-17 05:18:41 +01:00
|
|
|
start_time = get_tmr_us()
|
2019-05-12 19:05:58 +01:00
|
|
|
#define SAVE_KEY(name, src, len) _save_key(name, src, len, text_buffer)
|
|
|
|
#define SAVE_KEY_FAMILY(name, src, count, len) _save_key_family(name, src, count, len, text_buffer)
|
2019-03-04 23:05:42 +00:00
|
|
|
|
|
|
|
static u8 temp_key[0x10],
|
2019-09-28 23:18:17 +01:00
|
|
|
bis_key[4][0x20] = {0},
|
|
|
|
device_key[0x10] = {0},
|
|
|
|
new_device_key[0x10] = {0},
|
|
|
|
keyblob[KB_FIRMWARE_VERSION_600 + 1][0x90] = {0},
|
|
|
|
keyblob_key[KB_FIRMWARE_VERSION_600 + 1][0x10] = {0},
|
|
|
|
keyblob_mac_key[KB_FIRMWARE_VERSION_600 + 1][0x10] = {0},
|
|
|
|
package1_key[KB_FIRMWARE_VERSION_600 + 1][0x10] = {0},
|
|
|
|
// master key-derived families
|
|
|
|
master_kek[KB_FIRMWARE_VERSION_MAX + 1][0x10] = {0},
|
|
|
|
master_key[KB_FIRMWARE_VERSION_MAX + 1][0x10] = {0};
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
LIST_INIT(gpt);
|
|
|
|
|
2019-03-04 23:05:42 +00:00
|
|
|
// key functions
|
2019-09-28 23:18:17 +01:00
|
|
|
static bool _key_exists(const void *data) { return memcmp(data, zeros, 0x10); };
|
|
|
|
static void _generate_kek(u32 ks, const void *key_source, void *master_key, const void *kek_seed, const void *key_seed);
|
|
|
|
|
|
|
|
bool dump_keys()
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
display_backlight_brightness(100, 1000);
|
2019-09-17 16:51:30 +01:00
|
|
|
gfx_clear_partial_grey(0x1B, 0, 1256);
|
2019-04-18 17:47:34 +01:00
|
|
|
gfx_con_setpos(0, 0);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
gfx_print_header();
|
|
|
|
|
|
|
|
// gfx_printf("[%kLo%kck%kpi%kck%k_R%kCM%k v%d.%d.%d%k]\n\n",
|
|
|
|
// colors[0], colors[1], colors[2], colors[3], colors[4], colors[5], 0xFFFF00FF, LP_VER_MJ, LP_VER_MN, LP_VER_BF, 0xFFCCCCCC);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kGetting bis_keys...\n", COLOR_YELLOW);
|
|
|
|
|
2019-09-17 05:18:41 +01:00
|
|
|
start_time = get_tmr_us();
|
2019-09-28 23:18:17 +01:00
|
|
|
//u32 begin_time = get_tmr_us();
|
2019-09-17 05:18:41 +01:00
|
|
|
u32 retries = 0;
|
2019-10-03 17:16:41 +01:00
|
|
|
// u32 color_idx = 0;
|
2019-03-04 23:05:42 +00:00
|
|
|
|
|
|
|
tsec_ctxt_t tsec_ctxt;
|
|
|
|
|
2019-09-17 16:51:30 +01:00
|
|
|
emummc_storage_init_mmc(&storage, &sdmmc);
|
2019-10-03 17:16:41 +01:00
|
|
|
// TPRINTFARGS("%kMMC init... ", colors[(color_idx++) % 6]);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
|
|
|
// Read package1.
|
|
|
|
u8 *pkg1 = (u8 *)malloc(0x40000);
|
2019-09-17 16:51:30 +01:00
|
|
|
emummc_storage_set_mmc_partition(&storage, 1);
|
|
|
|
emummc_storage_read(&storage, 0x100000 / NX_EMMC_BLOCKSIZE, 0x40000 / NX_EMMC_BLOCKSIZE, pkg1);
|
2019-03-04 23:05:42 +00:00
|
|
|
const pkg1_id_t *pkg1_id = pkg1_identify(pkg1);
|
2019-09-28 23:18:17 +01:00
|
|
|
if (!pkg1_id)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
EPRINTF("Unknown pkg1 version.");
|
2019-09-28 23:18:17 +01:00
|
|
|
return false;
|
2019-03-04 23:05:42 +00:00
|
|
|
}
|
|
|
|
|
2019-05-12 02:03:24 +01:00
|
|
|
bool found_tsec_fw = false;
|
2019-09-28 23:18:17 +01:00
|
|
|
for (const u32 *pos = (const u32 *)pkg1; (u8 *)pos < pkg1 + 0x40000; pos += 0x100 / sizeof(u32))
|
|
|
|
{
|
|
|
|
if (*pos == 0xCF42004D)
|
|
|
|
{
|
2019-05-12 02:03:24 +01:00
|
|
|
tsec_ctxt.fw = (u8 *)pos;
|
|
|
|
found_tsec_fw = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-09-28 23:18:17 +01:00
|
|
|
if (!found_tsec_fw)
|
|
|
|
{
|
2019-05-12 02:03:24 +01:00
|
|
|
EPRINTF("Failed to locate TSEC firmware.");
|
2019-09-28 23:18:17 +01:00
|
|
|
return false;
|
2019-05-12 02:03:24 +01:00
|
|
|
}
|
|
|
|
|
2019-06-19 23:16:02 +01:00
|
|
|
tsec_key_data_t *key_data = (tsec_key_data_t *)(tsec_ctxt.fw + TSEC_KEY_DATA_ADDR);
|
|
|
|
tsec_ctxt.pkg1 = pkg1;
|
|
|
|
tsec_ctxt.size = 0x100 + key_data->blob0_size + key_data->blob1_size + key_data->blob2_size + key_data->blob3_size + key_data->blob4_size;
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// u32 MAX_KEY = 6;
|
|
|
|
// if (pkg1_id->kb >= KB_FIRMWARE_VERSION_620)
|
|
|
|
// {
|
|
|
|
// MAX_KEY = pkg1_id->kb + 1;
|
|
|
|
// }
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
if (pkg1_id->kb >= KB_FIRMWARE_VERSION_700)
|
|
|
|
{
|
|
|
|
se_aes_key_read(12, master_key[KB_FIRMWARE_VERSION_MAX], 0x10);
|
2019-03-04 23:05:42 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
//get_tsec: ;
|
2019-03-04 23:05:42 +00:00
|
|
|
u8 tsec_keys[0x10 * 2] = {0};
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
if (pkg1_id->kb == KB_FIRMWARE_VERSION_620)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
u8 *tsec_paged = (u8 *)page_alloc(3);
|
|
|
|
memcpy(tsec_paged, (void *)tsec_ctxt.fw, tsec_ctxt.size);
|
|
|
|
tsec_ctxt.fw = tsec_paged;
|
|
|
|
}
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
2019-04-19 18:00:10 +01:00
|
|
|
mc_disable_ahb_redirect();
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
while (tsec_query(tsec_keys, pkg1_id->kb, &tsec_ctxt) < 0)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
memset(tsec_keys, 0x00, 0x20);
|
|
|
|
retries++;
|
2019-09-28 23:18:17 +01:00
|
|
|
if (retries > 15)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
res = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(pkg1);
|
|
|
|
|
2019-04-19 18:00:10 +01:00
|
|
|
mc_enable_ahb_redirect();
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
if (res < 0)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
EPRINTFARGS("ERROR %x dumping TSEC.\n", res);
|
2019-10-03 17:16:41 +01:00
|
|
|
return false;
|
2019-03-04 23:05:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
//TPRINTFARGS("%kTSEC key(s)... ", colors[(color_idx++) % 6]);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
|
|
|
// Master key derivation
|
2019-09-28 23:18:17 +01:00
|
|
|
if (pkg1_id->kb == KB_FIRMWARE_VERSION_620 && _key_exists(tsec_keys + 0x10))
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_key_set(8, tsec_keys + 0x10, 0x10); // mkek6 = unwrap(mkeks6, tsecroot)
|
|
|
|
se_aes_crypt_block_ecb(8, 0, master_kek[6], master_kek_sources[0]);
|
|
|
|
se_aes_key_set(8, master_kek[6], 0x10); // mkey = unwrap(mkek, mks)
|
|
|
|
se_aes_crypt_block_ecb(8, 0, master_key[6], master_key_source);
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 *keyblob_block = (u8 *)calloc(NX_EMMC_BLOCKSIZE, 1);
|
|
|
|
u8 keyblob_mac[0x10] = {0};
|
|
|
|
u32 sbk[4] = {FUSE(FUSE_PRIVATE_KEY0), FUSE(FUSE_PRIVATE_KEY1),
|
|
|
|
FUSE(FUSE_PRIVATE_KEY2), FUSE(FUSE_PRIVATE_KEY3)};
|
|
|
|
se_aes_key_set(8, tsec_keys, 0x10);
|
|
|
|
se_aes_key_set(9, sbk, 0x10);
|
2019-09-28 23:18:17 +01:00
|
|
|
for (u32 i = 0; i <= KB_FIRMWARE_VERSION_600; i++)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_crypt_block_ecb(8, 0, keyblob_key[i], keyblob_key_source[i]); // temp = unwrap(kbks, tsec)
|
2019-09-28 23:18:17 +01:00
|
|
|
se_aes_crypt_block_ecb(9, 0, keyblob_key[i], keyblob_key[i]); // kbk = unwrap(temp, sbk)
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_key_set(7, keyblob_key[i], 0x10);
|
|
|
|
se_aes_crypt_block_ecb(7, 0, keyblob_mac_key[i], keyblob_mac_key_source); // kbm = unwrap(kbms, kbk)
|
2019-09-28 23:18:17 +01:00
|
|
|
if (i == 0)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_crypt_block_ecb(7, 0, device_key, per_console_key_source); // devkey = unwrap(pcks, kbk0)
|
2019-09-16 02:30:42 +01:00
|
|
|
se_aes_crypt_block_ecb(7, 0, new_device_key, per_console_key_source_4x);
|
|
|
|
}
|
2019-03-04 23:05:42 +00:00
|
|
|
|
|
|
|
// verify keyblob is not corrupt
|
2019-09-17 16:51:30 +01:00
|
|
|
emummc_storage_read(&storage, 0x180000 / NX_EMMC_BLOCKSIZE + i, 1, keyblob_block);
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_key_set(3, keyblob_mac_key[i], 0x10);
|
|
|
|
se_aes_cmac(3, keyblob_mac, 0x10, keyblob_block + 0x10, 0xa0);
|
2019-09-28 23:18:17 +01:00
|
|
|
if (memcmp(keyblob_block, keyblob_mac, 0x10))
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
EPRINTFARGS("Keyblob %x corrupt.", i);
|
2019-04-18 17:47:34 +01:00
|
|
|
gfx_hexdump(i, keyblob_block, 0x10);
|
|
|
|
gfx_hexdump(i, keyblob_mac, 0x10);
|
2019-03-04 23:05:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// decrypt keyblobs
|
|
|
|
se_aes_key_set(2, keyblob_key[i], 0x10);
|
|
|
|
se_aes_crypt_ctr(2, keyblob[i], 0x90, keyblob_block + 0x20, 0x90, keyblob_block + 0x10);
|
|
|
|
|
|
|
|
memcpy(package1_key[i], keyblob[i] + 0x80, 0x10);
|
|
|
|
memcpy(master_kek[i], keyblob[i], 0x10);
|
|
|
|
se_aes_key_set(7, master_kek[i], 0x10);
|
|
|
|
se_aes_crypt_block_ecb(7, 0, master_key[i], master_key_source);
|
|
|
|
}
|
|
|
|
free(keyblob_block);
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
//TPRINTFARGS("%kMaster keys... ", colors[(color_idx++) % 6]);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-09-16 02:30:42 +01:00
|
|
|
u32 key_generation = 0;
|
2019-09-28 23:18:17 +01:00
|
|
|
if (pkg1_id->kb >= KB_FIRMWARE_VERSION_500)
|
|
|
|
{
|
|
|
|
if ((fuse_read_odm(4) & 0x800) && fuse_read_odm(0) == 0x8E61ECAE && fuse_read_odm(1) == 0xF2BA3BB2)
|
|
|
|
{
|
2019-09-16 02:30:42 +01:00
|
|
|
key_generation = fuse_read_odm(2) & 0x1F;
|
|
|
|
}
|
|
|
|
}
|
2019-09-28 23:18:17 +01:00
|
|
|
if (_key_exists(device_key))
|
|
|
|
{
|
|
|
|
if (key_generation)
|
|
|
|
{
|
2019-09-16 02:30:42 +01:00
|
|
|
se_aes_key_set(8, new_device_key, 0x10);
|
|
|
|
se_aes_crypt_block_ecb(8, 0, temp_key, new_device_key_sources[pkg1_id->kb - KB_FIRMWARE_VERSION_400]);
|
|
|
|
se_aes_key_set(8, master_key[0], 0x10);
|
|
|
|
se_aes_unwrap_key(8, 8, new_device_keygen_sources[pkg1_id->kb - KB_FIRMWARE_VERSION_400]);
|
|
|
|
se_aes_crypt_block_ecb(8, 0, temp_key, temp_key);
|
2019-09-28 23:18:17 +01:00
|
|
|
}
|
|
|
|
else
|
2019-09-16 02:30:42 +01:00
|
|
|
memcpy(temp_key, device_key, 0x10);
|
|
|
|
se_aes_key_set(8, temp_key, 0x10);
|
2019-09-28 23:18:17 +01:00
|
|
|
se_aes_unwrap_key(8, 8, retail_specific_aes_key_source); // kek = unwrap(rsaks, devkey)
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_crypt_block_ecb(8, 0, bis_key[0] + 0x00, bis_key_source[0] + 0x00); // bkey = unwrap(bkeys, kek)
|
|
|
|
se_aes_crypt_block_ecb(8, 0, bis_key[0] + 0x10, bis_key_source[0] + 0x10);
|
|
|
|
// kek = generate_kek(bkeks, devkey, aeskek, aeskey)
|
2019-09-16 02:30:42 +01:00
|
|
|
_generate_kek(8, bis_kek_source, temp_key, aes_kek_generation_source, aes_key_generation_source);
|
2019-03-04 23:05:42 +00:00
|
|
|
se_aes_crypt_block_ecb(8, 0, bis_key[1] + 0x00, bis_key_source[1] + 0x00); // bkey = unwrap(bkeys, kek)
|
|
|
|
se_aes_crypt_block_ecb(8, 0, bis_key[1] + 0x10, bis_key_source[1] + 0x10);
|
|
|
|
se_aes_crypt_block_ecb(8, 0, bis_key[2] + 0x00, bis_key_source[2] + 0x00);
|
|
|
|
se_aes_crypt_block_ecb(8, 0, bis_key[2] + 0x10, bis_key_source[2] + 0x10);
|
|
|
|
memcpy(bis_key[3], bis_key[2], 0x20);
|
|
|
|
}
|
|
|
|
|
2019-09-17 16:51:30 +01:00
|
|
|
emummc_storage_set_mmc_partition(&storage, 0);
|
2019-03-04 23:05:42 +00:00
|
|
|
// Parse eMMC GPT.
|
2019-10-03 17:16:41 +01:00
|
|
|
|
2019-03-04 23:05:42 +00:00
|
|
|
nx_emmc_gpt_parse(&gpt, &storage);
|
2019-09-17 17:03:41 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// Find PRODINFO partition.
|
2019-09-23 20:40:31 +01:00
|
|
|
prodinfo_part = nx_emmc_part_find(&gpt, "PRODINFO");
|
2019-09-28 23:18:17 +01:00
|
|
|
if (!prodinfo_part)
|
|
|
|
{
|
2019-09-23 14:25:37 +01:00
|
|
|
EPRINTF("Failed to locate PRODINFO.");
|
2019-10-03 17:16:41 +01:00
|
|
|
return false;
|
2019-03-04 23:05:42 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 20:40:31 +01:00
|
|
|
se_aes_key_set(8, bis_key[0] + 0x00, 0x10);
|
|
|
|
se_aes_key_set(9, bis_key[0] + 0x10, 0x10);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kGot keys!\n", COLOR_GREEN);
|
|
|
|
char serial[15];
|
|
|
|
readData((u8 *)serial, 0x250, 15, ENCRYPTED);
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kCurrent serial:%s\n\n", COLOR_BLUE, serial);
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
return true;
|
|
|
|
}
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
void erase(u32 offset, u32 length)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
u8 *tmp = (u8 *)calloc(length, sizeof(u8));
|
|
|
|
writeData(tmp, offset, length, ENCRYPTED);
|
|
|
|
free(tmp);
|
|
|
|
}
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
void writeSerial()
|
|
|
|
{
|
|
|
|
const char *junkSerial;
|
|
|
|
if (!emu_cfg.enabled || h_cfg.emummc_force_disable)
|
|
|
|
{
|
|
|
|
junkSerial = "XAW00000000000";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
junkSerial = "XAW00000000001";
|
|
|
|
}
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
writeData((u8 *)junkSerial, 0x250, 14, ENCRYPTED);
|
|
|
|
}
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
void incognito()
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kWriting junk serial...\n", COLOR_YELLOW);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
writeSerial();
|
|
|
|
gfx_printf("%kErasing client cert...\n", COLOR_YELLOW);
|
|
|
|
erase(0x0AE0, 0x800); // client cert
|
|
|
|
gfx_printf("%kErasing private key...\n", COLOR_YELLOW);
|
|
|
|
erase(0x3AE0, 0x130); // private key
|
|
|
|
gfx_printf("%kErasing deviceId 1/2...\n", COLOR_YELLOW);
|
|
|
|
erase(0x35E1, 0x006); // deviceId
|
|
|
|
gfx_printf("%kErasing deviceId 2/2...\n", COLOR_YELLOW);
|
|
|
|
erase(0x36E1, 0x006); // deviceId
|
|
|
|
gfx_printf("%kErasing device cert 1/2...\n", COLOR_YELLOW);
|
|
|
|
erase(0x02B0, 0x180); // device cert
|
|
|
|
gfx_printf("%kErasing device cert 2/2...\n", COLOR_YELLOW);
|
|
|
|
erase(0x3D70, 0x240); // device cert
|
|
|
|
gfx_printf("%kErasing device key...\n", COLOR_YELLOW);
|
2019-09-17 05:18:41 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
erase(0x3FC0, 0x240); // device key
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kWriting client cert hash...\n", COLOR_YELLOW);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
writeClientCertHash();
|
|
|
|
gfx_printf("%kWriting CAL0 hash...\n", COLOR_YELLOW);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
writeCal0Hash();
|
2019-09-17 05:18:41 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("\n%kIncognito done!\n\n", COLOR_GREEN);
|
2019-09-28 23:18:17 +01:00
|
|
|
}
|
2019-04-18 16:02:15 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
void cleanUp()
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
h_cfg.emummc_force_disable = emummc_load_cfg();
|
|
|
|
//nx_emmc_gpt_free(&gpt);
|
|
|
|
// emummc_storage_end(&storage);
|
2019-03-04 23:05:42 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
static void _generate_kek(u32 ks, const void *key_source, void *master_key, const void *kek_seed, const void *key_seed)
|
|
|
|
{
|
2019-03-04 23:05:42 +00:00
|
|
|
if (!_key_exists(key_source) || !_key_exists(master_key) || !_key_exists(kek_seed))
|
|
|
|
return;
|
|
|
|
|
|
|
|
se_aes_key_set(ks, master_key, 0x10);
|
|
|
|
se_aes_unwrap_key(ks, ks, kek_seed);
|
|
|
|
se_aes_unwrap_key(ks, ks, key_source);
|
|
|
|
if (key_seed && _key_exists(key_seed))
|
|
|
|
se_aes_unwrap_key(ks, ks, key_seed);
|
|
|
|
}
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
static inline u32 _read_le_u32(const void *buffer, u32 offset)
|
|
|
|
{
|
|
|
|
return (*(u8 *)(buffer + offset + 0)) |
|
|
|
|
(*(u8 *)(buffer + offset + 1) << 0x08) |
|
|
|
|
(*(u8 *)(buffer + offset + 2) << 0x10) |
|
|
|
|
(*(u8 *)(buffer + offset + 3) << 0x18);
|
2019-03-04 23:05:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
bool readData(u8 *buffer, u32 offset, u32 length, u8 enc)
|
2019-09-23 20:40:31 +01:00
|
|
|
{
|
2019-09-24 14:15:18 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// u8 *tmp = (u8 *)malloc(NX_EMMC_BLOCKSIZE);
|
|
|
|
// u32 sector = (offset / NX_EMMC_BLOCKSIZE);
|
|
|
|
// u32 newOffset = offset % NX_EMMC_BLOCKSIZE;
|
|
|
|
// u32 read = 0;
|
2019-09-23 20:40:31 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// if (newOffset > 0 && length >= NX_EMMC_BLOCKSIZE)
|
|
|
|
// {
|
|
|
|
// u32 toRead = NX_EMMC_BLOCKSIZE - newOffset;
|
|
|
|
// disk_read_prod(tmp, sector, 1);
|
|
|
|
// memcpy(buffer, tmp + newOffset, toRead);
|
2019-09-23 20:40:31 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// length -= toRead;
|
|
|
|
// read += toRead;
|
|
|
|
// sector++;
|
2019-09-24 08:41:22 +01:00
|
|
|
// }
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// while (length > NX_EMMC_BLOCKSIZE)
|
|
|
|
// {
|
2019-09-24 08:41:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// disk_read_prod(tmp, sector, 1);
|
|
|
|
// memcpy(buffer + read, tmp, NX_EMMC_BLOCKSIZE);
|
|
|
|
|
|
|
|
// length -= NX_EMMC_BLOCKSIZE;
|
|
|
|
// read += NX_EMMC_BLOCKSIZE;
|
|
|
|
// sector++;
|
|
|
|
// }
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// if (length > 0)
|
|
|
|
// {
|
|
|
|
// disk_read_prod(tmp, sector, 1);
|
|
|
|
// memcpy(buffer + read, tmp, length);
|
|
|
|
// }
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// free(tmp);
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 sector = (offset / NX_EMMC_BLOCKSIZE);
|
|
|
|
u32 newOffset = (offset % NX_EMMC_BLOCKSIZE);
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 sectorCount = ((newOffset + length - 1) / (NX_EMMC_BLOCKSIZE)) + 1;
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u8 *tmp = (u8 *)malloc(sectorCount * NX_EMMC_BLOCKSIZE);
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-10-04 00:27:43 +01:00
|
|
|
u32 clusterOffset = sector % 32;
|
|
|
|
u32 sectorOffset = 0;
|
|
|
|
while (clusterOffset + sectorCount > 32)
|
|
|
|
{
|
|
|
|
u32 sectorToRead = 32 - clusterOffset;
|
|
|
|
disk_read_prod(tmp + (sectorOffset * NX_EMMC_BLOCKSIZE), sector, sectorToRead, enc);
|
|
|
|
sector += sectorToRead;
|
|
|
|
sectorCount -= sectorToRead;
|
|
|
|
clusterOffset = 0;
|
|
|
|
sectorOffset += sectorToRead;
|
|
|
|
}
|
|
|
|
|
|
|
|
disk_read_prod(tmp + (sectorOffset * NX_EMMC_BLOCKSIZE), sector, sectorCount, enc);
|
2019-09-24 08:41:22 +01:00
|
|
|
|
2019-09-24 14:15:18 +01:00
|
|
|
memcpy(buffer, tmp + newOffset, length);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
2019-09-23 20:40:31 +01:00
|
|
|
free(tmp);
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
return true;
|
2019-09-24 08:41:22 +01:00
|
|
|
}
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
bool writeData(u8 *buffer, u32 offset, u32 length, u8 enc)
|
2019-09-24 14:15:18 +01:00
|
|
|
{
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// u8 *tmp = (u8 *)malloc(NX_EMMC_BLOCKSIZE);
|
|
|
|
// u32 sector = (offset / NX_EMMC_BLOCKSIZE);
|
|
|
|
// u32 newOffset = offset % NX_EMMC_BLOCKSIZE;
|
|
|
|
// u32 read = 0;
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// if (newOffset > 0 && length >= NX_EMMC_BLOCKSIZE)
|
|
|
|
// {
|
|
|
|
// u32 toRead = NX_EMMC_BLOCKSIZE - newOffset;
|
|
|
|
// disk_read_prod(tmp, sector, 1);
|
|
|
|
// memcpy(tmp + newOffset, buffer, toRead);
|
|
|
|
// disk_write_prod(tmp, sector, 1);
|
|
|
|
// length -= toRead;
|
|
|
|
// read += toRead;
|
|
|
|
// sector++;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// while (length > NX_EMMC_BLOCKSIZE)
|
|
|
|
// {
|
|
|
|
|
|
|
|
// disk_write_prod(buffer + read, sector, 1);
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// length -= NX_EMMC_BLOCKSIZE;
|
|
|
|
// read += NX_EMMC_BLOCKSIZE;
|
|
|
|
// sector++;
|
2019-09-24 23:49:22 +01:00
|
|
|
// }
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// if (length > 0)
|
|
|
|
// {
|
|
|
|
// disk_read_prod(tmp, sector, 1);
|
|
|
|
// memcpy(tmp, buffer + read, length);
|
|
|
|
// disk_write_prod(buffer + read, sector, 1);
|
|
|
|
// }
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
// free(tmp);
|
2019-09-26 07:56:27 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 sector = (offset / NX_EMMC_BLOCKSIZE);
|
|
|
|
u32 newOffset = (offset % NX_EMMC_BLOCKSIZE);
|
|
|
|
|
|
|
|
u8 sectorCount = ((newOffset + length - 1) / (NX_EMMC_BLOCKSIZE)) + 1;
|
|
|
|
|
|
|
|
u8 *tmp = (u8 *)malloc(sectorCount * NX_EMMC_BLOCKSIZE);
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
disk_read_prod(tmp, sector, sectorCount, 1);
|
2019-09-24 23:49:22 +01:00
|
|
|
|
|
|
|
memcpy(tmp + newOffset, buffer, length);
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
disk_write_prod(tmp, sector, sectorCount, enc);
|
2019-09-24 23:49:22 +01:00
|
|
|
|
|
|
|
free(tmp);
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
return true;
|
2019-09-24 23:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool writeHash(u32 hashOffset, u32 offset, u32 sz)
|
2019-09-28 23:18:17 +01:00
|
|
|
{
|
2019-09-24 14:15:18 +01:00
|
|
|
|
2019-10-04 00:27:43 +01:00
|
|
|
u8 *buffer = (u8 *)malloc(sz);
|
|
|
|
readData(buffer, offset, sz, ENCRYPTED);
|
2019-09-28 23:18:17 +01:00
|
|
|
u8 hash[0x20];
|
2019-10-04 00:27:43 +01:00
|
|
|
se_calc_sha256(hash, buffer, sz);
|
2019-09-24 14:15:18 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
writeData(hash, hashOffset, 0x20, ENCRYPTED);
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
free(buffer);
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-10-04 00:27:43 +01:00
|
|
|
// void test(){
|
|
|
|
// u32 size = 32768;
|
|
|
|
// u8 *buffer = (u8 *)malloc(NX_EMMC_BLOCKSIZE);
|
|
|
|
// u8* bigBuffer = (u8 *)malloc(size);
|
|
|
|
// u32 offset = 0;
|
|
|
|
// readData(bigBuffer, 0, size, ENCRYPTED);
|
|
|
|
// while(size > NX_EMMC_BLOCKSIZE){
|
|
|
|
// readData(buffer, offset, NX_EMMC_BLOCKSIZE, ENCRYPTED);
|
|
|
|
// if(memcmp(buffer, bigBuffer + offset, NX_EMMC_BLOCKSIZE) != 0){
|
|
|
|
// gfx_printf("arry mismatch on offset %d", offset);
|
|
|
|
|
|
|
|
// }
|
|
|
|
// size -= NX_EMMC_BLOCKSIZE;
|
|
|
|
// offset += NX_EMMC_BLOCKSIZE;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
bool verifyHash(u32 hashOffset, u32 offset, u32 sz)
|
|
|
|
{
|
|
|
|
bool result = false;
|
2019-10-04 00:27:43 +01:00
|
|
|
u8 *buffer = (u8 *)malloc(sz);
|
|
|
|
readData(buffer, offset, sz, ENCRYPTED);
|
2019-09-28 23:18:17 +01:00
|
|
|
u8 hash1[0x20];
|
2019-10-04 00:27:43 +01:00
|
|
|
se_calc_sha256(hash1, buffer, sz);
|
2019-09-24 14:15:18 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u8 hash2[0x20];
|
2019-09-24 14:15:18 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
readData(hash2, hashOffset, 0x20, ENCRYPTED);
|
2019-09-24 14:15:18 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
if (memcmp(hash1, hash2, 0x20))
|
|
|
|
{
|
|
|
|
EPRINTF("error: hash verification failed\n");
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_hexdump(0, hash1, 0x20);
|
|
|
|
gfx_hexdump(0, hash2, 0x20);
|
2019-09-28 23:18:17 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = true;
|
|
|
|
}
|
2019-09-25 09:12:15 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
free(buffer);
|
|
|
|
return result;
|
|
|
|
}
|
2019-09-25 09:12:15 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 certSize()
|
|
|
|
{
|
|
|
|
u32 buffer;
|
2019-10-03 17:16:41 +01:00
|
|
|
readData((u8 *)&buffer, 0x0AD0, sizeof(buffer), ENCRYPTED);
|
2019-09-28 23:18:17 +01:00
|
|
|
return buffer;
|
2019-09-24 14:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 calibrationDataSize()
|
|
|
|
{
|
|
|
|
u32 buffer;
|
2019-10-03 17:16:41 +01:00
|
|
|
readData((u8 *)&buffer, 0x08, sizeof(buffer), ENCRYPTED);
|
2019-09-24 14:15:18 +01:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2019-09-24 23:49:22 +01:00
|
|
|
bool writeCal0Hash()
|
|
|
|
{
|
2019-09-28 23:18:17 +01:00
|
|
|
return writeHash(0x20, 0x40, calibrationDataSize());
|
2019-09-24 23:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool writeClientCertHash()
|
|
|
|
{
|
2019-09-28 23:18:17 +01:00
|
|
|
return writeHash(0x12E0, 0xAE0, certSize());
|
2019-09-24 23:49:22 +01:00
|
|
|
}
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
bool verifyCal0Hash()
|
|
|
|
{
|
2019-09-24 23:49:22 +01:00
|
|
|
return verifyHash(0x20, 0x40, calibrationDataSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool verifyClientCertHash()
|
|
|
|
{
|
|
|
|
|
|
|
|
return verifyHash(0x12E0, 0xAE0, certSize());
|
|
|
|
}
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
bool verifyProdinfo()
|
2019-09-24 14:15:18 +01:00
|
|
|
{
|
2019-09-24 08:41:22 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kVerifying client cert hash and CAL0 hash...\n", COLOR_YELLOW);
|
|
|
|
|
|
|
|
if (verifyClientCertHash() && verifyCal0Hash())
|
|
|
|
{
|
|
|
|
char serial[15];
|
|
|
|
readData((u8 *)serial, 0x250, 15, ENCRYPTED);
|
|
|
|
gfx_printf("%kVerification successful!\n%kNew Serial:%s\n", COLOR_GREEN, COLOR_BLUE, serial);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
gfx_printf("%kVerification not successful!\nPlease restore backup!\n", COLOR_RED);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_progress(size_t count, size_t max)
|
|
|
|
{
|
|
|
|
const char prefix[] = "Progress: [";
|
|
|
|
const char suffix[] = "]";
|
|
|
|
const size_t prefix_length = sizeof(prefix) - 1;
|
|
|
|
const size_t suffix_length = sizeof(suffix) - 1;
|
|
|
|
char *buffer = calloc(max + prefix_length + suffix_length + 1, 1); // +1 for \0
|
|
|
|
size_t i = 0;
|
|
|
|
|
|
|
|
strcpy(buffer, prefix);
|
|
|
|
for (; i < max; ++i)
|
|
|
|
{
|
|
|
|
buffer[prefix_length + i] = i < count ? '#' : ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(&buffer[prefix_length + i], suffix);
|
|
|
|
gfx_printf("%k%s %d%%\n", COLOR_BLUE, buffer, (100 / max) * count);
|
|
|
|
free(buffer);
|
2019-09-24 14:15:18 +01:00
|
|
|
}
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
bool backupProdinfo()
|
|
|
|
{
|
2019-10-03 17:16:41 +01:00
|
|
|
char *name;
|
|
|
|
if (!emu_cfg.enabled || h_cfg.emummc_force_disable)
|
|
|
|
{
|
2019-09-28 23:18:17 +01:00
|
|
|
name = "sd:/prodinfo_sysnand.bin";
|
|
|
|
}
|
2019-10-03 17:16:41 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
name = "sd:/prodinfo_emunand.bin";
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx_printf("%kBacking up %s...\n", COLOR_YELLOW, name);
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
if (f_stat(name, NULL))
|
|
|
|
{
|
|
|
|
f_unlink(name);
|
2019-09-24 23:49:22 +01:00
|
|
|
}
|
2019-09-28 23:18:17 +01:00
|
|
|
FIL fp;
|
|
|
|
f_open(&fp, name, FA_CREATE_ALWAYS | FA_WRITE);
|
2019-10-03 17:16:41 +01:00
|
|
|
u8 *bufferNX = (u8 *)malloc(NX_EMMC_BLOCKSIZE);
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 size = 0x3FBC00;
|
2019-10-03 17:16:41 +01:00
|
|
|
|
|
|
|
u8 percentDone = 0;
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 offset = 0;
|
2019-10-03 17:16:41 +01:00
|
|
|
const u8 step = 5;
|
|
|
|
|
|
|
|
u32 iterations = size / NX_EMMC_BLOCKSIZE;
|
|
|
|
u32 printCount = iterations / (100 / step);
|
|
|
|
|
|
|
|
u32 x = gfx_con.x;
|
|
|
|
u32 y = gfx_con.y;
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
while (size > NX_EMMC_BLOCKSIZE)
|
|
|
|
{
|
2019-10-03 17:16:41 +01:00
|
|
|
readData(bufferNX, offset, NX_EMMC_BLOCKSIZE, ENCRYPTED);
|
2019-09-28 23:18:17 +01:00
|
|
|
f_write(&fp, bufferNX, NX_EMMC_BLOCKSIZE, NULL);
|
|
|
|
f_sync(&fp);
|
2019-10-03 17:16:41 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
offset += NX_EMMC_BLOCKSIZE;
|
|
|
|
size -= NX_EMMC_BLOCKSIZE;
|
2019-10-03 17:16:41 +01:00
|
|
|
if (iterations % printCount == 0)
|
|
|
|
{
|
|
|
|
print_progress(percentDone / step, 100 / step);
|
|
|
|
gfx_con.x = x;
|
|
|
|
gfx_con.y = y;
|
|
|
|
percentDone += step;
|
|
|
|
}
|
|
|
|
iterations--;
|
2019-09-24 23:49:22 +01:00
|
|
|
}
|
2019-09-28 23:18:17 +01:00
|
|
|
if (size > 0)
|
|
|
|
{
|
2019-10-03 17:16:41 +01:00
|
|
|
readData(bufferNX, offset, size, ENCRYPTED);
|
2019-09-28 23:18:17 +01:00
|
|
|
f_write(&fp, bufferNX, size, NULL);
|
|
|
|
f_sync(&fp);
|
|
|
|
}
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
print_progress(100 / step, 100 / step);
|
2019-09-28 23:18:17 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
f_close(&fp);
|
|
|
|
free(bufferNX);
|
|
|
|
gfx_printf("%k\nBackup %s done!\n\n", COLOR_GREEN, name);
|
2019-09-25 09:12:15 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
return true;
|
2019-09-25 09:12:15 +01:00
|
|
|
}
|
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
bool restoreProdinfo()
|
|
|
|
{
|
|
|
|
sd_mount();
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
char *name;
|
|
|
|
if (!emu_cfg.enabled || h_cfg.emummc_force_disable)
|
|
|
|
{
|
2019-09-28 23:18:17 +01:00
|
|
|
name = "sd:/prodinfo_sysnand.bin";
|
|
|
|
}
|
2019-10-03 17:16:41 +01:00
|
|
|
else
|
|
|
|
{
|
2019-09-28 23:18:17 +01:00
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
name = "sd:/prodinfo_emunand.bin";
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx_printf("%kRestoring %s...\n", COLOR_YELLOW, name);
|
2019-09-28 23:18:17 +01:00
|
|
|
|
|
|
|
FIL fp;
|
|
|
|
if (f_open(&fp, name, FA_READ) != FR_OK)
|
|
|
|
{
|
|
|
|
gfx_printf("\nCannot open%s!\n", name);
|
|
|
|
return false;
|
|
|
|
}
|
2019-09-25 09:12:15 +01:00
|
|
|
u8 bufferNX[NX_EMMC_BLOCKSIZE];
|
2019-09-24 23:49:22 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 size = 0x3FBC00;
|
2019-10-03 17:16:41 +01:00
|
|
|
|
|
|
|
u8 percentDone = 0;
|
2019-09-28 23:18:17 +01:00
|
|
|
u32 offset = 0;
|
2019-10-03 17:16:41 +01:00
|
|
|
const u8 step = 5;
|
|
|
|
|
|
|
|
u32 iterations = size / NX_EMMC_BLOCKSIZE;
|
|
|
|
u32 printCount = iterations / (100 / step);
|
|
|
|
|
|
|
|
u32 x = gfx_con.x;
|
|
|
|
u32 y = gfx_con.y;
|
|
|
|
|
|
|
|
while (size > NX_EMMC_BLOCKSIZE)
|
2019-09-28 23:18:17 +01:00
|
|
|
{
|
|
|
|
f_read(&fp, bufferNX, NX_EMMC_BLOCKSIZE, NULL);
|
2019-10-03 17:16:41 +01:00
|
|
|
writeData(bufferNX, offset, NX_EMMC_BLOCKSIZE, ENCRYPTED);
|
|
|
|
offset += NX_EMMC_BLOCKSIZE;
|
2019-09-28 23:18:17 +01:00
|
|
|
size -= NX_EMMC_BLOCKSIZE;
|
2019-10-03 17:16:41 +01:00
|
|
|
if (iterations % printCount == 0)
|
|
|
|
{
|
|
|
|
print_progress(percentDone / step, 100 / step);
|
|
|
|
gfx_con.x = x;
|
|
|
|
gfx_con.y = y;
|
|
|
|
percentDone += step;
|
|
|
|
}
|
|
|
|
iterations--;
|
2019-09-28 23:18:17 +01:00
|
|
|
}
|
2019-10-03 17:16:41 +01:00
|
|
|
if (size > 0)
|
|
|
|
{
|
|
|
|
f_read(&fp, bufferNX, size, NULL);
|
|
|
|
writeData(bufferNX, offset, size, ENCRYPTED);
|
|
|
|
}
|
|
|
|
print_progress(100 / step, 100 / step);
|
2019-09-25 09:12:15 +01:00
|
|
|
|
2019-09-28 23:18:17 +01:00
|
|
|
f_close(&fp);
|
|
|
|
|
2019-10-03 17:16:41 +01:00
|
|
|
gfx_printf("%kRestore %s done!\n\n", COLOR_GREEN, name);
|
2019-09-25 09:12:15 +01:00
|
|
|
return true;
|
2019-09-24 23:49:22 +01:00
|
|
|
}
|