| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- // Copyright 2014 Citra Emulator Project
- // Licensed under GPLv2 or any later version
- // Refer to the license.txt file included.
- #include <algorithm>
- #include <vector>
- #include "common/logging/log.h"
- #include "core/file_sys/archive_romfs.h"
- #include "core/hle/kernel/process.h"
- #include "core/hle/kernel/resource_limit.h"
- #include "core/hle/service/fs/archive.h"
- #include "core/loader/elf.h"
- #include "core/loader/ncch.h"
- #include "core/memory.h"
- #include "3dsx.h"
- namespace Loader {
- /*
- * File layout:
- * - File header
- * - Code, rodata and data relocation table headers
- * - Code segment
- * - Rodata segment
- * - Loadable (non-BSS) part of the data segment
- * - Code relocation table
- * - Rodata relocation table
- * - Data relocation table
- *
- * Memory layout before relocations are applied:
- * [0..codeSegSize) -> code segment
- * [codeSegSize..rodataSegSize) -> rodata segment
- * [rodataSegSize..dataSegSize) -> data segment
- *
- * Memory layout after relocations are applied: well, however the loader sets it up :)
- * The entrypoint is always the start of the code segment.
- * The BSS section must be cleared manually by the application.
- */
- enum THREEDSX_Error {
- ERROR_NONE = 0,
- ERROR_READ = 1,
- ERROR_FILE = 2,
- ERROR_ALLOC = 3
- };
- static const u32 RELOCBUFSIZE = 512;
- static const unsigned int NUM_SEGMENTS = 3;
- // File header
- #pragma pack(1)
- struct THREEDSX_Header
- {
- u32 magic;
- u16 header_size, reloc_hdr_size;
- u32 format_ver;
- u32 flags;
- // Sizes of the code, rodata and data segments +
- // size of the BSS section (uninitialized latter half of the data segment)
- u32 code_seg_size, rodata_seg_size, data_seg_size, bss_size;
- };
- // Relocation header: all fields (even extra unknown fields) are guaranteed to be relocation counts.
- struct THREEDSX_RelocHdr
- {
- // # of absolute relocations (that is, fix address to post-relocation memory layout)
- u32 cross_segment_absolute;
- // # of cross-segment relative relocations (that is, 32bit signed offsets that need to be patched)
- u32 cross_segment_relative;
- // more?
- // Relocations are written in this order:
- // - Absolute relocations
- // - Relative relocations
- };
- // Relocation entry: from the current pointer, skip X words and patch Y words
- struct THREEDSX_Reloc
- {
- u16 skip, patch;
- };
- #pragma pack()
- struct THREEloadinfo
- {
- u8* seg_ptrs[3]; // code, rodata & data
- u32 seg_addrs[3];
- u32 seg_sizes[3];
- };
- static u32 TranslateAddr(u32 addr, const THREEloadinfo *loadinfo, u32* offsets)
- {
- if (addr < offsets[0])
- return loadinfo->seg_addrs[0] + addr;
- if (addr < offsets[1])
- return loadinfo->seg_addrs[1] + addr - offsets[0];
- return loadinfo->seg_addrs[2] + addr - offsets[1];
- }
- using Kernel::SharedPtr;
- using Kernel::CodeSet;
- static THREEDSX_Error Load3DSXFile(FileUtil::IOFile& file, u32 base_addr, SharedPtr<CodeSet>* out_codeset)
- {
- if (!file.IsOpen())
- return ERROR_FILE;
- // Reset read pointer in case this file has been read before.
- file.Seek(0, SEEK_SET);
- THREEDSX_Header hdr;
- if (file.ReadBytes(&hdr, sizeof(hdr)) != sizeof(hdr))
- return ERROR_READ;
- THREEloadinfo loadinfo;
- //loadinfo segments must be a multiple of 0x1000
- loadinfo.seg_sizes[0] = (hdr.code_seg_size + 0xFFF) &~0xFFF;
- loadinfo.seg_sizes[1] = (hdr.rodata_seg_size + 0xFFF) &~0xFFF;
- loadinfo.seg_sizes[2] = (hdr.data_seg_size + 0xFFF) &~0xFFF;
- u32 offsets[2] = { loadinfo.seg_sizes[0], loadinfo.seg_sizes[0] + loadinfo.seg_sizes[1] };
- u32 n_reloc_tables = hdr.reloc_hdr_size / sizeof(u32);
- std::vector<u8> program_image(loadinfo.seg_sizes[0] + loadinfo.seg_sizes[1] + loadinfo.seg_sizes[2]);
- loadinfo.seg_addrs[0] = base_addr;
- loadinfo.seg_addrs[1] = loadinfo.seg_addrs[0] + loadinfo.seg_sizes[0];
- loadinfo.seg_addrs[2] = loadinfo.seg_addrs[1] + loadinfo.seg_sizes[1];
- loadinfo.seg_ptrs[0] = program_image.data();
- loadinfo.seg_ptrs[1] = loadinfo.seg_ptrs[0] + loadinfo.seg_sizes[0];
- loadinfo.seg_ptrs[2] = loadinfo.seg_ptrs[1] + loadinfo.seg_sizes[1];
- // Skip header for future compatibility
- file.Seek(hdr.header_size, SEEK_SET);
- // Read the relocation headers
- std::vector<u32> relocs(n_reloc_tables * NUM_SEGMENTS);
- for (unsigned int current_segment = 0; current_segment < NUM_SEGMENTS; ++current_segment) {
- size_t size = n_reloc_tables * sizeof(u32);
- if (file.ReadBytes(&relocs[current_segment * n_reloc_tables], size) != size)
- return ERROR_READ;
- }
- // Read the segments
- if (file.ReadBytes(loadinfo.seg_ptrs[0], hdr.code_seg_size) != hdr.code_seg_size)
- return ERROR_READ;
- if (file.ReadBytes(loadinfo.seg_ptrs[1], hdr.rodata_seg_size) != hdr.rodata_seg_size)
- return ERROR_READ;
- if (file.ReadBytes(loadinfo.seg_ptrs[2], hdr.data_seg_size - hdr.bss_size) != hdr.data_seg_size - hdr.bss_size)
- return ERROR_READ;
- // BSS clear
- memset((char*)loadinfo.seg_ptrs[2] + hdr.data_seg_size - hdr.bss_size, 0, hdr.bss_size);
- // Relocate the segments
- for (unsigned int current_segment = 0; current_segment < NUM_SEGMENTS; ++current_segment) {
- for (unsigned current_segment_reloc_table = 0; current_segment_reloc_table < n_reloc_tables; current_segment_reloc_table++) {
- u32 n_relocs = relocs[current_segment * n_reloc_tables + current_segment_reloc_table];
- if (current_segment_reloc_table >= 2) {
- // We are not using this table - ignore it because we don't know what it dose
- file.Seek(n_relocs*sizeof(THREEDSX_Reloc), SEEK_CUR);
- continue;
- }
- THREEDSX_Reloc reloc_table[RELOCBUFSIZE];
- u32* pos = (u32*)loadinfo.seg_ptrs[current_segment];
- const u32* end_pos = pos + (loadinfo.seg_sizes[current_segment] / 4);
- while (n_relocs) {
- u32 remaining = std::min(RELOCBUFSIZE, n_relocs);
- n_relocs -= remaining;
- if (file.ReadBytes(reloc_table, remaining * sizeof(THREEDSX_Reloc)) != remaining * sizeof(THREEDSX_Reloc))
- return ERROR_READ;
- for (unsigned current_inprogress = 0; current_inprogress < remaining && pos < end_pos; current_inprogress++) {
- const auto& table = reloc_table[current_inprogress];
- LOG_TRACE(Loader, "(t=%d,skip=%u,patch=%u)\n", current_segment_reloc_table,
- (u32)table.skip, (u32)table.patch);
- pos += table.skip;
- s32 num_patches = table.patch;
- while (0 < num_patches && pos < end_pos) {
- u32 in_addr = (u8*)pos - program_image.data();
- u32 addr = TranslateAddr(*pos, &loadinfo, offsets);
- LOG_TRACE(Loader, "Patching %08X <-- rel(%08X,%d) (%08X)\n",
- base_addr + in_addr, addr, current_segment_reloc_table, *pos);
- switch (current_segment_reloc_table) {
- case 0:
- *pos = (addr);
- break;
- case 1:
- *pos = (addr - in_addr);
- break;
- default:
- break; //this should never happen
- }
- pos++;
- num_patches--;
- }
- }
- }
- }
- }
- // Create the CodeSet
- SharedPtr<CodeSet> code_set = CodeSet::Create("", 0);
- code_set->code.offset = loadinfo.seg_ptrs[0] - program_image.data();
- code_set->code.addr = loadinfo.seg_addrs[0];
- code_set->code.size = loadinfo.seg_sizes[0];
- code_set->rodata.offset = loadinfo.seg_ptrs[1] - program_image.data();
- code_set->rodata.addr = loadinfo.seg_addrs[1];
- code_set->rodata.size = loadinfo.seg_sizes[1];
- code_set->data.offset = loadinfo.seg_ptrs[2] - program_image.data();
- code_set->data.addr = loadinfo.seg_addrs[2];
- code_set->data.size = loadinfo.seg_sizes[2];
- code_set->entrypoint = code_set->code.addr;
- code_set->memory = std::make_shared<std::vector<u8>>(std::move(program_image));
- LOG_DEBUG(Loader, "code size: 0x%X", loadinfo.seg_sizes[0]);
- LOG_DEBUG(Loader, "rodata size: 0x%X", loadinfo.seg_sizes[1]);
- LOG_DEBUG(Loader, "data size: 0x%X (including 0x%X of bss)", loadinfo.seg_sizes[2], hdr.bss_size);
- *out_codeset = code_set;
- return ERROR_NONE;
- }
- FileType AppLoader_THREEDSX::IdentifyType(FileUtil::IOFile& file) {
- u32 magic;
- file.Seek(0, SEEK_SET);
- if (1 != file.ReadArray<u32>(&magic, 1))
- return FileType::Error;
- if (MakeMagic('3', 'D', 'S', 'X') == magic)
- return FileType::THREEDSX;
- return FileType::Error;
- }
- ResultStatus AppLoader_THREEDSX::Load() {
- if (is_loaded)
- return ResultStatus::ErrorAlreadyLoaded;
- if (!file.IsOpen())
- return ResultStatus::Error;
- SharedPtr<CodeSet> codeset;
- if (Load3DSXFile(file, Memory::PROCESS_IMAGE_VADDR, &codeset) != ERROR_NONE)
- return ResultStatus::Error;
- codeset->name = filename;
- Kernel::g_current_process = Kernel::Process::Create(std::move(codeset));
- Kernel::g_current_process->svc_access_mask.set();
- Kernel::g_current_process->address_mappings = default_address_mappings;
- // Attach the default resource limit (APPLICATION) to the process
- Kernel::g_current_process->resource_limit = Kernel::ResourceLimit::GetForCategory(Kernel::ResourceLimitCategory::APPLICATION);
- Kernel::g_current_process->Run(48, Kernel::DEFAULT_STACK_SIZE);
- is_loaded = true;
- return ResultStatus::Success;
- }
- } // namespace Loader
|