2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 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/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-22 04:17:57 +01:00
|
|
|
#include <switch.h>
|
2018-10-30 00:28:37 +00:00
|
|
|
#include <stratosphere.hpp>
|
2018-04-22 04:17:57 +01:00
|
|
|
#include "sm_user_service.hpp"
|
2018-04-22 07:11:57 +01:00
|
|
|
#include "sm_registration.hpp"
|
2018-04-22 04:17:57 +01:00
|
|
|
|
2018-10-30 00:28:37 +00:00
|
|
|
Result UserService::Initialize(PidDescriptor pid) {
|
2018-04-22 04:40:26 +01:00
|
|
|
this->pid = pid.pid;
|
2018-04-22 08:13:36 +01:00
|
|
|
this->has_initialized = true;
|
2018-10-30 00:28:37 +00:00
|
|
|
return 0;
|
2018-04-22 04:17:57 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 00:28:37 +00:00
|
|
|
Result UserService::GetService(Out<MovedHandle> out_h, u64 service) {
|
2018-04-22 07:11:57 +01:00
|
|
|
Handle session_h = 0;
|
2018-04-22 08:13:36 +01:00
|
|
|
Result rc = 0x415;
|
2018-10-30 00:28:37 +00:00
|
|
|
|
2018-05-02 06:21:39 +01:00
|
|
|
#ifdef SM_ENABLE_SMHAX
|
|
|
|
if (!this->has_initialized) {
|
|
|
|
rc = Registration::GetServiceForPid(Registration::GetInitialProcessId(), service, &session_h);
|
|
|
|
}
|
|
|
|
#endif
|
2018-04-22 08:13:36 +01:00
|
|
|
if (this->has_initialized) {
|
|
|
|
rc = Registration::GetServiceForPid(this->pid, service, &session_h);
|
|
|
|
}
|
2018-10-30 00:28:37 +00:00
|
|
|
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
|
|
out_h.SetValue(session_h);
|
2018-04-22 10:02:08 +01:00
|
|
|
}
|
2018-10-30 00:28:37 +00:00
|
|
|
return rc;
|
2018-04-22 04:17:57 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 00:28:37 +00:00
|
|
|
Result UserService::RegisterService(Out<MovedHandle> out_h, u64 service, u8 is_light, u32 max_sessions) {
|
2018-04-22 07:11:57 +01:00
|
|
|
Handle service_h = 0;
|
2018-04-22 08:13:36 +01:00
|
|
|
Result rc = 0x415;
|
2018-05-02 06:21:39 +01:00
|
|
|
#ifdef SM_ENABLE_SMHAX
|
|
|
|
if (!this->has_initialized) {
|
2018-05-07 14:31:36 +01:00
|
|
|
rc = Registration::RegisterServiceForPid(Registration::GetInitialProcessId(), service, max_sessions, (is_light & 1) != 0, &service_h);
|
2018-05-02 06:21:39 +01:00
|
|
|
}
|
|
|
|
#endif
|
2018-04-22 08:13:36 +01:00
|
|
|
if (this->has_initialized) {
|
2018-05-07 14:31:36 +01:00
|
|
|
rc = Registration::RegisterServiceForPid(this->pid, service, max_sessions, (is_light & 1) != 0, &service_h);
|
2018-04-22 08:13:36 +01:00
|
|
|
}
|
2018-10-30 00:28:37 +00:00
|
|
|
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
|
|
out_h.SetValue(service_h);
|
|
|
|
}
|
|
|
|
return rc;
|
2018-04-22 04:17:57 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 00:28:37 +00:00
|
|
|
Result UserService::UnregisterService(u64 service) {
|
2018-04-22 08:13:36 +01:00
|
|
|
Result rc = 0x415;
|
2018-05-02 06:21:39 +01:00
|
|
|
#ifdef SM_ENABLE_SMHAX
|
|
|
|
if (!this->has_initialized) {
|
|
|
|
rc = Registration::UnregisterServiceForPid(Registration::GetInitialProcessId(), service);
|
|
|
|
}
|
|
|
|
#endif
|
2018-04-22 08:13:36 +01:00
|
|
|
if (this->has_initialized) {
|
|
|
|
rc = Registration::UnregisterServiceForPid(this->pid, service);
|
|
|
|
}
|
2018-10-30 00:28:37 +00:00
|
|
|
return rc;
|
2018-04-22 04:17:57 +01:00
|
|
|
}
|
2018-06-03 06:38:01 +01:00
|
|
|
|
2018-10-30 00:28:37 +00:00
|
|
|
Result UserService::AtmosphereInstallMitm(Out<MovedHandle> srv_h, Out<MovedHandle> qry_h, u64 service) {
|
2018-06-03 06:38:01 +01:00
|
|
|
Handle service_h = 0;
|
2018-06-15 00:50:01 +01:00
|
|
|
Handle query_h = 0;
|
2018-06-03 06:38:01 +01:00
|
|
|
Result rc = 0x415;
|
|
|
|
if (this->has_initialized) {
|
2018-06-15 00:50:01 +01:00
|
|
|
rc = Registration::InstallMitmForPid(this->pid, service, &service_h, &query_h);
|
2018-06-03 06:38:01 +01:00
|
|
|
}
|
2018-10-30 00:28:37 +00:00
|
|
|
|
|
|
|
if (R_SUCCEEDED(rc)) {
|
|
|
|
srv_h.SetValue(service_h);
|
|
|
|
qry_h.SetValue(query_h);
|
|
|
|
}
|
|
|
|
return rc;
|
2018-06-15 00:50:01 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 00:28:37 +00:00
|
|
|
Result UserService::AtmosphereUninstallMitm(u64 service) {
|
|
|
|
Result rc = 0x415;
|
|
|
|
if (this->has_initialized) {
|
|
|
|
rc = Registration::UninstallMitmForPid(this->pid, service);
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
Result UserService::AtmosphereAssociatePidTidForMitm(u64 pid, u64 tid) {
|
2018-06-15 00:50:01 +01:00
|
|
|
Result rc = 0x415;
|
|
|
|
if (this->has_initialized) {
|
|
|
|
if (Registration::IsInitialProcess(pid)) {
|
|
|
|
rc = 0x1015;
|
|
|
|
} else {
|
|
|
|
rc = Registration::AssociatePidTidForMitm(pid, tid);
|
|
|
|
}
|
|
|
|
}
|
2018-10-30 00:28:37 +00:00
|
|
|
return rc;
|
2018-06-03 06:38:01 +01:00
|
|
|
}
|