2021-10-09 00:58:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#include <coreinit/debug.h>
|
2022-07-26 08:16:27 +02:00
|
|
|
#include <utils/FSTUtils.h>
|
2021-10-11 22:02:35 +02:00
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
#include "WiiUDataPartition.h"
|
2022-07-26 08:16:27 +02:00
|
|
|
#include "WiiUGMPartition.h"
|
|
|
|
#include "WiiUPartitions.h"
|
|
|
|
#include <utility>
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
bool WiiUPartitions::getFSTEntryAsByte(std::string &filePath,
|
|
|
|
const std::shared_ptr<FST> &fst,
|
|
|
|
const AddressInDiscBlocks &volumeAddress,
|
|
|
|
const std::shared_ptr<DiscReader> &discReader,
|
|
|
|
std::vector<uint8_t> &out_data) {
|
|
|
|
auto entryOpt = FSTUtils::getFSTEntryByFullPath(fst->getRootEntry(), filePath);
|
|
|
|
if (!entryOpt.has_value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto asFileEntry = std::dynamic_pointer_cast<FileEntry>(entryOpt.value());
|
|
|
|
if (asFileEntry == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
auto info = asFileEntry->getSectionEntry();
|
2021-10-11 22:02:35 +02:00
|
|
|
uint64_t sectionOffsetOnDisc = volumeAddress.getAddressInBytes() + info->address.getAddressInBytes();
|
|
|
|
|
|
|
|
out_data.resize(asFileEntry->getSize());
|
|
|
|
|
|
|
|
if (!discReader->hasDiscKey) {
|
|
|
|
return discReader->readEncrypted(out_data.data(), sectionOffsetOnDisc + asFileEntry->getOffset(), asFileEntry->getSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculating the IV
|
|
|
|
uint8_t IV[16];
|
|
|
|
memset(IV, 0, 16);
|
|
|
|
uint64_t ivTemp = asFileEntry->getOffset() >> 16;
|
|
|
|
memcpy(IV + 8, &ivTemp, 8);
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
return discReader->readDecrypted(out_data.data(), sectionOffsetOnDisc, asFileEntry->getOffset(), asFileEntry->getSize(), discReader->discKey, IV, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::unique_ptr<WiiUPartitions>>
|
|
|
|
WiiUPartitions::make_unique(const std::shared_ptr<DiscReader> &discReader, uint32_t offset, uint32_t numberOfPartitions, const DiscBlockSize &blockSize) {
|
|
|
|
std::vector<std::shared_ptr<WiiUPartition>> tmp;
|
|
|
|
std::vector<std::shared_ptr<WiiUPartition>> partitions;
|
|
|
|
partitions.reserve(numberOfPartitions);
|
2021-10-09 00:58:55 +02:00
|
|
|
tmp.reserve(numberOfPartitions);
|
|
|
|
for (uint32_t i = 0; i < numberOfPartitions; i++) {
|
2021-10-11 22:02:35 +02:00
|
|
|
auto partitionOpt = WiiUPartition::make_shared(discReader, offset + (i * 128), blockSize);
|
|
|
|
if (!partitionOpt.has_value()) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to read partition");
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
tmp.push_back(partitionOpt.value());
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
2021-10-11 22:02:35 +02:00
|
|
|
std::optional<std::shared_ptr<WiiUPartition>> SIPartition;
|
2022-07-26 08:16:27 +02:00
|
|
|
for (auto &partition : tmp) {
|
2021-10-09 00:58:55 +02:00
|
|
|
if (partition->getVolumeId().starts_with("SI")) {
|
|
|
|
SIPartition = partition;
|
2021-10-11 22:02:35 +02:00
|
|
|
break;
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
if (SIPartition.has_value()) {
|
2022-07-26 08:16:27 +02:00
|
|
|
for (auto const &[key, val] : SIPartition.value()->getVolumes()) {
|
|
|
|
auto volumeAddress = key;
|
2021-10-09 00:58:55 +02:00
|
|
|
auto volumeAddressInBytes = volumeAddress.getAddressInBytes();
|
2022-07-26 08:16:27 +02:00
|
|
|
auto volumeHeader = val;
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
std::vector<uint8_t> fstData;
|
|
|
|
fstData.resize(volumeHeader->FSTSize);
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!discReader->hasDiscKey) {
|
|
|
|
if (!discReader->readEncrypted(fstData.data(), volumeAddressInBytes + volumeHeader->FSTAddress.getAddressInBytes(),
|
|
|
|
volumeHeader->FSTSize)) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to read FST");
|
|
|
|
return {};
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
} else {
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!discReader->readDecrypted(fstData.data(), volumeAddressInBytes + volumeHeader->FSTAddress.getAddressInBytes(), 0, volumeHeader->FSTSize,
|
|
|
|
discReader->discKey, nullptr, true)) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to read FST");
|
|
|
|
return {};
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
auto siFST = FST::make_shared(fstData, 0, volumeHeader->blockSize);
|
|
|
|
if (!siFST.has_value()) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to parse FST");
|
|
|
|
return {};
|
|
|
|
}
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
for (auto &child : siFST.value()->getRootEntry()->getDirChildren()) {
|
2021-10-11 22:02:35 +02:00
|
|
|
std::vector<uint8_t> bufferTicket;
|
2021-10-09 00:58:55 +02:00
|
|
|
std::string tikFilePath = std::string(child->getFullPath() + '/' + WUD_TICKET_FILENAME);
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!getFSTEntryAsByte(tikFilePath, siFST.value(), volumeAddress, discReader, bufferTicket)) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failted to read FSTEntry");
|
|
|
|
return {};
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
std::vector<uint8_t> bufferTMD;
|
2021-10-09 00:58:55 +02:00
|
|
|
std::string tmdFilePath = std::string(child->getFullPath() + '/' + WUD_TMD_FILENAME);
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!getFSTEntryAsByte(tmdFilePath, siFST.value(), volumeAddress, discReader, bufferTMD)) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failted to read FSTEntry");
|
|
|
|
return {};
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
std::vector<uint8_t> bufferCert;
|
2021-10-09 00:58:55 +02:00
|
|
|
std::string certFilePath = std::string(child->getFullPath() + '/' + WUD_CERT_FILENAME);
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!getFSTEntryAsByte(certFilePath, siFST.value(), volumeAddress, discReader, bufferCert)) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failted to read FSTEntry");
|
|
|
|
return {};
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
char partitionNameRaw[0x12];
|
|
|
|
memset(partitionNameRaw, 0, 0x12);
|
2021-10-11 22:02:35 +02:00
|
|
|
snprintf(partitionNameRaw, 0x11, "%016llX", *((uint64_t *) &bufferTicket[0x1DC]));
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
std::string partitionName = std::string("GM") + partitionNameRaw;
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
std::optional<std::shared_ptr<WiiUPartition>> curPartition;
|
2022-07-26 08:16:27 +02:00
|
|
|
for (auto &partition : tmp) {
|
2021-10-09 00:58:55 +02:00
|
|
|
if (partition->getVolumeId().starts_with(partitionName)) {
|
|
|
|
curPartition = partition;
|
2021-10-11 22:02:35 +02:00
|
|
|
break;
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!curPartition.has_value()) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to find partition");
|
|
|
|
return {};
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
auto gmPartition = std::shared_ptr<WiiUPartition>(new WiiUGMPartition(curPartition.value(), bufferTicket, bufferTMD, bufferCert));
|
2021-10-09 00:58:55 +02:00
|
|
|
partitions.push_back(gmPartition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-26 08:16:27 +02:00
|
|
|
for (auto &partition : tmp) {
|
2021-10-09 00:58:55 +02:00
|
|
|
if (partition->getVolumeId().starts_with("GM")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (partition->getVolumes().size() != 1) {
|
|
|
|
OSFatal("We can't handle more or less than one partion address yet.");
|
|
|
|
}
|
|
|
|
auto volumeAddress = partition->getVolumes().begin()->first;
|
2022-07-26 08:16:27 +02:00
|
|
|
auto vh = partition->getVolumes().begin()->second;
|
2021-10-11 22:02:35 +02:00
|
|
|
|
|
|
|
std::vector<uint8_t> fstData;
|
|
|
|
fstData.resize(vh->FSTSize);
|
|
|
|
|
|
|
|
if (!discReader->hasDiscKey) {
|
|
|
|
if (!discReader->readEncrypted(fstData.data(), volumeAddress.getAddressInBytes() + vh->FSTAddress.getAddressInBytes(), vh->FSTSize)) {
|
2021-10-09 00:58:55 +02:00
|
|
|
OSFatal("WiiUPartition: Failed to read encrypted");
|
|
|
|
}
|
|
|
|
} else {
|
2021-10-11 22:02:35 +02:00
|
|
|
if (!discReader->readDecrypted(fstData.data(), volumeAddress.getAddressInBytes() + vh->FSTAddress.getAddressInBytes(), 0, vh->FSTSize,
|
|
|
|
discReader->discKey, nullptr, true)) {
|
2021-10-09 00:58:55 +02:00
|
|
|
OSFatal("WiiUPartition: Failed to read encrypted");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
auto fstOpt = FST::make_shared(fstData, 0, vh->blockSize);
|
|
|
|
if (!fstOpt.has_value()) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to parse FST");
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
partitions.push_back(std::shared_ptr<WiiUPartition>(new WiiUDataPartition(partition, fstOpt.value())));
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
2021-10-11 22:02:35 +02:00
|
|
|
return std::unique_ptr<WiiUPartitions>(new WiiUPartitions(partitions));
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
WiiUPartitions::WiiUPartitions(std::vector<std::shared_ptr<WiiUPartition>> pPartitions) : partitions(std::move(pPartitions)) {
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|