2014-04-08 19:15:46 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
#include <memory>
|
|
|
|
|
2014-06-27 16:18:56 -04:00
|
|
|
#include "core/file_sys/archive_romfs.h"
|
2014-06-16 18:03:13 -04:00
|
|
|
#include "core/loader/loader.h"
|
2014-06-16 23:05:10 -04:00
|
|
|
#include "core/loader/elf.h"
|
2014-06-16 22:57:09 -04:00
|
|
|
#include "core/loader/ncch.h"
|
2014-06-27 16:18:56 -04:00
|
|
|
#include "core/hle/kernel/archive.h"
|
2014-08-27 00:04:26 -04:00
|
|
|
#include "core/mem_map.h"
|
2014-04-21 23:09:10 -04:00
|
|
|
|
2013-09-19 23:21:22 -04: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 17:46:05 -04:00
|
|
|
FileType IdentifyFile(const std::string &filename) {
|
2014-03-31 22:23:55 -04:00
|
|
|
if (filename.size() == 0) {
|
|
|
|
ERROR_LOG(LOADER, "invalid filename %s", filename.c_str());
|
2014-06-18 18:58:09 -04:00
|
|
|
return FileType::Error;
|
2014-03-31 22:23:55 -04:00
|
|
|
}
|
|
|
|
std::string extension = filename.size() >= 5 ? filename.substr(filename.size() - 4) : "";
|
|
|
|
|
2014-06-16 23:18:10 -04:00
|
|
|
if (!strcasecmp(extension.c_str(), ".elf")) {
|
2014-06-18 18:58:09 -04:00
|
|
|
return FileType::ELF; // TODO(bunnei): Do some filetype checking :p
|
2014-03-31 22:23:55 -04:00
|
|
|
}
|
2014-05-15 18:54:57 -04:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".axf")) {
|
2014-06-18 18:58:09 -04:00
|
|
|
return FileType::ELF; // TODO(bunnei): Do some filetype checking :p
|
2014-05-15 18:54:57 -04:00
|
|
|
}
|
2014-06-16 17:53:25 -04:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".cxi")) {
|
2014-06-18 18:58:09 -04:00
|
|
|
return FileType::CXI; // TODO(bunnei): Do some filetype checking :p
|
2014-06-16 17:53:25 -04:00
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".cci")) {
|
2014-06-18 18:58:09 -04:00
|
|
|
return FileType::CCI; // TODO(bunnei): Do some filetype checking :p
|
2014-06-16 17:53:25 -04:00
|
|
|
}
|
2014-08-27 00:04:26 -04:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".bin")) {
|
|
|
|
return FileType::BIN; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-06-18 18:58:09 -04:00
|
|
|
return FileType::Unknown;
|
2013-09-19 23:21:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies and loads a bootable file
|
|
|
|
* @param filename String filename of bootable file
|
2014-06-18 18:58:09 -04:00
|
|
|
* @return ResultStatus result of function
|
2013-09-19 23:21:22 -04:00
|
|
|
*/
|
2014-06-19 17:46:05 -04:00
|
|
|
ResultStatus LoadFile(const std::string& filename) {
|
2014-06-18 18:58:09 -04:00
|
|
|
INFO_LOG(LOADER, "Loading file %s...", filename.c_str());
|
2014-03-31 22:23:55 -04:00
|
|
|
|
|
|
|
switch (IdentifyFile(filename)) {
|
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
// Standard ELF file format...
|
2014-06-27 16:18:56 -04:00
|
|
|
case FileType::ELF:
|
2014-06-18 18:58:09 -04:00
|
|
|
return AppLoader_ELF(filename).Load();
|
2014-04-30 23:50:14 -04:00
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
// NCCH/NCSD container formats...
|
|
|
|
case FileType::CXI:
|
|
|
|
case FileType::CCI: {
|
2014-06-27 16:18:56 -04: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-18 18:58:09 -04:00
|
|
|
}
|
2014-06-16 22:57:09 -04:00
|
|
|
|
2014-08-27 00:04:26 -04: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-18 18:58:09 -04:00
|
|
|
// Error occurred durring IdentifyFile...
|
|
|
|
case FileType::Error:
|
|
|
|
|
|
|
|
// IdentifyFile could know identify file type...
|
|
|
|
case FileType::Unknown:
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2014-03-31 22:23:55 -04:00
|
|
|
default:
|
2014-06-18 18:58:09 -04:00
|
|
|
return ResultStatus::ErrorInvalidFormat;
|
2014-03-31 22:23:55 -04:00
|
|
|
}
|
2014-06-18 18:58:09 -04:00
|
|
|
return ResultStatus::Error;
|
2013-09-19 23:21:22 -04:00
|
|
|
}
|
|
|
|
|
2014-06-16 23:18:10 -04:00
|
|
|
} // namespace Loader
|