SysCheck-ModMii-Edition/include/sys.h

160 lines
3.2 KiB
C

#ifndef __SYS_H__
#define __SYS_H__
#include <ogc\lwp_watchdog.h>
#include "tools.h"
#define AHB_ACCESS (*(vu32*)0xcd800064 == 0xFFFFFFFF)
#define MEM_REG_BASE 0xd8b4000
#define MEM_PROT (MEM_REG_BASE + 0x20a)
#define HOLLYWOOD_VERSION (vu32*)0x80003138
#define LOADER_STUB (vu32*)0x80001800
#define IS_WII_U ((*(vu32*)(0xCd8005A0) >> 16 ) == 0xCAFE)
#define MAX_ELEMENTS(x) ((sizeof((x))) / (sizeof((x)[0])))
#define CheckTime(X,Y) while(!(ticks_to_millisecs(diff_ticks((X), gettick())) > (Y)))
#define UpdateTime() current_time = gettick();
// Turn upper and lower into a full title ID
#define TITLE_ID(x,y) (((u64)(x) << 32) | (y))
// Get upper or lower half of a title ID
#define TITLE_UPPER(x) ((u32)((x) >> 32))
// Turn upper and lower into a full title ID
#define TITLE_LOWER(x) ((u32)(x))
#define FULL_TITLE_ID(titleId) ((u32)(titleId))
#define TITLE_ID2(titleId) ((u32)((titleId) >> 32))
enum {
APP_TITLE = 0,
APP_IOS,
BLANK_LINE,
TEXT_REGION,
SYSMENU,
PRIILOADER,
DVD,
HBC,
HBF,
HOLLYWOOD,
CONSOLE_ID,
CONSOLE_TYPE,
COUNTRY,
BOOT2_VERSION,
NR_OF_TITLES,
NR_OF_IOS,
BLANK,
LAST
};
enum {
HBC_NONE = 0,
HBC_HAXX,
HBC_JODI,
HBC_1_0_7,
HBC_LULZ
};
enum {
HBF_NONE = 0,
HBF_HBF0,
HBF_THBF
};
enum {
TID_CBOOT2 = 252, // cBoot252
TID_NANDEMU,
TID_BOOTMII,
TID_BC = 256,
TID_MIOS,
TID_NAND = 512,
TID_WFS
};
typedef struct {
s32 revision;
bool isStub;
bool infoFakeSignature;
bool infoESIdentify;
bool infoFlashAccess;
bool infoNANDAccess;
bool infoBoot2Access;
bool infoUSB2;
bool infoVersionPatch;
bool infovIOS;
s32 baseIOS;
s32 mloadVersion;
char info[64];
u8 infoContent;
u32 titleID;
u8 num_contents;
u32 titleSize;
} IOS;
typedef struct {
bool hasInfo;
u32 realRevision;
char info[0x10];
} sysMenu;
typedef struct _U8Header
{
u32 fcc;
u32 rootNodeOffset;
u32 headerSize;
u32 dataOffset;
u8 zeroes[16];
} __attribute__((packed)) U8Header;
typedef struct _U8Entry
{
struct
{
u32 fileType :8;
u32 nameOffset :24;
};
u32 fileOffset;
union
{
u32 fileLength;
u32 numEntries;
};
} __attribute__( ( packed ) ) U8Entry;
extern const char *Regions[];
extern u8 sysMenuInfoContent;
#ifdef __cplusplus
extern "C"
{
#endif
// Prototypes
char GetSysMenuRegion(u32 sysVersion);
bool GetCertificates(void);
u32 GetSysMenuVersion(void);
float GetSysMenuNintendoVersion(u32 sysVersion);
u32 GetBoot2Version(void);
u32 GetDeviceID(void);
bool CheckIOSType(u32 start_address);
bool CheckFakeSignature(void);
bool CheckESIdentify(void);
bool CheckFlashAccess(void);
bool CheckNANDAccess(void);
bool CheckBoot2Access(void);
bool CheckMload(void);
bool CheckUSB2(u32 titleID);
bool IsKnownStub(u32 noIOS, s32 noRevision);
s32 GetTMD(u64 TicketID, signed_blob **Output, u32 *Length);
s32 read_file_from_nand(char *filepath, u8 **buffer, u32 *filesize);
int checkSysLoader(void);
void transmitSyscheck(char ReportBuffer[200][100], int *lines);
s32 brute_tmd(tmd *p_tmd);
s32 get_miosinfo(char *str);
int get_title_ios(u64 title);
bool getInfoFromContent(IOS *ios);
#ifdef __cplusplus
}
#endif
#endif