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-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-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
|
|
|
|
*/
|
|
|
|
FileType IdentifyFile(std::string &filename) {
|
2014-04-01 04:23:55 +02: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) : "";
|
|
|
|
|
2014-06-17 05:18:10 +02:00
|
|
|
if (!strcasecmp(extension.c_str(), ".elf")) {
|
2014-04-01 04:23:55 +02:00
|
|
|
return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-05-16 00:54:57 +02:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".axf")) {
|
|
|
|
return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-06-16 23:53:25 +02:00
|
|
|
else if (!strcasecmp(extension.c_str(), ".cxi")) {
|
|
|
|
return FILETYPE_CTR_CXI; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(extension.c_str(), ".cci")) {
|
|
|
|
return FILETYPE_CTR_CCI; // TODO(bunnei): Do some filetype checking :p
|
|
|
|
}
|
2014-04-01 04:23:55 +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
|
|
|
|
* @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 04:23:55 +02:00
|
|
|
INFO_LOG(LOADER, "Identifying file...");
|
|
|
|
|
|
|
|
// Note that this can modify filename!
|
|
|
|
switch (IdentifyFile(filename)) {
|
|
|
|
|
|
|
|
case FILETYPE_CTR_ELF:
|
2014-06-17 05:18:10 +02:00
|
|
|
return Loader::Load_ELF(filename, error_string);
|
2014-05-01 05:50:14 +02:00
|
|
|
|
2014-06-17 04:57:09 +02:00
|
|
|
case FILETYPE_CTR_CXI:
|
|
|
|
case FILETYPE_CTR_CCI:
|
|
|
|
return Loader::Load_NCCH(filename, error_string);
|
|
|
|
|
2014-04-01 04:23:55 +02:00
|
|
|
case FILETYPE_ERROR:
|
|
|
|
ERROR_LOG(LOADER, "Could not read file");
|
|
|
|
*error_string = "Error reading file";
|
|
|
|
break;
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2014-04-01 04:23:55 +02:00
|
|
|
case FILETYPE_UNKNOWN:
|
|
|
|
default:
|
|
|
|
ERROR_LOG(LOADER, "Failed to identify file");
|
2014-05-01 05:50:14 +02:00
|
|
|
*error_string = " Failed to identify file";
|
2014-04-01 04:23:55 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
2013-09-20 05:21:22 +02:00
|
|
|
}
|
|
|
|
|
2014-06-17 05:18:10 +02:00
|
|
|
} // namespace Loader
|