1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-22 18:26:39 +00:00
nxdumptool/source/util.h

447 lines
14 KiB
C
Raw Permalink Normal View History

2018-05-15 17:00:19 +01:00
#pragma once
#ifndef __UTIL_H__
#define __UTIL_H__
2018-05-15 17:00:19 +01:00
#include <switch.h>
2019-06-05 23:44:18 +01:00
#include "nca.h"
2020-03-30 22:10:07 +01:00
#define HBLOADER_BASE_PATH "sdmc:/switch/"
#define APP_BASE_PATH HBLOADER_BASE_PATH APP_TITLE "/"
#define XCI_DUMP_PATH APP_BASE_PATH "XCI/"
#define NSP_DUMP_PATH APP_BASE_PATH "NSP/"
#define HFS0_DUMP_PATH APP_BASE_PATH "HFS0/"
#define EXEFS_DUMP_PATH APP_BASE_PATH "ExeFS/"
#define ROMFS_DUMP_PATH APP_BASE_PATH "RomFS/"
#define CERT_DUMP_PATH APP_BASE_PATH "Certificate/"
2019-10-17 21:15:35 +01:00
#define BATCH_OVERRIDES_PATH NSP_DUMP_PATH "BatchOverrides/"
2020-03-30 22:10:07 +01:00
#define TICKET_PATH APP_BASE_PATH "Ticket/"
2019-11-06 18:22:40 +00:00
2020-03-30 22:10:07 +01:00
#define CONFIG_PATH APP_BASE_PATH "config.bin"
#define NRO_NAME APP_TITLE ".nro"
#define NRO_PATH APP_BASE_PATH NRO_NAME
#define NSWDB_XML_PATH APP_BASE_PATH "NSWreleases.xml"
#define KEYS_FILE_PATH HBLOADER_BASE_PATH "prod.keys"
2019-06-09 02:36:21 +01:00
2019-12-11 08:56:58 +00:00
#define CFW_PATH_ATMOSPHERE "sdmc:/atmosphere/contents/"
#define CFW_PATH_SXOS "sdmc:/sxos/titles/"
#define CFW_PATH_REINX "sdmc:/ReiNX/titles/"
2020-03-30 22:10:07 +01:00
#define HTTP_USER_AGENT APP_TITLE "/" APP_VERSION " (Nintendo Switch)"
#define GITHUB_API_URL "https://api.github.com/repos/DarkMatterCore/nxdumptool/releases/latest"
#define GITHUB_API_JSON_RELEASE_NAME "name"
#define GITHUB_API_JSON_ASSETS "assets"
#define GITHUB_API_JSON_ASSETS_NAME "name"
#define GITHUB_API_JSON_ASSETS_DL_URL "browser_download_url"
#define NOINTRO_DOM_CHECK_URL "https://datomatic.no-intro.org/qchknsw.php"
#define NSWDB_XML_URL "http://nswdb.com/xml.php"
#define NSWDB_XML_ROOT "releases"
#define NSWDB_XML_CHILD "release"
#define NSWDB_XML_CHILD_TITLEID "titleid"
#define NSWDB_XML_CHILD_IMGCRC "imgcrc"
#define NSWDB_XML_CHILD_RELEASENAME "releasename"
#define LOCKPICK_RCM_URL "https://github.com/shchmue/Lockpick_RCM"
2019-05-01 21:24:13 +01:00
#define KiB (1024.0)
#define MiB (1024.0 * KiB)
#define GiB (1024.0 * MiB)
2020-03-30 22:10:07 +01:00
#define NAME_BUF_LEN 2048
2019-12-11 08:56:58 +00:00
#define DUMP_BUFFER_SIZE (u64)0x400000 // 4 MiB (4194304 bytes)
2019-12-11 08:56:58 +00:00
#define GAMECARD_READ_BUFFER_SIZE DUMP_BUFFER_SIZE // 4 MiB (4194304 bytes)
2019-09-15 03:45:27 +01:00
2019-12-11 08:56:58 +00:00
#define NCA_CTR_BUFFER_SIZE DUMP_BUFFER_SIZE // 4 MiB (4194304 bytes)
2019-09-15 03:45:27 +01:00
2019-06-05 23:44:18 +01:00
#define APPLICATION_PATCH_BITMASK (u64)0x800
#define APPLICATION_ADDON_BITMASK (u64)0xFFFFFFFFFFFF0000
2019-05-01 21:24:13 +01:00
#define NACP_APPNAME_LEN 0x200
#define NACP_AUTHOR_LEN 0x100
#define VERSION_STR_LEN 0x40
#define MEDIA_UNIT_SIZE 0x200
2019-12-11 08:56:58 +00:00
#define ISTORAGE_PARTITION_CNT 2
2019-05-01 21:24:13 +01:00
2019-12-11 08:56:58 +00:00
#define GAMECARD_WAIT_TIME 3 // 3 seconds
#define GAMECARD_HEADER_MAGIC (u32)0x48454144 // "HEAD"
2019-05-01 21:24:13 +01:00
#define GAMECARD_SIZE_1GiB (u64)0x40000000
#define GAMECARD_SIZE_2GiB (u64)0x80000000
#define GAMECARD_SIZE_4GiB (u64)0x100000000
#define GAMECARD_SIZE_8GiB (u64)0x200000000
#define GAMECARD_SIZE_16GiB (u64)0x400000000
#define GAMECARD_SIZE_32GiB (u64)0x800000000
#define GAMECARD_UPDATE_TITLEID (u64)0x0100000000000816
2019-12-11 08:56:58 +00:00
#define GAMECARD_ECC_BLOCK_SIZE (u64)0x200 // 512 bytes
#define GAMECARD_ECC_DATA_SIZE (u64)0x24 // 36 bytes
#define GAMECARD_TYPE1_PARTITION_CNT 3 // "update" (0), "normal" (1), "secure" (2)
#define GAMECARD_TYPE2_PARTITION_CNT 4 // "update" (0), "logo" (1), "normal" (2), "secure" (3)
#define GAMECARD_TYPE(x) ((x) == GAMECARD_TYPE1_PARTITION_CNT ? "Type 0x01" : ((x) == GAMECARD_TYPE2_PARTITION_CNT ? "Type 0x02" : "Unknown"))
#define GAMECARD_TYPE1_PART_NAMES(x) ((x) == 0 ? "Update" : ((x) == 1 ? "Normal" : ((x) == 2 ? "Secure" : "Unknown")))
#define GAMECARD_TYPE2_PART_NAMES(x) ((x) == 0 ? "Update" : ((x) == 1 ? "Logo" : ((x) == 2 ? "Normal" : ((x) == 3 ? "Secure" : "Unknown"))))
#define GAMECARD_PARTITION_NAME(x, y) ((x) == GAMECARD_TYPE1_PARTITION_CNT ? GAMECARD_TYPE1_PART_NAMES(y) : ((x) == GAMECARD_TYPE2_PARTITION_CNT ? GAMECARD_TYPE2_PART_NAMES(y) : "Unknown"))
#define HFS0_MAGIC (u32)0x48465330 // "HFS0"
#define HFS0_TO_ISTORAGE_IDX(x, y) ((x) == GAMECARD_TYPE1_PARTITION_CNT ? ((y) < (GAMECARD_TYPE1_PARTITION_CNT - 1) ? 0 : 1) : ((y) < (GAMECARD_TYPE2_PARTITION_CNT - 1) ? 0 : 1))
2019-06-05 23:44:18 +01:00
#define NACP_ICON_SQUARE_DIMENSION 256
#define NACP_ICON_DOWNSCALED 96
2019-05-01 21:24:13 +01:00
#define round_up(x, y) ((x) + (((y) - ((x) % (y))) % (y))) // Aligns 'x' bytes to a 'y' bytes boundary
2019-06-09 02:36:21 +01:00
#define ORPHAN_ENTRY_TYPE_PATCH 1
#define ORPHAN_ENTRY_TYPE_ADDON 2
2019-10-17 21:15:35 +01:00
#define MAX_ELEMENTS(x) ((sizeof((x))) / (sizeof((x)[0]))) // Returns the max number of elements that can be stored in an array
2019-12-11 08:56:58 +00:00
#define MAX_CHARACTERS(x) (MAX_ELEMENTS((x)) - 1) // Returns the max number of characters that can be stored in char array while also leaving space for a NULL terminator
2019-10-17 21:15:35 +01:00
2019-11-06 18:22:40 +00:00
#define BIS_MOUNT_NAME "sys:"
#define BIS_CERT_SAVE_NAME BIS_MOUNT_NAME "/save/80000000000000e0"
#define BIS_COMMON_TIK_SAVE_NAME BIS_MOUNT_NAME "/save/80000000000000e1"
#define BIS_PERSONALIZED_TIK_SAVE_NAME BIS_MOUNT_NAME "/save/80000000000000e2"
2019-12-11 08:56:58 +00:00
#define SMOOTHING_FACTOR (double)0.1
#define CANCEL_BTN_SEC_HOLD 2 // The cancel button must be held for at least CANCEL_BTN_SEC_HOLD seconds to cancel an ongoing operation
typedef struct {
u8 signature[0x100];
u32 magic;
u32 secureAreaStartAddr;
u32 backupAreaStartAddr;
u8 titleKeyIndex;
u8 size;
u8 headerVersion;
u8 flags;
u64 packageId;
u64 validDataEndAddr;
u8 iv[0x10];
u64 rootHfs0HeaderOffset;
u64 rootHfs0HeaderSize;
u8 rootHfs0HeaderHash[SHA256_HASH_SIZE];
u8 initialDataHash[SHA256_HASH_SIZE];
u32 securityMode;
u32 t1KeyIndex;
u32 keyIndex;
u32 normalAreaEndAddr;
u8 encryptedInfoBlock[0x70];
} PACKED gamecard_header_t;
typedef struct {
u64 offset;
u64 size;
u8 *header;
u64 header_size;
u32 file_cnt;
u32 str_table_size;
} PACKED hfs0_partition_info;
typedef enum {
ISTORAGE_PARTITION_NONE = 0,
ISTORAGE_PARTITION_NORMAL,
ISTORAGE_PARTITION_SECURE,
ISTORAGE_PARTITION_INVALID
} openIStoragePartition;
typedef struct {
FsDeviceOperator fsOperatorInstance;
FsEventNotifier fsGameCardEventNotifier;
Event fsGameCardKernelEvent;
FsGameCardHandle fsGameCardHandle;
FsStorage fsGameCardStorage;
openIStoragePartition curIStorageIndex;
volatile bool isInserted;
gamecard_header_t header;
u8 *rootHfs0Header;
u32 hfs0PartitionCnt;
hfs0_partition_info *hfs0Partitions;
u64 size;
char sizeStr[32];
u64 trimmedSize;
char trimmedSizeStr[32];
u64 IStoragePartitionSizes[ISTORAGE_PARTITION_CNT];
u64 updateTitleId;
u32 updateVersion;
char updateVersionStr[64];
2020-03-30 22:10:07 +01:00
} gamecard_ctx_t;
2019-12-11 08:56:58 +00:00
typedef struct {
u64 titleId;
u32 version;
u32 ncmIndex;
NcmStorageId storageId;
char name[NACP_APPNAME_LEN];
char fixedName[NACP_APPNAME_LEN];
char author[NACP_AUTHOR_LEN];
char versionStr[VERSION_STR_LEN];
u8 *icon;
u64 contentSize;
char contentSizeStr[32];
2020-03-30 22:10:07 +01:00
} base_app_ctx_t;
2019-12-11 08:56:58 +00:00
typedef struct {
u64 titleId;
u32 version;
u32 ncmIndex;
NcmStorageId storageId;
char versionStr[VERSION_STR_LEN];
u64 contentSize;
char contentSizeStr[32];
2020-03-30 22:10:07 +01:00
} patch_addon_ctx_t;
2019-12-11 08:56:58 +00:00
typedef struct {
u32 index;
u8 type; // 1 = Patch, 2 = AddOn
char name[NACP_APPNAME_LEN];
char fixedName[NACP_APPNAME_LEN];
char orphanListStr[NACP_APPNAME_LEN * 2];
2020-03-30 22:10:07 +01:00
} orphan_patch_addon_entry;
2019-12-11 08:56:58 +00:00
typedef struct {
u32 magic;
u32 file_cnt;
u32 str_table_size;
u32 reserved;
} PACKED hfs0_header;
2019-06-05 23:44:18 +01:00
typedef struct {
2019-05-01 21:24:13 +01:00
u64 file_offset;
u64 file_size;
u32 filename_offset;
u32 hashed_region_size;
u64 reserved;
u8 hashed_region_sha256[0x20];
2019-12-11 08:56:58 +00:00
} PACKED hfs0_file_entry;
2019-05-01 21:24:13 +01:00
typedef struct {
2019-06-05 23:44:18 +01:00
int line_offset;
u64 totalSize;
char totalSizeStr[32];
u64 curOffset;
char curOffsetStr[32];
2019-10-17 21:15:35 +01:00
u64 seqDumpCurOffset;
2019-06-05 23:44:18 +01:00
u8 progress;
u64 start;
u64 now;
u64 remainingTime;
char etaInfo[32];
double lastSpeed;
double averageSpeed;
2019-08-15 06:21:51 +01:00
u32 cancelBtnState;
u32 cancelBtnStatePrev;
u64 cancelStartTmr;
u64 cancelEndTmr;
2020-03-30 22:10:07 +01:00
} progress_ctx_t;
2019-04-21 17:27:33 +01:00
2019-09-15 03:45:27 +01:00
typedef enum {
ROMFS_TYPE_APP = 0,
ROMFS_TYPE_PATCH,
ROMFS_TYPE_ADDON
} selectedRomFsType;
2019-11-06 18:22:40 +00:00
typedef enum {
TICKET_TYPE_APP = 0,
TICKET_TYPE_PATCH,
TICKET_TYPE_ADDON
} selectedTicketType;
2019-10-17 21:15:35 +01:00
typedef struct {
bool isFat32;
2019-11-06 18:22:40 +00:00
bool setXciArchiveBit;
2019-10-17 21:15:35 +01:00
bool keepCert;
bool trimDump;
bool calcCrc;
2019-12-11 08:56:58 +00:00
bool useNoIntroLookup;
bool useBrackets;
2019-10-17 21:15:35 +01:00
} PACKED xciOptions;
typedef struct {
bool isFat32;
2019-12-11 08:56:58 +00:00
bool useNoIntroLookup;
2019-10-17 21:15:35 +01:00
bool removeConsoleData;
bool tiklessDump;
2019-11-06 18:22:40 +00:00
bool npdmAcidRsaPatch;
2019-12-11 08:56:58 +00:00
bool dumpDeltaFragments;
bool useBrackets;
2019-10-17 21:15:35 +01:00
} PACKED nspOptions;
2019-11-06 18:22:40 +00:00
typedef enum {
BATCH_SOURCE_ALL = 0,
BATCH_SOURCE_SDCARD,
BATCH_SOURCE_EMMC,
BATCH_SOURCE_CNT
} batchModeSourceStorage;
2019-10-17 21:15:35 +01:00
typedef struct {
bool dumpAppTitles;
bool dumpPatchTitles;
bool dumpAddOnTitles;
bool isFat32;
bool removeConsoleData;
bool tiklessDump;
2019-11-06 18:22:40 +00:00
bool npdmAcidRsaPatch;
2019-12-11 08:56:58 +00:00
bool dumpDeltaFragments;
2019-10-17 21:15:35 +01:00
bool skipDumpedTitles;
bool rememberDumpedTitles;
2019-12-11 08:56:58 +00:00
bool haltOnErrors;
bool useBrackets;
2019-11-06 18:22:40 +00:00
batchModeSourceStorage batchModeSrc;
2019-10-17 21:15:35 +01:00
} PACKED batchOptions;
2019-11-06 18:22:40 +00:00
typedef struct {
bool removeConsoleData;
} PACKED ticketOptions;
2019-12-11 08:56:58 +00:00
typedef struct {
bool isFat32;
bool useLayeredFSDir;
} PACKED ncaFsOptions;
2019-10-17 21:15:35 +01:00
typedef struct {
xciOptions xciDumpCfg;
nspOptions nspDumpCfg;
batchOptions batchDumpCfg;
2019-11-06 18:22:40 +00:00
ticketOptions tikDumpCfg;
2019-12-11 08:56:58 +00:00
ncaFsOptions exeFsDumpCfg;
ncaFsOptions romFsDumpCfg;
2019-10-17 21:15:35 +01:00
} PACKED dumpOptions;
void loadConfig();
void saveConfig();
2019-12-11 08:56:58 +00:00
void closeGameCardStoragePartition();
Result openGameCardStoragePartition(openIStoragePartition partitionIndex);
Result readGameCardStoragePartition(u64 off, void *buf, size_t len);
2019-06-28 21:13:54 +01:00
void delay(u8 seconds);
2019-12-11 08:56:58 +00:00
void convertSize(u64 size, char *out, size_t outSize);
void updateFreeSpace();
2019-06-05 23:44:18 +01:00
2020-03-30 22:10:07 +01:00
void freeFilenameBuffer(void);
2019-06-09 02:36:21 +01:00
void initExeFsContext();
void freeExeFsContext();
2019-05-01 21:24:13 +01:00
2019-06-05 23:44:18 +01:00
void initRomFsContext();
void freeRomFsContext();
2019-06-28 21:13:54 +01:00
void initBktrContext();
void freeBktrContext();
2019-12-11 08:56:58 +00:00
void freeRomFsBrowserEntries();
void freeHfs0ExeFsEntriesSizes();
2019-05-01 21:24:13 +01:00
2021-02-25 06:27:31 +00:00
void scanPads(void);
u64 getButtonsDown(void);
u64 getButtonsHeld(void);
2020-03-30 22:10:07 +01:00
2019-12-11 08:56:58 +00:00
void consoleErrorScreen(const char *fmt, ...);
bool initApplicationResources(int argc, char **argv);
void deinitApplicationResources();
2019-06-28 21:13:54 +01:00
2020-03-30 22:10:07 +01:00
bool appletModeCheck();
void appletModeOperationWarning();
void changeHomeButtonBlockStatus(bool block);
2019-06-28 21:13:54 +01:00
2020-03-30 22:10:07 +01:00
void formatETAString(u64 curTime, char *out, size_t outSize);
2019-06-09 02:36:21 +01:00
2019-12-11 08:56:58 +00:00
void generateSdCardEmmcTitleList();
bool loadTitlesFromSdCardAndEmmc(NcmContentMetaType metaType);
void freeTitlesFromSdCardAndEmmc(NcmContentMetaType metaType);
2019-06-09 02:36:21 +01:00
2019-12-11 08:56:58 +00:00
void removeIllegalCharacters(char *name);
2019-06-09 02:36:21 +01:00
void strtrim(char *str);
void loadTitleInfo();
2019-04-21 17:27:33 +01:00
2019-12-11 08:56:58 +00:00
void truncateBrowserEntryName(char *str);
2019-05-01 21:24:13 +01:00
bool getHfs0FileList(u32 partition);
2019-12-11 08:56:58 +00:00
bool readFileFromSecureHfs0PartitionByName(const char *filename, u64 offset, void *outBuf, size_t bufSize);
2019-06-09 02:36:21 +01:00
bool calculateExeFsExtractedDataSize(u64 *out);
2019-06-28 21:13:54 +01:00
bool calculateRomFsFullExtractedSize(bool usePatch, u64 *out);
2019-06-28 21:13:54 +01:00
bool calculateRomFsExtractedDirSize(u32 dir_offset, bool usePatch, u64 *out);
2019-12-11 08:56:58 +00:00
bool retrieveContentInfosFromTitle(NcmStorageId storageId, NcmContentMetaType metaType, u32 titleCount, u32 titleIndex, NcmContentInfo **outContentInfos, u32 *outContentInfoCnt);
2019-11-06 18:22:40 +00:00
void removeConsoleDataFromTicket(title_rights_ctx *rights_info);
2019-09-15 03:45:27 +01:00
bool readNcaExeFsSection(u32 titleIndex, bool usePatch);
2020-09-26 10:51:20 +01:00
int readNcaRomFsSection(u32 titleIndex, selectedRomFsType curRomFsType, int desiredIdOffset);
2019-06-09 02:36:21 +01:00
bool getExeFsFileList();
2019-05-01 21:24:13 +01:00
2019-06-28 21:13:54 +01:00
bool getRomFsFileList(u32 dir_offset, bool usePatch);
2019-12-11 08:56:58 +00:00
char *generateGameCardDumpName(bool useBrackets);
2019-06-05 23:44:18 +01:00
2019-12-11 08:56:58 +00:00
char *generateNSPDumpName(nspDumpType selectedNspDumpType, u32 titleIndex, bool useBrackets);
2019-06-09 02:36:21 +01:00
2019-12-11 08:56:58 +00:00
void retrieveDescriptionForPatchOrAddOn(u32 titleIndex, bool addOn, bool addAppName, const char *prefix, char *outBuf, size_t outBufSize);
2019-05-01 21:24:13 +01:00
2019-12-11 08:56:58 +00:00
u32 calculateOrphanPatchOrAddOnCount(bool addOn);
2019-11-06 18:22:40 +00:00
2019-06-09 02:36:21 +01:00
void generateOrphanPatchOrAddOnList();
bool checkIfBaseApplicationHasPatchOrAddOn(u32 appIndex, bool addOn);
2019-06-20 04:56:14 +01:00
bool checkIfPatchOrAddOnBelongsToBaseApplication(u32 titleIndex, u32 appIndex, bool addOn);
2019-06-09 02:36:21 +01:00
u32 retrieveFirstPatchOrAddOnIndexFromBaseApplication(u32 appIndex, bool addOn);
2019-06-20 04:56:14 +01:00
u32 retrievePreviousPatchOrAddOnIndexFromBaseApplication(u32 startTitleIndex, u32 appIndex, bool addOn);
u32 retrieveNextPatchOrAddOnIndexFromBaseApplication(u32 startTitleIndex, u32 appIndex, bool addOn);
2019-09-15 03:45:27 +01:00
u32 retrieveLastPatchOrAddOnIndexFromBaseApplication(u32 appIndex, bool addOn);
2019-06-05 23:44:18 +01:00
void waitForButtonPress();
2019-05-01 21:24:13 +01:00
2019-06-05 23:44:18 +01:00
void printProgressBar(progress_ctx_t *progressCtx, bool calcData, u64 chunkSize);
2019-05-01 21:24:13 +01:00
2019-06-05 23:44:18 +01:00
void setProgressBarError(progress_ctx_t *progressCtx);
2019-08-15 06:21:51 +01:00
bool cancelProcessCheck(progress_ctx_t *progressCtx);
2019-06-05 23:44:18 +01:00
void convertDataToHexString(const u8 *data, const u32 dataSize, char *outBuf, const u32 outBufSize);
2019-05-01 21:24:13 +01:00
2019-06-20 04:56:14 +01:00
bool checkIfFileExists(const char *path);
bool yesNoPrompt(const char *message);
2019-06-28 21:13:54 +01:00
bool checkIfDumpedXciContainsCertificate(const char *xciPath);
2019-06-20 04:56:14 +01:00
bool checkIfDumpedNspContainsConsoleData(const char *nspPath);
2019-08-15 06:21:51 +01:00
void removeDirectoryWithVerbose(const char *path, const char *msg);
2019-04-21 17:27:33 +01:00
2018-06-30 07:37:42 +01:00
void gameCardDumpNSWDBCheck(u32 crc);
2019-12-11 08:56:58 +00:00
void noIntroDumpCheck(bool isDigital, u32 crc);
2018-06-30 07:37:42 +01:00
void updateNSWDBXml();
2019-11-06 18:22:40 +00:00
bool updateApplication();
2018-06-30 07:37:42 +01:00
#endif