/* * 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 . */ #include #include #include "sm_user_service.hpp" #include "impl/sm_service_manager.hpp" namespace sts::sm { Result UserService::Initialize(PidDescriptor pid) { this->pid = pid.pid; this->has_initialized = true; return ResultSuccess; } Result UserService::EnsureInitialized() { if (!this->has_initialized) { return ResultSmInvalidClient; } return ResultSuccess; } Result UserService::GetService(Out out_h, ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::GetServiceHandle(out_h.GetHandlePointer(), this->pid, service); } Result UserService::RegisterService(Out out_h, ServiceName service, u32 max_sessions, bool is_light) { R_TRY(this->EnsureInitialized()); return impl::RegisterService(out_h.GetHandlePointer(), this->pid, service, max_sessions, is_light); } Result UserService::UnregisterService(ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::UnregisterService(this->pid, service); } Result UserService::AtmosphereInstallMitm(Out srv_h, Out qry_h, ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::InstallMitm(srv_h.GetHandlePointer(), qry_h.GetHandlePointer(), this->pid, service); } Result UserService::AtmosphereUninstallMitm(ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::UninstallMitm(this->pid, service); } Result UserService::AtmosphereAcknowledgeMitmSession(Out client_pid, Out client_tid, Out fwd_h, ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::AcknowledgeMitmSession(client_pid.GetPointer(), client_tid.GetPointer(), fwd_h.GetHandlePointer(), this->pid, service); } Result UserService::AtmosphereHasMitm(Out out, ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::HasMitm(out.GetPointer(), service); } Result UserService::AtmosphereWaitMitm(ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::WaitMitm(service); } Result UserService::AtmosphereDeclareFutureMitm(ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::DeclareFutureMitm(this->pid, service); } Result UserService::AtmosphereHasService(Out out, ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::HasService(out.GetPointer(), service); } Result UserService::AtmosphereWaitService(ServiceName service) { R_TRY(this->EnsureInitialized()); return impl::WaitService(service); } }