|
@@ -5,14 +5,18 @@
|
|
|
#include <algorithm>
|
|
#include <algorithm>
|
|
|
#include <array>
|
|
#include <array>
|
|
|
#include <cstddef>
|
|
#include <cstddef>
|
|
|
|
|
+#include <cstring>
|
|
|
|
|
|
|
|
|
|
+#include "common/hex_util.h"
|
|
|
#include "common/logging/log.h"
|
|
#include "common/logging/log.h"
|
|
|
#include "core/file_sys/content_archive.h"
|
|
#include "core/file_sys/content_archive.h"
|
|
|
#include "core/file_sys/control_metadata.h"
|
|
#include "core/file_sys/control_metadata.h"
|
|
|
|
|
+#include "core/file_sys/ips_layer.h"
|
|
|
#include "core/file_sys/patch_manager.h"
|
|
#include "core/file_sys/patch_manager.h"
|
|
|
#include "core/file_sys/registered_cache.h"
|
|
#include "core/file_sys/registered_cache.h"
|
|
|
#include "core/file_sys/romfs.h"
|
|
#include "core/file_sys/romfs.h"
|
|
|
#include "core/file_sys/vfs_layered.h"
|
|
#include "core/file_sys/vfs_layered.h"
|
|
|
|
|
+#include "core/file_sys/vfs_vector.h"
|
|
|
#include "core/hle/service/filesystem/filesystem.h"
|
|
#include "core/hle/service/filesystem/filesystem.h"
|
|
|
#include "core/loader/loader.h"
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
@@ -21,6 +25,14 @@ namespace FileSys {
|
|
|
constexpr u64 SINGLE_BYTE_MODULUS = 0x100;
|
|
constexpr u64 SINGLE_BYTE_MODULUS = 0x100;
|
|
|
constexpr u64 DLC_BASE_TITLE_ID_MASK = 0xFFFFFFFFFFFFE000;
|
|
constexpr u64 DLC_BASE_TITLE_ID_MASK = 0xFFFFFFFFFFFFE000;
|
|
|
|
|
|
|
|
|
|
+struct NSOBuildHeader {
|
|
|
|
|
+ u32_le magic;
|
|
|
|
|
+ INSERT_PADDING_BYTES(0x3C);
|
|
|
|
|
+ std::array<u8, 0x20> build_id;
|
|
|
|
|
+ INSERT_PADDING_BYTES(0xA0);
|
|
|
|
|
+};
|
|
|
|
|
+static_assert(sizeof(NSOBuildHeader) == 0x100, "NSOBuildHeader has incorrect size.");
|
|
|
|
|
+
|
|
|
std::string FormatTitleVersion(u32 version, TitleVersionFormat format) {
|
|
std::string FormatTitleVersion(u32 version, TitleVersionFormat format) {
|
|
|
std::array<u8, sizeof(u32)> bytes{};
|
|
std::array<u8, sizeof(u32)> bytes{};
|
|
|
bytes[0] = version % SINGLE_BYTE_MODULUS;
|
|
bytes[0] = version % SINGLE_BYTE_MODULUS;
|
|
@@ -34,16 +46,6 @@ std::string FormatTitleVersion(u32 version, TitleVersionFormat format) {
|
|
|
return fmt::format("v{}.{}.{}", bytes[3], bytes[2], bytes[1]);
|
|
return fmt::format("v{}.{}.{}", bytes[3], bytes[2], bytes[1]);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-constexpr std::array<const char*, 3> PATCH_TYPE_NAMES{
|
|
|
|
|
- "Update",
|
|
|
|
|
- "LayeredFS",
|
|
|
|
|
- "DLC",
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-std::string FormatPatchTypeName(PatchType type) {
|
|
|
|
|
- return PATCH_TYPE_NAMES.at(static_cast<std::size_t>(type));
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
PatchManager::PatchManager(u64 title_id) : title_id(title_id) {}
|
|
PatchManager::PatchManager(u64 title_id) : title_id(title_id) {}
|
|
|
|
|
|
|
|
PatchManager::~PatchManager() = default;
|
|
PatchManager::~PatchManager() = default;
|
|
@@ -71,6 +73,79 @@ VirtualDir PatchManager::PatchExeFS(VirtualDir exefs) const {
|
|
|
return exefs;
|
|
return exefs;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+static std::vector<VirtualFile> CollectIPSPatches(const std::vector<VirtualDir>& patch_dirs,
|
|
|
|
|
+ const std::string& build_id) {
|
|
|
|
|
+ std::vector<VirtualFile> ips;
|
|
|
|
|
+ ips.reserve(patch_dirs.size());
|
|
|
|
|
+ for (const auto& subdir : patch_dirs) {
|
|
|
|
|
+ auto exefs_dir = subdir->GetSubdirectory("exefs");
|
|
|
|
|
+ if (exefs_dir != nullptr) {
|
|
|
|
|
+ for (const auto& file : exefs_dir->GetFiles()) {
|
|
|
|
|
+ if (file->GetExtension() != "ips")
|
|
|
|
|
+ continue;
|
|
|
|
|
+ auto name = file->GetName();
|
|
|
|
|
+ const auto p1 = name.substr(0, name.find('.'));
|
|
|
|
|
+ const auto this_build_id = p1.substr(0, p1.find_last_not_of('0') + 1);
|
|
|
|
|
+
|
|
|
|
|
+ if (build_id == this_build_id)
|
|
|
|
|
+ ips.push_back(file);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return ips;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+std::vector<u8> PatchManager::PatchNSO(const std::vector<u8>& nso) const {
|
|
|
|
|
+ if (nso.size() < 0x100)
|
|
|
|
|
+ return nso;
|
|
|
|
|
+
|
|
|
|
|
+ NSOBuildHeader header;
|
|
|
|
|
+ std::memcpy(&header, nso.data(), sizeof(NSOBuildHeader));
|
|
|
|
|
+
|
|
|
|
|
+ if (header.magic != Common::MakeMagic('N', 'S', 'O', '0'))
|
|
|
|
|
+ return nso;
|
|
|
|
|
+
|
|
|
|
|
+ const auto build_id_raw = Common::HexArrayToString(header.build_id);
|
|
|
|
|
+ const auto build_id = build_id_raw.substr(0, build_id_raw.find_last_not_of('0') + 1);
|
|
|
|
|
+
|
|
|
|
|
+ LOG_INFO(Loader, "Patching NSO for build_id={}", build_id);
|
|
|
|
|
+
|
|
|
|
|
+ const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
|
|
|
+ auto patch_dirs = load_dir->GetSubdirectories();
|
|
|
|
|
+ std::sort(patch_dirs.begin(), patch_dirs.end(),
|
|
|
|
|
+ [](const VirtualDir& l, const VirtualDir& r) { return l->GetName() < r->GetName(); });
|
|
|
|
|
+ const auto ips = CollectIPSPatches(patch_dirs, build_id);
|
|
|
|
|
+
|
|
|
|
|
+ auto out = nso;
|
|
|
|
|
+ for (const auto& ips_file : ips) {
|
|
|
|
|
+ LOG_INFO(Loader, " - Appling IPS patch from mod \"{}\"",
|
|
|
|
|
+ ips_file->GetContainingDirectory()->GetParentDirectory()->GetName());
|
|
|
|
|
+ const auto patched = PatchIPS(std::make_shared<VectorVfsFile>(out), ips_file);
|
|
|
|
|
+ if (patched != nullptr)
|
|
|
|
|
+ out = patched->ReadAllBytes();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ if (out.size() < 0x100)
|
|
|
|
|
+ return nso;
|
|
|
|
|
+ std::memcpy(out.data(), &header, sizeof(NSOBuildHeader));
|
|
|
|
|
+ return out;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+bool PatchManager::HasNSOPatch(const std::array<u8, 32>& build_id_) const {
|
|
|
|
|
+ const auto build_id_raw = Common::HexArrayToString(build_id_);
|
|
|
|
|
+ const auto build_id = build_id_raw.substr(0, build_id_raw.find_last_not_of('0') + 1);
|
|
|
|
|
+
|
|
|
|
|
+ LOG_INFO(Loader, "Querying NSO patch existence for build_id={}", build_id);
|
|
|
|
|
+
|
|
|
|
|
+ const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
|
|
|
+ auto patch_dirs = load_dir->GetSubdirectories();
|
|
|
|
|
+ std::sort(patch_dirs.begin(), patch_dirs.end(),
|
|
|
|
|
+ [](const VirtualDir& l, const VirtualDir& r) { return l->GetName() < r->GetName(); });
|
|
|
|
|
+
|
|
|
|
|
+ return !CollectIPSPatches(patch_dirs, build_id).empty();
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType type) {
|
|
static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType type) {
|
|
|
const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
const auto load_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
|
if (type != ContentRecordType::Program || load_dir == nullptr || load_dir->GetSize() <= 0) {
|
|
if (type != ContentRecordType::Program || load_dir == nullptr || load_dir->GetSize() <= 0) {
|
|
@@ -138,8 +213,19 @@ VirtualFile PatchManager::PatchRomFS(VirtualFile romfs, u64 ivfc_offset,
|
|
|
return romfs;
|
|
return romfs;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-std::map<PatchType, std::string> PatchManager::GetPatchVersionNames() const {
|
|
|
|
|
- std::map<PatchType, std::string> out;
|
|
|
|
|
|
|
+static void AppendCommaIfNotEmpty(std::string& to, const std::string& with) {
|
|
|
|
|
+ if (to.empty())
|
|
|
|
|
+ to += with;
|
|
|
|
|
+ else
|
|
|
|
|
+ to += ", " + with;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+static bool IsDirValidAndNonEmpty(const VirtualDir& dir) {
|
|
|
|
|
+ return dir != nullptr && (!dir->GetFiles().empty() || !dir->GetSubdirectories().empty());
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+std::map<std::string, std::string, std::less<>> PatchManager::GetPatchVersionNames() const {
|
|
|
|
|
+ std::map<std::string, std::string, std::less<>> out;
|
|
|
const auto installed = Service::FileSystem::GetUnionContents();
|
|
const auto installed = Service::FileSystem::GetUnionContents();
|
|
|
|
|
|
|
|
// Game Updates
|
|
// Game Updates
|
|
@@ -148,23 +234,36 @@ std::map<PatchType, std::string> PatchManager::GetPatchVersionNames() const {
|
|
|
auto [nacp, discard_icon_file] = update.GetControlMetadata();
|
|
auto [nacp, discard_icon_file] = update.GetControlMetadata();
|
|
|
|
|
|
|
|
if (nacp != nullptr) {
|
|
if (nacp != nullptr) {
|
|
|
- out[PatchType::Update] = nacp->GetVersionString();
|
|
|
|
|
|
|
+ out.insert_or_assign("Update", nacp->GetVersionString());
|
|
|
} else {
|
|
} else {
|
|
|
if (installed->HasEntry(update_tid, ContentRecordType::Program)) {
|
|
if (installed->HasEntry(update_tid, ContentRecordType::Program)) {
|
|
|
const auto meta_ver = installed->GetEntryVersion(update_tid);
|
|
const auto meta_ver = installed->GetEntryVersion(update_tid);
|
|
|
if (meta_ver == boost::none || meta_ver.get() == 0) {
|
|
if (meta_ver == boost::none || meta_ver.get() == 0) {
|
|
|
- out[PatchType::Update] = "";
|
|
|
|
|
|
|
+ out.insert_or_assign("Update", "");
|
|
|
} else {
|
|
} else {
|
|
|
- out[PatchType::Update] =
|
|
|
|
|
- FormatTitleVersion(meta_ver.get(), TitleVersionFormat::ThreeElements);
|
|
|
|
|
|
|
+ out.insert_or_assign(
|
|
|
|
|
+ "Update",
|
|
|
|
|
+ FormatTitleVersion(meta_ver.get(), TitleVersionFormat::ThreeElements));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- // LayeredFS
|
|
|
|
|
- const auto lfs_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
|
|
|
- if (lfs_dir != nullptr && lfs_dir->GetSize() > 0)
|
|
|
|
|
- out.insert_or_assign(PatchType::LayeredFS, "");
|
|
|
|
|
|
|
+ // General Mods (LayeredFS and IPS)
|
|
|
|
|
+ const auto mod_dir = Service::FileSystem::GetModificationLoadRoot(title_id);
|
|
|
|
|
+ if (mod_dir != nullptr && mod_dir->GetSize() > 0) {
|
|
|
|
|
+ for (const auto& mod : mod_dir->GetSubdirectories()) {
|
|
|
|
|
+ std::string types;
|
|
|
|
|
+ if (IsDirValidAndNonEmpty(mod->GetSubdirectory("exefs")))
|
|
|
|
|
+ AppendCommaIfNotEmpty(types, "IPS");
|
|
|
|
|
+ if (IsDirValidAndNonEmpty(mod->GetSubdirectory("romfs")))
|
|
|
|
|
+ AppendCommaIfNotEmpty(types, "LayeredFS");
|
|
|
|
|
+
|
|
|
|
|
+ if (types.empty())
|
|
|
|
|
+ continue;
|
|
|
|
|
+
|
|
|
|
|
+ out.insert_or_assign(mod->GetName(), types);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
// DLC
|
|
// DLC
|
|
|
const auto dlc_entries = installed->ListEntriesFilter(TitleType::AOC, ContentRecordType::Data);
|
|
const auto dlc_entries = installed->ListEntriesFilter(TitleType::AOC, ContentRecordType::Data);
|
|
@@ -186,7 +285,7 @@ std::map<PatchType, std::string> PatchManager::GetPatchVersionNames() const {
|
|
|
|
|
|
|
|
list += fmt::format("{}", dlc_match.back().title_id & 0x7FF);
|
|
list += fmt::format("{}", dlc_match.back().title_id & 0x7FF);
|
|
|
|
|
|
|
|
- out.insert_or_assign(PatchType::DLC, std::move(list));
|
|
|
|
|
|
|
+ out.insert_or_assign("DLC", std::move(list));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
return out;
|