2019-06-29 10:20:36 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "pm_debug_monitor_service.hpp"
|
|
|
|
#include "impl/pm_process_manager.hpp"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::pm::dmnt {
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
/* Actual command implementations. */
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::GetModuleIdList(sf::Out<u32> out_count, const sf::OutBuffer &out_buf, u64 unused) {
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(out_buf.GetSize() <= std::numeric_limits<s32>::max(), pm::ResultInvalidSize());
|
2019-10-15 06:49:06 +01:00
|
|
|
return impl::GetModuleIdList(out_count.GetPointer(), out_buf.GetPointer(), out_buf.GetSize(), unused);
|
2019-06-29 10:20:36 +01:00
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::GetExceptionProcessIdList(sf::Out<u32> out_count, const sf::OutArray<os::ProcessId> &out_process_ids) {
|
2019-10-24 09:40:44 +01:00
|
|
|
R_UNLESS(out_process_ids.GetSize() <= std::numeric_limits<s32>::max(), pm::ResultInvalidSize());
|
2019-10-15 06:49:06 +01:00
|
|
|
return impl::GetExceptionProcessIdList(out_count.GetPointer(), out_process_ids.GetPointer(), out_process_ids.GetSize());
|
2019-06-29 10:20:36 +01:00
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::StartProcess(os::ProcessId process_id) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::StartProcess(process_id);
|
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::GetProcessId(sf::Out<os::ProcessId> out, ncm::TitleId title_id) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::GetProcessId(out.GetPointer(), title_id);
|
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::HookToCreateProcess(sf::OutCopyHandle out_hook, ncm::TitleId title_id) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::HookToCreateProcess(out_hook.GetHandlePointer(), title_id);
|
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::GetApplicationProcessId(sf::Out<os::ProcessId> out) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::GetApplicationProcessId(out.GetPointer());
|
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::HookToCreateApplicationProcess(sf::OutCopyHandle out_hook) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::HookToCreateApplicationProcess(out_hook.GetHandlePointer());
|
|
|
|
}
|
|
|
|
|
|
|
|
Result DebugMonitorServiceBase::ClearHook(u32 which) {
|
|
|
|
return impl::ClearHook(which);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Atmosphere extension commands. */
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::AtmosphereGetProcessInfo(sf::OutCopyHandle out_process_handle, sf::Out<ncm::TitleLocation> out_loc, os::ProcessId process_id) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::AtmosphereGetProcessInfo(out_process_handle.GetHandlePointer(), out_loc.GetPointer(), process_id);
|
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result DebugMonitorServiceBase::AtmosphereGetCurrentLimitInfo(sf::Out<u64> out_cur_val, sf::Out<u64> out_lim_val, u32 group, u32 resource) {
|
2019-06-29 10:20:36 +01:00
|
|
|
return impl::AtmosphereGetCurrentLimitInfo(out_cur_val.GetPointer(), out_lim_val.GetPointer(), group, resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|