2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-09-24 15:08:31 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-02-14 05:57:06 +00:00
|
|
|
#include <cinttypes>
|
2017-09-24 15:08:31 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <lz4.h>
|
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"
|
2018-12-23 02:31:07 +00:00
|
|
|
#include "common/hex_util.h"
|
2017-09-24 15:08:31 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/swap.h"
|
2018-12-23 02:31:07 +00:00
|
|
|
#include "core/core.h"
|
2018-09-30 02:16:09 +00:00
|
|
|
#include "core/file_sys/patch_manager.h"
|
2018-07-13 03:22:59 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2019-03-20 16:40:09 +00:00
|
|
|
#include "core/hle/kernel/code_set.h"
|
2017-09-24 15:08:31 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2018-09-25 00:01:45 +00:00
|
|
|
#include "core/hle/kernel/vm_manager.h"
|
2017-09-24 15:08:31 +00:00
|
|
|
#include "core/loader/nso.h"
|
|
|
|
#include "core/memory.h"
|
2018-09-30 18:04:48 +00:00
|
|
|
#include "core/settings.h"
|
2017-09-24 15:08:31 +00:00
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
2019-03-22 17:04:41 +00:00
|
|
|
struct MODHeader {
|
2017-09-30 18:15:09 +00:00
|
|
|
u32_le magic;
|
|
|
|
u32_le dynamic_offset;
|
|
|
|
u32_le bss_start_offset;
|
|
|
|
u32_le bss_end_offset;
|
|
|
|
u32_le eh_frame_hdr_start_offset;
|
|
|
|
u32_le eh_frame_hdr_end_offset;
|
|
|
|
u32_le module_offset; // Offset to runtime-generated module object. typically equal to .bss base
|
|
|
|
};
|
2019-03-22 17:04:41 +00:00
|
|
|
static_assert(sizeof(MODHeader) == 0x1c, "MODHeader has incorrect size.");
|
|
|
|
|
|
|
|
bool NSOHeader::IsSegmentCompressed(size_t segment_num) const {
|
|
|
|
ASSERT_MSG(segment_num < 3, "Invalid segment {}", segment_num);
|
|
|
|
return ((flags >> segment_num) & 1) != 0;
|
|
|
|
}
|
2017-09-30 18:15:09 +00:00
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
AppLoader_NSO::AppLoader_NSO(FileSys::VirtualFile file) : AppLoader(std::move(file)) {}
|
2018-01-20 20:48:37 +00:00
|
|
|
|
2018-07-19 01:07:11 +00:00
|
|
|
FileType AppLoader_NSO::IdentifyType(const FileSys::VirtualFile& file) {
|
2017-09-30 18:15:09 +00:00
|
|
|
u32 magic = 0;
|
2018-07-19 16:40:06 +00:00
|
|
|
if (file->ReadObject(&magic) != sizeof(magic)) {
|
|
|
|
return FileType::Error;
|
|
|
|
}
|
2017-09-30 18:15:09 +00:00
|
|
|
|
2018-07-19 16:40:06 +00:00
|
|
|
if (Common::MakeMagic('N', 'S', 'O', '0') != magic) {
|
|
|
|
return FileType::Error;
|
2017-09-30 18:15:09 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 16:40:06 +00:00
|
|
|
return FileType::NSO;
|
2017-09-30 18:15:09 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 15:16:23 +00:00
|
|
|
static std::vector<u8> DecompressSegment(const std::vector<u8>& compressed_data,
|
2019-03-22 17:04:41 +00:00
|
|
|
const NSOSegmentHeader& header) {
|
2018-07-19 00:24:33 +00:00
|
|
|
std::vector<u8> uncompressed_data(header.size);
|
2018-07-20 00:51:15 +00:00
|
|
|
const int bytes_uncompressed =
|
|
|
|
LZ4_decompress_safe(reinterpret_cast<const char*>(compressed_data.data()),
|
|
|
|
reinterpret_cast<char*>(uncompressed_data.data()),
|
|
|
|
static_cast<int>(compressed_data.size()), header.size);
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2018-07-20 00:51:15 +00:00
|
|
|
ASSERT_MSG(bytes_uncompressed == static_cast<int>(header.size) &&
|
|
|
|
bytes_uncompressed == static_cast<int>(uncompressed_data.size()),
|
2018-06-21 15:16:23 +00:00
|
|
|
"{} != {} != {}", bytes_uncompressed, header.size, uncompressed_data.size());
|
|
|
|
|
|
|
|
return uncompressed_data;
|
|
|
|
}
|
|
|
|
|
2017-09-30 18:15:09 +00:00
|
|
|
static constexpr u32 PageAlignSize(u32 size) {
|
|
|
|
return (size + Memory::PAGE_MASK) & ~Memory::PAGE_MASK;
|
|
|
|
}
|
2017-09-24 15:08:31 +00:00
|
|
|
|
2018-12-03 03:24:43 +00:00
|
|
|
std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::Process& process,
|
|
|
|
const FileSys::VfsFile& file, VAddr load_base,
|
2018-10-15 01:41:58 +00:00
|
|
|
bool should_pass_arguments,
|
|
|
|
std::optional<FileSys::PatchManager> pm) {
|
2019-03-22 17:04:41 +00:00
|
|
|
if (file.GetSize() < sizeof(NSOHeader)) {
|
2018-07-19 01:07:11 +00:00
|
|
|
return {};
|
2019-03-22 17:04:41 +00:00
|
|
|
}
|
2018-07-19 01:07:11 +00:00
|
|
|
|
2019-03-22 17:04:41 +00:00
|
|
|
NSOHeader nso_header{};
|
|
|
|
if (sizeof(NSOHeader) != file.ReadObject(&nso_header)) {
|
2018-07-19 01:07:11 +00:00
|
|
|
return {};
|
2019-03-22 17:04:41 +00:00
|
|
|
}
|
2018-07-08 03:24:51 +00:00
|
|
|
|
2019-03-22 17:04:41 +00:00
|
|
|
if (nso_header.magic != Common::MakeMagic('N', 'S', 'O', '0')) {
|
2018-06-21 15:16:23 +00:00
|
|
|
return {};
|
2019-03-22 17:04:41 +00:00
|
|
|
}
|
2018-06-21 15:16:23 +00:00
|
|
|
|
2018-07-08 03:24:51 +00:00
|
|
|
// Build program image
|
2018-10-12 15:36:31 +00:00
|
|
|
Kernel::CodeSet codeset;
|
2018-07-08 03:24:51 +00:00
|
|
|
std::vector<u8> program_image;
|
2018-07-19 00:21:25 +00:00
|
|
|
for (std::size_t i = 0; i < nso_header.segments.size(); ++i) {
|
2018-09-21 04:39:30 +00:00
|
|
|
std::vector<u8> data =
|
2018-10-15 00:36:57 +00:00
|
|
|
file.ReadBytes(nso_header.segments_compressed_size[i], nso_header.segments[i].offset);
|
2018-09-21 04:39:30 +00:00
|
|
|
if (nso_header.IsSegmentCompressed(i)) {
|
|
|
|
data = DecompressSegment(data, nso_header.segments[i]);
|
|
|
|
}
|
2018-07-08 03:24:51 +00:00
|
|
|
program_image.resize(nso_header.segments[i].location);
|
|
|
|
program_image.insert(program_image.end(), data.begin(), data.end());
|
2018-10-12 15:36:31 +00:00
|
|
|
codeset.segments[i].addr = nso_header.segments[i].location;
|
|
|
|
codeset.segments[i].offset = nso_header.segments[i].location;
|
|
|
|
codeset.segments[i].size = PageAlignSize(static_cast<u32>(data.size()));
|
2018-07-08 03:24:51 +00:00
|
|
|
}
|
|
|
|
|
2018-09-30 18:04:48 +00:00
|
|
|
if (should_pass_arguments && !Settings::values.program_args.empty()) {
|
|
|
|
const auto arg_data = Settings::values.program_args;
|
2018-10-12 15:36:31 +00:00
|
|
|
codeset.DataSegment().size += NSO_ARGUMENT_DATA_ALLOCATION_SIZE;
|
2018-10-05 17:52:07 +00:00
|
|
|
NSOArgumentHeader args_header{
|
|
|
|
NSO_ARGUMENT_DATA_ALLOCATION_SIZE, static_cast<u32_le>(arg_data.size()), {}};
|
|
|
|
const auto end_offset = program_image.size();
|
|
|
|
program_image.resize(static_cast<u32>(program_image.size()) +
|
|
|
|
NSO_ARGUMENT_DATA_ALLOCATION_SIZE);
|
|
|
|
std::memcpy(program_image.data() + end_offset, &args_header, sizeof(NSOArgumentHeader));
|
|
|
|
std::memcpy(program_image.data() + end_offset + sizeof(NSOArgumentHeader), arg_data.data(),
|
2018-09-30 18:04:48 +00:00
|
|
|
arg_data.size());
|
|
|
|
}
|
|
|
|
|
2018-07-08 03:24:51 +00:00
|
|
|
// MOD header pointer is at .text offset + 4
|
|
|
|
u32 module_offset;
|
|
|
|
std::memcpy(&module_offset, program_image.data() + 4, sizeof(u32));
|
|
|
|
|
|
|
|
// Read MOD header
|
2019-03-22 17:04:41 +00:00
|
|
|
MODHeader mod_header{};
|
2018-07-08 03:24:51 +00:00
|
|
|
// Default .bss to size in segment header if MOD0 section doesn't exist
|
|
|
|
u32 bss_size{PageAlignSize(nso_header.segments[2].bss_size)};
|
2019-03-22 17:04:41 +00:00
|
|
|
std::memcpy(&mod_header, program_image.data() + module_offset, sizeof(MODHeader));
|
2018-07-08 03:24:51 +00:00
|
|
|
const bool has_mod_header{mod_header.magic == Common::MakeMagic('M', 'O', 'D', '0')};
|
|
|
|
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-10-12 15:36:31 +00:00
|
|
|
codeset.DataSegment().size += bss_size;
|
2018-07-08 03:24:51 +00:00
|
|
|
const u32 image_size{PageAlignSize(static_cast<u32>(program_image.size()) + bss_size)};
|
|
|
|
program_image.resize(image_size);
|
|
|
|
|
2018-09-30 02:16:09 +00:00
|
|
|
// Apply patches if necessary
|
2018-10-29 20:10:16 +00:00
|
|
|
if (pm && (pm->HasNSOPatch(nso_header.build_id) || Settings::values.dump_nso)) {
|
2019-03-22 17:18:48 +00:00
|
|
|
std::vector<u8> pi_header(sizeof(NSOHeader) + program_image.size());
|
|
|
|
pi_header.insert(pi_header.begin(), reinterpret_cast<u8*>(&nso_header),
|
|
|
|
reinterpret_cast<u8*>(&nso_header) + sizeof(NSOHeader));
|
|
|
|
pi_header.insert(pi_header.begin() + sizeof(NSOHeader), program_image.begin(),
|
|
|
|
program_image.end());
|
2018-09-30 02:16:09 +00:00
|
|
|
|
|
|
|
pi_header = pm->PatchNSO(pi_header);
|
|
|
|
|
2019-03-22 17:18:48 +00:00
|
|
|
std::copy(pi_header.begin() + sizeof(NSOHeader), pi_header.end(), program_image.begin());
|
2018-09-30 02:16:09 +00:00
|
|
|
}
|
|
|
|
|
2018-12-23 02:31:07 +00:00
|
|
|
// Apply cheats if they exist and the program has a valid title ID
|
|
|
|
if (pm) {
|
|
|
|
const auto cheats = pm->CreateCheatList(nso_header.build_id);
|
|
|
|
if (!cheats.empty()) {
|
|
|
|
Core::System::GetInstance().RegisterCheatList(
|
2019-03-05 15:09:27 +00:00
|
|
|
cheats, Common::HexArrayToString(nso_header.build_id), load_base,
|
|
|
|
load_base + program_image.size());
|
2018-12-23 02:31:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-08 03:24:51 +00:00
|
|
|
// Load codeset for current process
|
2018-10-12 15:36:31 +00:00
|
|
|
codeset.memory = std::make_shared<std::vector<u8>>(std::move(program_image));
|
2018-12-03 03:24:43 +00:00
|
|
|
process.LoadModule(std::move(codeset), load_base);
|
2018-07-08 03:24:51 +00:00
|
|
|
|
2018-07-13 03:22:59 +00:00
|
|
|
// Register module with GDBStub
|
2018-10-15 00:36:57 +00:00
|
|
|
GDBStub::RegisterModule(file.GetName(), load_base, load_base);
|
2018-07-13 03:22:59 +00:00
|
|
|
|
2018-07-08 03:24:51 +00:00
|
|
|
return load_base + image_size;
|
|
|
|
}
|
|
|
|
|
2018-09-29 19:57:40 +00:00
|
|
|
ResultStatus AppLoader_NSO::Load(Kernel::Process& process) {
|
2017-09-30 18:15:09 +00:00
|
|
|
if (is_loaded) {
|
2017-09-24 15:08:31 +00:00
|
|
|
return ResultStatus::ErrorAlreadyLoaded;
|
2017-09-30 18:15:09 +00:00
|
|
|
}
|
2017-09-24 15:08:31 +00:00
|
|
|
|
2018-01-20 19:20:04 +00:00
|
|
|
// Load module
|
2018-09-29 22:47:00 +00:00
|
|
|
const VAddr base_address = process.VMManager().GetCodeRegionBaseAddress();
|
2018-12-03 03:24:43 +00:00
|
|
|
if (!LoadModule(process, *file, base_address, true)) {
|
2018-10-15 01:41:58 +00:00
|
|
|
return ResultStatus::ErrorLoadingNSO;
|
|
|
|
}
|
2018-09-25 00:01:45 +00:00
|
|
|
LOG_DEBUG(Loader, "loaded module {} @ 0x{:X}", file->GetName(), base_address);
|
2017-09-24 15:08:31 +00:00
|
|
|
|
2018-09-29 19:57:40 +00:00
|
|
|
process.Run(base_address, Kernel::THREADPRIO_DEFAULT, Memory::DEFAULT_STACK_SIZE);
|
2017-09-24 15:08:31 +00:00
|
|
|
|
|
|
|
is_loaded = true;
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Loader
|