2019-06-29 09:20:36 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-06-29 09:20:36 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2020-05-11 22:02:10 +00:00
|
|
|
#include <stratosphere.hpp>
|
2019-06-29 09:20:36 +00:00
|
|
|
#include "pm_process_manager.hpp"
|
2023-10-26 21:44:32 +00:00
|
|
|
#include "pm_process_tracker.hpp"
|
2019-06-29 09:20:36 +00:00
|
|
|
#include "pm_process_info.hpp"
|
2023-10-26 21:44:32 +00:00
|
|
|
#include "pm_spec.hpp"
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-24 09:30:10 +00:00
|
|
|
namespace ams::pm::impl {
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
/* Types. */
|
|
|
|
enum HookType {
|
2019-10-28 04:43:01 +00:00
|
|
|
HookType_ProgramId = (1 << 0),
|
2019-06-29 09:20:36 +00:00
|
|
|
HookType_Application = (1 << 1),
|
|
|
|
};
|
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
#define GET_FLAG_MASK(flag) (hos_version >= hos::Version_5_0_0 ? static_cast<u32>(LaunchFlags_##flag) : static_cast<u32>(LaunchFlagsDeprecated_##flag))
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
inline bool ShouldSignalOnExit(u32 launch_flags) {
|
2019-10-15 05:49:06 +00:00
|
|
|
const auto hos_version = hos::GetVersion();
|
2019-06-29 09:20:36 +00:00
|
|
|
return launch_flags & GET_FLAG_MASK(SignalOnExit);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool ShouldSignalOnStart(u32 launch_flags) {
|
2019-10-15 05:49:06 +00:00
|
|
|
const auto hos_version = hos::GetVersion();
|
2020-04-14 05:19:44 +00:00
|
|
|
if (hos_version < hos::Version_2_0_0) {
|
2019-06-29 09:20:36 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return launch_flags & GET_FLAG_MASK(SignalOnStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool ShouldSignalOnException(u32 launch_flags) {
|
2019-10-15 05:49:06 +00:00
|
|
|
const auto hos_version = hos::GetVersion();
|
2019-06-29 09:20:36 +00:00
|
|
|
return launch_flags & GET_FLAG_MASK(SignalOnException);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool ShouldSignalOnDebugEvent(u32 launch_flags) {
|
2019-10-15 05:49:06 +00:00
|
|
|
const auto hos_version = hos::GetVersion();
|
2019-06-29 09:20:36 +00:00
|
|
|
return launch_flags & GET_FLAG_MASK(SignalOnDebugEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool ShouldStartSuspended(u32 launch_flags) {
|
2019-10-15 05:49:06 +00:00
|
|
|
const auto hos_version = hos::GetVersion();
|
2019-06-29 09:20:36 +00:00
|
|
|
return launch_flags & GET_FLAG_MASK(StartSuspended);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool ShouldDisableAslr(u32 launch_flags) {
|
2019-10-15 05:49:06 +00:00
|
|
|
const auto hos_version = hos::GetVersion();
|
2019-06-29 09:20:36 +00:00
|
|
|
return launch_flags & GET_FLAG_MASK(DisableAslr);
|
|
|
|
}
|
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
#undef GET_FLAG_MASK
|
2019-10-15 06:12:07 +00:00
|
|
|
|
2019-06-29 09:20:36 +00:00
|
|
|
/* Process Tracking globals. */
|
2023-10-26 21:44:32 +00:00
|
|
|
constinit ProcessTracker g_process_tracker;
|
|
|
|
alignas(os::ThreadStackAlignment) constinit u8 g_process_track_thread_stack[8_KB];
|
2019-10-15 06:12:07 +00:00
|
|
|
|
2019-06-29 09:20:36 +00:00
|
|
|
/* Global events. */
|
2021-09-30 05:52:50 +00:00
|
|
|
constinit os::SystemEventType g_hook_to_create_process_event;
|
|
|
|
constinit os::SystemEventType g_hook_to_create_application_process_event;
|
|
|
|
constinit os::SystemEventType g_boot_finished_event;
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Hook globals. */
|
2021-09-30 05:52:50 +00:00
|
|
|
constinit std::atomic<ncm::ProgramId> g_program_id_hook;
|
|
|
|
constinit std::atomic<bool> g_application_hook;
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Helpers. */
|
2023-10-26 21:44:32 +00:00
|
|
|
void CreateDebuggerEvent() {
|
|
|
|
/* Create debugger hook events. */
|
|
|
|
R_ABORT_UNLESS(os::CreateSystemEvent(std::addressof(g_hook_to_create_process_event), os::EventClearMode_AutoClear, true));
|
|
|
|
R_ABORT_UNLESS(os::CreateSystemEvent(std::addressof(g_hook_to_create_application_process_event), os::EventClearMode_AutoClear, true));
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline u32 GetLoaderCreateProcessFlags(u32 launch_flags) {
|
|
|
|
u32 ldr_flags = 0;
|
|
|
|
|
2020-04-14 05:19:44 +00:00
|
|
|
if (ShouldSignalOnException(launch_flags) || (hos::GetVersion() >= hos::Version_2_0_0 && !ShouldStartSuspended(launch_flags))) {
|
2019-06-29 09:20:36 +00:00
|
|
|
ldr_flags |= ldr::CreateProcessFlag_EnableDebug;
|
|
|
|
}
|
|
|
|
if (ShouldDisableAslr(launch_flags)) {
|
|
|
|
ldr_flags |= ldr::CreateProcessFlag_DisableAslr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ldr_flags;
|
|
|
|
}
|
|
|
|
|
2019-07-03 05:21:47 +00:00
|
|
|
bool HasApplicationProcess() {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-07-03 05:21:47 +00:00
|
|
|
|
2019-09-28 01:04:58 +00:00
|
|
|
for (auto &process : *list) {
|
|
|
|
if (process.IsApplication()) {
|
2019-07-03 05:21:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-28 01:04:58 +00:00
|
|
|
Result StartProcess(ProcessInfo *process_info, const ldr::ProgramInfo *program_info) {
|
2021-10-04 21:54:13 +00:00
|
|
|
R_TRY(svc::StartProcess(process_info->GetHandle(), program_info->main_thread_priority, program_info->default_cpu_id, program_info->main_thread_stack_size));
|
2020-03-29 22:24:40 +00:00
|
|
|
process_info->SetState(svc::ProcessState_Running);
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
Result LaunchProgramImpl(ProcessInfo **out_process_info, os::ProcessId *out_process_id, const ncm::ProgramLocation &loc, u32 flags) {
|
|
|
|
/* Set the output to nullptr, if we fail. */
|
|
|
|
*out_process_info = nullptr;
|
2019-09-28 01:04:58 +00:00
|
|
|
|
2019-06-29 09:20:36 +00:00
|
|
|
/* Get Program Info. */
|
|
|
|
ldr::ProgramInfo program_info;
|
2019-11-21 12:03:19 +00:00
|
|
|
cfg::OverrideStatus override_status;
|
2023-10-26 21:44:32 +00:00
|
|
|
R_TRY(ldr::pm::AtmosphereGetProgramInfo(std::addressof(program_info), std::addressof(override_status), loc));
|
2019-06-29 09:20:36 +00:00
|
|
|
const bool is_application = (program_info.flags & ldr::ProgramInfoFlag_ApplicationTypeMask) == ldr::ProgramInfoFlag_Application;
|
2020-04-14 05:19:44 +00:00
|
|
|
const bool allow_debug = (program_info.flags & ldr::ProgramInfoFlag_AllowDebug) || hos::GetVersion() < hos::Version_2_0_0;
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Ensure we only try to run one application. */
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(!is_application || !HasApplicationProcess(), pm::ResultApplicationRunning());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
/* Fix the program location to use the right program id. */
|
2023-10-26 21:44:32 +00:00
|
|
|
const ncm::ProgramLocation fixed_location = ncm::ProgramLocation::Make(program_info.program_id, static_cast<ncm::StorageId>(loc.storage_id));
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2022-02-14 22:45:32 +00:00
|
|
|
/* Pin and create the process. */
|
|
|
|
os::NativeHandle process_handle;
|
2019-06-29 09:20:36 +00:00
|
|
|
ldr::PinId pin_id;
|
2022-02-14 22:45:32 +00:00
|
|
|
{
|
|
|
|
/* Pin the program with loader. */
|
2023-10-26 21:44:32 +00:00
|
|
|
R_TRY(ldr::pm::AtmospherePinProgram(std::addressof(pin_id), fixed_location, override_status));
|
2019-10-24 08:40:44 +00:00
|
|
|
|
2022-02-14 22:45:32 +00:00
|
|
|
/* If we fail after now, unpin. */
|
|
|
|
ON_RESULT_FAILURE { ldr::pm::UnpinProgram(pin_id); };
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2023-05-14 10:06:52 +00:00
|
|
|
/* Ensure we can talk to mitm services. */
|
|
|
|
{
|
|
|
|
AMS_FUNCTION_LOCAL_STATIC_CONSTINIT(bool, s_initialized_mitm, false);
|
|
|
|
if (!s_initialized_mitm) {
|
|
|
|
mitm::pm::Initialize();
|
|
|
|
s_initialized_mitm = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine boost size for mitm. */
|
|
|
|
u64 mitm_boost_size = 0;
|
|
|
|
R_TRY(mitm::pm::PrepareLaunchProgram(std::addressof(mitm_boost_size), program_info.program_id, override_status, is_application));
|
|
|
|
|
|
|
|
if (mitm_boost_size > 0 || is_application) {
|
|
|
|
R_ABORT_UNLESS(BoostSystemMemoryResourceLimitForMitm(mitm_boost_size));
|
|
|
|
}
|
|
|
|
ON_RESULT_FAILURE_2 { if (mitm_boost_size > 0 || is_application) { R_ABORT_UNLESS(BoostSystemMemoryResourceLimitForMitm(0)); } };
|
|
|
|
|
2022-02-14 22:45:32 +00:00
|
|
|
/* Ensure resources are available. */
|
2023-10-26 21:44:32 +00:00
|
|
|
WaitResourceAvailable(std::addressof(program_info));
|
2022-02-14 22:45:32 +00:00
|
|
|
|
|
|
|
/* Actually create the process. */
|
2023-10-26 21:44:32 +00:00
|
|
|
R_TRY(ldr::pm::CreateProcess(std::addressof(process_handle), pin_id, GetLoaderCreateProcessFlags(flags), GetResourceLimitHandle(std::addressof(program_info))));
|
2019-10-24 08:40:44 +00:00
|
|
|
}
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Get the process id. */
|
2019-10-20 00:42:53 +00:00
|
|
|
os::ProcessId process_id = os::GetProcessId(process_handle);
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Make new process info. */
|
2023-10-26 21:44:32 +00:00
|
|
|
ProcessInfo *process_info = AllocateProcessInfo(process_handle, process_id, pin_id, fixed_location, override_status);
|
2021-03-22 03:30:40 +00:00
|
|
|
AMS_ABORT_UNLESS(process_info != nullptr);
|
2019-09-28 01:04:58 +00:00
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
/* Add the new process info to the process list. */
|
2019-09-28 01:04:58 +00:00
|
|
|
{
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-09-28 01:04:58 +00:00
|
|
|
list->push_back(*process_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prevent resource leakage if register fails. */
|
2022-02-14 22:45:32 +00:00
|
|
|
ON_RESULT_FAILURE {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-09-28 01:04:58 +00:00
|
|
|
process_info->Cleanup();
|
|
|
|
CleanupProcessInfo(list, process_info);
|
|
|
|
};
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
const u8 *acid_sac = program_info.ac_buffer;
|
|
|
|
const u8 *aci_sac = acid_sac + program_info.acid_sac_size;
|
|
|
|
const u8 *acid_fac = aci_sac + program_info.aci_sac_size;
|
|
|
|
const u8 *aci_fah = acid_fac + program_info.acid_fac_size;
|
|
|
|
|
|
|
|
/* Register with FS and SM. */
|
2023-10-26 21:44:32 +00:00
|
|
|
R_TRY(fsprRegisterProgram(static_cast<u64>(process_id), static_cast<u64>(fixed_location.program_id), static_cast<NcmStorageId>(fixed_location.storage_id), aci_fah, program_info.aci_fah_size, acid_fac, program_info.acid_fac_size));
|
|
|
|
R_TRY(sm::manager::RegisterProcess(process_id, fixed_location.program_id, override_status, acid_sac, program_info.acid_sac_size, aci_sac, program_info.aci_sac_size));
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Set flags. */
|
|
|
|
if (is_application) {
|
|
|
|
process_info->SetApplication();
|
|
|
|
}
|
2023-10-26 21:44:32 +00:00
|
|
|
if (ShouldSignalOnStart(flags) && allow_debug) {
|
2019-06-29 09:20:36 +00:00
|
|
|
process_info->SetSignalOnStart();
|
|
|
|
}
|
2023-10-26 21:44:32 +00:00
|
|
|
if (ShouldSignalOnExit(flags)) {
|
2019-06-29 09:20:36 +00:00
|
|
|
process_info->SetSignalOnExit();
|
|
|
|
}
|
2023-10-26 21:44:32 +00:00
|
|
|
if (ShouldSignalOnDebugEvent(flags) && allow_debug) {
|
2019-06-29 09:20:36 +00:00
|
|
|
process_info->SetSignalOnDebugEvent();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process hooks/signaling. */
|
2023-10-26 21:44:32 +00:00
|
|
|
if (fixed_location.program_id == g_program_id_hook) {
|
2020-04-08 09:21:35 +00:00
|
|
|
os::SignalSystemEvent(std::addressof(g_hook_to_create_process_event));
|
2020-03-08 08:06:23 +00:00
|
|
|
g_program_id_hook = ncm::InvalidProgramId;
|
2019-06-29 09:20:36 +00:00
|
|
|
} else if (is_application && g_application_hook) {
|
2020-04-08 09:21:35 +00:00
|
|
|
os::SignalSystemEvent(std::addressof(g_hook_to_create_application_process_event));
|
2019-06-29 09:20:36 +00:00
|
|
|
g_application_hook = false;
|
2023-10-26 21:44:32 +00:00
|
|
|
} else if (!ShouldStartSuspended(flags)) {
|
2021-10-09 21:49:53 +00:00
|
|
|
R_TRY(StartProcess(process_info, std::addressof(program_info)));
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
*out_process_id = process_id;
|
|
|
|
*out_process_info = process_info;
|
2022-02-14 22:45:32 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialization. */
|
|
|
|
Result InitializeProcessManager() {
|
|
|
|
/* Create events. */
|
2023-10-26 21:44:32 +00:00
|
|
|
CreateProcessEvent();
|
|
|
|
CreateDebuggerEvent();
|
|
|
|
R_ABORT_UNLESS(os::CreateSystemEvent(std::addressof(g_boot_finished_event), os::EventClearMode_AutoClear, true));
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
/* Initialize resource limits. */
|
2023-10-26 21:44:32 +00:00
|
|
|
R_TRY(InitializeSpec());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
/* Initialize the process tracker. */
|
|
|
|
g_process_tracker.Initialize(g_process_track_thread_stack, sizeof(g_process_track_thread_stack));
|
2020-04-08 09:21:35 +00:00
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
/* Start the process tracker thread. */
|
|
|
|
g_process_tracker.StartThread();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Process Management. */
|
2019-10-28 04:43:01 +00:00
|
|
|
Result LaunchProgram(os::ProcessId *out_process_id, const ncm::ProgramLocation &loc, u32 flags) {
|
2023-10-26 21:44:32 +00:00
|
|
|
/* Launch the program. */
|
|
|
|
ProcessInfo *process_info = nullptr;
|
|
|
|
R_TRY(LaunchProgramImpl(std::addressof(process_info), out_process_id, loc, flags));
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
/* Register the process info with the tracker. */
|
|
|
|
g_process_tracker.QueueEntry(process_info);
|
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
Result StartProcess(os::ProcessId process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
auto process_info = list->Find(process_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
|
|
|
R_UNLESS(!process_info->HasStarted(), pm::ResultAlreadyStarted());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
ldr::ProgramInfo program_info;
|
2021-10-09 21:49:53 +00:00
|
|
|
R_TRY(ldr::pm::GetProgramInfo(std::addressof(program_info), process_info->GetProgramLocation()));
|
2022-03-22 06:52:16 +00:00
|
|
|
R_RETURN(StartProcess(process_info, std::addressof(program_info)));
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
Result TerminateProcess(os::ProcessId process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
auto process_info = list->Find(process_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2022-03-22 06:52:16 +00:00
|
|
|
R_RETURN(svc::TerminateProcess(process_info->GetHandle()));
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
Result TerminateProgram(ncm::ProgramId program_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
auto process_info = list->Find(program_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2022-03-22 06:52:16 +00:00
|
|
|
R_RETURN(svc::TerminateProcess(process_info->GetHandle()));
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GetProcessEventInfo(ProcessEventInfo *out) {
|
|
|
|
/* Check for event from current process. */
|
|
|
|
{
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-09-28 01:04:58 +00:00
|
|
|
|
|
|
|
for (auto &process : *list) {
|
|
|
|
if (process.HasStarted() && process.HasStartedStateChanged()) {
|
|
|
|
process.ClearStartedStateChanged();
|
2019-06-29 09:20:36 +00:00
|
|
|
out->event = GetProcessEventValue(ProcessEvent::Started);
|
2019-09-28 01:04:58 +00:00
|
|
|
out->process_id = process.GetProcessId();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
2019-09-28 01:04:58 +00:00
|
|
|
if (process.HasSuspendedStateChanged()) {
|
|
|
|
process.ClearSuspendedStateChanged();
|
|
|
|
if (process.IsSuspended()) {
|
2020-03-29 22:24:40 +00:00
|
|
|
out->event = GetProcessEventValue(ProcessEvent::DebugBreak);
|
2019-06-29 09:20:36 +00:00
|
|
|
} else {
|
|
|
|
out->event = GetProcessEventValue(ProcessEvent::DebugRunning);
|
|
|
|
}
|
2019-09-28 01:04:58 +00:00
|
|
|
out->process_id = process.GetProcessId();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
2019-09-28 01:04:58 +00:00
|
|
|
if (process.HasExceptionOccurred()) {
|
|
|
|
process.ClearExceptionOccurred();
|
2019-06-29 09:20:36 +00:00
|
|
|
out->event = GetProcessEventValue(ProcessEvent::Exception);
|
2019-09-28 01:04:58 +00:00
|
|
|
out->process_id = process.GetProcessId();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
2020-04-14 05:19:44 +00:00
|
|
|
if (hos::GetVersion() < hos::Version_5_0_0 && process.ShouldSignalOnExit() && process.HasTerminated()) {
|
2019-06-29 09:20:36 +00:00
|
|
|
out->event = GetProcessEventValue(ProcessEvent::Exited);
|
2019-09-28 01:04:58 +00:00
|
|
|
out->process_id = process.GetProcessId();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for event from exited process. */
|
2020-04-14 05:19:44 +00:00
|
|
|
if (hos::GetVersion() >= hos::Version_5_0_0) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto exit_list = GetExitList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
if (!exit_list->empty()) {
|
|
|
|
auto &process_info = exit_list->front();
|
|
|
|
out->event = GetProcessEventValue(ProcessEvent::Exited);
|
2019-09-28 01:04:58 +00:00
|
|
|
out->process_id = process_info.GetProcessId();
|
|
|
|
|
2023-10-26 21:44:32 +00:00
|
|
|
CleanupProcessInfo(exit_list, std::addressof(process_info));
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
out->process_id = os::ProcessId{};
|
2019-06-29 09:20:36 +00:00
|
|
|
out->event = GetProcessEventValue(ProcessEvent::None);
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
Result CleanupProcess(os::ProcessId process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
auto process_info = list->Find(process_id);
|
2020-03-29 22:24:40 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
|
|
|
R_UNLESS(process_info->HasTerminated(), pm::ResultNotTerminated());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-09-28 01:04:58 +00:00
|
|
|
CleanupProcessInfo(list, process_info);
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
Result ClearExceptionOccurred(os::ProcessId process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
auto process_info = list->Find(process_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
process_info->ClearExceptionOccurred();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Information Getters. */
|
|
|
|
Result GetModuleIdList(u32 *out_count, u8 *out_buf, size_t max_out_count, u64 unused) {
|
|
|
|
/* This function was always stubbed... */
|
2021-10-07 06:22:54 +00:00
|
|
|
AMS_UNUSED(out_buf, max_out_count, unused);
|
2019-06-29 09:20:36 +00:00
|
|
|
*out_count = 0;
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
Result GetExceptionProcessIdList(u32 *out_count, os::ProcessId *out_process_ids, size_t max_out_count) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
size_t count = 0;
|
2021-10-07 06:22:54 +00:00
|
|
|
|
|
|
|
if (max_out_count > 0) {
|
|
|
|
for (auto &process : *list) {
|
|
|
|
if (process.HasExceptionWaitingAttach()) {
|
|
|
|
out_process_ids[count++] = process.GetProcessId();
|
|
|
|
|
|
|
|
if (count >= max_out_count) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-07 06:22:54 +00:00
|
|
|
|
2019-06-29 09:20:36 +00:00
|
|
|
*out_count = static_cast<u32>(count);
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
Result GetProcessId(os::ProcessId *out, ncm::ProgramId program_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
auto process_info = list->Find(program_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
*out = process_info->GetProcessId();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
Result GetProgramId(ncm::ProgramId *out, os::ProcessId process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
auto process_info = list->Find(process_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
*out = process_info->GetProgramLocation().program_id;
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 05:49:06 +00:00
|
|
|
Result GetApplicationProcessId(os::ProcessId *out_process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-09-28 01:04:58 +00:00
|
|
|
for (auto &process : *list) {
|
|
|
|
if (process.IsApplication()) {
|
|
|
|
*out_process_id = process.GetProcessId();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 06:52:16 +00:00
|
|
|
R_THROW(pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2021-10-04 21:54:13 +00:00
|
|
|
Result AtmosphereGetProcessInfo(os::NativeHandle *out_process_handle, ncm::ProgramLocation *out_loc, cfg::OverrideStatus *out_status, os::ProcessId process_id) {
|
2023-10-26 21:44:32 +00:00
|
|
|
auto list = GetProcessList();
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
auto process_info = list->Find(process_id);
|
2019-10-24 08:40:44 +00:00
|
|
|
R_UNLESS(process_info != nullptr, pm::ResultProcessNotFound());
|
2019-06-29 09:20:36 +00:00
|
|
|
|
|
|
|
*out_process_handle = process_info->GetHandle();
|
2019-10-28 04:43:01 +00:00
|
|
|
*out_loc = process_info->GetProgramLocation();
|
2019-11-21 12:03:19 +00:00
|
|
|
*out_status = process_info->GetOverrideStatus();
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Hook API. */
|
2021-10-04 21:54:13 +00:00
|
|
|
Result HookToCreateProcess(os::NativeHandle *out_hook, ncm::ProgramId program_id) {
|
|
|
|
*out_hook = os::InvalidNativeHandle;
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-24 08:40:44 +00:00
|
|
|
{
|
2020-03-08 08:06:23 +00:00
|
|
|
ncm::ProgramId old_value = ncm::InvalidProgramId;
|
2019-10-28 04:43:01 +00:00
|
|
|
R_UNLESS(g_program_id_hook.compare_exchange_strong(old_value, program_id), pm::ResultDebugHookInUse());
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 09:21:35 +00:00
|
|
|
*out_hook = os::GetReadableHandleOfSystemEvent(std::addressof(g_hook_to_create_process_event));
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2021-10-04 21:54:13 +00:00
|
|
|
Result HookToCreateApplicationProcess(os::NativeHandle *out_hook) {
|
|
|
|
*out_hook = os::InvalidNativeHandle;
|
2019-06-29 09:20:36 +00:00
|
|
|
|
2019-10-24 08:40:44 +00:00
|
|
|
{
|
|
|
|
bool old_value = false;
|
|
|
|
R_UNLESS(g_application_hook.compare_exchange_strong(old_value, true), pm::ResultDebugHookInUse());
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 09:21:35 +00:00
|
|
|
*out_hook = os::GetReadableHandleOfSystemEvent(std::addressof(g_hook_to_create_application_process_event));
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ClearHook(u32 which) {
|
2019-10-28 04:43:01 +00:00
|
|
|
if (which & HookType_ProgramId) {
|
2020-03-08 08:06:23 +00:00
|
|
|
g_program_id_hook = ncm::InvalidProgramId;
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
if (which & HookType_Application) {
|
|
|
|
g_application_hook = false;
|
|
|
|
}
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Boot API. */
|
|
|
|
Result NotifyBootFinished() {
|
2022-03-06 20:08:20 +00:00
|
|
|
AMS_FUNCTION_LOCAL_STATIC_CONSTINIT(bool, s_has_boot_finished, false);
|
|
|
|
if (!s_has_boot_finished) {
|
2020-04-14 09:54:55 +00:00
|
|
|
/* Set program verification disabled, if we should. */
|
|
|
|
/* NOTE: Nintendo does not check the result of this. */
|
|
|
|
if (spl::IsDisabledProgramVerification()) {
|
|
|
|
if (hos::GetVersion() >= hos::Version_10_0_0) {
|
|
|
|
ldr::pm::SetEnabledProgramVerification(false);
|
|
|
|
} else {
|
|
|
|
fsprSetEnabledProgramVerification(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-19 04:06:40 +00:00
|
|
|
boot2::LaunchPreSdCardBootProgramsAndBoot2();
|
2022-03-06 20:08:20 +00:00
|
|
|
|
|
|
|
s_has_boot_finished = true;
|
2020-04-08 09:21:35 +00:00
|
|
|
os::SignalSystemEvent(std::addressof(g_boot_finished_event));
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
2021-10-04 21:54:13 +00:00
|
|
|
Result GetBootFinishedEventHandle(os::NativeHandle *out) {
|
2019-06-29 09:20:36 +00:00
|
|
|
/* In 8.0.0, Nintendo added this command, which signals that the boot sysmodule has finished. */
|
|
|
|
/* Nintendo only signals it in safe mode FIRM, and this function aborts on normal FIRM. */
|
|
|
|
/* We will signal it always, but only allow this function to succeed on safe mode. */
|
2020-02-23 07:05:14 +00:00
|
|
|
AMS_ABORT_UNLESS(spl::IsRecoveryBoot());
|
2020-04-08 09:21:35 +00:00
|
|
|
*out = os::GetReadableHandleOfSystemEvent(std::addressof(g_boot_finished_event));
|
2022-03-22 06:52:16 +00:00
|
|
|
R_SUCCEED();
|
2019-06-29 09:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|