2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-07-28 00:14:03 +02:00
|
|
|
|
2019-11-27 11:28:19 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2023-12-02 05:39:48 +01:00
|
|
|
#include "common/assert.h"
|
2018-07-28 00:14:03 +02:00
|
|
|
#include "common/common_types.h"
|
2020-04-07 02:03:32 +02:00
|
|
|
#include "common/string_util.h"
|
2018-07-28 00:14:03 +02:00
|
|
|
#include "common/swap.h"
|
2018-09-24 03:50:16 +02:00
|
|
|
#include "core/file_sys/fsmitm_romfsbuild.h"
|
2018-07-28 00:14:03 +02:00
|
|
|
#include "core/file_sys/romfs.h"
|
|
|
|
#include "core/file_sys/vfs.h"
|
2023-06-03 14:56:59 +02:00
|
|
|
#include "core/file_sys/vfs_cached.h"
|
2018-09-20 04:04:51 +02:00
|
|
|
#include "core/file_sys/vfs_concat.h"
|
2018-07-28 00:14:03 +02:00
|
|
|
#include "core/file_sys/vfs_offset.h"
|
|
|
|
#include "core/file_sys/vfs_vector.h"
|
|
|
|
|
|
|
|
namespace FileSys {
|
2019-11-27 11:26:31 +01:00
|
|
|
namespace {
|
2018-07-28 00:14:03 +02:00
|
|
|
constexpr u32 ROMFS_ENTRY_EMPTY = 0xFFFFFFFF;
|
|
|
|
|
|
|
|
struct TableLocation {
|
|
|
|
u64_le offset;
|
|
|
|
u64_le size;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(TableLocation) == 0x10, "TableLocation has incorrect size.");
|
|
|
|
|
|
|
|
struct RomFSHeader {
|
|
|
|
u64_le header_size;
|
|
|
|
TableLocation directory_hash;
|
|
|
|
TableLocation directory_meta;
|
|
|
|
TableLocation file_hash;
|
|
|
|
TableLocation file_meta;
|
|
|
|
u64_le data_offset;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(RomFSHeader) == 0x50, "RomFSHeader has incorrect size.");
|
|
|
|
|
|
|
|
struct DirectoryEntry {
|
2023-11-01 01:11:14 +01:00
|
|
|
u32_le parent;
|
2018-07-28 00:14:03 +02:00
|
|
|
u32_le sibling;
|
|
|
|
u32_le child_dir;
|
|
|
|
u32_le child_file;
|
|
|
|
u32_le hash;
|
|
|
|
u32_le name_length;
|
|
|
|
};
|
2023-11-01 01:11:14 +01:00
|
|
|
static_assert(sizeof(DirectoryEntry) == 0x18, "DirectoryEntry has incorrect size.");
|
2018-07-28 00:14:03 +02:00
|
|
|
|
|
|
|
struct FileEntry {
|
|
|
|
u32_le parent;
|
|
|
|
u32_le sibling;
|
|
|
|
u64_le offset;
|
|
|
|
u64_le size;
|
|
|
|
u32_le hash;
|
|
|
|
u32_le name_length;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(FileEntry) == 0x20, "FileEntry has incorrect size.");
|
|
|
|
|
|
|
|
template <typename Entry>
|
2019-11-27 11:26:31 +01:00
|
|
|
std::pair<Entry, std::string> GetEntry(const VirtualFile& file, std::size_t offset) {
|
2018-07-28 00:14:03 +02:00
|
|
|
Entry entry{};
|
|
|
|
if (file->ReadObject(&entry, offset) != sizeof(Entry))
|
|
|
|
return {};
|
|
|
|
std::string string(entry.name_length, '\0');
|
|
|
|
if (file->ReadArray(&string[0], string.size(), offset + sizeof(Entry)) != string.size())
|
|
|
|
return {};
|
|
|
|
return {entry, string};
|
|
|
|
}
|
|
|
|
|
2023-11-01 01:11:14 +01:00
|
|
|
void ProcessFile(const VirtualFile& file, std::size_t file_offset, std::size_t data_offset,
|
|
|
|
u32 this_file_offset, std::shared_ptr<VectorVfsDirectory>& parent) {
|
|
|
|
while (this_file_offset != ROMFS_ENTRY_EMPTY) {
|
2018-07-28 00:14:03 +02:00
|
|
|
auto entry = GetEntry<FileEntry>(file, file_offset + this_file_offset);
|
|
|
|
|
|
|
|
parent->AddFile(std::make_shared<OffsetVfsFile>(
|
2018-08-12 04:44:50 +02:00
|
|
|
file, entry.first.size, entry.first.offset + data_offset, entry.second));
|
2018-07-28 00:14:03 +02:00
|
|
|
|
|
|
|
this_file_offset = entry.first.sibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-01 01:11:14 +01:00
|
|
|
void ProcessDirectory(const VirtualFile& file, std::size_t dir_offset, std::size_t file_offset,
|
2018-09-15 15:21:06 +02:00
|
|
|
std::size_t data_offset, u32 this_dir_offset,
|
2023-11-01 01:11:14 +01:00
|
|
|
std::shared_ptr<VectorVfsDirectory>& parent) {
|
|
|
|
while (this_dir_offset != ROMFS_ENTRY_EMPTY) {
|
2018-07-28 00:14:03 +02:00
|
|
|
auto entry = GetEntry<DirectoryEntry>(file, dir_offset + this_dir_offset);
|
|
|
|
auto current = std::make_shared<VectorVfsDirectory>(
|
2018-08-12 04:44:50 +02:00
|
|
|
std::vector<VirtualFile>{}, std::vector<VirtualDir>{}, entry.second);
|
2018-07-28 00:14:03 +02:00
|
|
|
|
|
|
|
if (entry.first.child_file != ROMFS_ENTRY_EMPTY) {
|
|
|
|
ProcessFile(file, file_offset, data_offset, entry.first.child_file, current);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry.first.child_dir != ROMFS_ENTRY_EMPTY) {
|
|
|
|
ProcessDirectory(file, dir_offset, file_offset, data_offset, entry.first.child_dir,
|
|
|
|
current);
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->AddDirectory(current);
|
|
|
|
this_dir_offset = entry.first.sibling;
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 11:26:31 +01:00
|
|
|
} // Anonymous namespace
|
2018-07-28 00:14:03 +02:00
|
|
|
|
2023-11-01 01:11:14 +01:00
|
|
|
VirtualDir ExtractRomFS(VirtualFile file) {
|
2023-12-02 05:39:48 +01:00
|
|
|
auto root_container = std::make_shared<VectorVfsDirectory>();
|
|
|
|
if (!file) {
|
|
|
|
return root_container;
|
|
|
|
}
|
|
|
|
|
2018-07-28 00:14:03 +02:00
|
|
|
RomFSHeader header{};
|
2023-12-02 05:39:48 +01:00
|
|
|
if (file->ReadObject(&header) != sizeof(RomFSHeader)) {
|
|
|
|
return root_container;
|
|
|
|
}
|
2018-07-28 00:14:03 +02:00
|
|
|
|
2023-12-02 05:39:48 +01:00
|
|
|
if (header.header_size != sizeof(RomFSHeader)) {
|
|
|
|
return root_container;
|
|
|
|
}
|
2018-07-28 00:14:03 +02:00
|
|
|
|
|
|
|
const u64 file_offset = header.file_meta.offset;
|
2023-11-01 01:11:14 +01:00
|
|
|
const u64 dir_offset = header.directory_meta.offset;
|
2018-07-28 00:14:03 +02:00
|
|
|
|
2023-11-01 01:11:14 +01:00
|
|
|
ProcessDirectory(file, dir_offset, file_offset, header.data_offset, 0, root_container);
|
2018-12-24 22:18:28 +01:00
|
|
|
|
2023-11-01 01:11:14 +01:00
|
|
|
if (auto root = root_container->GetSubdirectory(""); root) {
|
|
|
|
return std::make_shared<CachedVfsDirectory>(std::move(root));
|
2018-09-20 04:04:51 +02:00
|
|
|
}
|
2018-07-28 00:14:03 +02:00
|
|
|
|
2023-12-02 05:39:48 +01:00
|
|
|
ASSERT(false);
|
2023-11-01 01:11:14 +01:00
|
|
|
return nullptr;
|
2018-07-28 00:14:03 +02:00
|
|
|
}
|
2018-09-20 04:04:51 +02:00
|
|
|
|
2018-10-02 14:56:56 +02:00
|
|
|
VirtualFile CreateRomFS(VirtualDir dir, VirtualDir ext) {
|
2018-09-20 04:04:51 +02:00
|
|
|
if (dir == nullptr)
|
|
|
|
return nullptr;
|
|
|
|
|
2018-10-02 14:56:56 +02:00
|
|
|
RomFSBuildContext ctx{dir, ext};
|
2023-10-13 19:34:41 +02:00
|
|
|
return ConcatenatedVfsFile::MakeConcatenatedFile(0, dir->GetName(), ctx.Build());
|
2018-09-20 04:04:51 +02:00
|
|
|
}
|
|
|
|
|
2018-07-28 00:14:03 +02:00
|
|
|
} // namespace FileSys
|