/* * 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 . */ #pragma once #include #include #include "sm_types.hpp" enum UserServiceCmd { User_Cmd_Initialize = 0, User_Cmd_GetService = 1, User_Cmd_RegisterService = 2, User_Cmd_UnregisterService = 3, User_Cmd_AtmosphereInstallMitm = 65000, User_Cmd_AtmosphereUninstallMitm = 65001, User_Cmd_AtmosphereAssociatePidTidForMitm = 65002, User_Cmd_AtmosphereAcknowledgeMitmSession = 65003, }; class UserService final : public IServiceObject { private: u64 pid = U64_MAX; bool has_initialized = false; /* Actual commands. */ virtual Result Initialize(PidDescriptor pid); virtual Result GetService(Out out_h, SmServiceName service); virtual Result RegisterService(Out out_h, SmServiceName service, u32 max_sessions, bool is_light); virtual Result UnregisterService(SmServiceName service); /* Atmosphere commands. */ virtual Result AtmosphereInstallMitm(Out srv_h, Out qry_h, SmServiceName service); virtual Result AtmosphereUninstallMitm(SmServiceName service); virtual Result AtmosphereAssociatePidTidForMitm(u64 pid, u64 tid); virtual Result AtmosphereAcknowledgeMitmSession(Out client_pid, Out fwd_h, SmServiceName service); public: DEFINE_SERVICE_DISPATCH_TABLE { MakeServiceCommandMeta(), MakeServiceCommandMeta(), MakeServiceCommandMeta(), MakeServiceCommandMeta(), #ifdef SM_ENABLE_MITM MakeServiceCommandMeta(), MakeServiceCommandMeta(), MakeServiceCommandMeta(), MakeServiceCommandMeta(), #endif }; };