2018-01-20 21:48:37 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:15:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-20 05:21:22 +02:00
|
|
|
|
2015-06-21 14:40:28 +02:00
|
|
|
#include <memory>
|
2014-12-20 06:21:23 +01:00
|
|
|
#include <string>
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/logging/log.h"
|
2015-06-20 23:24:01 +02:00
|
|
|
#include "common/string_util.h"
|
2018-07-19 03:07:11 +02:00
|
|
|
#include "core/file_sys/vfs_real.h"
|
2015-05-04 05:01:16 +02:00
|
|
|
#include "core/hle/kernel/process.h"
|
2018-01-20 20:59:17 +01:00
|
|
|
#include "core/loader/deconstructed_rom_directory.h"
|
2014-06-17 05:05:10 +02:00
|
|
|
#include "core/loader/elf.h"
|
2018-06-21 17:16:23 +02:00
|
|
|
#include "core/loader/nca.h"
|
2017-10-06 05:30:08 +02:00
|
|
|
#include "core/loader/nro.h"
|
2017-09-24 17:08:31 +02:00
|
|
|
#include "core/loader/nso.h"
|
2014-04-22 05:09:10 +02:00
|
|
|
|
2013-09-20 05:21:22 +02:00
|
|
|
namespace Loader {
|
|
|
|
|
2015-05-08 23:12:25 +02:00
|
|
|
const std::initializer_list<Kernel::AddressMapping> default_address_mappings = {
|
2016-09-18 02:38:01 +02:00
|
|
|
{0x1FF50000, 0x8000, true}, // part of DSP RAM
|
|
|
|
{0x1FF70000, 0x8000, true}, // part of DSP RAM
|
|
|
|
{0x1F000000, 0x600000, false}, // entire VRAM
|
2015-05-04 05:01:16 +02:00
|
|
|
};
|
|
|
|
|
2018-07-19 03:07:11 +02:00
|
|
|
FileType IdentifyFile(FileSys::VirtualFile file) {
|
2015-01-07 00:10:13 +01:00
|
|
|
FileType type;
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
#define CHECK_TYPE(loader) \
|
2018-07-19 03:07:11 +02:00
|
|
|
type = AppLoader_##loader::IdentifyType(file); \
|
2016-09-18 02:38:01 +02:00
|
|
|
if (FileType::Error != type) \
|
2015-01-07 00:10:13 +01:00
|
|
|
return type;
|
|
|
|
|
2018-01-20 20:59:17 +01:00
|
|
|
CHECK_TYPE(DeconstructedRomDirectory)
|
2015-01-07 00:10:13 +01:00
|
|
|
CHECK_TYPE(ELF)
|
2017-09-24 17:08:31 +02:00
|
|
|
CHECK_TYPE(NSO)
|
2017-10-06 05:30:08 +02:00
|
|
|
CHECK_TYPE(NRO)
|
2018-06-21 17:16:23 +02:00
|
|
|
CHECK_TYPE(NCA)
|
2015-01-07 00:10:13 +01:00
|
|
|
|
|
|
|
#undef CHECK_TYPE
|
|
|
|
|
|
|
|
return FileType::Unknown;
|
|
|
|
}
|
|
|
|
|
2015-09-01 03:28:37 +02:00
|
|
|
FileType IdentifyFile(const std::string& file_name) {
|
2018-07-23 23:44:55 +02:00
|
|
|
return IdentifyFile(std::make_shared<FileSys::RealVfsFile>(file_name));
|
2018-07-08 05:24:51 +02:00
|
|
|
}
|
2014-09-07 09:49:52 +02:00
|
|
|
|
2018-07-19 03:07:11 +02:00
|
|
|
FileType GuessFromFilename(const std::string& name) {
|
|
|
|
if (name == "main")
|
|
|
|
return FileType::DeconstructedRomDirectory;
|
2018-07-06 16:51:32 +02:00
|
|
|
|
2018-07-22 07:23:29 +02:00
|
|
|
const std::string extension =
|
|
|
|
Common::ToLower(std::string(FileUtil::GetExtensionFromFilename(name)));
|
2018-07-19 03:07:11 +02:00
|
|
|
|
|
|
|
if (extension == "elf")
|
2014-09-07 20:50:43 +02:00
|
|
|
return FileType::ELF;
|
2018-07-19 03:07:11 +02:00
|
|
|
if (extension == "nro")
|
2018-01-14 19:00:16 +01:00
|
|
|
return FileType::NRO;
|
2018-07-19 03:07:11 +02:00
|
|
|
if (extension == "nso")
|
2018-01-14 19:00:16 +01:00
|
|
|
return FileType::NSO;
|
2018-07-19 03:07:11 +02:00
|
|
|
if (extension == "nca")
|
2018-06-21 17:16:23 +02:00
|
|
|
return FileType::NCA;
|
2015-07-26 00:10:13 +02:00
|
|
|
|
2014-06-19 00:58:09 +02:00
|
|
|
return FileType::Unknown;
|
2013-09-20 05:21:22 +02:00
|
|
|
}
|
|
|
|
|
2015-09-01 03:28:37 +02:00
|
|
|
const char* GetFileTypeString(FileType type) {
|
2015-01-07 01:33:00 +01:00
|
|
|
switch (type) {
|
|
|
|
case FileType::ELF:
|
|
|
|
return "ELF";
|
2018-01-14 19:00:16 +01:00
|
|
|
case FileType::NRO:
|
|
|
|
return "NRO";
|
|
|
|
case FileType::NSO:
|
|
|
|
return "NSO";
|
2018-06-21 17:16:23 +02:00
|
|
|
case FileType::NCA:
|
|
|
|
return "NCA";
|
2018-01-20 20:59:17 +01:00
|
|
|
case FileType::DeconstructedRomDirectory:
|
|
|
|
return "Directory";
|
2015-01-07 01:33:00 +01:00
|
|
|
case FileType::Error:
|
|
|
|
case FileType::Unknown:
|
2015-02-01 21:31:21 +01:00
|
|
|
break;
|
2015-01-07 01:33:00 +01:00
|
|
|
}
|
2015-02-01 21:31:21 +01:00
|
|
|
|
|
|
|
return "unknown";
|
2015-01-07 01:33:00 +01:00
|
|
|
}
|
2014-04-01 04:23:55 +02:00
|
|
|
|
2016-05-18 23:06:50 +02:00
|
|
|
/**
|
|
|
|
* Get a loader for a file with a specific type
|
|
|
|
* @param file The file to load
|
|
|
|
* @param type The type of the file
|
2018-07-19 20:02:07 +02:00
|
|
|
* @param file the file to retrieve the loader for
|
|
|
|
* @param type the file type
|
2016-05-18 23:06:50 +02:00
|
|
|
* @return std::unique_ptr<AppLoader> a pointer to a loader object; nullptr for unsupported type
|
|
|
|
*/
|
2018-07-19 03:07:11 +02:00
|
|
|
static std::unique_ptr<AppLoader> GetFileLoader(FileSys::VirtualFile file, FileType type) {
|
2016-04-13 23:04:05 +02:00
|
|
|
switch (type) {
|
|
|
|
|
|
|
|
// Standard ELF file format.
|
|
|
|
case FileType::ELF:
|
2018-07-19 03:07:11 +02:00
|
|
|
return std::make_unique<AppLoader_ELF>(std::move(file));
|
2016-04-13 23:04:05 +02:00
|
|
|
|
2017-09-24 17:08:31 +02:00
|
|
|
// NX NSO file format.
|
|
|
|
case FileType::NSO:
|
2018-07-19 03:07:11 +02:00
|
|
|
return std::make_unique<AppLoader_NSO>(std::move(file));
|
2017-09-24 17:08:31 +02:00
|
|
|
|
2017-10-06 05:30:08 +02:00
|
|
|
// NX NRO file format.
|
|
|
|
case FileType::NRO:
|
2018-07-19 03:07:11 +02:00
|
|
|
return std::make_unique<AppLoader_NRO>(std::move(file));
|
2017-10-06 05:30:08 +02:00
|
|
|
|
2018-06-21 17:16:23 +02:00
|
|
|
// NX NCA file format.
|
|
|
|
case FileType::NCA:
|
2018-07-19 03:07:11 +02:00
|
|
|
return std::make_unique<AppLoader_NCA>(std::move(file));
|
2018-06-21 17:16:23 +02:00
|
|
|
|
2018-01-20 20:59:17 +01:00
|
|
|
// NX deconstructed ROM directory.
|
|
|
|
case FileType::DeconstructedRomDirectory:
|
2018-07-19 03:07:11 +02:00
|
|
|
return std::make_unique<AppLoader_DeconstructedRomDirectory>(std::move(file));
|
2018-01-20 20:59:17 +01:00
|
|
|
|
2016-04-13 23:04:05 +02:00
|
|
|
default:
|
2016-05-18 00:06:33 +02:00
|
|
|
return nullptr;
|
2016-04-13 23:04:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-19 03:07:11 +02:00
|
|
|
std::unique_ptr<AppLoader> GetLoader(FileSys::VirtualFile file) {
|
|
|
|
FileType type = IdentifyFile(file);
|
|
|
|
FileType filename_type = GuessFromFilename(file->GetName());
|
2015-01-07 00:10:13 +01:00
|
|
|
|
|
|
|
if (type != filename_type) {
|
2018-07-19 03:07:11 +02:00
|
|
|
LOG_WARNING(Loader, "File {} has a different type than its extension.", file->GetName());
|
2015-01-07 00:10:13 +01:00
|
|
|
if (FileType::Unknown == type)
|
|
|
|
type = filename_type;
|
|
|
|
}
|
|
|
|
|
2018-07-19 03:07:11 +02:00
|
|
|
LOG_DEBUG(Loader, "Loading file {} as {}...", file->GetName(), GetFileTypeString(type));
|
2015-01-07 01:33:00 +01:00
|
|
|
|
2018-07-19 03:07:11 +02:00
|
|
|
return GetFileLoader(std::move(file), type);
|
2013-09-20 05:21:22 +02:00
|
|
|
}
|
|
|
|
|
2014-06-17 05:18:10 +02:00
|
|
|
} // namespace Loader
|