2018-06-21 15:16:23 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-20 04:10:21 +00:00
|
|
|
#include <utility>
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
#include "common/file_util.h"
|
|
|
|
#include "common/logging/log.h"
|
2019-04-22 21:56:56 +00:00
|
|
|
#include "core/core.h"
|
2018-07-19 01:07:11 +00:00
|
|
|
#include "core/file_sys/content_archive.h"
|
2018-08-21 00:36:36 +00:00
|
|
|
#include "core/file_sys/romfs_factory.h"
|
2018-06-21 15:16:23 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
|
|
|
#include "core/hle/service/filesystem/filesystem.h"
|
2018-08-15 02:37:12 +00:00
|
|
|
#include "core/loader/deconstructed_rom_directory.h"
|
2018-06-21 15:16:23 +00:00
|
|
|
#include "core/loader/nca.h"
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
2018-08-05 22:27:05 +00:00
|
|
|
AppLoader_NCA::AppLoader_NCA(FileSys::VirtualFile file_)
|
|
|
|
: AppLoader(std::move(file_)), nca(std::make_unique<FileSys::NCA>(file)) {}
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2018-08-15 02:37:12 +00:00
|
|
|
AppLoader_NCA::~AppLoader_NCA() = default;
|
|
|
|
|
2021-04-27 16:05:34 +00:00
|
|
|
FileType AppLoader_NCA::IdentifyType(const FileSys::VirtualFile& nca_file) {
|
|
|
|
const FileSys::NCA nca(nca_file);
|
2018-07-08 03:24:51 +00:00
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
if (nca.GetStatus() == ResultStatus::Success &&
|
2021-04-27 16:05:34 +00:00
|
|
|
nca.GetType() == FileSys::NCAContentType::Program) {
|
2018-06-21 15:16:23 +00:00
|
|
|
return FileType::NCA;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
2018-06-21 15:16:23 +00:00
|
|
|
|
|
|
|
return FileType::Error;
|
|
|
|
}
|
|
|
|
|
2020-09-16 12:19:25 +00:00
|
|
|
AppLoader_NCA::LoadResult AppLoader_NCA::Load(Kernel::Process& process, Core::System& system) {
|
2018-06-21 15:16:23 +00:00
|
|
|
if (is_loaded) {
|
2019-04-09 21:03:04 +00:00
|
|
|
return {ResultStatus::ErrorAlreadyLoaded, {}};
|
2018-06-21 15:16:23 +00:00
|
|
|
}
|
|
|
|
|
2018-08-05 22:27:05 +00:00
|
|
|
const auto result = nca->GetStatus();
|
2018-06-21 15:16:23 +00:00
|
|
|
if (result != ResultStatus::Success) {
|
2019-04-09 21:03:04 +00:00
|
|
|
return {result, {}};
|
2018-06-21 15:16:23 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 21:03:04 +00:00
|
|
|
if (nca->GetType() != FileSys::NCAContentType::Program) {
|
|
|
|
return {ResultStatus::ErrorNCANotProgram, {}};
|
|
|
|
}
|
2018-07-19 01:07:11 +00:00
|
|
|
|
2018-08-05 22:27:05 +00:00
|
|
|
const auto exefs = nca->GetExeFS();
|
2019-04-09 21:03:04 +00:00
|
|
|
if (exefs == nullptr) {
|
|
|
|
return {ResultStatus::ErrorNoExeFS, {}};
|
|
|
|
}
|
2018-07-19 01:07:11 +00:00
|
|
|
|
2018-08-25 23:04:48 +00:00
|
|
|
directory_loader = std::make_unique<AppLoader_DeconstructedRomDirectory>(exefs, true);
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2020-09-16 12:19:25 +00:00
|
|
|
const auto load_result = directory_loader->Load(process, system);
|
2019-04-09 21:03:04 +00:00
|
|
|
if (load_result.first != ResultStatus::Success) {
|
2018-08-05 22:27:05 +00:00
|
|
|
return load_result;
|
2019-04-09 21:03:04 +00:00
|
|
|
}
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2019-04-09 21:03:04 +00:00
|
|
|
if (nca->GetRomFS() != nullptr && nca->GetRomFS()->GetSize() > 0) {
|
2020-09-16 22:29:24 +00:00
|
|
|
system.GetFileSystemController().RegisterRomFS(std::make_unique<FileSys::RomFSFactory>(
|
|
|
|
*this, system.GetContentProvider(), system.GetFileSystemController()));
|
2019-04-09 21:03:04 +00:00
|
|
|
}
|
2018-07-08 03:24:51 +00:00
|
|
|
|
2018-06-21 15:16:23 +00:00
|
|
|
is_loaded = true;
|
2019-04-09 21:03:04 +00:00
|
|
|
return load_result;
|
2018-07-08 03:24:51 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
ResultStatus AppLoader_NCA::ReadRomFS(FileSys::VirtualFile& dir) {
|
2021-04-27 16:05:34 +00:00
|
|
|
if (nca == nullptr) {
|
2018-08-10 01:06:44 +00:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nca->GetRomFS() == nullptr || nca->GetRomFS()->GetSize() == 0) {
|
2018-08-10 01:06:44 +00:00
|
|
|
return ResultStatus::ErrorNoRomFS;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
dir = nca->GetRomFS();
|
2018-06-21 15:16:23 +00:00
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
2018-08-29 02:37:42 +00:00
|
|
|
u64 AppLoader_NCA::ReadRomFSIVFCOffset() const {
|
2021-04-27 16:05:34 +00:00
|
|
|
if (nca == nullptr) {
|
2018-08-29 02:37:42 +00:00
|
|
|
return 0;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2018-08-29 02:37:42 +00:00
|
|
|
return nca->GetBaseIVFCOffset();
|
|
|
|
}
|
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
ResultStatus AppLoader_NCA::ReadProgramId(u64& out_program_id) {
|
2021-04-27 16:05:34 +00:00
|
|
|
if (nca == nullptr || nca->GetStatus() != ResultStatus::Success) {
|
2018-08-10 01:06:44 +00:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 03:55:23 +00:00
|
|
|
out_program_id = nca->GetTitleId();
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
2019-01-15 20:56:52 +00:00
|
|
|
ResultStatus AppLoader_NCA::ReadBanner(std::vector<u8>& buffer) {
|
2021-04-27 16:05:34 +00:00
|
|
|
if (nca == nullptr || nca->GetStatus() != ResultStatus::Success) {
|
2019-01-15 20:56:52 +00:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 20:56:52 +00:00
|
|
|
const auto logo = nca->GetLogoPartition();
|
2021-04-27 16:05:34 +00:00
|
|
|
if (logo == nullptr) {
|
2019-01-15 20:56:52 +00:00
|
|
|
return ResultStatus::ErrorNoIcon;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 20:56:52 +00:00
|
|
|
buffer = logo->GetFile("StartupMovie.gif")->ReadAllBytes();
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultStatus AppLoader_NCA::ReadLogo(std::vector<u8>& buffer) {
|
2021-04-27 16:05:34 +00:00
|
|
|
if (nca == nullptr || nca->GetStatus() != ResultStatus::Success) {
|
2019-01-15 20:56:52 +00:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 20:56:52 +00:00
|
|
|
const auto logo = nca->GetLogoPartition();
|
2021-04-27 16:05:34 +00:00
|
|
|
if (logo == nullptr) {
|
2019-01-15 20:56:52 +00:00
|
|
|
return ResultStatus::ErrorNoIcon;
|
2021-04-27 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 20:56:52 +00:00
|
|
|
buffer = logo->GetFile("NintendoLogo.png")->ReadAllBytes();
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
2019-05-26 15:40:41 +00:00
|
|
|
|
|
|
|
ResultStatus AppLoader_NCA::ReadNSOModules(Modules& modules) {
|
|
|
|
if (directory_loader == nullptr) {
|
|
|
|
return ResultStatus::ErrorNotInitialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
return directory_loader->ReadNSOModules(modules);
|
|
|
|
}
|
|
|
|
|
2018-06-21 15:16:23 +00:00
|
|
|
} // namespace Loader
|