mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
dmnt-cheat: implement cheat loading from SD
This commit is contained in:
parent
5ef3ca9364
commit
34af93b72f
4 changed files with 212 additions and 4 deletions
|
@ -29,11 +29,20 @@ static DmntCheatVm *g_cheat_vm;
|
||||||
static CheatProcessMetadata g_cheat_process_metadata = {0};
|
static CheatProcessMetadata g_cheat_process_metadata = {0};
|
||||||
static Handle g_cheat_process_debug_hnd = 0;
|
static Handle g_cheat_process_debug_hnd = 0;
|
||||||
|
|
||||||
|
/* Global cheat entry storage. */
|
||||||
|
static CheatEntry g_cheat_entries[DmntCheatManager::MaxCheatCount];
|
||||||
|
|
||||||
void DmntCheatManager::CloseActiveCheatProcess() {
|
void DmntCheatManager::CloseActiveCheatProcess() {
|
||||||
if (g_cheat_process_debug_hnd != 0) {
|
if (g_cheat_process_debug_hnd != 0) {
|
||||||
|
/* Close process resources. */
|
||||||
svcCloseHandle(g_cheat_process_debug_hnd);
|
svcCloseHandle(g_cheat_process_debug_hnd);
|
||||||
g_cheat_process_debug_hnd = 0;
|
g_cheat_process_debug_hnd = 0;
|
||||||
g_cheat_process_metadata = (CheatProcessMetadata){0};
|
g_cheat_process_metadata = (CheatProcessMetadata){0};
|
||||||
|
|
||||||
|
/* Clear cheat list. */
|
||||||
|
ResetAllCheatEntries();
|
||||||
|
|
||||||
|
/* Signal to our fans. */
|
||||||
g_cheat_process_event->Signal();
|
g_cheat_process_event->Signal();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -177,6 +186,166 @@ Result DmntCheatManager::QueryCheatProcessMemory(MemoryInfo *mapping, u64 addres
|
||||||
return ResultDmntCheatNotAttached;
|
return ResultDmntCheatNotAttached;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DmntCheatManager::ResetCheatEntry(size_t i) {
|
||||||
|
if (i < DmntCheatManager::MaxCheatCount) {
|
||||||
|
g_cheat_entries[i].enabled = false;
|
||||||
|
g_cheat_entries[i].cheat_id = i;
|
||||||
|
g_cheat_entries[i].definition = {0};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void DmntCheatManager::ResetAllCheatEntries() {
|
||||||
|
for (size_t i = 0; i < DmntCheatManager::MaxCheatCount; i++) {
|
||||||
|
ResetCheatEntry(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CheatEntry *DmntCheatManager::GetFreeCheatEntry() {
|
||||||
|
/* Check all non-master cheats for availability. */
|
||||||
|
for (size_t i = 1; i < DmntCheatManager::MaxCheatCount; i++) {
|
||||||
|
if (g_cheat_entries[i].definition.num_opcodes == 0) {
|
||||||
|
return &g_cheat_entries[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DmntCheatManager::ParseCheats(const char *s, size_t len) {
|
||||||
|
size_t i = 0;
|
||||||
|
CheatEntry *cur_entry = NULL;
|
||||||
|
|
||||||
|
while (i < len) {
|
||||||
|
if (isspace(s[i])) {
|
||||||
|
/* Just ignore space. */
|
||||||
|
i++;
|
||||||
|
} else if (s[i] == '[') {
|
||||||
|
/* Parse a readable cheat name. */
|
||||||
|
cur_entry = GetFreeCheatEntry();
|
||||||
|
if (cur_entry == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Extract name bounds. */
|
||||||
|
size_t j = i + 1;
|
||||||
|
while (s[j] != ']') {
|
||||||
|
j++;
|
||||||
|
if (j >= len || (j - i - 1) >= sizeof(cur_entry->definition.readable_name)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* s[i+1:j] is cheat name. */
|
||||||
|
const size_t cheat_name_len = (j - i - 1);
|
||||||
|
memcpy(cur_entry->definition.readable_name, &s[i+1], cheat_name_len);
|
||||||
|
cur_entry->definition.readable_name[cheat_name_len] = 0;
|
||||||
|
|
||||||
|
/* Skip onwards. */
|
||||||
|
i = j + 1;
|
||||||
|
} else if (s[i] == '{') {
|
||||||
|
/* We're parsing a master cheat. */
|
||||||
|
cur_entry = &g_cheat_entries[0];
|
||||||
|
|
||||||
|
/* There can only be one master cheat. */
|
||||||
|
if (cur_entry->definition.num_opcodes > 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Extract name bounds */
|
||||||
|
size_t j = i + 1;
|
||||||
|
while (s[j] != '}') {
|
||||||
|
j++;
|
||||||
|
if (j >= len || (j - i - 1) >= sizeof(cur_entry->definition.readable_name)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* s[i+1:j] is cheat name. */
|
||||||
|
const size_t cheat_name_len = (j - i - 1);
|
||||||
|
memcpy(cur_entry->definition.readable_name, &s[i+1], cheat_name_len);
|
||||||
|
cur_entry->definition.readable_name[cheat_name_len] = 0;
|
||||||
|
|
||||||
|
/* Skip onwards. */
|
||||||
|
i = j + 1;
|
||||||
|
} else if (isxdigit(s[i])) {
|
||||||
|
/* Make sure that we have a cheat open. */
|
||||||
|
if (cur_entry == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* We're parsing an instruction, so validate it's 8 hex digits. */
|
||||||
|
for (size_t j = 1; j < 8; j++) {
|
||||||
|
/* Validate 8 hex chars. */
|
||||||
|
if (i + j >= len || !isxdigit(s[i+j])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Parse the new opcode. */
|
||||||
|
char hex_str[9] = {0};
|
||||||
|
memcpy(hex_str, &s[i], 8);
|
||||||
|
cur_entry->definition.opcodes[cur_entry->definition.num_opcodes++] = strtoul(hex_str, NULL, 16);
|
||||||
|
|
||||||
|
/* Skip onwards. */
|
||||||
|
i += 8;
|
||||||
|
} else {
|
||||||
|
/* Unexpected character encountered. */
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Enable all entries we parsed. */
|
||||||
|
for (size_t i = 0; i < DmntCheatManager::MaxCheatCount; i++) {
|
||||||
|
if (g_cheat_entries[i].definition.num_opcodes > 0) {
|
||||||
|
g_cheat_entries[i].enabled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DmntCheatManager::LoadCheats(u64 title_id, const u8 *build_id) {
|
||||||
|
/* Reset existing entries. */
|
||||||
|
ResetAllCheatEntries();
|
||||||
|
|
||||||
|
FILE *f_cht = NULL;
|
||||||
|
/* Open the file for title/build_id. */
|
||||||
|
{
|
||||||
|
char path[FS_MAX_PATH+1] = {0};
|
||||||
|
snprintf(path, FS_MAX_PATH, "sdmc:/atmosphere/titles/%016lx/cheats/%02x%02x%02x%02x%02x%02x%02x%02x.txt", title_id,
|
||||||
|
build_id[0], build_id[1], build_id[2], build_id[3], build_id[4], build_id[5], build_id[6], build_id[7]);
|
||||||
|
|
||||||
|
f_cht = fopen(path, "rb");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check for NULL */
|
||||||
|
if (f_cht == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
ON_SCOPE_EXIT { fclose(f_cht); };
|
||||||
|
|
||||||
|
/* Get file size. */
|
||||||
|
fseek(f_cht, 0L, SEEK_END);
|
||||||
|
const size_t cht_sz = ftell(f_cht);
|
||||||
|
fseek(f_cht, 0L, SEEK_SET);
|
||||||
|
|
||||||
|
/* Allocate cheat txt buffer. */
|
||||||
|
char *cht_txt = (char *)malloc(cht_sz + 1);
|
||||||
|
if (cht_txt == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
ON_SCOPE_EXIT { free(cht_txt); };
|
||||||
|
|
||||||
|
/* Read cheats into buffer. */
|
||||||
|
if (fread(cht_txt, 1, cht_sz, f_cht) != cht_sz) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
cht_txt[cht_sz] = 0;
|
||||||
|
|
||||||
|
/* Parse cheat buffer. */
|
||||||
|
return ParseCheats(cht_txt, strlen(cht_txt));
|
||||||
|
}
|
||||||
|
|
||||||
Handle DmntCheatManager::PrepareDebugNextApplication() {
|
Handle DmntCheatManager::PrepareDebugNextApplication() {
|
||||||
Result rc;
|
Result rc;
|
||||||
Handle event_h;
|
Handle event_h;
|
||||||
|
@ -267,7 +436,9 @@ Result DmntCheatManager::ForceOpenCheatProcess() {
|
||||||
memcpy(g_cheat_process_metadata.main_nso_build_id, proc_module->build_id, sizeof(g_cheat_process_metadata.main_nso_build_id));
|
memcpy(g_cheat_process_metadata.main_nso_build_id, proc_module->build_id, sizeof(g_cheat_process_metadata.main_nso_build_id));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: Read cheats off the SD. */
|
/* Read cheats off the SD. */
|
||||||
|
/* This is allowed to fail. We may not have any cheats. */
|
||||||
|
LoadCheats(g_cheat_process_metadata.title_id, g_cheat_process_metadata.main_nso_build_id);
|
||||||
|
|
||||||
/* Open a debug handle. */
|
/* Open a debug handle. */
|
||||||
if (R_FAILED((rc = svcDebugActiveProcess(&g_cheat_process_debug_hnd, g_cheat_process_metadata.process_id)))) {
|
if (R_FAILED((rc = svcDebugActiveProcess(&g_cheat_process_debug_hnd, g_cheat_process_metadata.process_id)))) {
|
||||||
|
@ -344,7 +515,13 @@ void DmntCheatManager::OnNewApplicationLaunch() {
|
||||||
memcpy(g_cheat_process_metadata.main_nso_build_id, proc_modules[1].build_id, sizeof(g_cheat_process_metadata.main_nso_build_id));
|
memcpy(g_cheat_process_metadata.main_nso_build_id, proc_modules[1].build_id, sizeof(g_cheat_process_metadata.main_nso_build_id));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: Read cheats off the SD. */
|
/* Read cheats off the SD. */
|
||||||
|
if (!LoadCheats(g_cheat_process_metadata.title_id, g_cheat_process_metadata.main_nso_build_id)) {
|
||||||
|
/* If we don't have cheats, or cheats are malformed, don't attach. */
|
||||||
|
StartDebugProcess(g_cheat_process_metadata.process_id);
|
||||||
|
g_cheat_process_metadata.process_id = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* Open a debug handle. */
|
/* Open a debug handle. */
|
||||||
if (R_FAILED((rc = svcDebugActiveProcess(&g_cheat_process_debug_hnd, g_cheat_process_metadata.process_id)))) {
|
if (R_FAILED((rc = svcDebugActiveProcess(&g_cheat_process_debug_hnd, g_cheat_process_metadata.process_id)))) {
|
||||||
|
@ -389,11 +566,13 @@ void DmntCheatManager::VmThread(void *arg) {
|
||||||
ContinueCheatProcess();
|
ContinueCheatProcess();
|
||||||
|
|
||||||
/* Execute VM. */
|
/* Execute VM. */
|
||||||
|
if (g_cheat_vm->LoadProgram(g_cheat_entries, DmntCheatManager::MaxCheatCount)) {
|
||||||
if (g_cheat_vm->GetProgramSize() != 0) {
|
if (g_cheat_vm->GetProgramSize() != 0) {
|
||||||
g_cheat_vm->Execute(&g_cheat_process_metadata);
|
g_cheat_vm->Execute(&g_cheat_process_metadata);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
svcSleepThread(0x5000000ul);
|
svcSleepThread(0x5000000ul);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,8 @@
|
||||||
#include "dmnt_cheat_types.hpp"
|
#include "dmnt_cheat_types.hpp"
|
||||||
|
|
||||||
class DmntCheatManager {
|
class DmntCheatManager {
|
||||||
|
public:
|
||||||
|
static constexpr size_t MaxCheatCount = 0x80;
|
||||||
private:
|
private:
|
||||||
static Handle PrepareDebugNextApplication();
|
static Handle PrepareDebugNextApplication();
|
||||||
static void OnNewApplicationLaunch();
|
static void OnNewApplicationLaunch();
|
||||||
|
@ -30,6 +32,12 @@ class DmntCheatManager {
|
||||||
static bool HasActiveCheatProcess();
|
static bool HasActiveCheatProcess();
|
||||||
static void CloseActiveCheatProcess();
|
static void CloseActiveCheatProcess();
|
||||||
static void ContinueCheatProcess();
|
static void ContinueCheatProcess();
|
||||||
|
|
||||||
|
static void ResetCheatEntry(size_t i);
|
||||||
|
static void ResetAllCheatEntries();
|
||||||
|
static CheatEntry *GetFreeCheatEntry();
|
||||||
|
static bool ParseCheats(const char *cht_txt, size_t len);
|
||||||
|
static bool LoadCheats(u64 title_id, const u8 *build_id);
|
||||||
public:
|
public:
|
||||||
static bool GetHasActiveCheatProcess();
|
static bool GetHasActiveCheatProcess();
|
||||||
static Handle GetCheatProcessEventHandle();
|
static Handle GetCheatProcessEventHandle();
|
||||||
|
|
|
@ -353,6 +353,26 @@ void DmntCheatVm::ResetState() {
|
||||||
this->decode_success = true;
|
this->decode_success = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool DmntCheatVm::LoadProgram(const CheatEntry *cheats, size_t num_cheats) {
|
||||||
|
/* Reset opcode count. */
|
||||||
|
this->num_opcodes = 0;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < num_cheats; i++) {
|
||||||
|
if (cheats[i].enabled) {
|
||||||
|
/* Bounds check. */
|
||||||
|
if (cheats[i].definition.num_opcodes + this->num_opcodes > MaximumProgramOpcodeCount) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t n = 0; n < cheats[i].definition.num_opcodes; n++) {
|
||||||
|
this->program[this->num_opcodes++] = cheats[i].definition.opcodes[n];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void DmntCheatVm::Execute(const CheatProcessMetadata *metadata) {
|
void DmntCheatVm::Execute(const CheatProcessMetadata *metadata) {
|
||||||
CheatVmOpcode cur_opcode;
|
CheatVmOpcode cur_opcode;
|
||||||
u64 kDown = 0;
|
u64 kDown = 0;
|
||||||
|
|
|
@ -187,6 +187,7 @@ class DmntCheatVm {
|
||||||
return this->num_opcodes;
|
return this->num_opcodes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool LoadProgram(const CheatEntry *cheats, size_t num_cheats);
|
||||||
void Execute(const CheatProcessMetadata *metadata);
|
void Execute(const CheatProcessMetadata *metadata);
|
||||||
#ifdef DMNT_CHEAT_VM_DEBUG_LOG
|
#ifdef DMNT_CHEAT_VM_DEBUG_LOG
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in a new issue