2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2018-09-07 16:00:13 +01: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 23:02:10 +01:00
|
|
|
#include <stratosphere.hpp>
|
2019-06-21 02:23:40 +01:00
|
|
|
#include "sm_user_service.hpp"
|
2019-06-25 01:57:49 +01:00
|
|
|
#include "impl/sm_service_manager.hpp"
|
2018-04-22 04:17:57 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::sm {
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2020-09-17 16:24:47 +01:00
|
|
|
UserService::~UserService() {
|
2021-04-10 09:58:26 +01:00
|
|
|
if (m_initialized) {
|
|
|
|
impl::OnClientDisconnected(m_process_id);
|
2020-09-17 16:24:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::RegisterClient(const tipc::ClientProcessId client_process_id) {
|
|
|
|
m_process_id = client_process_id.value;
|
|
|
|
m_initialized = true;
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-04-22 08:13:36 +01:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-06-21 02:23:40 +01:00
|
|
|
Result UserService::EnsureInitialized() {
|
2021-04-10 09:58:26 +01:00
|
|
|
R_UNLESS(m_initialized, sm::ResultInvalidClient());
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2018-04-22 08:13:36 +01:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::GetServiceHandle(tipc::OutMoveHandle out_h, ServiceName service) {
|
2019-06-21 02:23:40 +01:00
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::GetServiceHandle(out_h.GetHandlePointer(), m_process_id, service);
|
2018-05-02 06:21:39 +01:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::RegisterService(tipc::OutMoveHandle out_h, ServiceName service, u32 max_sessions, bool is_light) {
|
2019-06-21 02:23:40 +01:00
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::RegisterService(out_h.GetHandlePointer(), m_process_id, service, max_sessions, is_light);
|
2018-10-30 00:28:37 +00:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-06-21 02:23:40 +01:00
|
|
|
Result UserService::UnregisterService(ServiceName service) {
|
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::UnregisterService(m_process_id, service);
|
2018-10-30 00:28:37 +00:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::DetachClient(const tipc::ClientProcessId client_process_id) {
|
2021-10-07 07:22:54 +01:00
|
|
|
AMS_UNUSED(client_process_id);
|
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
m_initialized = false;
|
2020-12-01 06:18:18 +00:00
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::AtmosphereInstallMitm(tipc::OutMoveHandle srv_h, tipc::OutMoveHandle qry_h, ServiceName service) {
|
2019-06-21 02:23:40 +01:00
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::InstallMitm(srv_h.GetHandlePointer(), qry_h.GetHandlePointer(), m_process_id, service);
|
2018-11-15 22:19:34 +00:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-06-21 02:23:40 +01:00
|
|
|
Result UserService::AtmosphereUninstallMitm(ServiceName service) {
|
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::UninstallMitm(m_process_id, service);
|
2019-06-21 02:23:40 +01:00
|
|
|
}
|
2018-11-15 22:19:34 +00:00
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::AtmosphereAcknowledgeMitmSession(tipc::Out<MitmProcessInfo> client_info, tipc::OutMoveHandle fwd_h, ServiceName service) {
|
2019-06-21 02:23:40 +01:00
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::AcknowledgeMitmSession(client_info.GetPointer(), fwd_h.GetHandlePointer(), m_process_id, service);
|
2019-06-25 01:57:49 +01:00
|
|
|
}
|
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::AtmosphereHasMitm(tipc::Out<bool> out, ServiceName service) {
|
2019-06-25 01:57:49 +01:00
|
|
|
R_TRY(this->EnsureInitialized());
|
|
|
|
return impl::HasMitm(out.GetPointer(), service);
|
|
|
|
}
|
|
|
|
|
2019-07-03 06:21:47 +01:00
|
|
|
Result UserService::AtmosphereWaitMitm(ServiceName service) {
|
|
|
|
R_TRY(this->EnsureInitialized());
|
|
|
|
return impl::WaitMitm(service);
|
|
|
|
}
|
|
|
|
|
2019-07-12 06:23:23 +01:00
|
|
|
Result UserService::AtmosphereDeclareFutureMitm(ServiceName service) {
|
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::DeclareFutureMitm(m_process_id, service);
|
2019-07-12 06:23:23 +01:00
|
|
|
}
|
|
|
|
|
2020-09-07 18:40:43 +01:00
|
|
|
Result UserService::AtmosphereClearFutureMitm(ServiceName service) {
|
|
|
|
R_TRY(this->EnsureInitialized());
|
2021-04-10 09:58:26 +01:00
|
|
|
return impl::ClearFutureMitm(m_process_id, service);
|
2020-09-07 18:40:43 +01:00
|
|
|
}
|
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result UserService::AtmosphereHasService(tipc::Out<bool> out, ServiceName service) {
|
2019-06-25 01:57:49 +01:00
|
|
|
R_TRY(this->EnsureInitialized());
|
|
|
|
return impl::HasService(out.GetPointer(), service);
|
2018-06-15 00:50:01 +01:00
|
|
|
}
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-07-03 06:21:47 +01:00
|
|
|
Result UserService::AtmosphereWaitService(ServiceName service) {
|
|
|
|
R_TRY(this->EnsureInitialized());
|
|
|
|
return impl::WaitService(service);
|
|
|
|
}
|
|
|
|
|
2019-06-21 02:32:00 +01:00
|
|
|
}
|
2021-04-10 09:58:26 +01:00
|
|
|
|
|
|
|
/* Include the backwards compatibility shim for CMIF. */
|
|
|
|
#include "sm_user_service_cmif_shim.inc"
|