2014-04-08 16:15:46 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 16:15:46 -07:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-19 20:21:22 -07:00
|
|
|
|
2014-12-19 21:21:23 -08:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "common/make_unique.h"
|
2014-06-18 15:58:09 -07:00
|
|
|
|
2014-06-27 13:18:56 -07:00
|
|
|
#include "core/file_sys/archive_romfs.h"
|
2014-12-07 12:47:06 -08:00
|
|
|
#include "core/loader/3dsx.h"
|
2014-06-16 20:05:10 -07:00
|
|
|
#include "core/loader/elf.h"
|
2014-06-16 19:57:09 -07:00
|
|
|
#include "core/loader/ncch.h"
|
2014-12-13 22:32:45 -08:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2014-08-26 21:04:26 -07:00
|
|
|
#include "core/mem_map.h"
|
2014-04-21 20:09:10 -07:00
|
|
|
|
2013-09-19 20:21:22 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies the type of a bootable file
|
2015-01-06 15:10:13 -08:00
|
|
|
* @param file open file
|
|
|
|
* @return FileType of file
|
|
|
|
*/
|
|
|
|
static FileType IdentifyFile(FileUtil::IOFile& file) {
|
|
|
|
FileType type;
|
|
|
|
|
|
|
|
#define CHECK_TYPE(loader) \
|
|
|
|
type = AppLoader_##loader::IdentifyType(file); \
|
|
|
|
if (FileType::Error != type) \
|
|
|
|
return type;
|
|
|
|
|
|
|
|
CHECK_TYPE(THREEDSX)
|
|
|
|
CHECK_TYPE(ELF)
|
|
|
|
CHECK_TYPE(NCCH)
|
|
|
|
|
|
|
|
#undef CHECK_TYPE
|
|
|
|
|
|
|
|
return FileType::Unknown;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Guess the type of a bootable file from its extension
|
2013-09-19 20:21:22 -07:00
|
|
|
* @param filename String filename of bootable file
|
|
|
|
* @return FileType of file
|
|
|
|
*/
|
2015-01-06 15:10:13 -08:00
|
|
|
static FileType GuessFromFilename(const std::string& filename) {
|
2014-03-31 19:23:55 -07:00
|
|
|
if (filename.size() == 0) {
|
2014-12-05 17:53:49 -08:00
|
|
|
LOG_ERROR(Loader, "invalid filename %s", filename.c_str());
|
2014-06-18 15:58:09 -07:00
|
|
|
return FileType::Error;
|
2014-03-31 19:23:55 -07:00
|
|
|
}
|
|
|
|
|
2014-09-07 00:49:52 -07:00
|
|
|
size_t extension_loc = filename.find_last_of('.');
|
2014-09-07 11:50:43 -07:00
|
|
|
if (extension_loc == std::string::npos)
|
|
|
|
return FileType::Unknown;
|
|
|
|
std::string extension = Common::ToLower(filename.substr(extension_loc));
|
2014-09-07 00:49:52 -07:00
|
|
|
|
2015-01-06 15:10:13 -08:00
|
|
|
if (extension == ".elf")
|
2014-09-07 11:50:43 -07:00
|
|
|
return FileType::ELF;
|
2015-01-06 15:10:13 -08:00
|
|
|
else if (extension == ".axf")
|
2014-09-07 11:50:43 -07:00
|
|
|
return FileType::ELF;
|
2015-01-06 15:10:13 -08:00
|
|
|
else if (extension == ".cxi")
|
2014-09-07 11:50:43 -07:00
|
|
|
return FileType::CXI;
|
2015-01-06 15:10:13 -08:00
|
|
|
else if (extension == ".cci")
|
2014-09-07 11:50:43 -07:00
|
|
|
return FileType::CCI;
|
2015-01-06 15:10:13 -08:00
|
|
|
else if (extension == ".bin")
|
2014-09-07 11:50:43 -07:00
|
|
|
return FileType::BIN;
|
2015-01-06 15:10:13 -08:00
|
|
|
else if (extension == ".3ds")
|
2015-01-04 19:45:09 -08:00
|
|
|
return FileType::CCI;
|
2015-01-06 15:10:13 -08:00
|
|
|
else if (extension == ".3dsx")
|
2014-12-07 12:47:06 -08:00
|
|
|
return FileType::THREEDSX;
|
2014-06-18 15:58:09 -07:00
|
|
|
return FileType::Unknown;
|
2013-09-19 20:21:22 -07:00
|
|
|
}
|
|
|
|
|
2015-01-06 16:33:00 -08:00
|
|
|
static const char* GetFileTypeString(FileType type) {
|
|
|
|
switch (type) {
|
|
|
|
case FileType::CCI:
|
|
|
|
return "NCSD";
|
|
|
|
case FileType::CXI:
|
|
|
|
return "NCCH";
|
|
|
|
case FileType::ELF:
|
|
|
|
return "ELF";
|
|
|
|
case FileType::THREEDSX:
|
|
|
|
return "3DSX";
|
|
|
|
case FileType::BIN:
|
|
|
|
return "raw";
|
|
|
|
case FileType::Error:
|
|
|
|
case FileType::Unknown:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
2014-03-31 19:23:55 -07:00
|
|
|
|
2015-01-06 16:33:00 -08:00
|
|
|
ResultStatus LoadFile(const std::string& filename) {
|
2015-01-06 13:30:40 -08:00
|
|
|
std::unique_ptr<FileUtil::IOFile> file(new FileUtil::IOFile(filename, "rb"));
|
2015-01-06 16:33:00 -08:00
|
|
|
if (!file->IsOpen()) {
|
|
|
|
LOG_ERROR(Loader, "Failed to load file %s", filename.c_str());
|
2015-01-06 13:30:40 -08:00
|
|
|
return ResultStatus::Error;
|
2015-01-06 16:33:00 -08:00
|
|
|
}
|
2015-01-06 13:30:40 -08:00
|
|
|
|
2015-01-06 15:10:13 -08:00
|
|
|
FileType type = IdentifyFile(*file);
|
|
|
|
FileType filename_type = GuessFromFilename(filename);
|
|
|
|
|
|
|
|
if (type != filename_type) {
|
|
|
|
LOG_WARNING(Loader, "File %s has a different type than its extension.", filename.c_str());
|
|
|
|
if (FileType::Unknown == type)
|
|
|
|
type = filename_type;
|
|
|
|
}
|
|
|
|
|
2015-01-06 16:33:00 -08:00
|
|
|
LOG_INFO(Loader, "Loading file %s as %s...", filename.c_str(), GetFileTypeString(type));
|
|
|
|
|
2015-01-06 15:10:13 -08:00
|
|
|
switch (type) {
|
2014-03-31 19:23:55 -07:00
|
|
|
|
2014-12-07 12:47:06 -08:00
|
|
|
//3DSX file format...
|
|
|
|
case FileType::THREEDSX:
|
2015-01-06 13:30:40 -08:00
|
|
|
return AppLoader_THREEDSX(std::move(file)).Load();
|
2014-12-07 12:47:06 -08:00
|
|
|
|
2014-06-18 15:58:09 -07:00
|
|
|
// Standard ELF file format...
|
2014-06-27 13:18:56 -07:00
|
|
|
case FileType::ELF:
|
2015-01-06 13:30:40 -08:00
|
|
|
return AppLoader_ELF(std::move(file)).Load();
|
2014-04-30 20:50:14 -07:00
|
|
|
|
2014-06-18 15:58:09 -07:00
|
|
|
// NCCH/NCSD container formats...
|
|
|
|
case FileType::CXI:
|
2015-01-06 15:10:13 -08:00
|
|
|
case FileType::CCI:
|
|
|
|
{
|
2015-01-06 13:30:40 -08:00
|
|
|
AppLoader_NCCH app_loader(std::move(file));
|
2014-06-27 13:18:56 -07:00
|
|
|
|
|
|
|
// Load application and RomFS
|
|
|
|
if (ResultStatus::Success == app_loader.Load()) {
|
2014-12-15 21:33:41 -08:00
|
|
|
Kernel::g_program_id = app_loader.GetProgramId();
|
2015-02-06 05:53:14 -08:00
|
|
|
Service::FS::RegisterArchiveType(Common::make_unique<FileSys::ArchiveFactory_RomFS>(app_loader), Service::FS::ArchiveIdCode::RomFS);
|
2014-06-27 13:18:56 -07:00
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
break;
|
2014-06-18 15:58:09 -07:00
|
|
|
}
|
2014-06-16 19:57:09 -07:00
|
|
|
|
2014-08-26 21:04:26 -07:00
|
|
|
// Raw BIN file format...
|
|
|
|
case FileType::BIN:
|
|
|
|
{
|
2015-01-06 13:30:40 -08:00
|
|
|
size_t size = (size_t)file->GetSize();
|
|
|
|
if (file->ReadBytes(Memory::GetPointer(Memory::EXEFS_CODE_VADDR), size) != size)
|
2014-08-26 21:04:26 -07:00
|
|
|
return ResultStatus::Error;
|
2015-01-06 13:30:40 -08:00
|
|
|
|
|
|
|
Kernel::LoadExec(Memory::EXEFS_CODE_VADDR);
|
2014-08-26 21:04:26 -07:00
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
|
2014-06-18 15:58:09 -07:00
|
|
|
// Error occurred durring IdentifyFile...
|
|
|
|
case FileType::Error:
|
|
|
|
|
|
|
|
// IdentifyFile could know identify file type...
|
|
|
|
case FileType::Unknown:
|
2015-01-06 15:10:13 -08:00
|
|
|
{
|
2015-01-30 08:33:20 -08:00
|
|
|
LOG_CRITICAL(Loader, "File %s is of unknown type.", filename.c_str());
|
2014-06-18 15:58:09 -07:00
|
|
|
return ResultStatus::ErrorInvalidFormat;
|
2014-03-31 19:23:55 -07:00
|
|
|
}
|
2015-01-06 15:10:13 -08:00
|
|
|
}
|
2014-06-18 15:58:09 -07:00
|
|
|
return ResultStatus::Error;
|
2013-09-19 20:21:22 -07:00
|
|
|
}
|
|
|
|
|
2014-06-16 20:18:10 -07:00
|
|
|
} // namespace Loader
|