pm: add Atmosphere GetProcessHandle command to pm:dmnt (#133)

This commit is contained in:
misson20000 2018-06-07 23:32:45 -07:00 committed by SciresM
parent e964bcf872
commit 28d630a23e
2 changed files with 21 additions and 0 deletions

View file

@ -24,6 +24,9 @@ Result DebugMonitorService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64
case Dmnt_Cmd_5X_EnableDebugForApplication: case Dmnt_Cmd_5X_EnableDebugForApplication:
rc = WrapIpcCommandImpl<&DebugMonitorService::enable_debug_for_application>(this, r, out_c, pointer_buffer, pointer_buffer_size); rc = WrapIpcCommandImpl<&DebugMonitorService::enable_debug_for_application>(this, r, out_c, pointer_buffer, pointer_buffer_size);
break; break;
case Dmnt_Cmd_5X_AtmosphereGetProcessHandle:
rc = WrapIpcCommandImpl<&DebugMonitorService::get_process_handle>(this, r, out_c, pointer_buffer, pointer_buffer_size);
break;
default: default:
break; break;
} }
@ -50,6 +53,9 @@ Result DebugMonitorService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64
case Dmnt_Cmd_EnableDebugForApplication: case Dmnt_Cmd_EnableDebugForApplication:
rc = WrapIpcCommandImpl<&DebugMonitorService::enable_debug_for_application>(this, r, out_c, pointer_buffer, pointer_buffer_size); rc = WrapIpcCommandImpl<&DebugMonitorService::enable_debug_for_application>(this, r, out_c, pointer_buffer, pointer_buffer_size);
break; break;
case Dmnt_Cmd_AtmosphereGetProcessHandle:
rc = WrapIpcCommandImpl<&DebugMonitorService::get_process_handle>(this, r, out_c, pointer_buffer, pointer_buffer_size);
break;
default: default:
break; break;
} }
@ -117,3 +123,11 @@ std::tuple<Result, CopiedHandle> DebugMonitorService::enable_debug_for_applicati
Result rc = Registration::EnableDebugForApplication(&h); Result rc = Registration::EnableDebugForApplication(&h);
return {rc, h}; return {rc, h};
} }
std::tuple<Result, CopiedHandle> DebugMonitorService::get_process_handle(u64 pid) {
Registration::Process *proc = Registration::GetProcess(pid);
if(proc == NULL) {
return {0x20F, 0};
}
return {0, proc->handle};
}

View file

@ -12,6 +12,8 @@ enum DmntCmd {
Dmnt_Cmd_EnableDebugForTitleId = 4, Dmnt_Cmd_EnableDebugForTitleId = 4,
Dmnt_Cmd_GetApplicationProcessId = 5, Dmnt_Cmd_GetApplicationProcessId = 5,
Dmnt_Cmd_EnableDebugForApplication = 6, Dmnt_Cmd_EnableDebugForApplication = 6,
Dmnt_Cmd_AtmosphereGetProcessHandle = 65000
}; };
enum DmntCmd_5X { enum DmntCmd_5X {
@ -21,6 +23,8 @@ enum DmntCmd_5X {
Dmnt_Cmd_5X_EnableDebugForTitleId = 3, Dmnt_Cmd_5X_EnableDebugForTitleId = 3,
Dmnt_Cmd_5X_GetApplicationProcessId = 4, Dmnt_Cmd_5X_GetApplicationProcessId = 4,
Dmnt_Cmd_5X_EnableDebugForApplication = 5, Dmnt_Cmd_5X_EnableDebugForApplication = 5,
Dmnt_Cmd_5X_AtmosphereGetProcessHandle = 65000
}; };
class DebugMonitorService final : IServiceObject { class DebugMonitorService final : IServiceObject {
@ -37,4 +41,7 @@ class DebugMonitorService final : IServiceObject {
std::tuple<Result, CopiedHandle> enable_debug_for_tid(u64 tid); std::tuple<Result, CopiedHandle> enable_debug_for_tid(u64 tid);
std::tuple<Result, u64> get_application_process_id(); std::tuple<Result, u64> get_application_process_id();
std::tuple<Result, CopiedHandle> enable_debug_for_application(); std::tuple<Result, CopiedHandle> enable_debug_for_application();
/* Atmosphere commands. */
std::tuple<Result, CopiedHandle> get_process_handle(u64 pid);
}; };