mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
77c684c114
* Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename
97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <vector>
|
|
|
|
#include "common/file_util.h"
|
|
#include "common/logging/log.h"
|
|
#include "core/core.h"
|
|
#include "core/file_sys/content_archive.h"
|
|
#include "core/file_sys/program_metadata.h"
|
|
#include "core/hle/kernel/process.h"
|
|
#include "core/hle/kernel/resource_limit.h"
|
|
#include "core/hle/service/filesystem/filesystem.h"
|
|
#include "core/loader/nca.h"
|
|
#include "core/loader/nso.h"
|
|
#include "core/memory.h"
|
|
|
|
namespace Loader {
|
|
|
|
AppLoader_NCA::AppLoader_NCA(FileSys::VirtualFile file) : AppLoader(file) {}
|
|
|
|
FileType AppLoader_NCA::IdentifyType(const FileSys::VirtualFile& file) {
|
|
// TODO(DarkLordZach): Assuming everything is decrypted. Add crypto support.
|
|
FileSys::NCAHeader header{};
|
|
if (sizeof(FileSys::NCAHeader) != file->ReadObject(&header))
|
|
return FileType::Error;
|
|
|
|
if (IsValidNCA(header) && header.content_type == FileSys::NCAContentType::Program)
|
|
return FileType::NCA;
|
|
|
|
return FileType::Error;
|
|
}
|
|
|
|
ResultStatus AppLoader_NCA::Load(Kernel::SharedPtr<Kernel::Process>& process) {
|
|
if (is_loaded) {
|
|
return ResultStatus::ErrorAlreadyLoaded;
|
|
}
|
|
|
|
nca = std::make_unique<FileSys::NCA>(file);
|
|
ResultStatus result = nca->GetStatus();
|
|
if (result != ResultStatus::Success) {
|
|
return result;
|
|
}
|
|
|
|
if (nca->GetType() != FileSys::NCAContentType::Program)
|
|
return ResultStatus::ErrorInvalidFormat;
|
|
|
|
auto exefs = nca->GetExeFS();
|
|
|
|
if (exefs == nullptr)
|
|
return ResultStatus::ErrorInvalidFormat;
|
|
|
|
result = metadata.Load(exefs->GetFile("main.npdm"));
|
|
if (result != ResultStatus::Success) {
|
|
return result;
|
|
}
|
|
metadata.Print();
|
|
|
|
const FileSys::ProgramAddressSpaceType arch_bits{metadata.GetAddressSpaceType()};
|
|
if (arch_bits == FileSys::ProgramAddressSpaceType::Is32Bit) {
|
|
return ResultStatus::ErrorUnsupportedArch;
|
|
}
|
|
|
|
VAddr next_load_addr{Memory::PROCESS_IMAGE_VADDR};
|
|
for (const auto& module : {"rtld", "main", "subsdk0", "subsdk1", "subsdk2", "subsdk3",
|
|
"subsdk4", "subsdk5", "subsdk6", "subsdk7", "sdk"}) {
|
|
const VAddr load_addr = next_load_addr;
|
|
|
|
next_load_addr = AppLoader_NSO::LoadModule(exefs->GetFile(module), load_addr);
|
|
if (next_load_addr) {
|
|
LOG_DEBUG(Loader, "loaded module {} @ 0x{:X}", module, load_addr);
|
|
} else {
|
|
next_load_addr = load_addr;
|
|
}
|
|
}
|
|
|
|
process->program_id = metadata.GetTitleID();
|
|
process->svc_access_mask.set();
|
|
process->address_mappings = default_address_mappings;
|
|
process->resource_limit =
|
|
Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION);
|
|
process->Run(Memory::PROCESS_IMAGE_VADDR, metadata.GetMainThreadPriority(),
|
|
metadata.GetMainThreadStackSize());
|
|
|
|
is_loaded = true;
|
|
|
|
const auto romfs = nca->GetRomFS();
|
|
if (romfs != nullptr)
|
|
Service::FileSystem::RegisterRomFS(romfs);
|
|
|
|
return ResultStatus::Success;
|
|
}
|
|
|
|
AppLoader_NCA::~AppLoader_NCA() = default;
|
|
|
|
} // namespace Loader
|