2014-04-08 23:15:46 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:15:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-12-20 05:21:23 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "common/make_unique.h"
|
2014-06-18 22:58:09 +00:00
|
|
|
|
2014-06-27 20:18:56 +00:00
|
|
|
#include "core/file_sys/archive_romfs.h"
|
2014-12-07 20:47:06 +00:00
|
|
|
#include "core/loader/3dsx.h"
|
2014-06-17 03:05:10 +00:00
|
|
|
#include "core/loader/elf.h"
|
2014-06-17 02:57:09 +00:00
|
|
|
#include "core/loader/ncch.h"
|
2014-12-14 06:32:45 +00:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2014-08-27 04:04:26 +00:00
|
|
|
#include "core/mem_map.h"
|
2014-04-22 03:09:10 +00:00
|
|
|
|
2013-09-20 03:21:22 +00: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 21:46:05 +00:00
|
|
|
FileType IdentifyFile(const std::string &filename) {
|
2014-04-01 02:23:55 +00:00
|
|
|
if (filename.size() == 0) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Loader, "invalid filename %s", filename.c_str());
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::Error;
|
2014-04-01 02:23:55 +00:00
|
|
|
}
|
|
|
|
|
2014-09-07 07:49:52 +00:00
|
|
|
size_t extension_loc = filename.find_last_of('.');
|
2014-09-07 18:50:43 +00:00
|
|
|
if (extension_loc == std::string::npos)
|
|
|
|
return FileType::Unknown;
|
|
|
|
std::string extension = Common::ToLower(filename.substr(extension_loc));
|
2014-09-07 07:49:52 +00:00
|
|
|
|
2014-09-07 18:50:43 +00:00
|
|
|
// TODO(bunnei): Do actual filetype checking instead of naively checking the extension
|
|
|
|
if (extension == ".elf") {
|
|
|
|
return FileType::ELF;
|
|
|
|
} else if (extension == ".axf") {
|
|
|
|
return FileType::ELF;
|
|
|
|
} else if (extension == ".cxi") {
|
|
|
|
return FileType::CXI;
|
|
|
|
} else if (extension == ".cci") {
|
|
|
|
return FileType::CCI;
|
|
|
|
} else if (extension == ".bin") {
|
|
|
|
return FileType::BIN;
|
2015-01-05 03:45:09 +00:00
|
|
|
} else if (extension == ".3ds") {
|
|
|
|
return FileType::CCI;
|
2014-12-07 20:47:06 +00:00
|
|
|
} else if (extension == ".3dsx") {
|
|
|
|
return FileType::THREEDSX;
|
2014-08-27 04:04:26 +00:00
|
|
|
}
|
2014-06-18 22:58:09 +00:00
|
|
|
return FileType::Unknown;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 21:46:05 +00:00
|
|
|
ResultStatus LoadFile(const std::string& filename) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_INFO(Loader, "Loading file %s...", filename.c_str());
|
2014-04-01 02:23:55 +00:00
|
|
|
|
|
|
|
switch (IdentifyFile(filename)) {
|
|
|
|
|
2014-12-07 20:47:06 +00:00
|
|
|
//3DSX file format...
|
|
|
|
case FileType::THREEDSX:
|
|
|
|
return AppLoader_THREEDSX(filename).Load();
|
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
// Standard ELF file format...
|
2014-06-27 20:18:56 +00:00
|
|
|
case FileType::ELF:
|
2014-06-18 22:58:09 +00:00
|
|
|
return AppLoader_ELF(filename).Load();
|
2014-05-01 03:50:14 +00:00
|
|
|
|
2014-06-18 22:58:09 +00:00
|
|
|
// NCCH/NCSD container formats...
|
|
|
|
case FileType::CXI:
|
|
|
|
case FileType::CCI: {
|
2014-06-27 20:18:56 +00:00
|
|
|
AppLoader_NCCH app_loader(filename);
|
|
|
|
|
|
|
|
// Load application and RomFS
|
|
|
|
if (ResultStatus::Success == app_loader.Load()) {
|
2014-12-16 05:33:41 +00:00
|
|
|
Kernel::g_program_id = app_loader.GetProgramId();
|
2014-12-20 05:21:23 +00:00
|
|
|
Service::FS::CreateArchive(Common::make_unique<FileSys::Archive_RomFS>(app_loader), Service::FS::ArchiveIdCode::RomFS);
|
2014-06-27 20:18:56 +00:00
|
|
|
return ResultStatus::Success;
|
|
|
|
}
|
|
|
|
break;
|
2014-06-18 22:58:09 +00:00
|
|
|
}
|
2014-06-17 02:57:09 +00:00
|
|
|
|
2014-08-27 04:04:26 +00:00
|
|
|
// Raw BIN file format...
|
|
|
|
case FileType::BIN:
|
|
|
|
{
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_INFO(Loader, "Loading BIN file %s...", filename.c_str());
|
2014-08-27 04:04:26 +00:00
|
|
|
|
2014-09-11 22:17:15 +00:00
|
|
|
FileUtil::IOFile file(filename, "rb");
|
2014-08-27 04:04:26 +00:00
|
|
|
|
|
|
|
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 22:58:09 +00:00
|
|
|
// Error occurred durring IdentifyFile...
|
|
|
|
case FileType::Error:
|
|
|
|
|
|
|
|
// IdentifyFile could know identify file type...
|
|
|
|
case FileType::Unknown:
|
2013-09-20 03:21:22 +00:00
|
|
|
|
2014-04-01 02:23:55 +00:00
|
|
|
default:
|
2014-06-18 22:58:09 +00:00
|
|
|
return ResultStatus::ErrorInvalidFormat;
|
2014-04-01 02:23:55 +00:00
|
|
|
}
|
2014-06-18 22:58:09 +00:00
|
|
|
return ResultStatus::Error;
|
2013-09-20 03:21:22 +00:00
|
|
|
}
|
|
|
|
|
2014-06-17 03:18:10 +00:00
|
|
|
} // namespace Loader
|