mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 20:21:45 +00:00
43f744326f
* The new logfile handler should now work properly. * A UTF-8 BOM is now written at the start of every new logfile.
603 lines
22 KiB
C
603 lines
22 KiB
C
/*
|
|
* romfs.c
|
|
*
|
|
* Copyright (c) 2020-2021, DarkMatterCore <pabloacurielz@gmail.com>.
|
|
*
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
*
|
|
* nxdumptool 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.
|
|
*
|
|
* nxdumptool 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 "utils.h"
|
|
#include "romfs.h"
|
|
|
|
/* Function prototypes. */
|
|
|
|
static RomFileSystemDirectoryEntry *romfsGetChildDirectoryEntryByName(RomFileSystemContext *ctx, RomFileSystemDirectoryEntry *dir_entry, const char *name);
|
|
static RomFileSystemFileEntry *romfsGetChildFileEntryByName(RomFileSystemContext *ctx, RomFileSystemDirectoryEntry *dir_entry, const char *name);
|
|
|
|
bool romfsInitializeContext(RomFileSystemContext *out, NcaFsSectionContext *nca_fs_ctx)
|
|
{
|
|
NcaContext *nca_ctx = NULL;
|
|
u64 dir_table_offset = 0, file_table_offset = 0;
|
|
bool success = false, dump_fs_header = false;
|
|
|
|
if (!out || !nca_fs_ctx || !nca_fs_ctx->enabled || !(nca_ctx = (NcaContext*)nca_fs_ctx->nca_ctx) || (nca_ctx->format_version == NcaVersion_Nca0 && \
|
|
(nca_fs_ctx->section_type != NcaFsSectionType_Nca0RomFs || nca_fs_ctx->header.hash_type != NcaHashType_HierarchicalSha256)) || (nca_ctx->format_version != NcaVersion_Nca0 && \
|
|
(nca_fs_ctx->section_type != NcaFsSectionType_RomFs || nca_fs_ctx->header.hash_type != NcaHashType_HierarchicalIntegrity)) || (nca_ctx->rights_id_available && !nca_ctx->titlekey_retrieved))
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
u32 layer_count = 0;
|
|
NcaRegion *hash_region = NULL;
|
|
NcaHierarchicalIntegrityVerificationLevelInformation *level_information = NULL;
|
|
|
|
/* Free output context beforehand. */
|
|
romfsFreeContext(out);
|
|
|
|
/* Fill context. */
|
|
out->nca_fs_ctx = nca_fs_ctx;
|
|
|
|
if (nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs)
|
|
{
|
|
if (!ncaValidateHierarchicalSha256Offsets(&(nca_fs_ctx->header.hash_data.hierarchical_sha256_data), nca_fs_ctx->section_size))
|
|
{
|
|
LOG_MSG("Invalid HierarchicalSha256 block!");
|
|
goto end;
|
|
}
|
|
|
|
layer_count = nca_fs_ctx->header.hash_data.hierarchical_sha256_data.hash_region_count;
|
|
hash_region = &(nca_fs_ctx->header.hash_data.hierarchical_sha256_data.hash_region[layer_count - 1]);
|
|
|
|
out->offset = hash_region->offset;
|
|
out->size = hash_region->size;
|
|
} else {
|
|
if (!ncaValidateHierarchicalIntegrityOffsets(&(nca_fs_ctx->header.hash_data.integrity_meta_info), nca_fs_ctx->section_size))
|
|
{
|
|
LOG_MSG("Invalid HierarchicalIntegrity block!");
|
|
goto end;
|
|
}
|
|
|
|
layer_count = NCA_IVFC_LEVEL_COUNT;
|
|
level_information = &(nca_fs_ctx->header.hash_data.integrity_meta_info.info_level_hash.level_information[layer_count - 1]);
|
|
|
|
out->offset = level_information->offset;
|
|
out->size = level_information->size;
|
|
}
|
|
|
|
/* Read RomFS header. */
|
|
if (!ncaReadFsSection(nca_fs_ctx, &(out->header), sizeof(RomFileSystemHeader), out->offset))
|
|
{
|
|
LOG_MSG("Failed to read RomFS header!");
|
|
goto end;
|
|
}
|
|
|
|
if ((nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs && out->header.old_format.header_size != ROMFS_OLD_HEADER_SIZE) || \
|
|
(nca_fs_ctx->section_type == NcaFsSectionType_RomFs && out->header.cur_format.header_size != ROMFS_HEADER_SIZE))
|
|
{
|
|
LOG_MSG("Invalid RomFS header size!");
|
|
dump_fs_header = true;
|
|
goto end;
|
|
}
|
|
|
|
/* Read directory entries table. */
|
|
dir_table_offset = (nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs ? (u64)out->header.old_format.directory_entry_offset : out->header.cur_format.directory_entry_offset);
|
|
out->dir_table_size = (nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs ? (u64)out->header.old_format.directory_entry_size : out->header.cur_format.directory_entry_size);
|
|
|
|
if (!out->dir_table_size || (dir_table_offset + out->dir_table_size) > out->size)
|
|
{
|
|
LOG_MSG("Invalid RomFS directory entries table!");
|
|
dump_fs_header = true;
|
|
goto end;
|
|
}
|
|
|
|
out->dir_table = malloc(out->dir_table_size);
|
|
if (!out->dir_table)
|
|
{
|
|
LOG_MSG("Unable to allocate memory for RomFS directory entries table!");
|
|
goto end;
|
|
}
|
|
|
|
if (!ncaReadFsSection(nca_fs_ctx, out->dir_table, out->dir_table_size, out->offset + dir_table_offset))
|
|
{
|
|
LOG_MSG("Failed to read RomFS directory entries table!");
|
|
goto end;
|
|
}
|
|
|
|
/* Read file entries table. */
|
|
file_table_offset = (nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs ? (u64)out->header.old_format.file_entry_offset : out->header.cur_format.file_entry_offset);
|
|
out->file_table_size = (nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs ? (u64)out->header.old_format.file_entry_size : out->header.cur_format.file_entry_size);
|
|
|
|
if (!out->file_table_size || (file_table_offset + out->file_table_size) > out->size)
|
|
{
|
|
LOG_MSG("Invalid RomFS file entries table!");
|
|
dump_fs_header = true;
|
|
goto end;
|
|
}
|
|
|
|
out->file_table = malloc(out->file_table_size);
|
|
if (!out->file_table)
|
|
{
|
|
LOG_MSG("Unable to allocate memory for RomFS file entries table!");
|
|
goto end;
|
|
}
|
|
|
|
if (!ncaReadFsSection(nca_fs_ctx, out->file_table, out->file_table_size, out->offset + file_table_offset))
|
|
{
|
|
LOG_MSG("Failed to read RomFS file entries table!");
|
|
goto end;
|
|
}
|
|
|
|
/* Get file data body offset. */
|
|
out->body_offset = (nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs ? (u64)out->header.old_format.body_offset : out->header.cur_format.body_offset);
|
|
if (out->body_offset >= out->size)
|
|
{
|
|
LOG_MSG("Invalid RomFS file data body!");
|
|
dump_fs_header = true;
|
|
goto end;
|
|
}
|
|
|
|
/* Update flag. */
|
|
success = true;
|
|
|
|
end:
|
|
if (!success)
|
|
{
|
|
if (dump_fs_header) LOG_DATA(&(out->header), sizeof(RomFileSystemHeader), "RomFS header dump:");
|
|
|
|
romfsFreeContext(out);
|
|
}
|
|
|
|
return success;
|
|
}
|
|
|
|
bool romfsReadFileSystemData(RomFileSystemContext *ctx, void *out, u64 read_size, u64 offset)
|
|
{
|
|
if (!ctx || !ctx->nca_fs_ctx || !ctx->size || !out || !read_size || (offset + read_size) > ctx->size)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
/* Read filesystem data. */
|
|
if (!ncaReadFsSection(ctx->nca_fs_ctx, out, read_size, ctx->offset + offset))
|
|
{
|
|
LOG_MSG("Failed to read RomFS data!");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool romfsReadFileEntryData(RomFileSystemContext *ctx, RomFileSystemFileEntry *file_entry, void *out, u64 read_size, u64 offset)
|
|
{
|
|
if (!ctx || !ctx->body_offset || !file_entry || !file_entry->size || (file_entry->offset + file_entry->size) > ctx->size || !out || !read_size || (offset + read_size) > file_entry->size)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
/* Read entry data. */
|
|
if (!romfsReadFileSystemData(ctx, out, read_size, ctx->body_offset + file_entry->offset + offset))
|
|
{
|
|
LOG_MSG("Failed to read RomFS file entry data!");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool romfsGetTotalDataSize(RomFileSystemContext *ctx, u64 *out_size)
|
|
{
|
|
if (!ctx || !ctx->file_table_size || !ctx->file_table || !out_size)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
u64 offset = 0, total_size = 0;
|
|
RomFileSystemFileEntry *file_entry = NULL;
|
|
|
|
while(offset < ctx->file_table_size)
|
|
{
|
|
if (!(file_entry = romfsGetFileEntryByOffset(ctx, offset)))
|
|
{
|
|
LOG_MSG("Failed to retrieve file entry!");
|
|
return false;
|
|
}
|
|
|
|
total_size += file_entry->size;
|
|
offset += ALIGN_UP(sizeof(RomFileSystemFileEntry) + file_entry->name_length, 4);
|
|
}
|
|
|
|
*out_size = total_size;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool romfsGetDirectoryDataSize(RomFileSystemContext *ctx, RomFileSystemDirectoryEntry *dir_entry, u64 *out_size)
|
|
{
|
|
if (!ctx || !ctx->dir_table_size || !ctx->dir_table || !ctx->file_table_size || !ctx->file_table || !dir_entry || (dir_entry->file_offset == ROMFS_VOID_ENTRY && \
|
|
dir_entry->directory_offset == ROMFS_VOID_ENTRY) || !out_size)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
u64 total_size = 0, child_dir_size = 0;
|
|
u32 cur_file_offset = 0, cur_dir_offset = 0;
|
|
RomFileSystemFileEntry *cur_file_entry = NULL;
|
|
RomFileSystemDirectoryEntry *cur_dir_entry = NULL;
|
|
|
|
cur_file_offset = dir_entry->file_offset;
|
|
while(cur_file_offset != ROMFS_VOID_ENTRY)
|
|
{
|
|
if (!(cur_file_entry = romfsGetFileEntryByOffset(ctx, cur_file_offset)))
|
|
{
|
|
LOG_MSG("Failed to retrieve file entry!");
|
|
return false;
|
|
}
|
|
|
|
total_size += cur_file_entry->size;
|
|
cur_file_offset = cur_file_entry->next_offset;
|
|
}
|
|
|
|
cur_dir_offset = dir_entry->directory_offset;
|
|
while(cur_dir_offset != ROMFS_VOID_ENTRY)
|
|
{
|
|
if (!(cur_dir_entry = romfsGetDirectoryEntryByOffset(ctx, cur_dir_offset)) || !romfsGetDirectoryDataSize(ctx, cur_dir_entry, &child_dir_size))
|
|
{
|
|
LOG_MSG("Failed to retrieve directory entry/size!");
|
|
return false;
|
|
}
|
|
|
|
total_size += child_dir_size;
|
|
cur_dir_offset = cur_dir_entry->next_offset;
|
|
}
|
|
|
|
*out_size = total_size;
|
|
|
|
return true;
|
|
}
|
|
|
|
RomFileSystemDirectoryEntry *romfsGetDirectoryEntryByPath(RomFileSystemContext *ctx, const char *path)
|
|
{
|
|
size_t path_len = 0;
|
|
char *path_dup = NULL, *pch = NULL;
|
|
RomFileSystemDirectoryEntry *dir_entry = NULL;
|
|
|
|
if (!ctx || !ctx->dir_table || !ctx->dir_table_size || !path || *path != '/' || !(path_len = strlen(path)) || !(dir_entry = romfsGetDirectoryEntryByOffset(ctx, 0)))
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return NULL;
|
|
}
|
|
|
|
/* Check if the root directory was requested. */
|
|
if (path_len == 1) return dir_entry;
|
|
|
|
/* Duplicate path to avoid problems with strtok(). */
|
|
if (!(path_dup = strdup(path)))
|
|
{
|
|
LOG_MSG("Unable to duplicate input path! (\"%s\").", path);
|
|
return NULL;
|
|
}
|
|
|
|
pch = strtok(path_dup, "/");
|
|
if (!pch)
|
|
{
|
|
LOG_MSG("Failed to tokenize input path! (\"%s\").", path);
|
|
dir_entry = NULL;
|
|
goto end;
|
|
}
|
|
|
|
while(pch)
|
|
{
|
|
if (!(dir_entry = romfsGetChildDirectoryEntryByName(ctx, dir_entry, pch)))
|
|
{
|
|
LOG_MSG("Failed to retrieve directory entry by name for \"%s\"! (\"%s\").", pch, path);
|
|
break;
|
|
}
|
|
|
|
pch = strtok(NULL, "/");
|
|
}
|
|
|
|
end:
|
|
if (path_dup) free(path_dup);
|
|
|
|
return dir_entry;
|
|
}
|
|
|
|
RomFileSystemFileEntry *romfsGetFileEntryByPath(RomFileSystemContext *ctx, const char *path)
|
|
{
|
|
size_t path_len = 0;
|
|
u8 content_type = 0;
|
|
char *path_dup = NULL, *filename = NULL;
|
|
RomFileSystemFileEntry *file_entry = NULL;
|
|
RomFileSystemDirectoryEntry *dir_entry = NULL;
|
|
|
|
if (!ctx || !ctx->file_table || !ctx->file_table_size || !ctx->nca_fs_ctx || !ctx->nca_fs_ctx->nca_ctx || !path || *path != '/' || (path_len = strlen(path)) <= 1)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return NULL;
|
|
}
|
|
|
|
content_type = ((NcaContext*)ctx->nca_fs_ctx->nca_ctx)->content_type;
|
|
|
|
/* Duplicate path. */
|
|
if (!(path_dup = strdup(path)))
|
|
{
|
|
LOG_MSG("Unable to duplicate input path! (\"%s\").", path);
|
|
return NULL;
|
|
}
|
|
|
|
/* Remove any trailing slashes. */
|
|
while(path_dup[path_len - 1] == '/')
|
|
{
|
|
path_dup[path_len - 1] = '\0';
|
|
path_len--;
|
|
}
|
|
|
|
/* Safety check. */
|
|
if (!path_len || !(filename = strrchr(path_dup, '/')))
|
|
{
|
|
LOG_MSG("Invalid input path! (\"%s\").", path);
|
|
goto end;
|
|
}
|
|
|
|
/* Remove leading slash and adjust filename string pointer. */
|
|
*filename++ = '\0';
|
|
|
|
/* Retrieve directory entry. */
|
|
/* If the first character is NULL, then just retrieve the root directory entry. */
|
|
if (!(dir_entry = (*path_dup ? romfsGetDirectoryEntryByPath(ctx, path_dup) : romfsGetDirectoryEntryByOffset(ctx, 0))))
|
|
{
|
|
LOG_MSG("Failed to retrieve directory entry for \"%s\"! (\"%s\").", *path_dup ? path_dup : "/", path);
|
|
goto end;
|
|
}
|
|
|
|
/* Retrieve file entry. */
|
|
if (!(file_entry = romfsGetChildFileEntryByName(ctx, dir_entry, filename)))
|
|
{
|
|
/* Only log error if we're not dealing with NACP icons or a LegalInformation XML. */
|
|
bool skip_log = ((!strncmp(path, "/icon_", 6) && content_type == NcmContentType_Control) || (!strcmp(path, "/legalinfo.xml") && content_type == NcmContentType_LegalInformation));
|
|
if (!skip_log) LOG_MSG("Failed to retrieve file entry by name for \"%s\"! (\"%s\").", filename, path);
|
|
}
|
|
|
|
end:
|
|
if (path_dup) free(path_dup);
|
|
|
|
return file_entry;
|
|
}
|
|
|
|
bool romfsGeneratePathFromDirectoryEntry(RomFileSystemContext *ctx, RomFileSystemDirectoryEntry *dir_entry, char *out_path, size_t out_path_size, u8 illegal_char_replace_type)
|
|
{
|
|
size_t path_len = 0;
|
|
u32 dir_offset = ROMFS_VOID_ENTRY, dir_entries_count = 0;
|
|
RomFileSystemDirectoryEntry **dir_entries = NULL, **tmp_dir_entries = NULL;
|
|
bool success = false;
|
|
|
|
if (!ctx || !ctx->dir_table || !ctx->dir_table_size || !dir_entry || (!dir_entry->name_length && dir_entry->parent_offset) || !out_path || out_path_size < 2 || \
|
|
illegal_char_replace_type > RomFileSystemPathIllegalCharReplaceType_KeepAsciiCharsOnly)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
/* Check if we're dealing with the root directory entry. */
|
|
if (!dir_entry->name_length)
|
|
{
|
|
sprintf(out_path, "/");
|
|
return true;
|
|
}
|
|
|
|
/* Allocate memory for our directory entries. */
|
|
dir_entries = calloc(1, sizeof(RomFileSystemDirectoryEntry*));
|
|
if (!dir_entries)
|
|
{
|
|
LOG_MSG("Unable to allocate memory for directory entries!");
|
|
return false;
|
|
}
|
|
|
|
path_len = (1 + dir_entry->name_length);
|
|
*dir_entries = dir_entry;
|
|
dir_entries_count++;
|
|
|
|
while(true)
|
|
{
|
|
dir_offset = dir_entries[dir_entries_count - 1]->parent_offset;
|
|
if (!dir_offset) break;
|
|
|
|
/* Reallocate directory entries. */
|
|
if (!(tmp_dir_entries = realloc(dir_entries, (dir_entries_count + 1) * sizeof(RomFileSystemDirectoryEntry*))))
|
|
{
|
|
LOG_MSG("Unable to reallocate directory entries buffer!");
|
|
goto end;
|
|
}
|
|
|
|
dir_entries = tmp_dir_entries;
|
|
tmp_dir_entries = NULL;
|
|
|
|
RomFileSystemDirectoryEntry **cur_dir_entry = &(dir_entries[dir_entries_count]);
|
|
if (!(*cur_dir_entry = romfsGetDirectoryEntryByOffset(ctx, dir_offset)) || !(*cur_dir_entry)->name_length)
|
|
{
|
|
LOG_MSG("Failed to retrieve directory entry!");
|
|
goto end;
|
|
}
|
|
|
|
path_len += (1 + (*cur_dir_entry)->name_length);
|
|
dir_entries_count++;
|
|
}
|
|
|
|
if (path_len >= out_path_size)
|
|
{
|
|
LOG_MSG("Output path length exceeds output buffer size!");
|
|
goto end;
|
|
}
|
|
|
|
/* Generate output path. */
|
|
*out_path = '\0';
|
|
path_len = 0;
|
|
|
|
for(u32 i = dir_entries_count; i > 0; i--)
|
|
{
|
|
RomFileSystemDirectoryEntry **cur_dir_entry = &(dir_entries[i - 1]);
|
|
|
|
strcat(out_path, "/");
|
|
strncat(out_path, (*cur_dir_entry)->name, (*cur_dir_entry)->name_length);
|
|
path_len++;
|
|
|
|
if (illegal_char_replace_type) utilsReplaceIllegalCharacters(out_path + path_len, illegal_char_replace_type == RomFileSystemPathIllegalCharReplaceType_KeepAsciiCharsOnly);
|
|
|
|
path_len += (*cur_dir_entry)->name_length;
|
|
}
|
|
|
|
success = true;
|
|
|
|
end:
|
|
if (dir_entries) free(dir_entries);
|
|
|
|
return success;
|
|
}
|
|
|
|
bool romfsGeneratePathFromFileEntry(RomFileSystemContext *ctx, RomFileSystemFileEntry *file_entry, char *out_path, size_t out_path_size, u8 illegal_char_replace_type)
|
|
{
|
|
size_t path_len = 0;
|
|
RomFileSystemDirectoryEntry *dir_entry = NULL;
|
|
|
|
if (!ctx || !ctx->file_table || !ctx->file_table_size || !file_entry || !file_entry->name_length || !out_path || out_path_size < 2 || \
|
|
!(dir_entry = romfsGetDirectoryEntryByOffset(ctx, file_entry->parent_offset)) || illegal_char_replace_type > RomFileSystemPathIllegalCharReplaceType_KeepAsciiCharsOnly)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
/* Retrieve full RomFS path up to the file entry name. */
|
|
if (!romfsGeneratePathFromDirectoryEntry(ctx, dir_entry, out_path, out_path_size, illegal_char_replace_type))
|
|
{
|
|
LOG_MSG("Failed to retrieve RomFS directory path!");
|
|
return false;
|
|
}
|
|
|
|
/* Check path length. */
|
|
path_len = strlen(out_path);
|
|
if ((1 + file_entry->name_length) >= (out_path_size - path_len))
|
|
{
|
|
LOG_MSG("Output path length exceeds output buffer size!");
|
|
return false;
|
|
}
|
|
|
|
/* Concatenate file entry name. */
|
|
if (file_entry->parent_offset)
|
|
{
|
|
strcat(out_path, "/");
|
|
path_len++;
|
|
}
|
|
|
|
strncat(out_path, file_entry->name, file_entry->name_length);
|
|
|
|
if (illegal_char_replace_type) utilsReplaceIllegalCharacters(out_path + path_len, illegal_char_replace_type == RomFileSystemPathIllegalCharReplaceType_KeepAsciiCharsOnly);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool romfsGenerateFileEntryPatch(RomFileSystemContext *ctx, RomFileSystemFileEntry *file_entry, const void *data, u64 data_size, u64 data_offset, RomFileSystemFileEntryPatch *out)
|
|
{
|
|
if (!ctx || !ctx->nca_fs_ctx || !ctx->body_offset || (ctx->nca_fs_ctx->section_type != NcaFsSectionType_Nca0RomFs && ctx->nca_fs_ctx->section_type != NcaFsSectionType_RomFs) || !file_entry || \
|
|
!file_entry->size || (file_entry->offset + file_entry->size) > ctx->size || !data || !data_size || (data_offset + data_size) > file_entry->size || !out)
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return false;
|
|
}
|
|
|
|
bool success = false;
|
|
u64 fs_offset = (ctx->body_offset + file_entry->offset + data_offset);
|
|
|
|
if (ctx->nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs)
|
|
{
|
|
out->use_old_format_patch = true;
|
|
success = ncaGenerateHierarchicalSha256Patch(ctx->nca_fs_ctx, data, data_size, fs_offset, &(out->old_format_patch));
|
|
} else {
|
|
out->use_old_format_patch = false;
|
|
success = ncaGenerateHierarchicalIntegrityPatch(ctx->nca_fs_ctx, data, data_size, fs_offset, &(out->cur_format_patch));
|
|
}
|
|
|
|
out->written = false;
|
|
|
|
if (!success) LOG_MSG("Failed to generate 0x%lX bytes Hierarchical%s patch at offset 0x%lX for RomFS file entry!", data_size, \
|
|
ctx->nca_fs_ctx->section_type == NcaFsSectionType_Nca0RomFs ? "Sha256" : "Integrity", fs_offset);
|
|
|
|
return success;
|
|
}
|
|
|
|
static RomFileSystemDirectoryEntry *romfsGetChildDirectoryEntryByName(RomFileSystemContext *ctx, RomFileSystemDirectoryEntry *dir_entry, const char *name)
|
|
{
|
|
u64 dir_offset = 0;
|
|
size_t name_len = 0;
|
|
RomFileSystemDirectoryEntry *child_dir_entry = NULL;
|
|
|
|
if (!ctx || !ctx->dir_table || !ctx->dir_table_size || !dir_entry || (dir_offset = dir_entry->directory_offset) == ROMFS_VOID_ENTRY || !name || !(name_len = strlen(name)))
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return NULL;
|
|
}
|
|
|
|
while(dir_offset != ROMFS_VOID_ENTRY)
|
|
{
|
|
if (!(child_dir_entry = romfsGetDirectoryEntryByOffset(ctx, dir_offset)))
|
|
{
|
|
LOG_MSG("Failed to retrieve directory entry at offset 0x%lX!", dir_offset);
|
|
break;
|
|
}
|
|
|
|
/* strncmp() is used here instead of strcmp() because names stored in RomFS sections are not always NULL terminated. */
|
|
/* If the name ends at a 4-byte boundary, the next entry starts immediately. */
|
|
if (child_dir_entry->name_length == name_len && !strncmp(child_dir_entry->name, name, name_len)) return child_dir_entry;
|
|
|
|
dir_offset = child_dir_entry->next_offset;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static RomFileSystemFileEntry *romfsGetChildFileEntryByName(RomFileSystemContext *ctx, RomFileSystemDirectoryEntry *dir_entry, const char *name)
|
|
{
|
|
u64 file_offset = 0;
|
|
size_t name_len = 0;
|
|
RomFileSystemFileEntry *child_file_entry = NULL;
|
|
|
|
if (!ctx || !ctx->dir_table || !ctx->dir_table_size || !ctx->file_table || !ctx->file_table_size || !dir_entry || (file_offset = dir_entry->file_offset) == ROMFS_VOID_ENTRY || \
|
|
!name || !(name_len = strlen(name)))
|
|
{
|
|
LOG_MSG("Invalid parameters!");
|
|
return NULL;
|
|
}
|
|
|
|
while(file_offset != ROMFS_VOID_ENTRY)
|
|
{
|
|
if (!(child_file_entry = romfsGetFileEntryByOffset(ctx, file_offset)))
|
|
{
|
|
LOG_MSG("Failed to retrieve file entry at offset 0x%lX!", file_offset);
|
|
break;
|
|
}
|
|
|
|
/* strncmp() is used here instead of strcmp() because names stored in RomFS sections are not always NULL terminated. */
|
|
/* If the name ends at a 4-byte boundary, the next entry starts immediately. */
|
|
if (child_file_entry->name_length == name_len && !strncmp(child_file_entry->name, name, name_len)) return child_file_entry;
|
|
|
|
file_offset = child_file_entry->next_offset;
|
|
}
|
|
|
|
return NULL;
|
|
}
|