2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/file_util.h"
|
|
|
|
|
|
|
|
#include "core/loader.h"
|
|
|
|
#include "core/system.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/file_sys/directory_file_system.h"
|
|
|
|
#include "core/elf/elf_reader.h"
|
2014-05-14 01:58:51 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-04-22 03:09:10 +00:00
|
|
|
#include "core/mem_map.h"
|
|
|
|
|
2013-09-20 03:21:22 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-10-06 13:39:11 +00:00
|
|
|
/// Loads an extracted CXI from a directory
|
|
|
|
bool LoadDirectory_CXI(std::string &filename) {
|
2014-04-01 02:23:55 +00:00
|
|
|
std::string full_path = filename;
|
|
|
|
std::string path, file, extension;
|
|
|
|
SplitPath(ReplaceAll(full_path, "\\", "/"), &path, &file, &extension);
|
2013-10-01 23:09:49 +00:00
|
|
|
#if EMU_PLATFORM == PLATFORM_WINDOWS
|
2014-04-01 02:23:55 +00:00
|
|
|
path = ReplaceAll(path, "/", "\\");
|
2013-10-01 23:09:49 +00:00
|
|
|
#endif
|
2014-04-01 02:23:55 +00:00
|
|
|
DirectoryFileSystem *fs = new DirectoryFileSystem(&System::g_ctr_file_system, path);
|
|
|
|
System::g_ctr_file_system.Mount("fs:", fs);
|
2013-10-01 23:09:49 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
std::string final_name = "fs:/" + file + extension;
|
|
|
|
File::IOFile f(filename, "rb");
|
2013-10-01 23:09:49 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
if (f.IsOpen()) {
|
|
|
|
// TODO(ShizZy): read here to memory....
|
|
|
|
}
|
|
|
|
ERROR_LOG(TIME, "Unimplemented function!");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Loads a CTR ELF file
|
|
|
|
bool Load_ELF(std::string &filename) {
|
|
|
|
std::string full_path = filename;
|
|
|
|
std::string path, file, extension;
|
|
|
|
SplitPath(ReplaceAll(full_path, "\\", "/"), &path, &file, &extension);
|
|
|
|
#if EMU_PLATFORM == PLATFORM_WINDOWS
|
|
|
|
path = ReplaceAll(path, "/", "\\");
|
|
|
|
#endif
|
|
|
|
File::IOFile f(filename, "rb");
|
|
|
|
|
|
|
|
if (f.IsOpen()) {
|
|
|
|
u64 size = f.GetSize();
|
|
|
|
u8* buffer = new u8[size];
|
|
|
|
ElfReader* elf_reader = NULL;
|
|
|
|
|
|
|
|
f.ReadBytes(buffer, size);
|
|
|
|
|
|
|
|
elf_reader = new ElfReader(buffer);
|
|
|
|
elf_reader->LoadInto(0x00100000);
|
|
|
|
|
2014-05-14 01:58:51 +00:00
|
|
|
__KernelLoadExec(elf_reader->GetEntryPoint());
|
2014-04-05 02:26:25 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
delete[] buffer;
|
|
|
|
delete elf_reader;
|
2014-04-05 02:26:25 +00:00
|
|
|
} else {
|
2014-04-01 02:23:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
f.Close();
|
|
|
|
|
|
|
|
return true;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
2014-04-22 03:09:10 +00:00
|
|
|
/// Loads a Launcher DAT file
|
|
|
|
bool Load_DAT(std::string &filename) {
|
|
|
|
std::string full_path = filename;
|
|
|
|
std::string path, file, extension;
|
|
|
|
SplitPath(ReplaceAll(full_path, "\\", "/"), &path, &file, &extension);
|
|
|
|
#if EMU_PLATFORM == PLATFORM_WINDOWS
|
|
|
|
path = ReplaceAll(path, "/", "\\");
|
|
|
|
#endif
|
|
|
|
File::IOFile f(filename, "rb");
|
|
|
|
|
|
|
|
if (f.IsOpen()) {
|
|
|
|
u64 size = f.GetSize();
|
|
|
|
u8* buffer = new u8[size];
|
|
|
|
|
|
|
|
f.ReadBytes(buffer, size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* (mattvail) We shouldn't really support this type of file
|
|
|
|
* but for the sake of making it easier... we'll temporarily/hackishly
|
|
|
|
* allow it. No sense in making a proper reader for this.
|
|
|
|
*/
|
2014-05-14 01:58:51 +00:00
|
|
|
u32 entry_point = 0x00100000; // write to same entrypoint as elf
|
2014-05-01 03:50:14 +00:00
|
|
|
u32 payload_offset = 0xA150;
|
2014-04-22 03:09:10 +00:00
|
|
|
|
|
|
|
const u8 *src = &buffer[payload_offset];
|
2014-05-14 01:58:51 +00:00
|
|
|
u8 *dst = Memory::GetPointer(entry_point);
|
2014-04-22 03:09:10 +00:00
|
|
|
u32 srcSize = size - payload_offset; //just load everything...
|
|
|
|
u32 *s = (u32*)src;
|
|
|
|
u32 *d = (u32*)dst;
|
|
|
|
for (int j = 0; j < (int)(srcSize + 3) / 4; j++)
|
|
|
|
{
|
|
|
|
*d++ = (*s++);
|
|
|
|
}
|
|
|
|
|
2014-05-14 01:58:51 +00:00
|
|
|
__KernelLoadExec(entry_point);
|
|
|
|
|
2014-04-22 03:09:10 +00:00
|
|
|
|
|
|
|
delete[] buffer;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
f.Close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-01 03:50:14 +00:00
|
|
|
|
|
|
|
/// Loads a CTR BIN file extracted from an ExeFS
|
|
|
|
bool Load_BIN(std::string &filename) {
|
|
|
|
std::string full_path = filename;
|
|
|
|
std::string path, file, extension;
|
|
|
|
SplitPath(ReplaceAll(full_path, "\\", "/"), &path, &file, &extension);
|
|
|
|
#if EMU_PLATFORM == PLATFORM_WINDOWS
|
|
|
|
path = ReplaceAll(path, "/", "\\");
|
|
|
|
#endif
|
|
|
|
File::IOFile f(filename, "rb");
|
|
|
|
|
|
|
|
if (f.IsOpen()) {
|
|
|
|
u64 size = f.GetSize();
|
|
|
|
u8* buffer = new u8[size];
|
|
|
|
|
|
|
|
f.ReadBytes(buffer, size);
|
|
|
|
|
2014-05-14 01:58:51 +00:00
|
|
|
u32 entry_point = 0x00100000; // Hardcoded, read from exheader
|
2014-05-01 03:50:14 +00:00
|
|
|
|
|
|
|
const u8 *src = buffer;
|
2014-05-14 01:58:51 +00:00
|
|
|
u8 *dst = Memory::GetPointer(entry_point);
|
2014-05-01 03:50:14 +00:00
|
|
|
u32 srcSize = size;
|
|
|
|
u32 *s = (u32*)src;
|
|
|
|
u32 *d = (u32*)dst;
|
|
|
|
for (int j = 0; j < (int)(srcSize + 3) / 4; j++)
|
|
|
|
{
|
|
|
|
*d++ = (*s++);
|
|
|
|
}
|
|
|
|
|
2014-05-14 01:58:51 +00:00
|
|
|
__KernelLoadExec(entry_point);
|
2014-05-01 03:50:14 +00:00
|
|
|
|
|
|
|
delete[] buffer;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
f.Close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-20 03:21:22 +00:00
|
|
|
namespace Loader {
|
|
|
|
|
2013-10-01 23:09:49 +00:00
|
|
|
bool IsBootableDirectory() {
|
2014-04-01 02:23:55 +00:00
|
|
|
ERROR_LOG(TIME, "Unimplemented function!");
|
|
|
|
return true;
|
2013-10-01 23:09:49 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 03:21:22 +00:00
|
|
|
/**
|
|
|
|
* Identifies the type of a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
|
|
|
* @todo (ShizZy) this function sucks... make it actually check file contents etc.
|
|
|
|
* @return FileType of file
|
|
|
|
*/
|
|
|
|
FileType IdentifyFile(std::string &filename) {
|
2014-04-01 02:23:55 +00:00
|
|
|
if (filename.size() == 0) {
|
|
|
|
ERROR_LOG(LOADER, "invalid filename %s", filename.c_str());
|
|
|
|
return FILETYPE_ERROR;
|
|
|
|
}
|
|
|
|
std::string extension = filename.size() >= 5 ? filename.substr(filename.size() - 4) : "";
|
|
|
|
|
|
|
|
if (File::IsDirectory(filename)) {
|
|
|
|
if (IsBootableDirectory()) {
|
|
|
|
return FILETYPE_DIRECTORY_CXI;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return FILETYPE_NORMAL_DIRECTORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".elf")) {
|
|
|
|
return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-05-15 22:54:57 +00:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".axf")) {
|
|
|
|
return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-05-01 03:50:14 +00:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".bin")) {
|
|
|
|
return FILETYPE_CTR_BIN;
|
|
|
|
}
|
2014-04-22 03:09:10 +00:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".dat")) {
|
|
|
|
return FILETYPE_LAUNCHER_DAT;
|
|
|
|
}
|
2014-04-01 02:23:55 +00:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".zip")) {
|
|
|
|
return FILETYPE_ARCHIVE_ZIP;
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".rar")) {
|
|
|
|
return FILETYPE_ARCHIVE_RAR;
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".r00")) {
|
|
|
|
return FILETYPE_ARCHIVE_RAR;
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".r01")) {
|
|
|
|
return FILETYPE_ARCHIVE_RAR;
|
|
|
|
}
|
|
|
|
return FILETYPE_UNKNOWN;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies and loads a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
|
|
|
* @param error_string Point to string to put error message if an error has occurred
|
|
|
|
* @return True on success, otherwise false
|
|
|
|
*/
|
|
|
|
bool LoadFile(std::string &filename, std::string *error_string) {
|
2014-04-01 02:23:55 +00:00
|
|
|
INFO_LOG(LOADER, "Identifying file...");
|
|
|
|
|
|
|
|
// Note that this can modify filename!
|
|
|
|
switch (IdentifyFile(filename)) {
|
|
|
|
|
|
|
|
case FILETYPE_CTR_ELF:
|
|
|
|
return Load_ELF(filename);
|
2014-04-22 03:09:10 +00:00
|
|
|
|
2014-05-01 03:50:14 +00:00
|
|
|
case FILETYPE_CTR_BIN:
|
|
|
|
return Load_BIN(filename);
|
|
|
|
|
2014-04-22 03:09:10 +00:00
|
|
|
case FILETYPE_LAUNCHER_DAT:
|
|
|
|
return Load_DAT(filename);
|
2013-10-06 13:39:11 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
case FILETYPE_DIRECTORY_CXI:
|
|
|
|
return LoadDirectory_CXI(filename);
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
case FILETYPE_ERROR:
|
|
|
|
ERROR_LOG(LOADER, "Could not read file");
|
|
|
|
*error_string = "Error reading file";
|
|
|
|
break;
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
case FILETYPE_ARCHIVE_RAR:
|
2013-09-20 03:21:22 +00:00
|
|
|
#ifdef WIN32
|
2014-04-01 02:23:55 +00:00
|
|
|
*error_string = "RAR file detected (Require WINRAR)";
|
2013-09-20 03:21:22 +00:00
|
|
|
#else
|
2014-04-01 02:23:55 +00:00
|
|
|
*error_string = "RAR file detected (Require UnRAR)";
|
2013-09-20 03:21:22 +00:00
|
|
|
#endif
|
2014-04-01 02:23:55 +00:00
|
|
|
break;
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
case FILETYPE_ARCHIVE_ZIP:
|
2013-09-20 03:21:22 +00:00
|
|
|
#ifdef WIN32
|
2014-04-01 02:23:55 +00:00
|
|
|
*error_string = "ZIP file detected (Require WINRAR)";
|
2013-09-20 03:21:22 +00:00
|
|
|
#else
|
2014-04-01 02:23:55 +00:00
|
|
|
*error_string = "ZIP file detected (Require UnRAR)";
|
2013-09-20 03:21:22 +00:00
|
|
|
#endif
|
2014-04-01 02:23:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FILETYPE_NORMAL_DIRECTORY:
|
|
|
|
ERROR_LOG(LOADER, "Just a directory.");
|
|
|
|
*error_string = "Just a directory.";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FILETYPE_UNKNOWN_BIN:
|
|
|
|
case FILETYPE_UNKNOWN_ELF:
|
|
|
|
case FILETYPE_UNKNOWN:
|
|
|
|
default:
|
|
|
|
ERROR_LOG(LOADER, "Failed to identify file");
|
2014-05-01 03:50:14 +00:00
|
|
|
*error_string = " Failed to identify file";
|
2014-04-01 02:23:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|