2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-12-09 11:57:37 +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/>.
|
|
|
|
*/
|
|
|
|
#include <stratosphere.hpp>
|
2022-03-06 20:08:20 +00:00
|
|
|
#include "pm_ams.os.horizon.h"
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
namespace ams::pm::info {
|
|
|
|
|
|
|
|
/* Information API. */
|
2022-03-06 20:08:20 +00:00
|
|
|
#if defined(ATMOSPHERE_OS_HORIZON)
|
2019-12-09 11:57:37 +00:00
|
|
|
Result GetProgramId(ncm::ProgramId *out_program_id, os::ProcessId process_id) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(pminfoGetProgramId(reinterpret_cast<u64 *>(out_program_id), static_cast<u64>(process_id)));
|
2019-12-09 11:57:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GetProcessId(os::ProcessId *out_process_id, ncm::ProgramId program_id) {
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(pminfoAtmosphereGetProcessId(reinterpret_cast<u64 *>(out_process_id), static_cast<u64>(program_id)));
|
2019-12-09 11:57:37 +00:00
|
|
|
}
|
|
|
|
|
2023-10-17 18:10:09 +00:00
|
|
|
Result GetAppletResourceLimitCurrentValue(pm::ResourceLimitValue *out) {
|
|
|
|
static_assert(sizeof(pm::ResourceLimitValue) == sizeof(::PmResourceLimitValues));
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(pminfoGetAppletCurrentResourceLimitValues(reinterpret_cast<PmResourceLimitValues *>(out)));
|
2022-03-22 06:52:16 +00:00
|
|
|
}
|
|
|
|
|
2023-10-17 18:10:09 +00:00
|
|
|
Result GetAppletResourceLimitPeakValue(pm::ResourceLimitValue *out) {
|
|
|
|
static_assert(sizeof(pm::ResourceLimitValue) == sizeof(::PmResourceLimitValues));
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(pminfoGetAppletPeakResourceLimitValues(reinterpret_cast<PmResourceLimitValues *>(out)));
|
2022-03-22 06:52:16 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 11:57:37 +00:00
|
|
|
Result GetProcessInfo(ncm::ProgramLocation *out_loc, cfg::OverrideStatus *out_status, os::ProcessId process_id) {
|
|
|
|
*out_loc = {};
|
|
|
|
*out_status = {};
|
|
|
|
static_assert(sizeof(*out_status) == sizeof(CfgOverrideStatus));
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(pminfoAtmosphereGetProcessInfo(reinterpret_cast<NcmProgramLocation *>(out_loc), reinterpret_cast<CfgOverrideStatus *>(out_status), static_cast<u64>(process_id)));
|
2019-12-09 11:57:37 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 06:03:26 +00:00
|
|
|
bool HasLaunchedBootProgram(ncm::ProgramId program_id) {
|
2019-12-09 11:57:37 +00:00
|
|
|
bool has_launched = false;
|
2021-10-09 21:49:53 +00:00
|
|
|
R_ABORT_UNLESS(HasLaunchedBootProgram(std::addressof(has_launched), program_id));
|
2019-12-09 11:57:37 +00:00
|
|
|
return has_launched;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Result IsHblProcessId(bool *out, os::ProcessId process_id) {
|
|
|
|
ncm::ProgramLocation loc;
|
|
|
|
cfg::OverrideStatus override_status;
|
2021-10-09 21:49:53 +00:00
|
|
|
R_TRY(GetProcessInfo(std::addressof(loc), std::addressof(override_status), process_id));
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
*out = override_status.IsHbl();
|
2022-03-26 07:14:36 +00:00
|
|
|
R_SUCCEED();
|
2019-12-09 11:57:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result IsHblProgramId(bool *out, ncm::ProgramId program_id) {
|
|
|
|
os::ProcessId process_id;
|
2021-10-09 21:49:53 +00:00
|
|
|
R_TRY(GetProcessId(std::addressof(process_id), program_id));
|
2019-12-09 11:57:37 +00:00
|
|
|
|
2022-03-26 21:48:33 +00:00
|
|
|
R_RETURN(IsHblProcessId(out, process_id));
|
2019-12-09 11:57:37 +00:00
|
|
|
}
|
2022-03-06 20:08:20 +00:00
|
|
|
#endif
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
}
|