2014-04-09 01:15:46 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2014-06-27 22:18:56 +02:00
|
|
|
#include "core/file_sys/archive_romfs.h"
|
2014-06-17 00:03:13 +02:00
|
|
|
#include "core/loader/loader.h"
|
2014-06-17 05:05:10 +02:00
|
|
|
#include "core/loader/elf.h"
|
2014-06-17 04:57:09 +02:00
|
|
|
#include "core/loader/ncch.h"
|
2014-06-27 22:18:56 +02:00
|
|
|
#include "core/hle/kernel/archive.h"
|
2014-08-27 06:04:26 +02:00
|
|
|
#include "core/mem_map.h"
|
2014-04-22 05:09:10 +02:00
|
|
|
|
2013-09-20 05:21:22 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2014-06-19 23:46:05 +02:00
|
|
|
FileType IdentifyFile(const std::string &filename) {
|
2014-04-01 04:23:55 +02:00
|
|
|
if (filename.size() == 0) {
|
|
|
|
ERROR_LOG(LOADER, "invalid filename %s", filename.c_str());
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::Error;
|
2014-04-01 04:23:55 +02:00
|
|
|
}
|
|
|
|
|
2014-09-07 09:49:52 +02:00
|
|
|
size_t extension_loc = filename.find_last_of('.');
|
|
|
|
std::string extension = extension_loc != std::string::npos ? filename.substr(extension_loc) : "";
|
|
|
|
|
|
|
|
if (LowerStr(extension) == ".elf") {
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::ELF; // TODO(bunnei): Do some filetype checking :p
|
2014-04-01 04:23:55 +02:00
|
|
|
}
|
2014-09-07 09:49:52 +02:00
|
|
|
else if (LowerStr(extension) == ".axf") {
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::ELF; // TODO(bunnei): Do some filetype checking :p
|
2014-05-16 00:54:57 +02:00
|
|
|
}
|
2014-09-07 09:49:52 +02:00
|
|
|
else if (LowerStr(extension) == ".cxi") {
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::CXI; // TODO(bunnei): Do some filetype checking :p
|
2014-06-16 23:53:25 +02:00
|
|
|
}
|
2014-09-07 09:49:52 +02:00
|
|
|
else if (LowerStr(extension) == ".cci") {
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::CCI; // TODO(bunnei): Do some filetype checking :p
|
2014-06-16 23:53:25 +02:00
|
|
|
}
|
2014-09-07 09:49:52 +02:00
|
|
|
else if (LowerStr(extension) == ".bin") {
|
2014-08-27 06:04:26 +02:00
|
|
|
return FileType::BIN; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::Unknown;
|
2013-09-20 05:21:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies and loads a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
2014-06-19 00:58:09 +02:00
|
|
|
* @return ResultStatus result of function
|
2013-09-20 05:21:22 +02:00
|
|
|
*/
|
2014-06-19 23:46:05 +02:00
|
|
|
ResultStatus LoadFile(const std::string& filename) {
|
2014-06-19 00:58:09 +02:00
|
|
|
INFO_LOG(LOADER, "Loading file %s...", filename.c_str());
|
2014-04-01 04:23:55 +02:00
|
|
|
|
|
|
|
switch (IdentifyFile(filename)) {
|
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
// Standard ELF file format...
|
2014-06-27 22:18:56 +02:00
|
|
|
case FileType::ELF:
|
2014-06-19 00:58:09 +02:00
|
|
|
return AppLoader_ELF(filename).Load();
|
2014-05-01 05:50:14 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
// NCCH/NCSD container formats...
|
|
|
|
case FileType::CXI:
|
|
|
|
case FileType::CCI: {
|
2014-06-27 22:18:56 +02:00
|
|
|
AppLoader_NCCH app_loader(filename);
|
|
|
|
|
|
|
|
// Load application and RomFS
|
|
|
|
if (ResultStatus::Success == app_loader.Load()) {
|
|
|
|
Kernel::CreateArchive(new FileSys::Archive_RomFS(app_loader), "RomFS");
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
break;
|
2014-06-19 00:58:09 +02:00
|
|
|
}
|
2014-06-17 04:57:09 +02:00
|
|
|
|
2014-08-27 06:04:26 +02:00
|
|
|
// Raw BIN file format...
|
|
|
|
case FileType::BIN:
|
|
|
|
{
|
|
|
|
INFO_LOG(LOADER, "Loading BIN file %s...", filename.c_str());
|
|
|
|
|
|
|
|
File::IOFile file(filename, "rb");
|
|
|
|
|
|
|
|
if (file.IsOpen()) {
|
|
|
|
file.ReadBytes(Memory::GetPointer(Memory::EXEFS_CODE_VADDR), (size_t)file.GetSize());
|
|
|
|
Kernel::LoadExec(Memory::EXEFS_CODE_VADDR);
|
|
|
|
} else {
|
|
|
|
return ResultStatus::Error;
|
|
|
|
}
|
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
// Error occurred durring IdentifyFile...
|
|
|
|
case FileType::Error:
|
|
|
|
|
|
|
|
// IdentifyFile could know identify file type...
|
|
|
|
case FileType::Unknown:
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2014-04-01 04:23:55 +02:00
|
|
|
default:
|
2014-06-19 00:58:09 +02:00
|
|
|
return ResultStatus::ErrorInvalidFormat;
|
2014-04-01 04:23:55 +02:00
|
|
|
}
|
2014-06-19 00:58:09 +02:00
|
|
|
return ResultStatus::Error;
|
2013-09-20 05:21:22 +02:00
|
|
|
}
|
|
|
|
|
2014-06-17 05:18:10 +02:00
|
|
|
} // namespace Loader
|