2020-10-09 10:58:53 +01:00
|
|
|
/*
|
|
|
|
* legal_info.c
|
|
|
|
*
|
2022-03-17 12:58:40 +00:00
|
|
|
* Copyright (c) 2020-2022, DarkMatterCore <pabloacurielz@gmail.com>.
|
2020-10-09 10:58:53 +01:00
|
|
|
*
|
|
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
|
|
*
|
2021-03-25 19:26:58 +00:00
|
|
|
* nxdumptool is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2020-10-09 10:58:53 +01:00
|
|
|
*
|
2021-03-25 19:26:58 +00:00
|
|
|
* nxdumptool is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2020-10-09 10:58:53 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-03-25 19:26:58 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-10-09 10:58:53 +01:00
|
|
|
*/
|
|
|
|
|
2021-03-26 04:35:14 +00:00
|
|
|
#include "nxdt_utils.h"
|
2020-10-09 10:58:53 +01:00
|
|
|
#include "legal_info.h"
|
|
|
|
|
|
|
|
bool legalInfoInitializeContext(LegalInfoContext *out, NcaContext *nca_ctx)
|
|
|
|
{
|
2020-10-15 01:06:53 +01:00
|
|
|
if (!out || !nca_ctx || !*(nca_ctx->content_id_str) || nca_ctx->content_type != NcmContentType_LegalInformation || nca_ctx->content_size < NCA_FULL_HEADER_LENGTH || \
|
2020-10-09 10:58:53 +01:00
|
|
|
(nca_ctx->storage_id != NcmStorageId_GameCard && !nca_ctx->ncm_storage) || (nca_ctx->storage_id == NcmStorageId_GameCard && !nca_ctx->gamecard_offset) || \
|
2020-11-08 19:08:30 +00:00
|
|
|
nca_ctx->header.content_type != NcaContentType_Manual || nca_ctx->content_type_ctx || !out)
|
2020-10-09 10:58:53 +01:00
|
|
|
{
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_ERROR("Invalid parameters!");
|
2020-10-09 10:58:53 +01:00
|
|
|
return false;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
RomFileSystemContext romfs_ctx = {0};
|
|
|
|
RomFileSystemFileEntry *xml_entry = NULL;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
bool success = false;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
/* Free output context beforehand. */
|
|
|
|
legalInfoFreeContext(out);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
/* Initialize RomFS context. */
|
2022-07-04 13:30:48 +01:00
|
|
|
if (!romfsInitializeContext(&romfs_ctx, &(nca_ctx->fs_ctx[0]), NULL))
|
2020-10-09 10:58:53 +01:00
|
|
|
{
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_ERROR("Failed to initialize RomFS context!");
|
2020-10-09 10:58:53 +01:00
|
|
|
goto end;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
/* Retrieve RomFS file entry for 'legalinfo.xml'. */
|
|
|
|
if (!(xml_entry = romfsGetFileEntryByPath(&romfs_ctx, "/legalinfo.xml")))
|
|
|
|
{
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_ERROR("Failed to retrieve file entry for \"legalinfo.xml\" from RomFS!");
|
2020-10-09 10:58:53 +01:00
|
|
|
goto end;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_INFO("Found 'legalinfo.xml' entry in LegalInformation NCA \"%s\".", nca_ctx->content_id_str);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
/* Verify XML size. */
|
|
|
|
if (!xml_entry->size)
|
|
|
|
{
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_ERROR("Invalid XML size!");
|
2020-10-09 10:58:53 +01:00
|
|
|
goto end;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
/* Allocate memory for the XML. */
|
|
|
|
out->authoring_tool_xml_size = xml_entry->size;
|
|
|
|
if (!(out->authoring_tool_xml = malloc(out->authoring_tool_xml_size)))
|
|
|
|
{
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_ERROR("Failed to allocate memory for the XML!");
|
2020-10-09 10:58:53 +01:00
|
|
|
goto end;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
/* Read NACP data into memory buffer. */
|
|
|
|
if (!romfsReadFileEntryData(&romfs_ctx, xml_entry, out->authoring_tool_xml, out->authoring_tool_xml_size, 0))
|
|
|
|
{
|
2022-07-12 17:34:49 +01:00
|
|
|
LOG_MSG_ERROR("Failed to read XML!");
|
2020-10-09 10:58:53 +01:00
|
|
|
goto end;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-10 11:10:50 +01:00
|
|
|
/* Update NCA context pointer in output context. */
|
|
|
|
out->nca_ctx = nca_ctx;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-21 05:27:48 +01:00
|
|
|
/* Update content type context info in NCA context. */
|
|
|
|
nca_ctx->content_type_ctx = out;
|
|
|
|
nca_ctx->content_type_ctx_patch = false;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
success = true;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
end:
|
|
|
|
romfsFreeContext(&romfs_ctx);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
if (!success) legalInfoFreeContext(out);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2020-10-09 10:58:53 +01:00
|
|
|
return success;
|
|
|
|
}
|