Results: Implement namespaced, type-safe results.
Because I was working on multiple things at once, this commit also:
- Adds wrappers for/linker flags to wrap CXX exceptions to make them
abort. This saves ~0x8000 of memory in every system module.
- Broadly replaces lines of the pattern if (cond) { return ResultX; }
with R_UNLESS(!cond, ResultX());.
- Reworks the R_TRY_CATCH macros (and the result macros in general).
This commit is contained in:
@@ -37,11 +37,8 @@ namespace sts::dmnt::cheat {
|
||||
}
|
||||
|
||||
Result CheatService::ForceOpenCheatProcess() {
|
||||
if (R_FAILED(dmnt::cheat::impl::ForceOpenCheatProcess())) {
|
||||
return ResultDmntCheatNotAttached;
|
||||
}
|
||||
|
||||
return ResultSuccess;
|
||||
R_UNLESS(R_SUCCEEDED(dmnt::cheat::impl::ForceOpenCheatProcess()), ResultCheatNotAttached());
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
/* ========================================================================================= */
|
||||
@@ -53,26 +50,17 @@ namespace sts::dmnt::cheat {
|
||||
}
|
||||
|
||||
Result CheatService::GetCheatProcessMappings(const sf::OutArray<MemoryInfo> &mappings, sf::Out<u64> out_count, u64 offset) {
|
||||
if (mappings.GetPointer() == nullptr) {
|
||||
return ResultDmntCheatNullBuffer;
|
||||
}
|
||||
|
||||
R_UNLESS(mappings.GetPointer() != nullptr, ResultCheatNullBuffer());
|
||||
return dmnt::cheat::impl::GetCheatProcessMappings(mappings.GetPointer(), mappings.GetSize(), out_count.GetPointer(), offset);
|
||||
}
|
||||
|
||||
Result CheatService::ReadCheatProcessMemory(const sf::OutBuffer &buffer, u64 address, u64 out_size) {
|
||||
if (buffer.GetPointer() == nullptr) {
|
||||
return ResultDmntCheatNullBuffer;
|
||||
}
|
||||
|
||||
R_UNLESS(buffer.GetPointer() != nullptr, ResultCheatNullBuffer());
|
||||
return dmnt::cheat::impl::ReadCheatProcessMemory(address, buffer.GetPointer(), std::min(out_size, buffer.GetSize()));
|
||||
}
|
||||
|
||||
Result CheatService::WriteCheatProcessMemory(const sf::InBuffer &buffer, u64 address, u64 in_size) {
|
||||
if (buffer.GetPointer() == nullptr) {
|
||||
return ResultDmntCheatNullBuffer;
|
||||
}
|
||||
|
||||
R_UNLESS(buffer.GetPointer() != nullptr, ResultCheatNullBuffer());
|
||||
return dmnt::cheat::impl::WriteCheatProcessMemory(address, buffer.GetPointer(), std::min(in_size, buffer.GetSize()));
|
||||
}
|
||||
|
||||
@@ -89,10 +77,7 @@ namespace sts::dmnt::cheat {
|
||||
}
|
||||
|
||||
Result CheatService::GetCheats(const sf::OutArray<CheatEntry> &cheats, sf::Out<u64> out_count, u64 offset) {
|
||||
if (cheats.GetPointer() == nullptr) {
|
||||
return ResultDmntCheatNullBuffer;
|
||||
}
|
||||
|
||||
R_UNLESS(cheats.GetPointer() != nullptr, ResultCheatNullBuffer());
|
||||
return dmnt::cheat::impl::GetCheats(cheats.GetPointer(), cheats.GetSize(), out_count.GetPointer(), offset);
|
||||
}
|
||||
|
||||
@@ -121,10 +106,7 @@ namespace sts::dmnt::cheat {
|
||||
}
|
||||
|
||||
Result CheatService::GetFrozenAddresses(const sf::OutArray<FrozenAddressEntry> &addresses, sf::Out<u64> out_count, u64 offset) {
|
||||
if (addresses.GetPointer() == nullptr) {
|
||||
return ResultDmntCheatNullBuffer;
|
||||
}
|
||||
|
||||
R_UNLESS(addresses.GetPointer() != nullptr, ResultCheatNullBuffer());
|
||||
return dmnt::cheat::impl::GetFrozenAddresses(addresses.GetPointer(), addresses.GetSize(), out_count.GetPointer(), offset);
|
||||
}
|
||||
|
||||
@@ -133,16 +115,10 @@ namespace sts::dmnt::cheat {
|
||||
}
|
||||
|
||||
Result CheatService::EnableFrozenAddress(sf::Out<u64> out_value, u64 address, u64 width) {
|
||||
switch (width) {
|
||||
case 1:
|
||||
case 2:
|
||||
case 4:
|
||||
case 8:
|
||||
break;
|
||||
default:
|
||||
return ResultDmntCheatInvalidFreezeWidth;
|
||||
}
|
||||
|
||||
/* Width needs to be a power of two <= 8. */
|
||||
R_UNLESS(width > 0, ResultFrozenAddressInvalidWidth());
|
||||
R_UNLESS(width <= sizeof(u64), ResultFrozenAddressInvalidWidth());
|
||||
R_UNLESS((width & (width - 1)) == 0, ResultFrozenAddressInvalidWidth());
|
||||
return dmnt::cheat::impl::EnableFrozenAddress(out_value.GetPointer(), address, width);
|
||||
}
|
||||
|
||||
|
||||
@@ -169,10 +169,8 @@ namespace sts::dmnt::cheat::impl {
|
||||
}
|
||||
|
||||
Result EnsureCheatProcess() {
|
||||
if (!this->HasActiveCheatProcess()) {
|
||||
return ResultDmntCheatNotAttached;
|
||||
}
|
||||
return ResultSuccess;
|
||||
R_UNLESS(this->HasActiveCheatProcess(), ResultCheatNotAttached());
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Handle GetCheatProcessHandle() const {
|
||||
@@ -235,7 +233,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
std::memcpy(out, &this->cheat_process_metadata, sizeof(*out));
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result ForceOpenCheatProcess() {
|
||||
@@ -263,7 +261,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
}
|
||||
}
|
||||
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetCheatProcessMappingCount(u64 *out_count) {
|
||||
@@ -288,7 +286,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
} while (address != 0);
|
||||
|
||||
*out_count = count;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetCheatProcessMappings(MemoryInfo *mappings, size_t max_count, u64 *out_count, u64 offset) {
|
||||
@@ -316,7 +314,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
} while (address != 0 && written_count < max_count);
|
||||
|
||||
*out_count = written_count;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result ReadCheatProcessMemory(u64 proc_addr, void *out_data, size_t size) {
|
||||
@@ -357,7 +355,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
}
|
||||
|
||||
*out_count = count;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetCheats(CheatEntry *out_cheats, size_t max_count, u64 *out_count, u64 offset) {
|
||||
@@ -376,7 +374,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
}
|
||||
|
||||
*out_count = count;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetCheatById(CheatEntry *out_cheat, u32 cheat_id) {
|
||||
@@ -385,12 +383,11 @@ namespace sts::dmnt::cheat::impl {
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
const CheatEntry *entry = this->GetCheatEntryById(cheat_id);
|
||||
if (entry == nullptr || entry->definition.num_opcodes == 0) {
|
||||
return ResultDmntCheatUnknownChtId;
|
||||
}
|
||||
R_UNLESS(entry != nullptr, ResultCheatUnknownId());
|
||||
R_UNLESS(entry->definition.num_opcodes != 0, ResultCheatUnknownId());
|
||||
|
||||
*out_cheat = *entry;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result ToggleCheat(u32 cheat_id) {
|
||||
@@ -399,20 +396,17 @@ namespace sts::dmnt::cheat::impl {
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
CheatEntry *entry = this->GetCheatEntryById(cheat_id);
|
||||
if (entry == nullptr || entry->definition.num_opcodes == 0) {
|
||||
return ResultDmntCheatUnknownChtId;
|
||||
}
|
||||
R_UNLESS(entry != nullptr, ResultCheatUnknownId());
|
||||
R_UNLESS(entry->definition.num_opcodes != 0, ResultCheatUnknownId());
|
||||
|
||||
if (cheat_id == 0) {
|
||||
return ResultDmntCheatCannotDisableMasterCheat;
|
||||
}
|
||||
R_UNLESS(cheat_id != 0, ResultCheatCannotDisable());
|
||||
|
||||
entry->enabled = !entry->enabled;
|
||||
|
||||
/* Trigger a VM reload. */
|
||||
this->SetNeedsReloadVm(true);
|
||||
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result AddCheat(u32 *out_id, const CheatDefinition &def, bool enabled) {
|
||||
@@ -420,14 +414,11 @@ namespace sts::dmnt::cheat::impl {
|
||||
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
if (def.num_opcodes == 0 || def.num_opcodes > util::size(def.opcodes)) {
|
||||
return ResultDmntCheatInvalidCheat;
|
||||
}
|
||||
R_UNLESS(def.num_opcodes != 0, ResultCheatInvalid());
|
||||
R_UNLESS(def.num_opcodes <= util::size(def.opcodes), ResultCheatInvalid());
|
||||
|
||||
CheatEntry *new_entry = this->GetFreeCheatEntry();
|
||||
if (new_entry == nullptr) {
|
||||
return ResultDmntCheatOutOfCheats;
|
||||
}
|
||||
R_UNLESS(new_entry != nullptr, ResultCheatOutOfResource());
|
||||
|
||||
new_entry->enabled = enabled;
|
||||
new_entry->definition = def;
|
||||
@@ -435,24 +426,21 @@ namespace sts::dmnt::cheat::impl {
|
||||
/* Trigger a VM reload. */
|
||||
this->SetNeedsReloadVm(true);
|
||||
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result RemoveCheat(u32 cheat_id) {
|
||||
std::scoped_lock lk(this->cheat_lock);
|
||||
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
if (cheat_id >= MaxCheatCount) {
|
||||
return ResultDmntCheatUnknownChtId;
|
||||
}
|
||||
R_UNLESS(cheat_id < MaxCheatCount, ResultCheatUnknownId());
|
||||
|
||||
this->ResetCheatEntry(cheat_id);
|
||||
|
||||
/* Trigger a VM reload. */
|
||||
this->SetNeedsReloadVm(true);
|
||||
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetFrozenAddressCount(u64 *out_count) {
|
||||
@@ -461,7 +449,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
*out_count = this->frozen_addresses_map.size();
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetFrozenAddresses(FrozenAddressEntry *frz_addrs, size_t max_count, u64 *out_count, u64 offset) {
|
||||
@@ -484,7 +472,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
}
|
||||
|
||||
*out_count = written_count;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result GetFrozenAddress(FrozenAddressEntry *frz_addr, u64 address) {
|
||||
@@ -493,13 +481,11 @@ namespace sts::dmnt::cheat::impl {
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
const auto it = this->frozen_addresses_map.find(address);
|
||||
if (it == this->frozen_addresses_map.end()) {
|
||||
return ResultDmntCheatAddressNotFrozen;
|
||||
}
|
||||
R_UNLESS(it != this->frozen_addresses_map.end(), ResultFrozenAddressNotFound());
|
||||
|
||||
frz_addr->address = it->first;
|
||||
frz_addr->value = it->second;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result EnableFrozenAddress(u64 *out_value, u64 address, u64 width) {
|
||||
@@ -507,14 +493,10 @@ namespace sts::dmnt::cheat::impl {
|
||||
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
if (this->frozen_addresses_map.size() >= MaxFrozenAddressCount) {
|
||||
return ResultDmntCheatTooManyFrozenAddresses;
|
||||
}
|
||||
R_UNLESS(this->frozen_addresses_map.size() < MaxFrozenAddressCount, ResultFrozenAddressOutOfResource());
|
||||
|
||||
const auto it = this->frozen_addresses_map.find(address);
|
||||
if (it != this->frozen_addresses_map.end()) {
|
||||
return ResultDmntCheatAddressAlreadyFrozen;
|
||||
}
|
||||
R_UNLESS(it == this->frozen_addresses_map.end(), ResultFrozenAddressAlreadyExists());
|
||||
|
||||
FrozenAddressValue value = {};
|
||||
value.width = width;
|
||||
@@ -522,7 +504,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
|
||||
this->frozen_addresses_map[address] = value;
|
||||
*out_value = value.value;
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result DisableFrozenAddress(u64 address) {
|
||||
@@ -531,12 +513,10 @@ namespace sts::dmnt::cheat::impl {
|
||||
R_TRY(this->EnsureCheatProcess());
|
||||
|
||||
const auto it = this->frozen_addresses_map.find(address);
|
||||
if (it == this->frozen_addresses_map.end()) {
|
||||
return ResultDmntCheatAddressNotFrozen;
|
||||
}
|
||||
R_UNLESS(it != this->frozen_addresses_map.end(), ResultFrozenAddressNotFound());
|
||||
|
||||
this->frozen_addresses_map.erase(it);
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
};
|
||||
@@ -626,9 +606,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
{
|
||||
if (this->HasActiveCheatProcess()) {
|
||||
/* When forcing attach, we're done. */
|
||||
if (!on_process_launch) {
|
||||
return ResultSuccess;
|
||||
}
|
||||
R_UNLESS(on_process_launch, ResultSuccess());
|
||||
}
|
||||
|
||||
/* Detach from the current process, if it's open. */
|
||||
@@ -667,9 +645,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
|
||||
/* If new process launch, we may not want to actually attach. */
|
||||
if (on_process_launch) {
|
||||
if (!cfg::IsCheatEnableKeyHeld(this->cheat_process_metadata.title_id)) {
|
||||
return ResultDmntCheatNotAttached;
|
||||
}
|
||||
R_UNLESS(cfg::IsCheatEnableKeyHeld(this->cheat_process_metadata.title_id), ResultCheatNotAttached());
|
||||
}
|
||||
|
||||
/* Get module information from loader. */
|
||||
@@ -689,7 +665,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
} else if (num_modules == 1 && !on_process_launch) {
|
||||
proc_module = &proc_modules[0];
|
||||
} else {
|
||||
return ResultDmntCheatNotAttached;
|
||||
return ResultCheatNotAttached();
|
||||
}
|
||||
|
||||
this->cheat_process_metadata.main_nso_extents.base = proc_module->base_address;
|
||||
@@ -701,9 +677,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
if (!this->LoadCheats(this->cheat_process_metadata.title_id, this->cheat_process_metadata.main_nso_build_id) ||
|
||||
!this->LoadCheatToggles(this->cheat_process_metadata.title_id)) {
|
||||
/* If new process launch, require success. */
|
||||
if (on_process_launch) {
|
||||
return ResultDmntCheatNotAttached;
|
||||
}
|
||||
R_UNLESS(!on_process_launch, ResultCheatNotAttached());
|
||||
}
|
||||
|
||||
/* Open a debug handle. */
|
||||
@@ -723,7 +697,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
/* Signal to our fans. */
|
||||
this->cheat_process_event.Signal();
|
||||
|
||||
return ResultSuccess;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
#undef R_ASSERT_IF_NEW_PROCESS
|
||||
|
||||
@@ -631,7 +631,7 @@ namespace sts::dmnt::cheat::impl {
|
||||
/* However, I don't actually believe it is possible for this to happen. */
|
||||
/* I guess we'll throw a fatal error here, so as to encourage me to fix the VM */
|
||||
/* in the event that someone triggers it? I don't know how you'd do that. */
|
||||
fatalSimple(ResultDmntCheatVmInvalidCondDepth);
|
||||
R_ASSERT(ResultVirtualMachineInvalidConditionDepth());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user