2019-07-18 04:04:00 +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 <switch.h>
|
|
|
|
#include "pm_ams.h"
|
|
|
|
|
|
|
|
Result pminfoAtmosphereGetProcessId(u64 *out_pid, u64 tid) {
|
2019-10-20 01:42:53 +01:00
|
|
|
return serviceDispatchInOut(pminfoGetServiceSession(), 65000, tid, *out_pid);
|
2019-07-18 04:04:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result pminfoAtmosphereHasLaunchedTitle(bool *out, u64 tid) {
|
2019-10-20 01:42:53 +01:00
|
|
|
u8 tmp;
|
|
|
|
Result rc = serviceDispatchInOut(pminfoGetServiceSession(), 65001, tid, tmp);
|
|
|
|
if (R_SUCCEEDED(rc) && out) *out = tmp & 1;
|
2019-07-18 04:04:00 +01:00
|
|
|
return rc;
|
|
|
|
}
|
2019-09-16 09:22:08 +01:00
|
|
|
|
2019-10-20 01:42:53 +01:00
|
|
|
Result pmdmntAtmosphereGetProcessInfo(Handle* handle_out, u64 *tid_out, u8 *sid_out, u64 pid) {
|
2019-09-16 09:22:08 +01:00
|
|
|
struct {
|
2019-10-20 01:42:53 +01:00
|
|
|
u64 title_id;
|
|
|
|
u8 storage_id;
|
|
|
|
} out;
|
|
|
|
Handle tmp_handle;
|
2019-09-16 09:22:08 +01:00
|
|
|
|
2019-10-20 01:42:53 +01:00
|
|
|
Result rc = serviceDispatchInOut(pmdmntGetServiceSession(), 65000, pid, out,
|
|
|
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
|
|
|
.out_handles = &tmp_handle,
|
|
|
|
);
|
2019-09-16 09:22:08 +01:00
|
|
|
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
2019-10-20 01:42:53 +01:00
|
|
|
if (tid_out) *tid_out = out.title_id;
|
|
|
|
if (sid_out) *sid_out = out.storage_id;
|
|
|
|
if (handle_out) {
|
|
|
|
*handle_out = tmp_handle;
|
|
|
|
} else {
|
|
|
|
svcCloseHandle(tmp_handle);
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
Result pmdmntAtmosphereGetCurrentLimitInfo(u64 *out_cur, u64 *out_lim, u32 group, u32 resource) {
|
2019-10-20 01:42:53 +01:00
|
|
|
const struct {
|
2019-09-16 09:22:08 +01:00
|
|
|
u32 group;
|
|
|
|
u32 resource;
|
2019-10-20 01:42:53 +01:00
|
|
|
} in = { group, resource };
|
|
|
|
struct {
|
|
|
|
u64 cur;
|
|
|
|
u64 lim;
|
|
|
|
} out;
|
2019-09-16 09:22:08 +01:00
|
|
|
|
2019-10-20 01:42:53 +01:00
|
|
|
Result rc = serviceDispatchInOut(pmdmntGetServiceSession(), 65001, in, out);
|
2019-09-16 09:22:08 +01:00
|
|
|
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
2019-10-20 01:42:53 +01:00
|
|
|
if (out_cur) *out_cur = out.cur;
|
|
|
|
if (out_lim) *out_lim = out.lim;
|
2019-09-16 09:22:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|