2019-09-16 09:22:08 +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 <stratosphere.hpp>
|
|
|
|
|
|
|
|
#include "pm_ams.h"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::pm::dmnt {
|
2019-09-16 09:22:08 +01:00
|
|
|
|
|
|
|
/* Debug Monitor API. */
|
2019-10-15 06:49:06 +01:00
|
|
|
Result StartProcess(os::ProcessId process_id) {
|
|
|
|
return pmdmntStartProcess(static_cast<u64>(process_id));
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result GetProcessId(os::ProcessId *out_process_id, const ncm::TitleId title_id) {
|
|
|
|
return pmdmntGetTitlePid(reinterpret_cast<u64 *>(out_process_id), static_cast<u64>(title_id));
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result GetApplicationProcessId(os::ProcessId *out_process_id) {
|
|
|
|
return pmdmntGetApplicationPid(reinterpret_cast<u64 *>(out_process_id));
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result HookToCreateApplicationProcess(Handle *out_handle) {
|
2019-09-30 10:52:32 +01:00
|
|
|
Event evt;
|
|
|
|
R_TRY(pmdmntEnableDebugForApplication(&evt));
|
|
|
|
*out_handle = evt.revent;
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
Result AtmosphereGetProcessInfo(Handle *out_handle, ncm::TitleLocation *out_loc, os::ProcessId process_id) {
|
2019-09-16 09:22:08 +01:00
|
|
|
*out_handle = INVALID_HANDLE;
|
|
|
|
*out_loc = {};
|
2019-10-15 06:49:06 +01:00
|
|
|
return pmdmntAtmosphereGetProcessInfo(out_handle, reinterpret_cast<u64 *>(&out_loc->title_id), &out_loc->storage_id, static_cast<u64>(process_id));
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result AtmosphereGetCurrentLimitInfo(u64 *out_current_value, u64 *out_limit_value, ResourceLimitGroup group, LimitableResource resource) {
|
|
|
|
*out_current_value = 0;
|
|
|
|
*out_limit_value = 0;
|
|
|
|
return pmdmntAtmosphereGetCurrentLimitInfo(out_current_value, out_limit_value, group, resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|