/**************************************************************************** * Copyright (C) 2016-2021 Maschell * * This program 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. * * This program 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . ****************************************************************************/ #include "NUSDataProviderWUD.h" #include "utils/WUDUtils.h" NUSDataProviderWUD::NUSDataProviderWUD(std::shared_ptr pGamePartition, std::shared_ptr pDiscReader) { gamePartition = std::move(pGamePartition); discReader = std::move(pDiscReader); } NUSDataProviderWUD::~NUSDataProviderWUD() = default; bool NUSDataProviderWUD::readRawContent(const std::shared_ptr &content, uint8_t *buffer, uint64_t offset, uint32_t size) { if (buffer == nullptr) { DEBUG_FUNCTION_LINE_ERR("buffer was NULL"); return false; } if (!discReader) { DEBUG_FUNCTION_LINE_ERR("No valid disc reader"); return false; } auto offsetInWUDOpt = WUDUtils::getOffsetOfContent(this->gamePartition, this->fst, content); if (!offsetInWUDOpt) { DEBUG_FUNCTION_LINE_ERR("Failed to get offset for content"); return false; } auto offsetInWUD = offsetInWUDOpt.value() + offset; if (!discReader) { return false; } return discReader->readEncrypted(buffer, offsetInWUD, size); } bool NUSDataProviderWUD::getContentH3Hash(const std::shared_ptr &content, std::vector &out_data) { auto &cur = gamePartition->getVolumes().begin()->second->h3HashArrayList[content->index]; if (cur == nullptr || cur->size == 0) { return false; } out_data.resize(cur->size); memcpy(out_data.data(), cur->data.get(), cur->size); return true; } void NUSDataProviderWUD::setFST(const std::shared_ptr &pFST) { // We need to set the correct blocksizes auto blockSize = gamePartition->getVolumes().begin()->second->blockSize; for (const auto &e : pFST->sectionEntries->getSections()) { e->address = AddressInVolumeBlocks(blockSize, e->address.value); e->size = SizeInVolumeBlocks(blockSize, e->size.value); } fst = pFST; } bool NUSDataProviderWUD::getRawCert(std::vector &out_data) { out_data = gamePartition->getRawCert(); return true; } bool NUSDataProviderWUD::getRawTicket(std::vector &out_data) { out_data = gamePartition->getRawTicket(); return true; } bool NUSDataProviderWUD::getRawTMD(std::vector &out_data) { out_data = gamePartition->getRawTMD(); return true; }