2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-10-06 03:30:08 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-20 04:10:21 +00:00
|
|
|
#include <utility>
|
2017-10-06 03:30:08 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2017-10-15 04:11:38 +00:00
|
|
|
#include "common/common_funcs.h"
|
2018-01-20 20:48:37 +00:00
|
|
|
#include "common/file_util.h"
|
2017-10-06 03:30:08 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/swap.h"
|
2018-03-13 21:49:59 +00:00
|
|
|
#include "core/core.h"
|
2018-07-23 16:33:24 +00:00
|
|
|
#include "core/file_sys/control_metadata.h"
|
|
|
|
#include "core/file_sys/vfs_offset.h"
|
2018-07-13 03:22:59 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2017-10-06 03:30:08 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
|
|
|
#include "core/hle/kernel/resource_limit.h"
|
|
|
|
#include "core/loader/nro.h"
|
|
|
|
#include "core/memory.h"
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
struct NroSegmentHeader {
|
|
|
|
u32_le offset;
|
|
|
|
u32_le size;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(NroSegmentHeader) == 0x8, "NroSegmentHeader has incorrect size.");
|
|
|
|
|
|
|
|
struct NroHeader {
|
|
|
|
INSERT_PADDING_BYTES(0x4);
|
|
|
|
u32_le module_header_offset;
|
|
|
|
INSERT_PADDING_BYTES(0x8);
|
|
|
|
u32_le magic;
|
|
|
|
INSERT_PADDING_BYTES(0x4);
|
|
|
|
u32_le file_size;
|
|
|
|
INSERT_PADDING_BYTES(0x4);
|
|
|
|
std::array<NroSegmentHeader, 3> segments; // Text, RoData, Data (in that order)
|
|
|
|
u32_le bss_size;
|
|
|
|
INSERT_PADDING_BYTES(0x44);
|
|
|
|
};
|
|
|
|
static_assert(sizeof(NroHeader) == 0x80, "NroHeader has incorrect size.");
|
|
|
|
|
|
|
|
struct ModHeader {
|
|
|
|
u32_le magic;
|
|
|
|
u32_le dynamic_offset;
|
|
|
|
u32_le bss_start_offset;
|
|
|
|
u32_le bss_end_offset;
|
|
|
|
u32_le unwind_start_offset;
|
|
|
|
u32_le unwind_end_offset;
|
|
|
|
u32_le module_offset; // Offset to runtime-generated module object. typically equal to .bss base
|
|
|
|
};
|
|
|
|
static_assert(sizeof(ModHeader) == 0x1c, "ModHeader has incorrect size.");
|
|
|
|
|
2018-07-23 16:33:24 +00:00
|
|
|
struct AssetSection {
|
|
|
|
u64_le offset;
|
|
|
|
u64_le size;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(AssetSection) == 0x10, "AssetSection has incorrect size.");
|
|
|
|
|
|
|
|
struct AssetHeader {
|
|
|
|
u32_le magic;
|
|
|
|
u32_le format_version;
|
|
|
|
AssetSection icon;
|
|
|
|
AssetSection nacp;
|
|
|
|
AssetSection romfs;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(AssetHeader) == 0x38, "AssetHeader has incorrect size.");
|
|
|
|
|
|
|
|
AppLoader_NRO::AppLoader_NRO(FileSys::VirtualFile file) : AppLoader(file) {
|
|
|
|
NroHeader nro_header{};
|
2018-07-23 21:24:27 +00:00
|
|
|
if (file->ReadObject(&nro_header) != sizeof(NroHeader)) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
2018-07-23 16:33:24 +00:00
|
|
|
|
|
|
|
if (file->GetSize() >= nro_header.file_size + sizeof(AssetHeader)) {
|
2018-07-23 21:24:27 +00:00
|
|
|
const u64 offset = nro_header.file_size;
|
2018-07-23 16:33:24 +00:00
|
|
|
AssetHeader asset_header{};
|
2018-07-23 21:24:27 +00:00
|
|
|
if (file->ReadObject(&asset_header, offset) != sizeof(AssetHeader)) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
2018-07-23 16:33:24 +00:00
|
|
|
|
2018-07-23 21:24:27 +00:00
|
|
|
if (asset_header.format_version != 0) {
|
2018-07-23 16:33:24 +00:00
|
|
|
LOG_WARNING(Loader,
|
|
|
|
"NRO Asset Header has format {}, currently supported format is 0. If "
|
|
|
|
"strange glitches occur with metadata, check NRO assets.",
|
|
|
|
asset_header.format_version);
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (asset_header.magic != Common::MakeMagic('A', 'S', 'E', 'T')) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
2018-07-23 16:33:24 +00:00
|
|
|
|
|
|
|
if (asset_header.nacp.size > 0) {
|
|
|
|
nacp = std::make_unique<FileSys::NACP>(std::make_shared<FileSys::OffsetVfsFile>(
|
|
|
|
file, asset_header.nacp.size, offset + asset_header.nacp.offset, "Control.nacp"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (asset_header.romfs.size > 0) {
|
|
|
|
romfs = std::make_shared<FileSys::OffsetVfsFile>(
|
|
|
|
file, asset_header.romfs.size, offset + asset_header.romfs.offset, "game.romfs");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (asset_header.icon.size > 0) {
|
|
|
|
icon_data = file->ReadBytes(asset_header.icon.size, offset + asset_header.icon.offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-20 20:48:37 +00:00
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
FileType AppLoader_NRO::IdentifyType(const FileSys::VirtualFile& file) {
|
2017-10-06 03:30:08 +00:00
|
|
|
// Read NSO header
|
|
|
|
NroHeader nro_header{};
|
2018-07-19 01:07:11 +00:00
|
|
|
if (sizeof(NroHeader) != file->ReadObject(&nro_header)) {
|
2017-10-06 03:30:08 +00:00
|
|
|
return FileType::Error;
|
|
|
|
}
|
2017-10-15 04:11:38 +00:00
|
|
|
if (nro_header.magic == Common::MakeMagic('N', 'R', 'O', '0')) {
|
2017-10-06 03:30:08 +00:00
|
|
|
return FileType::NRO;
|
|
|
|
}
|
|
|
|
return FileType::Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr u32 PageAlignSize(u32 size) {
|
|
|
|
return (size + Memory::PAGE_MASK) & ~Memory::PAGE_MASK;
|
|
|
|
}
|
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
bool AppLoader_NRO::LoadNro(FileSys::VirtualFile file, VAddr load_base) {
|
2017-10-06 03:30:08 +00:00
|
|
|
// Read NSO header
|
|
|
|
NroHeader nro_header{};
|
2018-07-19 01:07:11 +00:00
|
|
|
if (sizeof(NroHeader) != file->ReadObject(&nro_header)) {
|
2017-10-06 03:30:08 +00:00
|
|
|
return {};
|
|
|
|
}
|
2017-10-15 04:11:38 +00:00
|
|
|
if (nro_header.magic != Common::MakeMagic('N', 'R', 'O', '0')) {
|
2017-10-06 03:30:08 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build program image
|
2018-02-27 15:22:15 +00:00
|
|
|
Kernel::SharedPtr<Kernel::CodeSet> codeset = Kernel::CodeSet::Create("");
|
2018-07-19 01:07:11 +00:00
|
|
|
std::vector<u8> program_image = file->ReadBytes(PageAlignSize(nro_header.file_size));
|
2018-07-23 21:24:27 +00:00
|
|
|
if (program_image.size() != PageAlignSize(nro_header.file_size)) {
|
2018-07-19 01:07:11 +00:00
|
|
|
return {};
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
2017-10-06 03:30:08 +00:00
|
|
|
|
2018-07-19 00:29:04 +00:00
|
|
|
for (std::size_t i = 0; i < nro_header.segments.size(); ++i) {
|
2017-10-06 03:30:08 +00:00
|
|
|
codeset->segments[i].addr = nro_header.segments[i].offset;
|
|
|
|
codeset->segments[i].offset = nro_header.segments[i].offset;
|
|
|
|
codeset->segments[i].size = PageAlignSize(nro_header.segments[i].size);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read MOD header
|
|
|
|
ModHeader mod_header{};
|
2018-01-17 23:16:09 +00:00
|
|
|
// Default .bss to NRO header bss size if MOD0 section doesn't exist
|
|
|
|
u32 bss_size{PageAlignSize(nro_header.bss_size)};
|
2017-10-06 03:30:08 +00:00
|
|
|
std::memcpy(&mod_header, program_image.data() + nro_header.module_header_offset,
|
|
|
|
sizeof(ModHeader));
|
2017-10-15 04:11:38 +00:00
|
|
|
const bool has_mod_header{mod_header.magic == Common::MakeMagic('M', 'O', 'D', '0')};
|
2017-10-06 03:30:08 +00:00
|
|
|
if (has_mod_header) {
|
|
|
|
// Resize program image to include .bss section and page align each section
|
|
|
|
bss_size = PageAlignSize(mod_header.bss_end_offset - mod_header.bss_start_offset);
|
|
|
|
}
|
2018-01-17 23:16:09 +00:00
|
|
|
codeset->data.size += bss_size;
|
2018-01-18 20:18:43 +00:00
|
|
|
program_image.resize(static_cast<u32>(program_image.size()) + bss_size);
|
2017-10-06 03:30:08 +00:00
|
|
|
|
|
|
|
// Load codeset for current process
|
2018-07-19 01:07:11 +00:00
|
|
|
codeset->name = file->GetName();
|
2017-10-06 03:30:08 +00:00
|
|
|
codeset->memory = std::make_shared<std::vector<u8>>(std::move(program_image));
|
2018-03-13 21:49:59 +00:00
|
|
|
Core::CurrentProcess()->LoadModule(codeset, load_base);
|
2017-10-06 03:30:08 +00:00
|
|
|
|
2018-07-13 03:22:59 +00:00
|
|
|
// Register module with GDBStub
|
|
|
|
GDBStub::RegisterModule(codeset->name, load_base, load_base);
|
|
|
|
|
2017-10-06 03:30:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-10 03:56:20 +00:00
|
|
|
ResultStatus AppLoader_NRO::Load(Kernel::SharedPtr<Kernel::Process>& process) {
|
2017-10-06 03:30:08 +00:00
|
|
|
if (is_loaded) {
|
|
|
|
return ResultStatus::ErrorAlreadyLoaded;
|
|
|
|
}
|
|
|
|
|
2018-01-17 23:16:09 +00:00
|
|
|
// Load NRO
|
|
|
|
static constexpr VAddr base_addr{Memory::PROCESS_IMAGE_VADDR};
|
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
if (!LoadNro(file, base_addr)) {
|
2017-10-06 03:30:08 +00:00
|
|
|
return ResultStatus::ErrorInvalidFormat;
|
|
|
|
}
|
|
|
|
|
2017-10-10 03:56:20 +00:00
|
|
|
process->svc_access_mask.set();
|
|
|
|
process->address_mappings = default_address_mappings;
|
|
|
|
process->resource_limit =
|
2017-10-06 03:30:08 +00:00
|
|
|
Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION);
|
2018-04-20 22:41:11 +00:00
|
|
|
process->Run(base_addr, THREADPRIO_DEFAULT, Memory::DEFAULT_STACK_SIZE);
|
2017-10-06 03:30:08 +00:00
|
|
|
|
|
|
|
is_loaded = true;
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
2018-07-23 16:33:24 +00:00
|
|
|
ResultStatus AppLoader_NRO::ReadIcon(std::vector<u8>& buffer) {
|
2018-07-23 21:24:27 +00:00
|
|
|
if (icon_data.empty()) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return ResultStatus::ErrorNotUsed;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 16:33:24 +00:00
|
|
|
buffer = icon_data;
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultStatus AppLoader_NRO::ReadProgramId(u64& out_program_id) {
|
2018-07-23 21:24:27 +00:00
|
|
|
if (nacp == nullptr) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return ResultStatus::ErrorNotUsed;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 16:33:24 +00:00
|
|
|
out_program_id = nacp->GetTitleId();
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultStatus AppLoader_NRO::ReadRomFS(FileSys::VirtualFile& dir) {
|
2018-07-23 21:24:27 +00:00
|
|
|
if (romfs == nullptr) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return ResultStatus::ErrorNotUsed;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 16:33:24 +00:00
|
|
|
dir = romfs;
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultStatus AppLoader_NRO::ReadTitle(std::string& title) {
|
2018-07-23 21:24:27 +00:00
|
|
|
if (nacp == nullptr) {
|
2018-07-23 16:33:24 +00:00
|
|
|
return ResultStatus::ErrorNotUsed;
|
2018-07-23 21:24:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 16:33:24 +00:00
|
|
|
title = nacp->GetApplicationName();
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
2017-10-06 03:30:08 +00:00
|
|
|
} // namespace Loader
|