2018-01-20 15:48:37 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 19:15:46 -04:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2014-04-08 19:15:46 -04:00
|
|
|
#pragma once
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2018-08-15 05:38:37 -04:00
|
|
|
#include <iosfwd>
|
2015-06-21 08:40:28 -04:00
|
|
|
#include <memory>
|
2018-10-30 00:03:25 -04:00
|
|
|
#include <optional>
|
2015-06-21 09:58:59 -04:00
|
|
|
#include <string>
|
2017-03-08 20:21:31 -05:00
|
|
|
#include <utility>
|
2014-06-18 18:58:09 -04:00
|
|
|
#include <vector>
|
2018-10-30 00:03:25 -04:00
|
|
|
|
2015-05-06 03:06:12 -04:00
|
|
|
#include "common/common_types.h"
|
2018-11-28 14:01:56 -05:00
|
|
|
#include "core/file_sys/control_metadata.h"
|
2018-07-18 21:07:11 -04:00
|
|
|
#include "core/file_sys/vfs.h"
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2018-12-06 20:27:50 -05:00
|
|
|
namespace FileSys {
|
|
|
|
class NACP;
|
|
|
|
} // namespace FileSys
|
|
|
|
|
2015-06-21 09:58:59 -04:00
|
|
|
namespace Kernel {
|
|
|
|
struct AddressMapping;
|
2017-09-26 19:17:47 -04:00
|
|
|
class Process;
|
|
|
|
} // namespace Kernel
|
2015-05-03 23:01:16 -04:00
|
|
|
|
2013-09-19 23:21:22 -04:00
|
|
|
namespace Loader {
|
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
/// File types supported by CTR
|
|
|
|
enum class FileType {
|
|
|
|
Error,
|
|
|
|
Unknown,
|
|
|
|
ELF,
|
2017-09-24 11:08:31 -04:00
|
|
|
NSO,
|
2017-10-05 23:30:08 -04:00
|
|
|
NRO,
|
2018-06-21 11:16:23 -04:00
|
|
|
NCA,
|
2018-08-25 11:44:14 -04:00
|
|
|
NSP,
|
2018-07-27 23:55:23 -04:00
|
|
|
XCI,
|
2018-08-16 17:02:31 -04:00
|
|
|
NAX,
|
2019-06-05 00:22:07 -04:00
|
|
|
KIP,
|
2018-01-20 14:59:17 -05:00
|
|
|
DeconstructedRomDirectory,
|
2014-06-18 18:58:09 -04:00
|
|
|
};
|
|
|
|
|
2015-08-31 21:28:37 -04:00
|
|
|
/**
|
|
|
|
* Identifies the type of a bootable file based on the magic value in its header.
|
|
|
|
* @param file open file
|
|
|
|
* @return FileType of file
|
|
|
|
*/
|
2018-07-18 21:07:11 -04:00
|
|
|
FileType IdentifyFile(FileSys::VirtualFile file);
|
2015-08-31 21:28:37 -04:00
|
|
|
|
|
|
|
/**
|
2018-07-18 21:07:11 -04:00
|
|
|
* Guess the type of a bootable file from its name
|
|
|
|
* @param name String name of bootable file
|
2015-08-31 21:28:37 -04:00
|
|
|
* @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine
|
|
|
|
* a filetype, and will never return FileType::Error.
|
|
|
|
*/
|
2018-07-18 21:07:11 -04:00
|
|
|
FileType GuessFromFilename(const std::string& name);
|
2015-08-31 21:28:37 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a FileType into a string which can be displayed to the user.
|
|
|
|
*/
|
2018-07-28 12:32:16 -04:00
|
|
|
std::string GetFileTypeString(FileType type);
|
2015-08-31 21:28:37 -04:00
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
/// Return type for functions in Loader namespace
|
2018-08-12 00:56:22 -04:00
|
|
|
enum class ResultStatus : u16 {
|
2014-06-18 18:58:09 -04:00
|
|
|
Success,
|
|
|
|
ErrorAlreadyLoaded,
|
2018-08-09 21:06:44 -04:00
|
|
|
ErrorNotImplemented,
|
|
|
|
ErrorNotInitialized,
|
|
|
|
ErrorBadNPDMHeader,
|
|
|
|
ErrorBadACIDHeader,
|
|
|
|
ErrorBadACIHeader,
|
|
|
|
ErrorBadFileAccessControl,
|
|
|
|
ErrorBadFileAccessHeader,
|
2018-12-19 23:50:20 -05:00
|
|
|
ErrorBadKernelCapabilityDescriptors,
|
2018-08-09 21:06:44 -04:00
|
|
|
ErrorBadPFSHeader,
|
|
|
|
ErrorIncorrectPFSFileSize,
|
|
|
|
ErrorBadNCAHeader,
|
|
|
|
ErrorMissingProductionKeyFile,
|
|
|
|
ErrorMissingHeaderKey,
|
|
|
|
ErrorIncorrectHeaderKey,
|
|
|
|
ErrorNCA2,
|
|
|
|
ErrorNCA0,
|
|
|
|
ErrorMissingTitlekey,
|
|
|
|
ErrorMissingTitlekek,
|
|
|
|
ErrorInvalidRightsID,
|
|
|
|
ErrorMissingKeyAreaKey,
|
|
|
|
ErrorIncorrectKeyAreaKey,
|
|
|
|
ErrorIncorrectTitlekeyOrTitlekek,
|
|
|
|
ErrorXCIMissingProgramNCA,
|
|
|
|
ErrorNCANotProgram,
|
|
|
|
ErrorNoExeFS,
|
|
|
|
ErrorBadXCIHeader,
|
|
|
|
ErrorXCIMissingPartition,
|
|
|
|
ErrorNullFile,
|
|
|
|
ErrorMissingNPDM,
|
|
|
|
Error32BitISA,
|
2018-12-19 23:50:20 -05:00
|
|
|
ErrorUnableToParseKernelMetadata,
|
2018-08-09 21:06:44 -04:00
|
|
|
ErrorNoRomFS,
|
|
|
|
ErrorIncorrectELFFileSize,
|
|
|
|
ErrorLoadingNRO,
|
2018-10-14 21:41:58 -04:00
|
|
|
ErrorLoadingNSO,
|
2018-08-09 21:06:44 -04:00
|
|
|
ErrorNoIcon,
|
|
|
|
ErrorNoControl,
|
2018-08-16 17:02:50 -04:00
|
|
|
ErrorBadNAXHeader,
|
|
|
|
ErrorIncorrectNAXFileSize,
|
|
|
|
ErrorNAXKeyHMACFailed,
|
|
|
|
ErrorNAXValidationHMACFailed,
|
|
|
|
ErrorNAXKeyDerivationFailed,
|
|
|
|
ErrorNAXInconvertibleToNCA,
|
|
|
|
ErrorBadNAXFilePath,
|
|
|
|
ErrorMissingSDSeed,
|
|
|
|
ErrorMissingSDKEKSource,
|
|
|
|
ErrorMissingAESKEKGenerationSource,
|
|
|
|
ErrorMissingAESKeyGenerationSource,
|
|
|
|
ErrorMissingSDSaveKeySource,
|
|
|
|
ErrorMissingSDNCAKeySource,
|
2018-08-25 11:44:14 -04:00
|
|
|
ErrorNSPMissingProgramNCA,
|
2018-08-25 19:05:22 -04:00
|
|
|
ErrorBadBKTRHeader,
|
|
|
|
ErrorBKTRSubsectionNotAfterRelocation,
|
|
|
|
ErrorBKTRSubsectionNotAtEnd,
|
|
|
|
ErrorBadRelocationBlock,
|
|
|
|
ErrorBadSubsectionBlock,
|
|
|
|
ErrorBadRelocationBuckets,
|
|
|
|
ErrorBadSubsectionBuckets,
|
|
|
|
ErrorMissingBKTRBaseRomFS,
|
2018-09-25 09:18:55 -04:00
|
|
|
ErrorNoPackedUpdate,
|
2019-06-05 00:21:44 -04:00
|
|
|
ErrorBadKIPHeader,
|
|
|
|
ErrorBLZDecompressionFailed,
|
|
|
|
ErrorBadINIHeader,
|
|
|
|
ErrorINITooManyKIPs,
|
2014-06-18 18:58:09 -04:00
|
|
|
};
|
|
|
|
|
2018-08-15 05:38:37 -04:00
|
|
|
std::ostream& operator<<(std::ostream& os, ResultStatus status);
|
2018-08-09 21:06:44 -04:00
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
/// Interface for loading an application
|
|
|
|
class AppLoader : NonCopyable {
|
|
|
|
public:
|
2019-04-09 17:03:04 -04:00
|
|
|
struct LoadParameters {
|
|
|
|
s32 main_thread_priority;
|
|
|
|
u64 main_thread_stack_size;
|
|
|
|
};
|
|
|
|
using LoadResult = std::pair<ResultStatus, std::optional<LoadParameters>>;
|
|
|
|
|
2018-09-02 10:53:06 -04:00
|
|
|
explicit AppLoader(FileSys::VirtualFile file);
|
|
|
|
virtual ~AppLoader();
|
2014-06-18 18:58:09 -04:00
|
|
|
|
2016-05-17 18:30:44 -04:00
|
|
|
/**
|
|
|
|
* Returns the type of this file
|
|
|
|
* @return FileType corresponding to the loaded file
|
|
|
|
*/
|
2018-12-05 17:42:41 -05:00
|
|
|
virtual FileType GetFileType() const = 0;
|
2016-05-17 18:30:44 -04:00
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
/**
|
2017-09-26 19:17:47 -04:00
|
|
|
* Load the application and return the created Process instance
|
|
|
|
* @param process The newly created process.
|
|
|
|
* @return The status result of the operation.
|
2014-06-18 18:58:09 -04:00
|
|
|
*/
|
2019-04-09 17:03:04 -04:00
|
|
|
virtual LoadResult Load(Kernel::Process& process) = 0;
|
2014-06-18 18:58:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the code (typically .code section) of the application
|
2014-06-27 15:33:23 -04:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-18 18:58:09 -04:00
|
|
|
*/
|
2015-07-11 18:16:33 -04:00
|
|
|
virtual ResultStatus ReadCode(std::vector<u8>& buffer) {
|
2014-06-27 15:33:23 -04:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-18 18:58:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-22 15:40:21 -04:00
|
|
|
* Get the icon (typically icon section) of the application
|
2014-06-27 15:33:23 -04:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-18 18:58:09 -04:00
|
|
|
*/
|
2015-07-11 18:16:33 -04:00
|
|
|
virtual ResultStatus ReadIcon(std::vector<u8>& buffer) {
|
2014-06-27 15:33:23 -04:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-18 18:58:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-22 15:40:21 -04:00
|
|
|
* Get the banner (typically banner section) of the application
|
2019-01-15 15:56:52 -05:00
|
|
|
* In the context of NX, this is the animation that displays in the bottom right of the screen
|
|
|
|
* when a game boots. Stored in GIF format.
|
2014-06-27 15:33:23 -04:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-18 18:58:09 -04:00
|
|
|
*/
|
2015-07-11 18:16:33 -04:00
|
|
|
virtual ResultStatus ReadBanner(std::vector<u8>& buffer) {
|
2014-06-27 15:33:23 -04:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-18 18:58:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-22 15:40:21 -04:00
|
|
|
* Get the logo (typically logo section) of the application
|
2019-01-15 15:56:52 -05:00
|
|
|
* In the context of NX, this is the static image that displays in the top left of the screen
|
|
|
|
* when a game boots. Stored in JPEG format.
|
2014-06-27 15:33:23 -04:00
|
|
|
* @param buffer Reference to buffer to store data
|
|
|
|
* @return ResultStatus result of function
|
2014-06-18 18:58:09 -04:00
|
|
|
*/
|
2015-07-11 18:16:33 -04:00
|
|
|
virtual ResultStatus ReadLogo(std::vector<u8>& buffer) {
|
2014-06-27 15:33:23 -04:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-18 18:58:09 -04:00
|
|
|
}
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2016-12-15 04:54:25 -05:00
|
|
|
/**
|
|
|
|
* Get the program id of the application
|
|
|
|
* @param out_program_id Reference to store program id into
|
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
|
|
|
virtual ResultStatus ReadProgramId(u64& out_program_id) {
|
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
}
|
|
|
|
|
2014-06-18 18:58:09 -04:00
|
|
|
/**
|
2014-06-27 15:33:23 -04:00
|
|
|
* Get the RomFS of the application
|
2015-07-09 17:55:23 -04:00
|
|
|
* Since the RomFS can be huge, we return a file reference instead of copying to a buffer
|
2018-09-25 09:18:55 -04:00
|
|
|
* @param file The directory containing the RomFS
|
2014-06-27 15:33:23 -04:00
|
|
|
* @return ResultStatus result of function
|
2014-06-18 18:58:09 -04:00
|
|
|
*/
|
2018-09-25 09:18:55 -04:00
|
|
|
virtual ResultStatus ReadRomFS(FileSys::VirtualFile& file) {
|
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the raw update of the application, should it come packed with one
|
|
|
|
* @param file The raw update NCA file (Program-type
|
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
|
|
|
virtual ResultStatus ReadUpdateRaw(FileSys::VirtualFile& file) {
|
2014-06-27 15:33:23 -04:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
2014-06-18 18:58:09 -04:00
|
|
|
}
|
2015-01-06 16:30:40 -05:00
|
|
|
|
2017-09-25 02:17:38 -04:00
|
|
|
/**
|
2018-08-25 19:05:22 -04:00
|
|
|
* Get whether or not updates can be applied to the RomFS.
|
|
|
|
* By default, this is true, however for formats where it cannot be guaranteed that the RomFS is
|
|
|
|
* the base game it should be set to false.
|
|
|
|
* @return bool whether or not updatable.
|
2017-09-25 02:17:38 -04:00
|
|
|
*/
|
2018-08-26 10:53:31 -04:00
|
|
|
virtual bool IsRomFSUpdatable() const {
|
2018-08-25 19:05:22 -04:00
|
|
|
return true;
|
2017-09-25 02:17:38 -04:00
|
|
|
}
|
|
|
|
|
2018-08-28 22:37:42 -04:00
|
|
|
/**
|
|
|
|
* Gets the difference between the start of the IVFC header and the start of level 6 (RomFS)
|
|
|
|
* data. Needed for bktr patching.
|
|
|
|
* @return IVFC offset for romfs.
|
|
|
|
*/
|
|
|
|
virtual u64 ReadRomFSIVFCOffset() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-01 19:51:44 -04:00
|
|
|
/**
|
|
|
|
* Get the title of the application
|
|
|
|
* @param title Reference to store the application title into
|
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
|
|
|
virtual ResultStatus ReadTitle(std::string& title) {
|
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
}
|
|
|
|
|
2018-11-28 14:01:56 -05:00
|
|
|
/**
|
2018-12-06 20:27:50 -05:00
|
|
|
* Get the control data (CNMT) of the application
|
|
|
|
* @param control Reference to store the application control data into
|
2018-11-28 14:01:56 -05:00
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
2018-12-06 20:27:50 -05:00
|
|
|
virtual ResultStatus ReadControlData(FileSys::NACP& control) {
|
2018-11-28 14:01:56 -05:00
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
}
|
|
|
|
|
2018-12-24 16:19:41 -05:00
|
|
|
/**
|
|
|
|
* Get the RomFS of the manual of the application
|
|
|
|
* @param file The raw manual RomFS of the game
|
|
|
|
* @return ResultStatus result of function
|
|
|
|
*/
|
|
|
|
virtual ResultStatus ReadManualRomFS(FileSys::VirtualFile& file) {
|
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
}
|
|
|
|
|
2019-05-26 11:40:41 -04:00
|
|
|
using Modules = std::map<VAddr, std::string>;
|
|
|
|
|
|
|
|
virtual ResultStatus ReadNSOModules(Modules& modules) {
|
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
}
|
|
|
|
|
2015-01-06 16:30:40 -05:00
|
|
|
protected:
|
2018-07-18 21:07:11 -04:00
|
|
|
FileSys::VirtualFile file;
|
2015-07-11 18:16:33 -04:00
|
|
|
bool is_loaded = false;
|
2013-09-19 23:21:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2016-05-17 18:06:33 -04:00
|
|
|
* Identifies a bootable file and return a suitable loader
|
2018-07-19 14:02:07 -04:00
|
|
|
* @param file The bootable file
|
|
|
|
* @return the best loader for this file
|
2013-09-19 23:21:22 -04:00
|
|
|
*/
|
2018-07-18 21:07:11 -04:00
|
|
|
std::unique_ptr<AppLoader> GetLoader(FileSys::VirtualFile file);
|
2013-09-19 23:21:22 -04:00
|
|
|
|
2017-09-26 19:17:47 -04:00
|
|
|
} // namespace Loader
|