mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 21:52:48 +00:00
97 lines
3.1 KiB
C
97 lines
3.1 KiB
C
#pragma once
|
|
|
|
#include "common.h"
|
|
#include "essentials.h"
|
|
#include "keydb.h"
|
|
|
|
#define NAND_SYSNAND (1UL<<0)
|
|
#define NAND_EMUNAND (1UL<<1)
|
|
#define NAND_IMGNAND (1UL<<2)
|
|
#define NAND_ZERONAND (1UL<<3)
|
|
|
|
#define BOOT_UNKNOWN 0
|
|
#define BOOT_NAND (1UL<<0)
|
|
#define BOOT_NTRBOOT (1UL<<1)
|
|
#define BOOT_WIFI_SPI (1UL<<2)
|
|
|
|
// hardcoded start sectors and counts
|
|
#define COUNT_NCSD 0x01
|
|
#define COUNT_SECRET 0x01
|
|
#define COUNT_D0K3 ((sizeof(EssentialBackup) + 0x1FF) / 0x200)
|
|
#define COUNT_KEYDB ((KEYDB_PERFECT_SIZE + 0x1FF) / 0x200)
|
|
#define SECTOR_NCSD 0x000000
|
|
#define SECTOR_SECRET 0x000096
|
|
#define SECTOR_D0K3 (SECTOR_NCSD + COUNT_NCSD)
|
|
#define SECTOR_KEYDB (SECTOR_SECRET - COUNT_KEYDB)
|
|
|
|
// 0x110...0x118 in the NAND NCSD header
|
|
// see: https://www.3dbrew.org/wiki/NCSD#NCSD_header
|
|
#define NP_TYPE_NONE 0
|
|
#define NP_TYPE_STD 1
|
|
#define NP_TYPE_FAT 2 // this is of our own making
|
|
#define NP_TYPE_FIRM 3
|
|
#define NP_TYPE_AGB 4
|
|
#define NP_TYPE_NCSD 5 // this is of our own making
|
|
#define NP_TYPE_D0K3 6 // my own partition ^_^
|
|
#define NP_TYPE_KEYDB 7 // keydb partition, also my own ^_^
|
|
#define NP_TYPE_SECRET 8 // this is of our own making
|
|
#define NP_TYPE_BONUS 9 // this is of our own making
|
|
|
|
// 0x118...0x120 in the NAND NCSD header
|
|
// see: https://www.3dbrew.org/wiki/NCSD#NCSD_header
|
|
#define NP_SUBTYPE_NONE 0
|
|
#define NP_SUBTYPE_TWL 1
|
|
#define NP_SUBTYPE_CTR 2
|
|
#define NP_SUBTYPE_CTR_N 3
|
|
|
|
|
|
typedef struct {
|
|
u32 sector;
|
|
u32 count;
|
|
u32 keyslot;
|
|
} PACKED_STRUCT NandPartitionInfo;
|
|
|
|
typedef struct {
|
|
u32 offset;
|
|
u32 size;
|
|
} PACKED_STRUCT NandNcsdPartition;
|
|
|
|
// see: https://www.3dbrew.org/wiki/NCSD#NCSD_header
|
|
typedef struct {
|
|
u8 signature[0x100];
|
|
u8 magic[4];
|
|
u32 size;
|
|
u64 mediaId; // this is zero
|
|
u8 partitions_fs_type[8];
|
|
u8 partitions_crypto_type[8];
|
|
NandNcsdPartition partitions[8];
|
|
u8 unknown[0x5E];
|
|
u8 twl_mbr[0x42];
|
|
} PACKED_STRUCT NandNcsdHeader;
|
|
|
|
|
|
bool InitNandCrypto(bool init_full);
|
|
bool CheckSlot0x05Crypto(void);
|
|
bool CheckSector0x96Crypto(void);
|
|
bool CheckGenuineNandNcsd(void);
|
|
|
|
void CryptNand(void* buffer, u32 sector, u32 count, u32 keyslot);
|
|
void CryptSector0x96(void* buffer, bool encrypt);
|
|
int ReadNandBytes(void* buffer, u64 offset, u64 count, u32 keyslot, u32 nand_src);
|
|
int WriteNandBytes(const void* buffer, u64 offset, u64 count, u32 keyslot, u32 nand_dst);
|
|
int ReadNandSectors(void* buffer, u32 sector, u32 count, u32 keyslot, u32 nand_src);
|
|
int WriteNandSectors(const void* buffer, u32 sector, u32 count, u32 keyslot, u32 nand_dest);
|
|
|
|
u32 ValidateNandNcsdHeader(NandNcsdHeader* header);
|
|
u32 GetNandNcsdMinSizeSectors(NandNcsdHeader* ncsd);
|
|
u32 GetNandMinSizeSectors(u32 nand_src);
|
|
u32 GetNandSizeSectors(u32 nand_src);
|
|
u32 GetNandNcsdPartitionInfo(NandPartitionInfo* info, u32 type, u32 subtype, u32 index, NandNcsdHeader* ncsd);
|
|
u32 GetNandPartitionInfo(NandPartitionInfo* info, u32 type, u32 subtype, u32 index, u32 nand_src);
|
|
|
|
u32 ValidateSecretSector(u8* sector);
|
|
bool CheckMultiEmuNand(void);
|
|
u32 AutoEmuNandBase(bool reset);
|
|
u32 GetEmuNandBase(void);
|
|
u32 SetEmuNandBase(u32 base_sector);
|