2018-01-24 17:52:25 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include "nca.h"
|
|
|
|
#include "aes.h"
|
2018-07-20 09:57:28 +00:00
|
|
|
#include "pki.h"
|
2018-01-24 17:52:25 +00:00
|
|
|
#include "sha.h"
|
|
|
|
#include "rsa.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "filepath.h"
|
|
|
|
|
|
|
|
/* Initialize the context. */
|
|
|
|
void nca_init(nca_ctx_t *ctx) {
|
|
|
|
memset(ctx, 0, sizeof(*ctx));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates the CTR for an offset. */
|
|
|
|
void nca_update_ctr(unsigned char *ctr, uint64_t ofs) {
|
|
|
|
ofs >>= 4;
|
|
|
|
for (unsigned int j = 0; j < 0x8; j++) {
|
|
|
|
ctr[0x10-j-1] = (unsigned char)(ofs & 0xFF);
|
|
|
|
ofs >>= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 05:31:55 +00:00
|
|
|
/* Updates the CTR for a bktr offset. */
|
|
|
|
void nca_update_bktr_ctr(unsigned char *ctr, uint32_t ctr_val, uint64_t ofs) {
|
|
|
|
ofs >>= 4;
|
|
|
|
for (unsigned int j = 0; j < 0x8; j++) {
|
|
|
|
ctr[0x10-j-1] = (unsigned char)(ofs & 0xFF);
|
|
|
|
ofs >>= 8;
|
|
|
|
}
|
|
|
|
for (unsigned int j = 0; j < 4; j++) {
|
|
|
|
ctr[0x8-j-1] = (unsigned char)(ctr_val & 0xFF);
|
|
|
|
ctr_val >>= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
/* Seek to an offset within a section. */
|
|
|
|
void nca_section_fseek(nca_section_ctx_t *ctx, uint64_t offset) {
|
|
|
|
if (ctx->is_decrypted) {
|
|
|
|
fseeko64(ctx->file, (ctx->offset + offset), SEEK_SET);
|
|
|
|
ctx->cur_seek = (ctx->offset + offset);
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (ctx->crypt_type == CRYPT_XTS) {
|
|
|
|
fseeko64(ctx->file, (ctx->offset + offset) & ~ctx->sector_mask, SEEK_SET);
|
|
|
|
ctx->cur_seek = (ctx->offset + offset) & ~ctx->sector_mask;
|
|
|
|
ctx->sector_num = offset / ctx->sector_size;
|
|
|
|
ctx->sector_ofs = offset & ctx->sector_mask;
|
|
|
|
} else if (ctx->crypt_type == CRYPT_NCA0) {
|
|
|
|
fseeko64(ctx->file, (ctx->offset + offset) & ~ctx->sector_mask, SEEK_SET);
|
|
|
|
ctx->cur_seek = ((ctx->offset + offset - 0x400ULL) & ~ctx->sector_mask) + 0x400ULL;
|
|
|
|
ctx->sector_num = (ctx->offset + offset - 0x400ULL) / ctx->sector_size;
|
|
|
|
ctx->sector_ofs = (ctx->offset + offset - 0x400ULL) & ctx->sector_mask;
|
2018-01-27 05:31:55 +00:00
|
|
|
} else if (ctx->type == BKTR && ctx->bktr_ctx.subsection_block != NULL) {
|
|
|
|
/* No better way to do this than to make all BKTR seeking virtual. */
|
|
|
|
ctx->bktr_ctx.virtual_seek = offset;
|
2018-02-03 19:28:08 +00:00
|
|
|
if (ctx->tool_ctx->base_file == NULL && ctx->physical_reads == 0) { /* Without base romfs, reads will be physical. */
|
2018-01-27 05:31:55 +00:00
|
|
|
ctx->bktr_ctx.bktr_seek = offset;
|
|
|
|
} else { /* Let's do the complicated thing. */
|
|
|
|
bktr_relocation_entry_t *reloc = bktr_get_relocation(ctx->bktr_ctx.relocation_block, offset);
|
|
|
|
uint64_t section_ofs = offset - reloc->virt_offset + reloc->phys_offset;
|
|
|
|
if (reloc->is_patch) {
|
|
|
|
/* Seeked within the patch romfs. */
|
|
|
|
ctx->bktr_ctx.bktr_seek = section_ofs;
|
|
|
|
} else {
|
|
|
|
/* Seeked within the base romfs. */
|
|
|
|
ctx->bktr_ctx.base_seek = section_ofs;
|
|
|
|
}
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (ctx->crypt_type != CRYPT_NONE) { /* CTR, and BKTR until subsections are read. */
|
2018-01-24 17:52:25 +00:00
|
|
|
fseeko64(ctx->file, (ctx->offset + offset) & ~0xF, SEEK_SET);
|
|
|
|
ctx->cur_seek = (ctx->offset + offset) & ~0xF;
|
|
|
|
nca_update_ctr(ctx->ctr, ctx->offset + offset);
|
|
|
|
ctx->sector_ofs = offset & 0xF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 05:31:55 +00:00
|
|
|
size_t nca_bktr_section_physical_fread(nca_section_ctx_t *ctx, void *buffer, size_t count) {
|
|
|
|
size_t read = 0; /* XXX */
|
|
|
|
size_t size = 1;
|
|
|
|
char block_buf[0x10];
|
|
|
|
|
|
|
|
if (ctx->is_decrypted) {
|
|
|
|
fseeko64(ctx->file, (ctx->offset + ctx->bktr_ctx.bktr_seek), SEEK_SET);
|
|
|
|
read = fread(buffer, size, count, ctx->file);
|
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.virtual_seek + read);
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
bktr_subsection_entry_t *subsec = bktr_get_subsection(ctx->bktr_ctx.subsection_block, ctx->bktr_ctx.bktr_seek);
|
|
|
|
nca_update_bktr_ctr(ctx->ctr, subsec->ctr_val, ctx->bktr_ctx.bktr_seek + ctx->offset);
|
|
|
|
fseeko64(ctx->file, (ctx->offset + ctx->bktr_ctx.bktr_seek) & ~0xF, SEEK_SET);
|
|
|
|
uint32_t block_ofs;
|
2018-02-07 19:35:14 +00:00
|
|
|
bktr_subsection_entry_t *next_subsec = subsec + 1;
|
|
|
|
if (ctx->bktr_ctx.bktr_seek + count <= next_subsec->offset) {
|
2018-01-27 05:31:55 +00:00
|
|
|
/* Easy path, reading *only* within the subsection. */
|
|
|
|
if ((block_ofs = ctx->bktr_ctx.bktr_seek & 0xF) != 0) {
|
|
|
|
if ((read = fread(block_buf, 1, 0x10, ctx->file)) != 0x10) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
aes_setiv(ctx->aes, ctx->ctr, 0x10);
|
2018-01-29 18:39:30 +00:00
|
|
|
aes_decrypt(ctx->aes, block_buf, block_buf, 0x10);
|
2018-01-27 05:31:55 +00:00
|
|
|
if (count + block_ofs < 0x10) {
|
|
|
|
memcpy(buffer, block_buf + ctx->sector_ofs, count);
|
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.virtual_seek + count);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
memcpy(buffer, block_buf + block_ofs, 0x10 - block_ofs);
|
|
|
|
uint32_t read_in_block = 0x10 - block_ofs;
|
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.virtual_seek - block_ofs + 0x10);
|
|
|
|
return read_in_block + nca_section_fread(ctx, (char *)buffer + read_in_block, count - read_in_block);
|
|
|
|
}
|
|
|
|
if ((read = fread(buffer, 1, count, ctx->file)) != count) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
aes_setiv(ctx->aes, ctx->ctr, 16);
|
2018-01-29 18:39:30 +00:00
|
|
|
aes_decrypt(ctx->aes, buffer, buffer, count);
|
2018-01-27 05:31:55 +00:00
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.virtual_seek + count);
|
|
|
|
} else {
|
|
|
|
/* Sad path. */
|
|
|
|
uint64_t within_subsection = next_subsec->offset - ctx->bktr_ctx.bktr_seek;
|
|
|
|
if ((read = nca_section_fread(ctx, buffer, within_subsection)) != within_subsection) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
read += nca_section_fread(ctx, (char *)buffer + within_subsection, count - within_subsection);
|
|
|
|
if (read != count) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
size_t nca_section_fread(nca_section_ctx_t *ctx, void *buffer, size_t count) {
|
|
|
|
size_t read = 0; /* XXX */
|
|
|
|
size_t size = 1;
|
|
|
|
char block_buf[0x10];
|
|
|
|
|
2018-01-27 05:31:55 +00:00
|
|
|
if (ctx->is_decrypted && ctx->type != BKTR) {
|
2018-01-24 17:52:25 +00:00
|
|
|
read = fread(buffer, size, count, ctx->file);
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->crypt_type == CRYPT_XTS || ctx->crypt_type == CRYPT_NCA0) { /* AES-XTS requires special handling... */
|
|
|
|
unsigned char *sector_buf = malloc(ctx->sector_size);
|
|
|
|
if ((read = fread(sector_buf, size, ctx->sector_size, ctx->file)) != ctx->sector_size) {
|
|
|
|
free(sector_buf);
|
2018-01-24 17:52:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
aes_xts_decrypt(ctx->aes, sector_buf, sector_buf, ctx->sector_size, ctx->sector_num, ctx->sector_size);
|
|
|
|
if (count > ctx->sector_size - ctx->sector_ofs) { /* We're leaving the sector... */
|
|
|
|
memcpy(buffer, sector_buf + ctx->sector_ofs, ctx->sector_size - ctx->sector_ofs);
|
|
|
|
size_t remaining = count - (ctx->sector_size - ctx->sector_ofs);
|
|
|
|
size_t ofs = (ctx->sector_size - ctx->sector_ofs);
|
2018-01-24 17:52:25 +00:00
|
|
|
ctx->sector_num++;
|
|
|
|
ctx->sector_ofs = 0;
|
2018-07-20 09:57:28 +00:00
|
|
|
if (remaining & ~ctx->sector_mask) { /* Read intermediate sectors. */
|
|
|
|
uint64_t addl;
|
|
|
|
if ((addl = fread((char *)buffer + ofs, size, (remaining & ~ctx->sector_mask), ctx->file)) != (remaining & ~ctx->sector_mask)) {
|
|
|
|
free(sector_buf);
|
2018-01-24 17:52:25 +00:00
|
|
|
return ofs;
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
aes_xts_decrypt(ctx->aes, (char *)buffer + ofs, (char *)buffer + ofs, remaining & ~ctx->sector_mask, ctx->sector_num, ctx->sector_size);
|
|
|
|
ctx->sector_num += remaining / ctx->sector_size;
|
|
|
|
ofs += remaining & ~ctx->sector_mask;
|
|
|
|
remaining &= ctx->sector_mask;
|
|
|
|
read += addl;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
if (remaining) { /* Read last sector. */
|
2018-07-20 09:57:28 +00:00
|
|
|
if ((read = fread(sector_buf, size, ctx->sector_size, ctx->file)) != ctx->sector_size) {
|
|
|
|
free(sector_buf);
|
2018-01-24 17:52:25 +00:00
|
|
|
return ofs;
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
aes_xts_decrypt(ctx->aes, sector_buf, sector_buf, ctx->sector_size, ctx->sector_num, ctx->sector_size);
|
|
|
|
memcpy((char *)buffer + ofs, sector_buf, remaining);
|
2018-01-24 17:52:25 +00:00
|
|
|
ctx->sector_ofs = remaining;
|
|
|
|
read = count;
|
|
|
|
}
|
|
|
|
} else {
|
2018-07-20 09:57:28 +00:00
|
|
|
memcpy(buffer, sector_buf + ctx->sector_ofs, count);
|
|
|
|
ctx->sector_num += (ctx->sector_ofs + count) / ctx->sector_size;
|
2018-01-24 17:52:25 +00:00
|
|
|
ctx->sector_ofs += count;
|
2018-07-20 09:57:28 +00:00
|
|
|
ctx->sector_ofs &= ctx->sector_mask;
|
|
|
|
read = count;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
free(sector_buf);
|
2018-01-24 17:52:25 +00:00
|
|
|
} else {
|
|
|
|
/* Perform decryption, if necessary. */
|
2018-01-27 05:31:55 +00:00
|
|
|
/* AES-CTR. */
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->crypt_type == CRYPT_CTR || (ctx->crypt_type == CRYPT_BKTR && ctx->bktr_ctx.subsection_block == NULL))
|
2018-01-27 05:31:55 +00:00
|
|
|
{
|
|
|
|
if (ctx->sector_ofs) {
|
|
|
|
if ((read = fread(block_buf, 1, 0x10, ctx->file)) != 0x10) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
aes_setiv(ctx->aes, ctx->ctr, 0x10);
|
2018-01-29 18:39:30 +00:00
|
|
|
aes_decrypt(ctx->aes, block_buf, block_buf, 0x10);
|
2018-01-27 05:31:55 +00:00
|
|
|
if (count + ctx->sector_ofs < 0x10) {
|
|
|
|
memcpy(buffer, block_buf + ctx->sector_ofs, count);
|
|
|
|
ctx->sector_ofs += count;
|
|
|
|
nca_section_fseek(ctx, ctx->cur_seek - ctx->offset);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
memcpy(buffer, block_buf + ctx->sector_ofs, 0x10 - ctx->sector_ofs);
|
|
|
|
uint32_t read_in_block = 0x10 - ctx->sector_ofs;
|
|
|
|
nca_section_fseek(ctx, ctx->cur_seek - ctx->offset + 0x10);
|
|
|
|
return read_in_block + nca_section_fread(ctx, (char *)buffer + read_in_block, count - read_in_block);
|
|
|
|
}
|
|
|
|
if ((read = fread(buffer, 1, count, ctx->file)) != count) {
|
2018-07-20 09:57:28 +00:00
|
|
|
return 0;
|
2018-01-27 05:31:55 +00:00
|
|
|
}
|
|
|
|
aes_setiv(ctx->aes, ctx->ctr, 16);
|
2018-01-29 18:39:30 +00:00
|
|
|
aes_decrypt(ctx->aes, buffer, buffer, count);
|
2018-01-27 05:31:55 +00:00
|
|
|
nca_section_fseek(ctx, ctx->cur_seek - ctx->offset + count);
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (ctx->crypt_type == CRYPT_BKTR) { /* Spooky BKTR AES-CTR. */
|
2018-01-27 05:31:55 +00:00
|
|
|
/* Are we doing virtual reads, or physical reads? */
|
2018-02-03 19:28:08 +00:00
|
|
|
if (ctx->tool_ctx->base_file != NULL && ctx->physical_reads == 0) {
|
2018-01-27 05:31:55 +00:00
|
|
|
bktr_relocation_entry_t *reloc = bktr_get_relocation(ctx->bktr_ctx.relocation_block, ctx->bktr_ctx.virtual_seek);
|
|
|
|
bktr_relocation_entry_t *next_reloc = reloc + 1;
|
|
|
|
uint64_t virt_seek = ctx->bktr_ctx.virtual_seek;
|
|
|
|
if (ctx->bktr_ctx.virtual_seek + count <= next_reloc->virt_offset) {
|
|
|
|
/* Easy path: We're reading *only* within the current relocation. */
|
|
|
|
if (reloc->is_patch) {
|
|
|
|
read = nca_bktr_section_physical_fread(ctx, buffer, count);
|
|
|
|
} else {
|
|
|
|
/* Nice and easy read from the base rom. */
|
2018-01-27 11:22:09 +00:00
|
|
|
if (ctx->tool_ctx->base_file_type == BASEFILE_ROMFS) {
|
|
|
|
fseeko64(ctx->tool_ctx->base_file, ctx->bktr_ctx.base_seek, SEEK_SET);
|
|
|
|
if ((read = fread(buffer, 1, count, ctx->tool_ctx->base_file)) != count) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
} else if (ctx->tool_ctx->base_file_type == BASEFILE_NCA) {
|
2018-01-27 11:22:09 +00:00
|
|
|
nca_ctx_t *base_ctx = ctx->tool_ctx->base_nca_ctx;
|
|
|
|
unsigned int romfs_section_num;
|
|
|
|
for (romfs_section_num = 0; romfs_section_num < 4; romfs_section_num++) {
|
|
|
|
if (base_ctx->section_contexts[romfs_section_num].type == ROMFS) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nca_section_fseek(&base_ctx->section_contexts[romfs_section_num], ctx->bktr_ctx.base_seek);
|
|
|
|
if ((read = nca_section_fread(&base_ctx->section_contexts[romfs_section_num], buffer, count)) != count) {
|
|
|
|
fprintf(stderr, "Failed to read from Base NCA RomFS!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
} else if (ctx->tool_ctx->base_file_type == BASEFILE_FAKE) {
|
|
|
|
/* Fake reads. */
|
|
|
|
memset(buffer, 0xCC, count);
|
|
|
|
read = count;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Unknown Base File Type!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
2018-01-27 05:31:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
uint64_t within_relocation = next_reloc->virt_offset - ctx->bktr_ctx.virtual_seek;
|
|
|
|
if ((read = nca_section_fread(ctx, buffer, within_relocation)) != within_relocation) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, virt_seek + within_relocation);
|
|
|
|
read += nca_section_fread(ctx, (char *)buffer + within_relocation, count - within_relocation);
|
|
|
|
if (read != count) {
|
|
|
|
return 0;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-27 05:31:55 +00:00
|
|
|
nca_section_fseek(ctx, virt_seek + count);
|
|
|
|
} else {
|
|
|
|
read = nca_bktr_section_physical_fread(ctx, buffer, count);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nca_free_section_contexts(nca_ctx_t *ctx) {
|
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (ctx->section_contexts[i].is_present) {
|
|
|
|
if (ctx->section_contexts[i].aes) {
|
|
|
|
free_aes_ctx(ctx->section_contexts[i].aes);
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->section_contexts[i].type == PFS0 && ctx->section_contexts[i].pfs0_ctx.is_exefs) {
|
2018-01-24 17:52:25 +00:00
|
|
|
free(ctx->section_contexts[i].pfs0_ctx.npdm);
|
|
|
|
} else if (ctx->section_contexts[i].type == ROMFS) {
|
|
|
|
if (ctx->section_contexts[i].romfs_ctx.directories) {
|
|
|
|
free(ctx->section_contexts[i].romfs_ctx.directories);
|
|
|
|
}
|
|
|
|
if (ctx->section_contexts[i].romfs_ctx.files) {
|
|
|
|
free(ctx->section_contexts[i].romfs_ctx.files);
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (ctx->section_contexts[i].type == NCA0_ROMFS) {
|
|
|
|
if (ctx->section_contexts[i].nca0_romfs_ctx.directories) {
|
|
|
|
free(ctx->section_contexts[i].nca0_romfs_ctx.directories);
|
|
|
|
}
|
|
|
|
if (ctx->section_contexts[i].nca0_romfs_ctx.files) {
|
|
|
|
free(ctx->section_contexts[i].nca0_romfs_ctx.files);
|
|
|
|
}
|
2018-01-27 11:22:09 +00:00
|
|
|
} else if (ctx->section_contexts[i].type == BKTR) {
|
|
|
|
if (ctx->section_contexts[i].bktr_ctx.subsection_block) {
|
|
|
|
free(ctx->section_contexts[i].bktr_ctx.subsection_block);
|
|
|
|
}
|
|
|
|
if (ctx->section_contexts[i].bktr_ctx.relocation_block) {
|
|
|
|
free(ctx->section_contexts[i].bktr_ctx.relocation_block);
|
|
|
|
}
|
|
|
|
if (ctx->section_contexts[i].bktr_ctx.directories) {
|
|
|
|
free(ctx->section_contexts[i].bktr_ctx.directories);
|
|
|
|
}
|
|
|
|
if (ctx->section_contexts[i].bktr_ctx.files) {
|
|
|
|
free(ctx->section_contexts[i].bktr_ctx.files);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-03 19:28:08 +00:00
|
|
|
void nca_save(nca_ctx_t *ctx) {
|
|
|
|
/* Save header. */
|
|
|
|
filepath_t *header_path = &ctx->tool_ctx->settings.header_path;
|
|
|
|
|
|
|
|
if (header_path->valid == VALIDITY_VALID) {
|
|
|
|
printf("Saving Header to %s...\n", header_path->char_path);
|
|
|
|
FILE *f_hdr = os_fopen(header_path->os_path, OS_MODE_WRITE);
|
|
|
|
|
|
|
|
if (f_hdr != NULL) {
|
|
|
|
fwrite(&ctx->header, 1, 0xC00, f_hdr);
|
|
|
|
fclose(f_hdr);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Failed to open %s!\n", header_path->char_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (ctx->section_contexts[i].is_present) {
|
|
|
|
/* printf("Saving section %"PRId32"...\n", i); */
|
|
|
|
nca_save_section(&ctx->section_contexts[i]);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save Decrypted NCA. */
|
2018-04-03 22:26:56 +00:00
|
|
|
filepath_t *dec_path = &ctx->tool_ctx->settings.plaintext_path;
|
2018-02-03 19:28:08 +00:00
|
|
|
|
|
|
|
if (dec_path->valid == VALIDITY_VALID) {
|
|
|
|
printf("Saving Decrypted NCA to %s...\n", dec_path->char_path);
|
|
|
|
FILE *f_dec = os_fopen(dec_path->os_path, OS_MODE_WRITE);
|
|
|
|
|
|
|
|
if (f_dec != NULL) {
|
|
|
|
if (fwrite(&ctx->header, 1, 0xC00, f_dec) != 0xC00) {
|
|
|
|
fprintf(stderr, "Failed to write header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char *buf = malloc(0x400000);
|
|
|
|
if (buf == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate file-save buffer!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (ctx->section_contexts[i].is_present) {
|
|
|
|
fseeko64(f_dec, ctx->section_contexts[i].offset, SEEK_SET);
|
|
|
|
ctx->section_contexts[i].physical_reads = 1;
|
|
|
|
|
|
|
|
uint64_t read_size = 0x400000; /* 4 MB buffer. */
|
|
|
|
memset(buf, 0xCC, read_size); /* Debug in case I fuck this up somehow... */
|
|
|
|
uint64_t ofs = 0;
|
|
|
|
uint64_t end_ofs = ofs + ctx->section_contexts[i].size;
|
|
|
|
nca_section_fseek(&ctx->section_contexts[i], ofs);
|
|
|
|
while (ofs < end_ofs) {
|
|
|
|
if (ofs + read_size >= end_ofs) read_size = end_ofs - ofs;
|
|
|
|
if (nca_section_fread(&ctx->section_contexts[i], buf, read_size) != read_size) {
|
|
|
|
fprintf(stderr, "Failed to read file!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if (fwrite(buf, 1, read_size, f_dec) != read_size) {
|
|
|
|
fprintf(stderr, "Failed to write file!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
ofs += read_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->section_contexts[i].physical_reads = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f_dec);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Failed to open %s!\n", dec_path->char_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
void nca_process(nca_ctx_t *ctx) {
|
|
|
|
/* First things first, decrypt header. */
|
|
|
|
if (!nca_decrypt_header(ctx)) {
|
2018-02-07 08:31:25 +00:00
|
|
|
fprintf(stderr, "Invalid NCA header! Are keys correct?\n");
|
2018-01-24 17:52:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rsa2048_pss_verify(&ctx->header.magic, 0x200, ctx->header.fixed_key_sig, ctx->tool_ctx->settings.keyset.nca_hdr_fixed_key_modulus)) {
|
|
|
|
ctx->fixed_sig_validity = VALIDITY_VALID;
|
|
|
|
} else {
|
|
|
|
ctx->fixed_sig_validity = VALIDITY_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort out crypto type. */
|
|
|
|
ctx->crypto_type = ctx->header.crypto_type;
|
|
|
|
if (ctx->header.crypto_type2 > ctx->header.crypto_type)
|
|
|
|
ctx->crypto_type = ctx->header.crypto_type2;
|
|
|
|
|
|
|
|
if (ctx->crypto_type)
|
|
|
|
ctx->crypto_type--; /* 0, 1 are both master key 0. */
|
|
|
|
|
|
|
|
/* Rights ID. */
|
|
|
|
for (unsigned int i = 0; i < 0x10; i++) {
|
|
|
|
if (ctx->header.rights_id[i] != 0) {
|
|
|
|
ctx->has_rights_id = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decrypt key area if required. */
|
|
|
|
if (!ctx->has_rights_id) {
|
|
|
|
nca_decrypt_key_area(ctx);
|
|
|
|
} else {
|
|
|
|
/* Decrypt title key. */
|
|
|
|
if (ctx->tool_ctx->settings.has_titlekey) {
|
2018-02-07 19:35:14 +00:00
|
|
|
aes_ctx_t *aes_ctx = new_aes_ctx(ctx->tool_ctx->settings.keyset.titlekeks[ctx->crypto_type], 16, AES_MODE_ECB);
|
2018-01-29 18:39:30 +00:00
|
|
|
aes_decrypt(aes_ctx, ctx->tool_ctx->settings.dec_titlekey, ctx->tool_ctx->settings.titlekey, 0x10);
|
2018-01-24 17:52:25 +00:00
|
|
|
free_aes_ctx(aes_ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse sections. */
|
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (ctx->header.section_entries[i].media_start_offset) { /* Section exists. */
|
2018-07-20 09:57:28 +00:00
|
|
|
ctx->section_contexts[i].is_present = 1;
|
2018-01-24 17:52:25 +00:00
|
|
|
ctx->section_contexts[i].is_decrypted = ctx->is_decrypted;
|
|
|
|
ctx->section_contexts[i].tool_ctx = ctx->tool_ctx;
|
|
|
|
ctx->section_contexts[i].file = ctx->file;
|
|
|
|
ctx->section_contexts[i].section_num = i;
|
|
|
|
ctx->section_contexts[i].offset = media_to_real(ctx->header.section_entries[i].media_start_offset);
|
|
|
|
ctx->section_contexts[i].size = media_to_real(ctx->header.section_entries[i].media_end_offset) - ctx->section_contexts[i].offset;
|
|
|
|
ctx->section_contexts[i].header = &ctx->header.fs_headers[i];
|
2018-07-20 09:57:28 +00:00
|
|
|
ctx->section_contexts[i].crypt_type = ctx->section_contexts[i].header->crypt_type;
|
|
|
|
if (ctx->format_version == NCAVERSION_NCA0 || ctx->format_version == NCAVERSION_NCA0_BETA) {
|
|
|
|
ctx->section_contexts[i].crypt_type = CRYPT_NCA0;
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
if (ctx->section_contexts[i].header->partition_type == PARTITION_PFS0 && ctx->section_contexts[i].header->fs_type == FS_TYPE_PFS0) {
|
|
|
|
ctx->section_contexts[i].type = PFS0;
|
|
|
|
ctx->section_contexts[i].pfs0_ctx.superblock = &ctx->section_contexts[i].header->pfs0_superblock;
|
|
|
|
} else if (ctx->section_contexts[i].header->partition_type == PARTITION_ROMFS && ctx->section_contexts[i].header->fs_type == FS_TYPE_ROMFS) {
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->section_contexts[i].crypt_type == CRYPT_BKTR) {
|
2018-01-24 17:52:25 +00:00
|
|
|
ctx->section_contexts[i].type = BKTR;
|
|
|
|
ctx->section_contexts[i].bktr_ctx.superblock = &ctx->section_contexts[i].header->bktr_superblock;
|
|
|
|
} else {
|
|
|
|
ctx->section_contexts[i].type = ROMFS;
|
|
|
|
ctx->section_contexts[i].romfs_ctx.superblock = &ctx->section_contexts[i].header->romfs_superblock;
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (ctx->section_contexts[i].header->partition_type == PARTITION_ROMFS && ctx->section_contexts[i].header->fs_type == FS_TYPE_PFS0 && (ctx->format_version == NCAVERSION_NCA0 || ctx->format_version == NCAVERSION_NCA0_BETA)) {
|
|
|
|
ctx->section_contexts[i].type = NCA0_ROMFS;
|
|
|
|
ctx->section_contexts[i].nca0_romfs_ctx.superblock = &ctx->section_contexts[i].header->nca0_romfs_superblock;
|
2018-01-24 17:52:25 +00:00
|
|
|
} else {
|
|
|
|
ctx->section_contexts[i].type = INVALID;
|
|
|
|
}
|
|
|
|
uint64_t ofs = ctx->section_contexts[i].offset >> 4;
|
|
|
|
for (unsigned int j = 0; j < 0x8; j++) {
|
|
|
|
ctx->section_contexts[i].ctr[j] = ctx->section_contexts[i].header->section_ctr[0x8-j-1];
|
|
|
|
ctx->section_contexts[i].ctr[0x10-j-1] = (unsigned char)(ofs & 0xFF);
|
|
|
|
ofs >>= 8;
|
|
|
|
}
|
|
|
|
ctx->section_contexts[i].sector_num = 0;
|
|
|
|
ctx->section_contexts[i].sector_ofs = 0;
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->section_contexts[i].crypt_type == CRYPT_NONE) {
|
2018-01-24 17:52:25 +00:00
|
|
|
ctx->section_contexts[i].is_decrypted = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->tool_ctx->settings.has_contentkey) {
|
2018-01-29 18:39:30 +00:00
|
|
|
ctx->section_contexts[i].aes = new_aes_ctx(ctx->tool_ctx->settings.contentkey, 16, AES_MODE_CTR);
|
2018-01-24 17:52:25 +00:00
|
|
|
} else {
|
|
|
|
if (ctx->has_rights_id) {
|
2018-01-29 18:39:30 +00:00
|
|
|
ctx->section_contexts[i].aes = new_aes_ctx(ctx->tool_ctx->settings.dec_titlekey, 16, AES_MODE_CTR);
|
2018-01-24 17:52:25 +00:00
|
|
|
} else {
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->section_contexts[i].crypt_type == CRYPT_CTR || ctx->section_contexts[i].crypt_type == CRYPT_BKTR) {
|
2018-01-29 18:39:30 +00:00
|
|
|
ctx->section_contexts[i].aes = new_aes_ctx(ctx->decrypted_keys[2], 16, AES_MODE_CTR);
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (ctx->section_contexts[i].crypt_type == CRYPT_XTS || ctx->section_contexts[i].crypt_type == CRYPT_NCA0) {
|
|
|
|
ctx->section_contexts[i].aes = new_aes_ctx(ctx->decrypted_keys, 32, AES_MODE_XTS);
|
|
|
|
ctx->section_contexts[i].sector_size = 0x200ULL;
|
|
|
|
}
|
|
|
|
if (ctx->section_contexts[i].sector_size) {
|
|
|
|
ctx->section_contexts[i].sector_mask = ctx->section_contexts[i].sector_size - 1ULL;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
printf("Verifying section %"PRId32"...\n", i);
|
|
|
|
}
|
|
|
|
switch (ctx->section_contexts[i].type) {
|
|
|
|
case PFS0:
|
|
|
|
nca_process_pfs0_section(&ctx->section_contexts[i]);
|
|
|
|
/* Verify NPDM sig now, if we can... */
|
|
|
|
if (ctx->section_contexts[i].pfs0_ctx.is_exefs) {
|
|
|
|
ctx->npdm = ctx->section_contexts[i].pfs0_ctx.npdm;
|
|
|
|
if (rsa2048_pss_verify(&ctx->header.magic, 0x200, ctx->header.npdm_key_sig, npdm_get_acid(ctx->npdm)->modulus)) {
|
|
|
|
ctx->npdm_sig_validity = VALIDITY_VALID;
|
|
|
|
} else {
|
|
|
|
ctx->npdm_sig_validity = VALIDITY_INVALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ROMFS:
|
|
|
|
nca_process_ivfc_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
2018-07-20 09:57:28 +00:00
|
|
|
case NCA0_ROMFS:
|
|
|
|
nca_process_nca0_romfs_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
2018-01-24 17:52:25 +00:00
|
|
|
case BKTR:
|
|
|
|
nca_process_bktr_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
|
|
|
case INVALID:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 11:22:09 +00:00
|
|
|
if (ctx->tool_ctx->action & ACTION_INFO) {
|
|
|
|
nca_print(ctx);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
|
2018-02-03 19:28:08 +00:00
|
|
|
if (ctx->tool_ctx->action & ACTION_EXTRACT) {
|
|
|
|
nca_save(ctx);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decrypt NCA header. */
|
|
|
|
int nca_decrypt_header(nca_ctx_t *ctx) {
|
|
|
|
fseeko64(ctx->file, 0, SEEK_SET);
|
|
|
|
if (fread(&ctx->header, 1, 0xC00, ctx->file) != 0xC00) {
|
|
|
|
fprintf(stderr, "Failed to read NCA header!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try to support decrypted NCA headers. */
|
2018-03-15 05:42:02 +00:00
|
|
|
if (ctx->header.magic == MAGIC_NCA3 || ctx->header.magic == MAGIC_NCA2) {
|
2018-01-24 17:52:25 +00:00
|
|
|
if (ctx->header._0x340[0] == 0 && !memcmp(ctx->header._0x340, ctx->header._0x340 + 1, 0xBF)) {
|
|
|
|
ctx->is_decrypted = 1;
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->header.magic == MAGIC_NCA3) {
|
|
|
|
ctx->format_version = NCAVERSION_NCA3;
|
|
|
|
} else {
|
|
|
|
ctx->format_version = NCAVERSION_NCA2;
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->is_decrypted = 0;
|
2018-03-15 05:42:02 +00:00
|
|
|
|
|
|
|
nca_header_t dec_header;
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
aes_ctx_t *hdr_aes_ctx = new_aes_ctx(ctx->tool_ctx->settings.keyset.header_key, 32, AES_MODE_XTS);
|
|
|
|
aes_xts_decrypt(hdr_aes_ctx, &dec_header, &ctx->header, 0x400, 0, 0x200);
|
2018-03-15 05:42:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (dec_header.magic == MAGIC_NCA3) {
|
2018-07-20 09:57:28 +00:00
|
|
|
ctx->format_version = NCAVERSION_NCA3;
|
|
|
|
aes_xts_decrypt(hdr_aes_ctx, &dec_header, &ctx->header, 0xC00, 0, 0x200);
|
2018-03-15 05:42:02 +00:00
|
|
|
ctx->header = dec_header;
|
|
|
|
} else if (dec_header.magic == MAGIC_NCA2) {
|
2018-07-20 09:57:28 +00:00
|
|
|
ctx->format_version = NCAVERSION_NCA2;
|
2018-03-15 05:42:02 +00:00
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (dec_header.fs_headers[i]._0x148[0] != 0 || memcmp(dec_header.fs_headers[i]._0x148, dec_header.fs_headers[i]._0x148 + 1, 0xB7)) {
|
2018-07-20 09:57:28 +00:00
|
|
|
aes_xts_decrypt(hdr_aes_ctx, &dec_header.fs_headers[i], &ctx->header.fs_headers[i], 0x200, 0, 0x200);
|
2018-03-15 05:42:02 +00:00
|
|
|
} else {
|
|
|
|
memset(&dec_header.fs_headers[i], 0, sizeof(nca_fs_header_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx->header = dec_header;
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if (dec_header.magic == MAGIC_NCA0) {
|
|
|
|
memset(ctx->decrypted_keys, 0, 0x40);
|
|
|
|
unsigned char out_keydata[0x100];
|
|
|
|
size_t out_len = 0;
|
|
|
|
if (rsa2048_oaep_decrypt_verify(out_keydata, sizeof(out_keydata), (const unsigned char *)dec_header.encrypted_keys, pki_get_beta_nca0_modulus(), pki_get_beta_nca0_exponent(), 0x100, pki_get_beta_nca0_label_hash(), &out_len)) {
|
|
|
|
if (out_len >= 0x20) {
|
|
|
|
memcpy(ctx->decrypted_keys, out_keydata, 0x20);
|
|
|
|
ctx->format_version = NCAVERSION_NCA0_BETA;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx->format_version = NCAVERSION_NCA0;
|
|
|
|
aes_ctx_t *aes_ctx = new_aes_ctx(ctx->tool_ctx->settings.keyset.key_area_keys[ctx->crypto_type][dec_header.kaek_ind], 16, AES_MODE_ECB);
|
|
|
|
aes_decrypt(aes_ctx, ctx->decrypted_keys, dec_header.encrypted_keys, 0x20);
|
|
|
|
free_aes_ctx(aes_ctx);
|
|
|
|
}
|
|
|
|
if (ctx->format_version != NCAVERSION_UNKNOWN) {
|
|
|
|
memset(dec_header.fs_headers, 0, sizeof(dec_header.fs_headers));
|
|
|
|
aes_ctx_t *aes_ctx = new_aes_ctx(ctx->decrypted_keys, 32, AES_MODE_XTS);
|
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (dec_header.section_entries[i].media_start_offset) { /* Section exists. */
|
|
|
|
uint64_t offset = media_to_real(dec_header.section_entries[i].media_start_offset);
|
|
|
|
fseeko64(ctx->tool_ctx->file, offset, SEEK_SET);
|
|
|
|
if (fread(&dec_header.fs_headers[i], sizeof(dec_header.fs_headers[i]), 1, ctx->tool_ctx->file) != 1) {
|
|
|
|
fprintf(stderr, "Failed to read NCA0 FS header at %" PRIx64"!\n", offset);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
aes_xts_decrypt(aes_ctx, &dec_header.fs_headers[i], &dec_header.fs_headers[i], sizeof(dec_header.fs_headers[i]), (offset - 0x400ULL) >> 9ULL, 0x200);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free_aes_ctx(aes_ctx);
|
|
|
|
ctx->header = dec_header;
|
|
|
|
}
|
2018-03-15 05:42:02 +00:00
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
free_aes_ctx(hdr_aes_ctx);
|
|
|
|
return ctx->format_version != NCAVERSION_UNKNOWN;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Decrypt key area. */
|
|
|
|
void nca_decrypt_key_area(nca_ctx_t *ctx) {
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->format_version == NCAVERSION_NCA0_BETA || ctx->format_version == NCAVERSION_NCA0) return;
|
2018-01-29 18:39:30 +00:00
|
|
|
aes_ctx_t *aes_ctx = new_aes_ctx(ctx->tool_ctx->settings.keyset.key_area_keys[ctx->crypto_type][ctx->header.kaek_ind], 16, AES_MODE_ECB);
|
2018-01-24 17:52:25 +00:00
|
|
|
aes_decrypt(aes_ctx, ctx->decrypted_keys, ctx->header.encrypted_keys, 0x40);
|
|
|
|
free_aes_ctx(aes_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char *nca_get_distribution_type(nca_ctx_t *ctx) {
|
|
|
|
switch (ctx->header.distribution) {
|
|
|
|
case 0:
|
|
|
|
return "Download";
|
|
|
|
case 1:
|
|
|
|
return "Gamecard";
|
|
|
|
default:
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *nca_get_content_type(nca_ctx_t *ctx) {
|
|
|
|
switch (ctx->header.content_type) {
|
|
|
|
case 0:
|
|
|
|
return "Program";
|
|
|
|
case 1:
|
|
|
|
return "Meta";
|
|
|
|
case 2:
|
|
|
|
return "Control";
|
|
|
|
case 3:
|
|
|
|
return "Manual";
|
|
|
|
case 4:
|
|
|
|
return "Data";
|
|
|
|
default:
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *nca_get_encryption_type(nca_ctx_t *ctx) {
|
|
|
|
if (ctx->has_rights_id) {
|
|
|
|
return "Titlekey crypto";
|
|
|
|
} else {
|
|
|
|
return "Standard crypto";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nca_print_key_area(nca_ctx_t *ctx) {
|
2018-07-20 09:57:28 +00:00
|
|
|
if (ctx->format_version == NCAVERSION_NCA0_BETA) {
|
|
|
|
printf("Key Area (Encrypted):\n");
|
|
|
|
memdump(stdout, "Key (RSA-OAEP Encrypted): ", &ctx->header.encrypted_keys, 0x100);
|
|
|
|
printf("Key Area (Decrypted):\n");
|
|
|
|
for (unsigned int i = 0; i < 0x2; i++) {
|
|
|
|
printf(" Key %"PRId32" (Decrypted): ", i);
|
|
|
|
memdump(stdout, "", &ctx->decrypted_keys[i], 0x10);
|
|
|
|
}
|
|
|
|
} else if (ctx->format_version == NCAVERSION_NCA0) {
|
|
|
|
printf("Key Area (Encrypted):\n");
|
|
|
|
for (unsigned int i = 0; i < 0x2; i++) {
|
|
|
|
printf(" Key %"PRId32" (Encrypted): ", i);
|
|
|
|
memdump(stdout, "", &ctx->header.encrypted_keys[i], 0x10);
|
|
|
|
}
|
|
|
|
printf("Key Area (Decrypted):\n");
|
|
|
|
for (unsigned int i = 0; i < 0x2; i++) {
|
|
|
|
printf(" Key %"PRId32" (Decrypted): ", i);
|
|
|
|
memdump(stdout, "", &ctx->decrypted_keys[i], 0x10);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("Key Area (Encrypted):\n");
|
|
|
|
for (unsigned int i = 0; i < 0x4; i++) {
|
|
|
|
printf(" Key %"PRId32" (Encrypted): ", i);
|
|
|
|
memdump(stdout, "", &ctx->header.encrypted_keys[i], 0x10);
|
|
|
|
}
|
|
|
|
printf("Key Area (Decrypted):\n");
|
|
|
|
for (unsigned int i = 0; i < 0x4; i++) {
|
|
|
|
printf(" Key %"PRId32" (Decrypted): ", i);
|
|
|
|
memdump(stdout, "", &ctx->decrypted_keys[i], 0x10);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *nca_get_section_type(nca_section_ctx_t *meta) {
|
|
|
|
switch (meta->type) {
|
|
|
|
case PFS0: {
|
|
|
|
if (meta->pfs0_ctx.is_exefs) return "ExeFS";
|
|
|
|
return "PFS0";
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
case NCA0_ROMFS: return "NCA0 RomFS";
|
2018-01-24 17:52:25 +00:00
|
|
|
case ROMFS: return "RomFS";
|
|
|
|
case BKTR: return "Patch RomFS";
|
|
|
|
case INVALID:
|
|
|
|
default:
|
|
|
|
return "Unknown/Invalid";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nca_print_sections(nca_ctx_t *ctx) {
|
|
|
|
printf("Sections:\n");
|
|
|
|
for (unsigned int i = 0; i < 4; i++) {
|
|
|
|
if (ctx->section_contexts[i].is_present) { /* Section exists. */
|
|
|
|
printf(" Section %"PRId32":\n", i);
|
|
|
|
printf(" Offset: 0x%012"PRIx64"\n", ctx->section_contexts[i].offset);
|
|
|
|
printf(" Size: 0x%012"PRIx64"\n", ctx->section_contexts[i].size);
|
|
|
|
printf(" Partition Type: %s\n", nca_get_section_type(&ctx->section_contexts[i]));
|
2018-07-20 09:57:28 +00:00
|
|
|
if (!(ctx->format_version == NCAVERSION_NCA0 || ctx->format_version == NCAVERSION_NCA0_BETA)) {
|
|
|
|
memdump(stdout, " Section CTR: ", &ctx->section_contexts[i].ctr, 16);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
switch (ctx->section_contexts[i].type) {
|
|
|
|
case PFS0: {
|
|
|
|
nca_print_pfs0_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ROMFS: {
|
|
|
|
nca_print_ivfc_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
|
|
|
}
|
2018-07-20 09:57:28 +00:00
|
|
|
case NCA0_ROMFS: {
|
|
|
|
nca_print_nca0_romfs_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
case BKTR: {
|
|
|
|
nca_print_bktr_section(&ctx->section_contexts[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case INVALID:
|
|
|
|
default: {
|
|
|
|
printf(" Unknown/invalid superblock!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print out information about the NCA. */
|
|
|
|
void nca_print(nca_ctx_t *ctx) {
|
|
|
|
printf("\nNCA:\n");
|
2018-02-07 08:10:26 +00:00
|
|
|
print_magic("Magic: ", ctx->header.magic);
|
2018-01-24 17:52:25 +00:00
|
|
|
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY && ctx->fixed_sig_validity != VALIDITY_UNCHECKED) {
|
|
|
|
if (ctx->fixed_sig_validity == VALIDITY_VALID) {
|
|
|
|
memdump(stdout, "Fixed-Key Signature (GOOD): ", &ctx->header.fixed_key_sig, 0x100);
|
|
|
|
} else {
|
|
|
|
memdump(stdout, "Fixed-Key Signature (FAIL): ", &ctx->header.fixed_key_sig, 0x100);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memdump(stdout, "Fixed-Key Signature: ", &ctx->header.fixed_key_sig, 0x100);
|
|
|
|
}
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY && ctx->npdm_sig_validity != VALIDITY_UNCHECKED) {
|
|
|
|
if (ctx->npdm_sig_validity == VALIDITY_VALID) {
|
|
|
|
memdump(stdout, "NPDM Signature (GOOD): ", &ctx->header.npdm_key_sig, 0x100);
|
|
|
|
} else {
|
|
|
|
memdump(stdout, "NPDM Signature (FAIL): ", &ctx->header.npdm_key_sig, 0x100);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memdump(stdout, "NPDM Signature: ", &ctx->header.npdm_key_sig, 0x100);
|
|
|
|
}
|
|
|
|
printf("Content Size: 0x%012"PRIx64"\n", ctx->header.nca_size);
|
|
|
|
printf("Title ID: %016"PRIx64"\n", ctx->header.title_id);
|
|
|
|
printf("SDK Version: %"PRId8".%"PRId8".%"PRId8".%"PRId8"\n", ctx->header.sdk_major, ctx->header.sdk_minor, ctx->header.sdk_micro, ctx->header.sdk_revision);
|
|
|
|
printf("Distribution type: %s\n", nca_get_distribution_type(ctx));
|
|
|
|
printf("Content Type: %s\n", nca_get_content_type(ctx));
|
2018-02-06 23:52:48 +00:00
|
|
|
printf("Master Key Revision: %"PRIx8" (%s)\n", ctx->crypto_type, get_key_revision_summary(ctx->crypto_type));
|
2018-01-24 17:52:25 +00:00
|
|
|
printf("Encryption Type: %s\n", nca_get_encryption_type(ctx));
|
|
|
|
|
|
|
|
if (ctx->has_rights_id) {
|
|
|
|
memdump(stdout, "Rights ID: ", &ctx->header.rights_id, 0x10);
|
|
|
|
if (ctx->tool_ctx->settings.has_titlekey) {
|
|
|
|
memdump(stdout, "Titlekey (Encrypted) ", ctx->tool_ctx->settings.titlekey, 0x10);
|
|
|
|
memdump(stdout, "Titlekey (Decrypted) ", ctx->tool_ctx->settings.dec_titlekey, 0x10);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("Key Area Encryption Key: %"PRIx8"\n", ctx->header.kaek_ind);
|
|
|
|
nca_print_key_area(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->npdm) {
|
2018-05-03 00:35:19 +00:00
|
|
|
npdm_process(ctx->npdm, ctx->tool_ctx);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nca_print_sections(ctx);
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
validity_t nca_section_check_external_hash_table(nca_section_ctx_t *ctx, unsigned char *hash_table, uint64_t data_ofs, uint64_t data_len, uint64_t block_size, int full_block) {
|
|
|
|
if (block_size == 0) {
|
|
|
|
/* Block size of 0 is always invalid. */
|
|
|
|
return VALIDITY_INVALID;
|
|
|
|
}
|
|
|
|
unsigned char cur_hash[0x20];
|
|
|
|
uint64_t read_size = block_size;
|
|
|
|
unsigned char *block = malloc(block_size);
|
|
|
|
if (block == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate hash block!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
validity_t result = VALIDITY_VALID;
|
|
|
|
unsigned char *cur_hash_table_entry = hash_table;
|
|
|
|
for (uint64_t ofs = 0; ofs < data_len; ofs += read_size) {
|
|
|
|
nca_section_fseek(ctx, ofs + data_ofs);
|
|
|
|
if (ofs + read_size > data_len) {
|
|
|
|
/* Last block... */
|
|
|
|
memset(block, 0, read_size);
|
|
|
|
read_size = data_len - ofs;
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
if (nca_section_fread(ctx, block, read_size) != read_size) {
|
2018-01-24 17:52:25 +00:00
|
|
|
fprintf(stderr, "Failed to read section!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2018-01-29 18:39:30 +00:00
|
|
|
sha256_hash_buffer(cur_hash, block, full_block ? block_size : read_size);
|
2018-01-24 17:52:25 +00:00
|
|
|
if (memcmp(cur_hash, cur_hash_table_entry, 0x20) != 0) {
|
|
|
|
result = VALIDITY_INVALID;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cur_hash_table_entry += 0x20;
|
|
|
|
}
|
|
|
|
free(block);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
validity_t nca_section_check_hash_table(nca_section_ctx_t *ctx, uint64_t hash_ofs, uint64_t data_ofs, uint64_t data_len, uint64_t block_size, int full_block) {
|
|
|
|
if (block_size == 0) {
|
|
|
|
/* Block size of 0 is always invalid. */
|
|
|
|
return VALIDITY_INVALID;
|
|
|
|
}
|
|
|
|
uint64_t hash_table_size = data_len / block_size;
|
|
|
|
if (data_len % block_size) hash_table_size++;
|
|
|
|
hash_table_size *= 0x20;
|
|
|
|
unsigned char *hash_table = malloc(hash_table_size);
|
|
|
|
if (hash_table == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate hash table!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nca_section_fseek(ctx, hash_ofs);
|
|
|
|
if (nca_section_fread(ctx, hash_table, hash_table_size) != hash_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read section!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
validity_t result = nca_section_check_external_hash_table(ctx, hash_table, data_ofs, data_len, block_size, full_block);
|
|
|
|
|
|
|
|
free(hash_table);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nca_save_pfs0_file(nca_section_ctx_t *ctx, uint32_t i, filepath_t *dirpath) {
|
|
|
|
if (i >= ctx->pfs0_ctx.header->num_files) {
|
|
|
|
fprintf(stderr, "Could not save file %"PRId32"!\n", i);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
pfs0_file_entry_t *cur_file = pfs0_get_file_entry(ctx->pfs0_ctx.header, i);
|
|
|
|
if (cur_file->size >= ctx->size) {
|
|
|
|
fprintf(stderr, "File %"PRId32" too big in PFS0 (section %"PRId32")!\n", i, ctx->section_num);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strlen(pfs0_get_file_name(ctx->pfs0_ctx.header, i)) >= MAX_PATH - strlen(dirpath->char_path) - 1) {
|
|
|
|
fprintf(stderr, "Filename too long in PFS0!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
filepath_t filepath;
|
|
|
|
filepath_copy(&filepath, dirpath);
|
|
|
|
filepath_append(&filepath, "%s", pfs0_get_file_name(ctx->pfs0_ctx.header, i));
|
|
|
|
|
|
|
|
printf("Saving %s to %s...\n", pfs0_get_file_name(ctx->pfs0_ctx.header, i), filepath.char_path);
|
|
|
|
uint64_t ofs = ctx->pfs0_ctx.superblock->pfs0_offset + pfs0_get_header_size(ctx->pfs0_ctx.header) + cur_file->offset;
|
|
|
|
nca_save_section_file(ctx, ofs, cur_file->size, &filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nca_process_pfs0_section(nca_section_ctx_t *ctx) {
|
|
|
|
pfs0_superblock_t *sb = ctx->pfs0_ctx.superblock;
|
|
|
|
ctx->superblock_hash_validity = nca_section_check_external_hash_table(ctx, sb->master_hash, sb->hash_table_offset, sb->hash_table_size, sb->hash_table_size, 0);
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
/* Verify actual PFS0... */
|
|
|
|
ctx->pfs0_ctx.hash_table_validity = nca_section_check_hash_table(ctx, sb->hash_table_offset, sb->pfs0_offset, sb->pfs0_size, sb->block_size, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->superblock_hash_validity != VALIDITY_VALID) return;
|
|
|
|
|
|
|
|
/* Read *just* safe amount. */
|
|
|
|
pfs0_header_t raw_header;
|
|
|
|
nca_section_fseek(ctx, sb->pfs0_offset);
|
|
|
|
if (nca_section_fread(ctx, &raw_header, sizeof(raw_header)) != sizeof(raw_header)) {
|
|
|
|
fprintf(stderr, "Failed to read PFS0 header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t header_size = pfs0_get_header_size(&raw_header);
|
|
|
|
ctx->pfs0_ctx.header = malloc(header_size);
|
|
|
|
if (ctx->pfs0_ctx.header == NULL) {
|
|
|
|
fprintf(stderr, "Failed to get PFS0 header size!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, sb->pfs0_offset);
|
|
|
|
if (nca_section_fread(ctx, ctx->pfs0_ctx.header, header_size) != header_size) {
|
|
|
|
fprintf(stderr, "Failed to read PFS0 header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < ctx->pfs0_ctx.header->num_files; i++) {
|
|
|
|
pfs0_file_entry_t *cur_file = pfs0_get_file_entry(ctx->pfs0_ctx.header, i);
|
|
|
|
if (strcmp(pfs0_get_file_name(ctx->pfs0_ctx.header, i), "main.npdm") == 0) {
|
|
|
|
/* We might have found the exefs... */
|
|
|
|
if (cur_file->size >= sb->pfs0_size) {
|
|
|
|
fprintf(stderr, "NPDM too big!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->pfs0_ctx.npdm = malloc(cur_file->size);
|
|
|
|
if (ctx->pfs0_ctx.npdm == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate NPDM!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, sb->pfs0_offset + pfs0_get_header_size(ctx->pfs0_ctx.header) + cur_file->offset);
|
|
|
|
if (nca_section_fread(ctx, ctx->pfs0_ctx.npdm, cur_file->size) != cur_file->size) {
|
|
|
|
fprintf(stderr, "Failed to read NPDM!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->pfs0_ctx.npdm->magic == MAGIC_META) {
|
|
|
|
ctx->pfs0_ctx.is_exefs = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nca_process_ivfc_section(nca_section_ctx_t *ctx) {
|
|
|
|
romfs_superblock_t *sb = ctx->romfs_ctx.superblock;
|
|
|
|
for (unsigned int i = 0; i < IVFC_MAX_LEVEL; i++) {
|
|
|
|
/* Load in the current level's header data. */
|
|
|
|
ivfc_level_ctx_t *cur_level = &ctx->romfs_ctx.ivfc_levels[i];
|
|
|
|
cur_level->data_offset = sb->ivfc_header.level_headers[i].logical_offset;
|
|
|
|
cur_level->data_size = sb->ivfc_header.level_headers[i].hash_data_size;
|
|
|
|
cur_level->hash_block_size = 1 << sb->ivfc_header.level_headers[i].block_size;
|
|
|
|
|
|
|
|
if (i != 0) {
|
|
|
|
/* Hash table is previous level's data. */
|
|
|
|
cur_level->hash_offset = ctx->romfs_ctx.ivfc_levels[i-1].data_offset;
|
|
|
|
} else {
|
|
|
|
/* Hash table is the superblock hash. Always check the superblock hash. */
|
|
|
|
ctx->superblock_hash_validity = nca_section_check_external_hash_table(ctx, sb->ivfc_header.master_hash, cur_level->data_offset, cur_level->data_size, cur_level->hash_block_size, 1);
|
|
|
|
cur_level->hash_validity = ctx->superblock_hash_validity;
|
|
|
|
}
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY && i != 0) {
|
|
|
|
/* Actually check the table. */
|
|
|
|
printf(" Verifying IVFC Level %"PRId32"...\n", i);
|
|
|
|
cur_level->hash_validity = nca_section_check_hash_table(ctx, cur_level->hash_offset, cur_level->data_offset, cur_level->data_size, cur_level->hash_block_size, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->romfs_ctx.romfs_offset = ctx->romfs_ctx.ivfc_levels[IVFC_MAX_LEVEL - 1].data_offset;
|
|
|
|
nca_section_fseek(ctx, ctx->romfs_ctx.romfs_offset);
|
|
|
|
if (nca_section_fread(ctx, &ctx->romfs_ctx.header, sizeof(romfs_hdr_t)) != sizeof(romfs_hdr_t)) {
|
|
|
|
fprintf(stderr, "Failed to read RomFS header!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ctx->tool_ctx->action & (ACTION_EXTRACT | ACTION_LISTROMFS)) && ctx->romfs_ctx.header.header_size == ROMFS_HEADER_SIZE) {
|
|
|
|
/* Pre-load the file/data entry caches. */
|
|
|
|
ctx->romfs_ctx.directories = calloc(1, ctx->romfs_ctx.header.dir_meta_table_size);
|
|
|
|
if (ctx->romfs_ctx.directories == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate RomFS directory cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
nca_section_fseek(ctx, ctx->romfs_ctx.romfs_offset + ctx->romfs_ctx.header.dir_meta_table_offset);
|
2018-01-24 17:52:25 +00:00
|
|
|
if (nca_section_fread(ctx, ctx->romfs_ctx.directories, ctx->romfs_ctx.header.dir_meta_table_size) != ctx->romfs_ctx.header.dir_meta_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read RomFS directory cache!\n");
|
2018-01-27 05:31:55 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx->romfs_ctx.files = calloc(1, ctx->romfs_ctx.header.file_meta_table_size);
|
|
|
|
if (ctx->romfs_ctx.files == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate RomFS file cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, ctx->romfs_ctx.romfs_offset + ctx->romfs_ctx.header.file_meta_table_offset);
|
|
|
|
if (nca_section_fread(ctx, ctx->romfs_ctx.files, ctx->romfs_ctx.header.file_meta_table_size) != ctx->romfs_ctx.header.file_meta_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read RomFS file cache!\n");
|
2018-01-27 05:31:55 +00:00
|
|
|
exit(EXIT_FAILURE);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
|
|
|
|
void nca_process_nca0_romfs_section(nca_section_ctx_t *ctx) {
|
|
|
|
nca0_romfs_superblock_t *sb = ctx->nca0_romfs_ctx.superblock;
|
|
|
|
ctx->superblock_hash_validity = nca_section_check_external_hash_table(ctx, sb->master_hash, sb->hash_table_offset, sb->hash_table_size, sb->hash_table_size, 0);
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
/* Verify actual ROMFS... */
|
|
|
|
ctx->nca0_romfs_ctx.hash_table_validity = nca_section_check_hash_table(ctx, sb->hash_table_offset, sb->romfs_offset, sb->romfs_size, sb->block_size, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->superblock_hash_validity != VALIDITY_VALID) return;
|
|
|
|
|
|
|
|
ctx->nca0_romfs_ctx.romfs_offset = sb->romfs_offset;
|
|
|
|
nca_section_fseek(ctx, ctx->nca0_romfs_ctx.romfs_offset);
|
|
|
|
if (nca_section_fread(ctx, &ctx->nca0_romfs_ctx.header, sizeof(nca0_romfs_hdr_t)) != sizeof(nca0_romfs_hdr_t)) {
|
|
|
|
fprintf(stderr, "Failed to read NCA0 RomFS header!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ctx->tool_ctx->action & (ACTION_EXTRACT | ACTION_LISTROMFS)) && ctx->nca0_romfs_ctx.header.header_size == NCA0_ROMFS_HEADER_SIZE) {
|
|
|
|
/* Pre-load the file/data entry caches. */
|
|
|
|
ctx->nca0_romfs_ctx.directories = calloc(1, ctx->nca0_romfs_ctx.header.dir_meta_table_size);
|
|
|
|
if (ctx->nca0_romfs_ctx.directories == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate NCA0 RomFS directory cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nca_section_fseek(ctx, ctx->nca0_romfs_ctx.romfs_offset + ctx->nca0_romfs_ctx.header.dir_meta_table_offset);
|
|
|
|
if (nca_section_fread(ctx, ctx->nca0_romfs_ctx.directories, ctx->nca0_romfs_ctx.header.dir_meta_table_size) != ctx->nca0_romfs_ctx.header.dir_meta_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read NCA0 RomFS directory cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->nca0_romfs_ctx.files = calloc(1, ctx->nca0_romfs_ctx.header.file_meta_table_size);
|
|
|
|
if (ctx->nca0_romfs_ctx.files == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate NCA0 RomFS file cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, ctx->nca0_romfs_ctx.romfs_offset + ctx->nca0_romfs_ctx.header.file_meta_table_offset);
|
|
|
|
if (nca_section_fread(ctx, ctx->nca0_romfs_ctx.files, ctx->nca0_romfs_ctx.header.file_meta_table_size) != ctx->nca0_romfs_ctx.header.file_meta_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read NCA0 RomFS file cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
void nca_process_bktr_section(nca_section_ctx_t *ctx) {
|
2018-01-27 05:31:55 +00:00
|
|
|
bktr_superblock_t *sb = ctx->bktr_ctx.superblock;
|
|
|
|
/* Validate magics. */
|
|
|
|
if (sb->relocation_header.magic == MAGIC_BKTR && sb->subsection_header.magic == MAGIC_BKTR) {
|
|
|
|
if (sb->relocation_header.offset + sb->relocation_header.size != sb->subsection_header.offset ||
|
|
|
|
sb->subsection_header.offset + sb->subsection_header.size != ctx->size) {
|
|
|
|
fprintf(stderr, "Invalid BKTR layout!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
/* Allocate space for an extra (fake) relocation entry, to simplify our logic. */
|
2018-03-31 23:46:28 +00:00
|
|
|
void *relocs = calloc(1, sb->relocation_header.size + (0x3FF0 / sizeof(uint64_t)) * sizeof(bktr_relocation_entry_t));
|
2018-01-27 05:31:55 +00:00
|
|
|
if (relocs == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate relocation header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
/* Allocate space for an extra (fake) subsection entry, to simplify our logic. */
|
2018-03-31 23:46:28 +00:00
|
|
|
void *subs = calloc(1, sb->subsection_header.size + (0x3FF0 / sizeof(uint64_t)) * sizeof(bktr_subsection_entry_t) + sizeof(bktr_subsection_entry_t));
|
2018-01-27 05:31:55 +00:00
|
|
|
if (subs == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate subsection header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, sb->relocation_header.offset);
|
|
|
|
if (nca_section_fread(ctx, relocs, sb->relocation_header.size) != sb->relocation_header.size) {
|
|
|
|
fprintf(stderr, "Failed to read relocation header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, sb->subsection_header.offset);
|
|
|
|
if (nca_section_fread(ctx, subs, sb->subsection_header.size) != sb->subsection_header.size) {
|
|
|
|
fprintf(stderr, "Failed to read subsection header!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTE: Setting these variables changes the way fseek/fread work! */
|
|
|
|
ctx->bktr_ctx.relocation_block = relocs;
|
|
|
|
ctx->bktr_ctx.subsection_block = subs;
|
|
|
|
|
2018-03-31 22:43:59 +00:00
|
|
|
if (ctx->bktr_ctx.subsection_block->total_size != sb->subsection_header.offset) {
|
2018-02-07 19:35:14 +00:00
|
|
|
free(relocs);
|
|
|
|
free(subs);
|
|
|
|
ctx->bktr_ctx.relocation_block = NULL;
|
|
|
|
ctx->bktr_ctx.subsection_block = NULL;
|
|
|
|
ctx->superblock_hash_validity = VALIDITY_INVALID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-27 05:31:55 +00:00
|
|
|
/* This simplifies logic greatly... */
|
2018-03-31 23:46:28 +00:00
|
|
|
for (unsigned int i = ctx->bktr_ctx.relocation_block->num_buckets - 1; i > 0; i--) {
|
|
|
|
memcpy(bktr_get_relocation_bucket(ctx->bktr_ctx.relocation_block, i), &ctx->bktr_ctx.relocation_block->buckets[i], sizeof(bktr_relocation_bucket_t));
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i + 1 < ctx->bktr_ctx.relocation_block->num_buckets; i++) {
|
|
|
|
bktr_relocation_bucket_t *cur_bucket = bktr_get_relocation_bucket(ctx->bktr_ctx.relocation_block, i);
|
|
|
|
cur_bucket->entries[cur_bucket->num_entries].virt_offset = ctx->bktr_ctx.relocation_block->bucket_virtual_offsets[i + 1];
|
|
|
|
}
|
|
|
|
for (unsigned int i = ctx->bktr_ctx.subsection_block->num_buckets - 1; i > 0; i--) {
|
|
|
|
memcpy(bktr_get_subsection_bucket(ctx->bktr_ctx.subsection_block, i), &ctx->bktr_ctx.subsection_block->buckets[i], sizeof(bktr_subsection_bucket_t));
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i + 1 < ctx->bktr_ctx.subsection_block->num_buckets; i++) {
|
|
|
|
bktr_subsection_bucket_t *cur_bucket = bktr_get_subsection_bucket(ctx->bktr_ctx.subsection_block, i);
|
|
|
|
bktr_subsection_bucket_t *next_bucket = bktr_get_subsection_bucket(ctx->bktr_ctx.subsection_block, i+1);
|
|
|
|
cur_bucket->entries[cur_bucket->num_entries].offset = next_bucket->entries[0].offset;
|
|
|
|
cur_bucket->entries[cur_bucket->num_entries].ctr_val = next_bucket->entries[0].ctr_val;
|
|
|
|
}
|
|
|
|
bktr_relocation_bucket_t *last_reloc_bucket = bktr_get_relocation_bucket(ctx->bktr_ctx.relocation_block, ctx->bktr_ctx.relocation_block->num_buckets - 1);
|
|
|
|
bktr_subsection_bucket_t *last_subsec_bucket = bktr_get_subsection_bucket(ctx->bktr_ctx.subsection_block, ctx->bktr_ctx.subsection_block->num_buckets - 1);
|
2018-03-31 22:43:59 +00:00
|
|
|
last_reloc_bucket->entries[last_reloc_bucket->num_entries].virt_offset = ctx->bktr_ctx.relocation_block->total_size;
|
|
|
|
last_subsec_bucket->entries[last_subsec_bucket->num_entries].offset = sb->relocation_header.offset;
|
|
|
|
last_subsec_bucket->entries[last_subsec_bucket->num_entries].ctr_val = ctx->header->section_ctr_low;
|
|
|
|
last_subsec_bucket->entries[last_subsec_bucket->num_entries + 1].offset = ctx->size;
|
|
|
|
last_subsec_bucket->entries[last_subsec_bucket->num_entries + 1].ctr_val = 0;
|
2018-01-27 05:31:55 +00:00
|
|
|
|
|
|
|
/* Now parse out the romfs stuff. */
|
|
|
|
for (unsigned int i = 0; i < IVFC_MAX_LEVEL; i++) {
|
|
|
|
/* Load in the current level's header data. */
|
|
|
|
ivfc_level_ctx_t *cur_level = &ctx->bktr_ctx.ivfc_levels[i];
|
|
|
|
cur_level->data_offset = sb->ivfc_header.level_headers[i].logical_offset;
|
|
|
|
cur_level->data_size = sb->ivfc_header.level_headers[i].hash_data_size;
|
|
|
|
cur_level->hash_block_size = 1 << sb->ivfc_header.level_headers[i].block_size;
|
|
|
|
|
|
|
|
if (i != 0) {
|
|
|
|
/* Hash table is previous level's data. */
|
|
|
|
cur_level->hash_offset = ctx->bktr_ctx.ivfc_levels[i-1].data_offset;
|
2018-01-27 11:22:09 +00:00
|
|
|
} else if (ctx->tool_ctx->base_file != NULL) {
|
2018-01-27 05:31:55 +00:00
|
|
|
/* Hash table is the superblock hash. Always check the superblock hash. */
|
|
|
|
ctx->superblock_hash_validity = nca_section_check_external_hash_table(ctx, sb->ivfc_header.master_hash, cur_level->data_offset, cur_level->data_size, cur_level->hash_block_size, 1);
|
|
|
|
cur_level->hash_validity = ctx->superblock_hash_validity;
|
|
|
|
}
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY && i != 0) {
|
|
|
|
/* Actually check the table. */
|
|
|
|
printf(" Verifying IVFC Level %"PRId32"...\n", i);
|
|
|
|
cur_level->hash_validity = nca_section_check_hash_table(ctx, cur_level->hash_offset, cur_level->data_offset, cur_level->data_size, cur_level->hash_block_size, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->bktr_ctx.romfs_offset = ctx->bktr_ctx.ivfc_levels[IVFC_MAX_LEVEL - 1].data_offset;
|
2018-01-27 11:22:09 +00:00
|
|
|
if (ctx->tool_ctx->base_file != NULL) {
|
2018-01-27 05:31:55 +00:00
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.romfs_offset);
|
|
|
|
if (nca_section_fread(ctx, &ctx->bktr_ctx.header, sizeof(romfs_hdr_t)) != sizeof(romfs_hdr_t)) {
|
|
|
|
fprintf(stderr, "Failed to read BKTR Virtual RomFS header!\n");
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
|
2018-01-27 05:31:55 +00:00
|
|
|
if ((ctx->tool_ctx->action & (ACTION_EXTRACT | ACTION_LISTROMFS)) && ctx->bktr_ctx.header.header_size == ROMFS_HEADER_SIZE) {
|
|
|
|
/* Pre-load the file/data entry caches. */
|
|
|
|
ctx->bktr_ctx.directories = calloc(1, ctx->bktr_ctx.header.dir_meta_table_size);
|
|
|
|
if (ctx->bktr_ctx.directories == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate RomFS directory cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Switch RomFS has actual entries at table offset + 4 for no good reason. */
|
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.romfs_offset + ctx->bktr_ctx.header.dir_meta_table_offset + 4);
|
|
|
|
if (nca_section_fread(ctx, ctx->bktr_ctx.directories, ctx->bktr_ctx.header.dir_meta_table_size) != ctx->bktr_ctx.header.dir_meta_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read RomFS directory cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
ctx->bktr_ctx.files = calloc(1, ctx->bktr_ctx.header.file_meta_table_size);
|
|
|
|
if (ctx->bktr_ctx.files == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate RomFS file cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
nca_section_fseek(ctx, ctx->bktr_ctx.romfs_offset + ctx->bktr_ctx.header.file_meta_table_offset);
|
|
|
|
if (nca_section_fread(ctx, ctx->bktr_ctx.files, ctx->bktr_ctx.header.file_meta_table_size) != ctx->bktr_ctx.header.file_meta_table_size) {
|
|
|
|
fprintf(stderr, "Failed to read RomFS file cache!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void nca_print_pfs0_section(nca_section_ctx_t *ctx) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
memdump(stdout, " Superblock Hash (GOOD): ", &ctx->pfs0_ctx.superblock->master_hash, 0x20);
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash (FAIL): ", &ctx->pfs0_ctx.superblock->master_hash, 0x20);
|
|
|
|
}
|
|
|
|
printf(" Hash Table (%s):\n", GET_VALIDITY_STR(ctx->pfs0_ctx.hash_table_validity));
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash: ", &ctx->pfs0_ctx.superblock->master_hash, 0x20);
|
|
|
|
printf(" Hash Table:\n");
|
|
|
|
}
|
|
|
|
printf(" Offset: %012"PRIx64"\n", ctx->pfs0_ctx.superblock->hash_table_offset);
|
|
|
|
printf(" Size: %012"PRIx64"\n", ctx->pfs0_ctx.superblock->hash_table_size);
|
|
|
|
printf(" Block Size: 0x%"PRIx32"\n", ctx->pfs0_ctx.superblock->block_size);
|
|
|
|
printf(" PFS0 Offset: %012"PRIx64"\n", ctx->pfs0_ctx.superblock->pfs0_offset);
|
|
|
|
printf(" PFS0 Size: %012"PRIx64"\n", ctx->pfs0_ctx.superblock->pfs0_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nca_print_ivfc_section(nca_section_ctx_t *ctx) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
memdump(stdout, " Superblock Hash (GOOD): ", &ctx->romfs_ctx.superblock->ivfc_header.master_hash, 0x20);
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash (FAIL): ", &ctx->romfs_ctx.superblock->ivfc_header.master_hash, 0x20);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash: ", &ctx->romfs_ctx.superblock->ivfc_header.master_hash, 0x20);
|
|
|
|
}
|
|
|
|
print_magic(" Magic: ", ctx->romfs_ctx.superblock->ivfc_header.magic);
|
|
|
|
printf(" ID: %08"PRIx32"\n", ctx->romfs_ctx.superblock->ivfc_header.id);
|
|
|
|
for (unsigned int i = 0; i < IVFC_MAX_LEVEL; i++) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
printf(" Level %"PRId32" (%s):\n", i, GET_VALIDITY_STR(ctx->romfs_ctx.ivfc_levels[i].hash_validity));
|
|
|
|
} else {
|
|
|
|
printf(" Level %"PRId32":\n", i);
|
|
|
|
}
|
|
|
|
printf(" Data Offset: 0x%012"PRIx64"\n", ctx->romfs_ctx.ivfc_levels[i].data_offset);
|
|
|
|
printf(" Data Size: 0x%012"PRIx64"\n", ctx->romfs_ctx.ivfc_levels[i].data_size);
|
|
|
|
if (i != 0) printf(" Hash Offset: 0x%012"PRIx64"\n", ctx->romfs_ctx.ivfc_levels[i].hash_offset);
|
|
|
|
printf(" Hash Block Size: 0x%08"PRIx32"\n", ctx->romfs_ctx.ivfc_levels[i].hash_block_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
void nca_print_nca0_romfs_section(nca_section_ctx_t *ctx) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_VERIFY) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
memdump(stdout, " Superblock Hash (GOOD): ", &ctx->nca0_romfs_ctx.superblock->master_hash, 0x20);
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash (FAIL): ", &ctx->nca0_romfs_ctx.superblock->master_hash, 0x20);
|
|
|
|
}
|
|
|
|
printf(" Hash Table (%s):\n", GET_VALIDITY_STR(ctx->nca0_romfs_ctx.hash_table_validity));
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash: ", &ctx->nca0_romfs_ctx.superblock->master_hash, 0x20);
|
|
|
|
printf(" Hash Table:\n");
|
|
|
|
}
|
|
|
|
printf(" Offset: %012"PRIx64"\n", ctx->nca0_romfs_ctx.superblock->hash_table_offset);
|
|
|
|
printf(" Size: %012"PRIx64"\n", ctx->nca0_romfs_ctx.superblock->hash_table_size);
|
|
|
|
printf(" Block Size: 0x%"PRIx32"\n", ctx->nca0_romfs_ctx.superblock->block_size);
|
|
|
|
printf(" RomFS Offset: %012"PRIx64"\n", ctx->nca0_romfs_ctx.superblock->romfs_offset);
|
|
|
|
printf(" RomFS Size: %012"PRIx64"\n", ctx->nca0_romfs_ctx.superblock->romfs_size);
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
void nca_print_bktr_section(nca_section_ctx_t *ctx) {
|
2018-01-27 05:31:55 +00:00
|
|
|
if (ctx->bktr_ctx.subsection_block == NULL) {
|
|
|
|
printf(" BKTR section seems to be corrupted.\n");
|
|
|
|
return;
|
|
|
|
}
|
2018-01-27 11:22:09 +00:00
|
|
|
int did_verify = (ctx->tool_ctx->action & ACTION_VERIFY) && (ctx->tool_ctx->base_file != NULL);
|
2018-01-27 05:31:55 +00:00
|
|
|
if (did_verify ) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
memdump(stdout, " Superblock Hash (GOOD): ", &ctx->bktr_ctx.superblock->ivfc_header.master_hash, 0x20);
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash (FAIL): ", &ctx->bktr_ctx.superblock->ivfc_header.master_hash, 0x20);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
memdump(stdout, " Superblock Hash: ", &ctx->bktr_ctx.superblock->ivfc_header.master_hash, 0x20);
|
|
|
|
}
|
|
|
|
print_magic(" Magic: ", ctx->bktr_ctx.superblock->ivfc_header.magic);
|
|
|
|
printf(" ID: %08"PRIx32"\n", ctx->bktr_ctx.superblock->ivfc_header.id);
|
|
|
|
for (unsigned int i = 0; i < IVFC_MAX_LEVEL; i++) {
|
|
|
|
if (did_verify) {
|
|
|
|
printf(" Level %"PRId32" (%s):\n", i, GET_VALIDITY_STR(ctx->bktr_ctx.ivfc_levels[i].hash_validity));
|
|
|
|
} else {
|
|
|
|
printf(" Level %"PRId32":\n", i);
|
|
|
|
}
|
|
|
|
printf(" Data Offset: 0x%012"PRIx64"\n", ctx->bktr_ctx.ivfc_levels[i].data_offset);
|
|
|
|
printf(" Data Size: 0x%012"PRIx64"\n", ctx->bktr_ctx.ivfc_levels[i].data_size);
|
|
|
|
if (i != 0) printf(" Hash Offset: 0x%012"PRIx64"\n", ctx->bktr_ctx.ivfc_levels[i].hash_offset);
|
|
|
|
printf(" Hash Block Size: 0x%08"PRIx32"\n", ctx->bktr_ctx.ivfc_levels[i].hash_block_size);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void nca_save_section_file(nca_section_ctx_t *ctx, uint64_t ofs, uint64_t total_size, filepath_t *filepath) {
|
|
|
|
FILE *f_out = os_fopen(filepath->os_path, OS_MODE_WRITE);
|
|
|
|
|
|
|
|
if (f_out == NULL) {
|
|
|
|
fprintf(stderr, "Failed to open %s!\n", filepath->char_path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t read_size = 0x400000; /* 4 MB buffer. */
|
|
|
|
unsigned char *buf = malloc(read_size);
|
|
|
|
if (buf == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate file-save buffer!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
memset(buf, 0xCC, read_size); /* Debug in case I fuck this up somehow... */
|
|
|
|
uint64_t end_ofs = ofs + total_size;
|
|
|
|
while (ofs < end_ofs) {
|
2018-07-20 09:57:28 +00:00
|
|
|
nca_section_fseek(ctx, ofs);
|
2018-01-24 17:52:25 +00:00
|
|
|
if (ofs + read_size >= end_ofs) read_size = end_ofs - ofs;
|
|
|
|
if (nca_section_fread(ctx, buf, read_size) != read_size) {
|
|
|
|
fprintf(stderr, "Failed to read file!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2018-02-03 19:28:08 +00:00
|
|
|
if (fwrite(buf, 1, read_size, f_out) != read_size) {
|
|
|
|
fprintf(stderr, "Failed to write file!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
ofs += read_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f_out);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nca_save_section(nca_section_ctx_t *ctx) {
|
|
|
|
/* Save raw section file... */
|
|
|
|
uint64_t offset = 0;
|
|
|
|
uint64_t size = ctx->size;
|
|
|
|
if (!(ctx->tool_ctx->action & ACTION_RAW)) {
|
|
|
|
switch (ctx->type) {
|
|
|
|
case PFS0:
|
|
|
|
offset = ctx->pfs0_ctx.superblock->pfs0_offset;
|
|
|
|
size = ctx->pfs0_ctx.superblock->pfs0_size;
|
|
|
|
break;
|
|
|
|
case ROMFS:
|
|
|
|
offset = ctx->romfs_ctx.ivfc_levels[IVFC_MAX_LEVEL - 1].data_offset;
|
|
|
|
size = ctx->romfs_ctx.ivfc_levels[IVFC_MAX_LEVEL - 1].data_size;
|
|
|
|
break;
|
2018-07-20 09:57:28 +00:00
|
|
|
case NCA0_ROMFS:
|
|
|
|
offset = ctx->nca0_romfs_ctx.superblock->romfs_offset;
|
|
|
|
size = ctx->nca0_romfs_ctx.superblock->romfs_size;
|
|
|
|
break;
|
2018-01-24 17:52:25 +00:00
|
|
|
case BKTR:
|
2018-02-07 19:35:14 +00:00
|
|
|
if (ctx->tool_ctx->base_file != NULL) {
|
|
|
|
offset = ctx->bktr_ctx.ivfc_levels[IVFC_MAX_LEVEL - 1].data_offset;
|
|
|
|
size = ctx->bktr_ctx.ivfc_levels[IVFC_MAX_LEVEL - 1].data_size;
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
break;
|
|
|
|
case INVALID:
|
|
|
|
break;
|
|
|
|
}
|
2018-01-27 11:22:09 +00:00
|
|
|
} else if (ctx->type == BKTR && ctx->bktr_ctx.subsection_block != NULL && ctx->tool_ctx->base_file != NULL) {
|
2018-03-31 22:43:59 +00:00
|
|
|
size = ctx->bktr_ctx.relocation_block->total_size;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
2018-01-27 05:31:55 +00:00
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
/* Extract to file. */
|
|
|
|
filepath_t *secpath = &ctx->tool_ctx->settings.section_paths[ctx->section_num];
|
|
|
|
|
|
|
|
/* Handle overrides. */
|
|
|
|
if (ctx->type == PFS0 && ctx->pfs0_ctx.is_exefs && ctx->tool_ctx->settings.exefs_path.enabled && ctx->tool_ctx->settings.exefs_path.path.valid == VALIDITY_VALID) {
|
|
|
|
secpath = &ctx->tool_ctx->settings.exefs_path.path;
|
2018-07-20 09:57:28 +00:00
|
|
|
} else if ((ctx->type == ROMFS || ctx->type == NCA0_ROMFS) && ctx->tool_ctx->settings.romfs_path.enabled && ctx->tool_ctx->settings.romfs_path.path.valid == VALIDITY_VALID) {
|
2018-01-24 17:52:25 +00:00
|
|
|
secpath = &ctx->tool_ctx->settings.romfs_path.path;
|
|
|
|
}
|
|
|
|
if (secpath != NULL && secpath->valid == VALIDITY_VALID) {
|
|
|
|
printf("Saving Section %"PRId32" to %s...\n", ctx->section_num, secpath->char_path);
|
2018-02-07 19:35:14 +00:00
|
|
|
printf("Size: %012"PRIx64"\n", size);
|
2018-01-24 17:52:25 +00:00
|
|
|
nca_save_section_file(ctx, offset, size, secpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ctx->type) {
|
|
|
|
case PFS0:
|
|
|
|
nca_save_pfs0_section(ctx);
|
|
|
|
break;
|
|
|
|
case ROMFS:
|
|
|
|
nca_save_ivfc_section(ctx);
|
|
|
|
break;
|
2018-07-20 09:57:28 +00:00
|
|
|
case NCA0_ROMFS:
|
|
|
|
nca_save_nca0_romfs_section(ctx);
|
|
|
|
break;
|
2018-01-24 17:52:25 +00:00
|
|
|
case BKTR:
|
2018-01-27 11:22:09 +00:00
|
|
|
if (ctx->tool_ctx->base_file == NULL) {
|
2018-01-27 05:31:55 +00:00
|
|
|
fprintf(stderr, "Note: cannot save BKTR section without base romfs.\n");
|
|
|
|
break;
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
nca_save_bktr_section(ctx);
|
|
|
|
break;
|
|
|
|
case INVALID:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nca_save_pfs0_section(nca_section_ctx_t *ctx) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID && ctx->pfs0_ctx.header->magic == MAGIC_PFS0) {
|
|
|
|
/* Extract to directory. */
|
|
|
|
filepath_t *dirpath = NULL;
|
|
|
|
if (ctx->pfs0_ctx.is_exefs && ctx->tool_ctx->settings.exefs_dir_path.enabled) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.exefs_dir_path.path;
|
|
|
|
}
|
|
|
|
if (dirpath == NULL || dirpath->valid != VALIDITY_VALID) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.section_dir_paths[ctx->section_num];
|
|
|
|
}
|
|
|
|
if (dirpath != NULL && dirpath->valid == VALIDITY_VALID) {
|
|
|
|
os_makedir(dirpath->os_path);
|
|
|
|
for (uint32_t i = 0; i < ctx->pfs0_ctx.header->num_files; i++) {
|
|
|
|
nca_save_pfs0_file(ctx, i, dirpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Error: section %"PRId32" is corrupted!\n", ctx->section_num);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RomFS functions... */
|
2018-02-12 11:35:48 +00:00
|
|
|
int nca_is_romfs_file_updated(nca_section_ctx_t *ctx, uint64_t file_offset, uint64_t file_size) {
|
|
|
|
/* All files in a Base RomFS are "updated". */
|
|
|
|
if (ctx->type == ROMFS) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bktr_relocation_entry_t *first_reloc = bktr_get_relocation(ctx->bktr_ctx.relocation_block, file_offset);
|
|
|
|
bktr_relocation_entry_t *last_reloc = first_reloc;
|
|
|
|
while (last_reloc->virt_offset < file_offset + file_size) {
|
|
|
|
last_reloc++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (bktr_relocation_entry_t *cur_reloc = first_reloc; cur_reloc < last_reloc; cur_reloc++) {
|
|
|
|
if (cur_reloc->is_patch) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int nca_visit_romfs_file(nca_section_ctx_t *ctx, uint32_t file_offset, filepath_t *dir_path) {
|
2018-01-27 05:31:55 +00:00
|
|
|
romfs_fentry_t *entry;
|
|
|
|
if (ctx->type == ROMFS) {
|
|
|
|
entry = romfs_get_fentry(ctx->romfs_ctx.files, file_offset);
|
|
|
|
} else {
|
|
|
|
entry = romfs_get_fentry(ctx->bktr_ctx.files, file_offset);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
filepath_t *cur_path = calloc(1, sizeof(filepath_t));
|
|
|
|
if (cur_path == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate filepath!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
filepath_copy(cur_path, dir_path);
|
|
|
|
if (entry->name_size) {
|
|
|
|
filepath_append_n(cur_path, entry->name_size, "%s", entry->name);
|
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
|
|
|
|
int found_file = 1;
|
2018-01-24 17:52:25 +00:00
|
|
|
|
|
|
|
/* If we're extracting... */
|
2018-02-12 11:35:48 +00:00
|
|
|
uint64_t phys_offset;
|
|
|
|
if (ctx->type == ROMFS) {
|
|
|
|
phys_offset = ctx->romfs_ctx.romfs_offset + ctx->romfs_ctx.header.data_offset + entry->offset;
|
|
|
|
} else {
|
|
|
|
phys_offset = ctx->bktr_ctx.romfs_offset + ctx->bktr_ctx.header.data_offset + entry->offset;
|
|
|
|
}
|
|
|
|
if ((ctx->tool_ctx->action & ACTION_ONLYUPDATEDROMFS) == 0 || nca_is_romfs_file_updated(ctx, phys_offset, entry->size)) {
|
|
|
|
if ((ctx->tool_ctx->action & ACTION_LISTROMFS) == 0) {
|
|
|
|
printf("Saving %s...\n", cur_path->char_path);
|
|
|
|
nca_save_section_file(ctx, phys_offset, entry->size, cur_path);
|
2018-01-27 05:31:55 +00:00
|
|
|
} else {
|
2018-02-12 11:35:48 +00:00
|
|
|
printf("rom:%s\n", cur_path->char_path);
|
2018-01-27 05:31:55 +00:00
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
} else {
|
2018-02-12 11:35:48 +00:00
|
|
|
found_file = 0;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(cur_path);
|
|
|
|
|
|
|
|
if (entry->sibling != ROMFS_ENTRY_EMPTY) {
|
2018-02-12 11:35:48 +00:00
|
|
|
return found_file | nca_visit_romfs_file(ctx, entry->sibling, dir_path);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
|
|
|
|
return found_file;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
int nca_visit_nca0_romfs_file(nca_section_ctx_t *ctx, uint32_t file_offset, filepath_t *dir_path) {
|
|
|
|
romfs_fentry_t *entry = romfs_get_fentry(ctx->nca0_romfs_ctx.files, file_offset);
|
|
|
|
filepath_t *cur_path = calloc(1, sizeof(filepath_t));
|
|
|
|
if (cur_path == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate filepath!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
filepath_copy(cur_path, dir_path);
|
|
|
|
if (entry->name_size) {
|
|
|
|
filepath_append_n(cur_path, entry->name_size, "%s", entry->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
int found_file = 1;
|
|
|
|
|
|
|
|
/* If we're extracting... */
|
|
|
|
uint64_t phys_offset = ctx->nca0_romfs_ctx.romfs_offset + ctx->nca0_romfs_ctx.header.data_offset + entry->offset;
|
|
|
|
|
|
|
|
if ((ctx->tool_ctx->action & ACTION_LISTROMFS) == 0) {
|
|
|
|
printf("Saving %s...\n", cur_path->char_path);
|
|
|
|
nca_save_section_file(ctx, phys_offset, entry->size, cur_path);
|
|
|
|
} else {
|
|
|
|
printf("rom:%s\n", cur_path->char_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(cur_path);
|
|
|
|
|
|
|
|
if (entry->sibling != ROMFS_ENTRY_EMPTY) {
|
|
|
|
return found_file | nca_visit_nca0_romfs_file(ctx, entry->sibling, dir_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return found_file;
|
|
|
|
}
|
|
|
|
|
2018-02-12 11:35:48 +00:00
|
|
|
int nca_visit_romfs_dir(nca_section_ctx_t *ctx, uint32_t dir_offset, filepath_t *parent_path) {
|
2018-01-27 05:31:55 +00:00
|
|
|
romfs_direntry_t *entry;
|
|
|
|
if (ctx->type == ROMFS) {
|
|
|
|
entry = romfs_get_direntry(ctx->romfs_ctx.directories, dir_offset);
|
|
|
|
} else {
|
|
|
|
entry = romfs_get_direntry(ctx->bktr_ctx.directories, dir_offset);
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
filepath_t *cur_path = calloc(1, sizeof(filepath_t));
|
|
|
|
if (cur_path == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate filepath!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
filepath_copy(cur_path, parent_path);
|
|
|
|
if (entry->name_size) {
|
|
|
|
filepath_append_n(cur_path, entry->name_size, "%s", entry->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we're actually extracting the romfs, make directory. */
|
|
|
|
if ((ctx->tool_ctx->action & ACTION_LISTROMFS) == 0) {
|
|
|
|
os_makedir(cur_path->os_path);
|
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
|
|
|
|
int any_files = 0;
|
2018-01-24 17:52:25 +00:00
|
|
|
|
|
|
|
if (entry->file != ROMFS_ENTRY_EMPTY) {
|
2018-02-12 11:35:48 +00:00
|
|
|
any_files |= nca_visit_romfs_file(ctx, entry->file, cur_path);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
if (entry->child != ROMFS_ENTRY_EMPTY) {
|
2018-02-12 11:35:48 +00:00
|
|
|
any_files |= nca_visit_romfs_dir(ctx, entry->child, cur_path);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
|
|
|
|
if (any_files == 0 && ctx->type == BKTR && (ctx->tool_ctx->action & ACTION_ONLYUPDATEDROMFS)) {
|
|
|
|
os_rmdir(cur_path->os_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
if (entry->sibling != ROMFS_ENTRY_EMPTY) {
|
|
|
|
nca_visit_romfs_dir(ctx, entry->sibling, parent_path);
|
|
|
|
}
|
2018-02-12 11:35:48 +00:00
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
free(cur_path);
|
2018-02-12 11:35:48 +00:00
|
|
|
return any_files;
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
int nca_visit_nca0_romfs_dir(nca_section_ctx_t *ctx, uint32_t dir_offset, filepath_t *parent_path) {
|
|
|
|
romfs_direntry_t *entry = romfs_get_direntry(ctx->nca0_romfs_ctx.directories, dir_offset);
|
|
|
|
filepath_t *cur_path = calloc(1, sizeof(filepath_t));
|
|
|
|
if (cur_path == NULL) {
|
|
|
|
fprintf(stderr, "Failed to allocate filepath!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
filepath_copy(cur_path, parent_path);
|
|
|
|
if (entry->name_size) {
|
|
|
|
filepath_append_n(cur_path, entry->name_size, "%s", entry->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we're actually extracting the romfs, make directory. */
|
|
|
|
if ((ctx->tool_ctx->action & ACTION_LISTROMFS) == 0) {
|
|
|
|
os_makedir(cur_path->os_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
int any_files = 0;
|
|
|
|
|
|
|
|
if (entry->file != ROMFS_ENTRY_EMPTY) {
|
|
|
|
any_files |= nca_visit_nca0_romfs_file(ctx, entry->file, cur_path);
|
|
|
|
}
|
|
|
|
if (entry->child != ROMFS_ENTRY_EMPTY) {
|
|
|
|
any_files |= nca_visit_nca0_romfs_file(ctx, entry->child, cur_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->sibling != ROMFS_ENTRY_EMPTY) {
|
|
|
|
nca_visit_nca0_romfs_dir(ctx, entry->sibling, parent_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(cur_path);
|
|
|
|
return any_files;
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
|
|
|
|
void nca_save_ivfc_section(nca_section_ctx_t *ctx) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
if (ctx->romfs_ctx.header.header_size == ROMFS_HEADER_SIZE) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_LISTROMFS) {
|
|
|
|
filepath_t fakepath;
|
|
|
|
filepath_init(&fakepath);
|
|
|
|
filepath_set(&fakepath, "");
|
|
|
|
|
|
|
|
nca_visit_romfs_dir(ctx, 0, &fakepath);
|
|
|
|
} else {
|
|
|
|
filepath_t *dirpath = NULL;
|
|
|
|
if (ctx->tool_ctx->settings.romfs_dir_path.enabled) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.romfs_dir_path.path;
|
|
|
|
}
|
|
|
|
if (dirpath == NULL || dirpath->valid != VALIDITY_VALID) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.section_dir_paths[ctx->section_num];
|
|
|
|
}
|
|
|
|
if (dirpath != NULL && dirpath->valid == VALIDITY_VALID) {
|
|
|
|
os_makedir(dirpath->os_path);
|
|
|
|
nca_visit_romfs_dir(ctx, 0, dirpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Error: section %"PRId32" is corrupted!\n", ctx->section_num);
|
|
|
|
}
|
|
|
|
|
2018-07-20 09:57:28 +00:00
|
|
|
|
|
|
|
void nca_save_nca0_romfs_section(nca_section_ctx_t *ctx) {
|
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
if (ctx->nca0_romfs_ctx.header.header_size == NCA0_ROMFS_HEADER_SIZE) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_LISTROMFS) {
|
|
|
|
filepath_t fakepath;
|
|
|
|
filepath_init(&fakepath);
|
|
|
|
filepath_set(&fakepath, "");
|
|
|
|
|
|
|
|
nca_visit_nca0_romfs_dir(ctx, 0, &fakepath);
|
|
|
|
} else {
|
|
|
|
filepath_t *dirpath = NULL;
|
|
|
|
if (ctx->tool_ctx->settings.romfs_dir_path.enabled) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.romfs_dir_path.path;
|
|
|
|
}
|
|
|
|
if (dirpath == NULL || dirpath->valid != VALIDITY_VALID) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.section_dir_paths[ctx->section_num];
|
|
|
|
}
|
|
|
|
if (dirpath != NULL && dirpath->valid == VALIDITY_VALID) {
|
|
|
|
os_makedir(dirpath->os_path);
|
|
|
|
nca_visit_nca0_romfs_dir(ctx, 0, dirpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Error: section %"PRId32" is corrupted!\n", ctx->section_num);
|
|
|
|
}
|
|
|
|
|
2018-01-24 17:52:25 +00:00
|
|
|
void nca_save_bktr_section(nca_section_ctx_t *ctx) {
|
2018-01-27 05:31:55 +00:00
|
|
|
if (ctx->superblock_hash_validity == VALIDITY_VALID) {
|
|
|
|
if (ctx->bktr_ctx.header.header_size == ROMFS_HEADER_SIZE) {
|
|
|
|
if (ctx->tool_ctx->action & ACTION_LISTROMFS) {
|
|
|
|
filepath_t fakepath;
|
|
|
|
filepath_init(&fakepath);
|
|
|
|
filepath_set(&fakepath, "");
|
|
|
|
|
|
|
|
nca_visit_romfs_dir(ctx, 0, &fakepath);
|
|
|
|
} else {
|
|
|
|
filepath_t *dirpath = NULL;
|
|
|
|
if (ctx->tool_ctx->settings.romfs_dir_path.enabled) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.romfs_dir_path.path;
|
|
|
|
}
|
|
|
|
if (dirpath == NULL || dirpath->valid != VALIDITY_VALID) {
|
|
|
|
dirpath = &ctx->tool_ctx->settings.section_dir_paths[ctx->section_num];
|
|
|
|
}
|
|
|
|
if (dirpath != NULL && dirpath->valid == VALIDITY_VALID) {
|
|
|
|
os_makedir(dirpath->os_path);
|
|
|
|
nca_visit_romfs_dir(ctx, 0, dirpath);
|
|
|
|
}
|
|
|
|
}
|
2018-01-24 17:52:25 +00:00
|
|
|
|
2018-01-27 05:31:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Error: section %"PRId32" is corrupted!\n", ctx->section_num);
|
2018-01-24 17:52:25 +00:00
|
|
|
}
|