2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 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/>.
|
|
|
|
*/
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2018-04-22 04:17:57 +01:00
|
|
|
#pragma once
|
2018-10-30 00:28:37 +00:00
|
|
|
#include <stratosphere.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
|
|
|
|
2019-06-21 02:23:40 +01:00
|
|
|
/* Service definition. */
|
2019-10-11 10:15:14 +01:00
|
|
|
class UserService final : public sf::IServiceObject {
|
2019-06-21 07:34:59 +01:00
|
|
|
protected:
|
|
|
|
/* Command IDs. */
|
|
|
|
enum class CommandId {
|
|
|
|
Initialize = 0,
|
|
|
|
GetService = 1,
|
|
|
|
RegisterService = 2,
|
|
|
|
UnregisterService = 3,
|
|
|
|
|
|
|
|
AtmosphereInstallMitm = 65000,
|
|
|
|
AtmosphereUninstallMitm = 65001,
|
2019-07-04 06:57:49 +01:00
|
|
|
/* Deprecated: AtmosphereAssociatePidTidForMitm = 65002 */
|
2019-06-21 07:34:59 +01:00
|
|
|
AtmosphereAcknowledgeMitmSession = 65003,
|
2019-06-25 01:57:49 +01:00
|
|
|
AtmosphereHasMitm = 65004,
|
2019-07-03 06:21:47 +01:00
|
|
|
AtmosphereWaitMitm = 65005,
|
2019-07-12 06:23:23 +01:00
|
|
|
AtmosphereDeclareFutureMitm = 65006,
|
2019-06-25 01:57:49 +01:00
|
|
|
|
|
|
|
AtmosphereHasService = 65100,
|
2019-07-03 06:21:47 +01:00
|
|
|
AtmosphereWaitService = 65101,
|
2019-06-21 07:34:59 +01:00
|
|
|
};
|
2019-06-21 02:23:40 +01:00
|
|
|
private:
|
2019-10-11 10:15:14 +01:00
|
|
|
os::ProcessId process_id = os::InvalidProcessId;
|
2019-06-21 02:23:40 +01:00
|
|
|
bool has_initialized = false;
|
|
|
|
private:
|
|
|
|
Result EnsureInitialized();
|
|
|
|
public:
|
|
|
|
/* Official commands. */
|
2019-10-11 10:15:14 +01:00
|
|
|
virtual Result Initialize(const sf::ClientProcessId &client_process_id);
|
|
|
|
virtual Result GetService(sf::OutMoveHandle out_h, ServiceName service);
|
|
|
|
virtual Result RegisterService(sf::OutMoveHandle out_h, ServiceName service, u32 max_sessions, bool is_light);
|
2019-06-21 02:23:40 +01:00
|
|
|
virtual Result UnregisterService(ServiceName service);
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-06-21 02:23:40 +01:00
|
|
|
/* Atmosphere commands. */
|
2019-10-11 10:15:14 +01:00
|
|
|
virtual Result AtmosphereInstallMitm(sf::OutMoveHandle srv_h, sf::OutMoveHandle qry_h, ServiceName service);
|
2019-06-21 02:23:40 +01:00
|
|
|
virtual Result AtmosphereUninstallMitm(ServiceName service);
|
2019-11-21 12:03:19 +00:00
|
|
|
virtual Result AtmosphereAcknowledgeMitmSession(sf::Out<MitmProcessInfo> client_info, sf::OutMoveHandle fwd_h, ServiceName service);
|
2019-10-11 10:15:14 +01:00
|
|
|
virtual Result AtmosphereHasMitm(sf::Out<bool> out, ServiceName service);
|
2019-07-03 06:21:47 +01:00
|
|
|
virtual Result AtmosphereWaitMitm(ServiceName service);
|
2019-07-12 06:23:23 +01:00
|
|
|
virtual Result AtmosphereDeclareFutureMitm(ServiceName service);
|
2019-06-25 01:57:49 +01:00
|
|
|
|
2019-10-11 10:15:14 +01:00
|
|
|
virtual Result AtmosphereHasService(sf::Out<bool> out, ServiceName service);
|
2019-07-03 06:21:47 +01:00
|
|
|
virtual Result AtmosphereWaitService(ServiceName service);
|
2019-06-21 02:23:40 +01:00
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
2019-10-11 10:15:14 +01:00
|
|
|
MAKE_SERVICE_COMMAND_META(Initialize),
|
|
|
|
MAKE_SERVICE_COMMAND_META(GetService),
|
|
|
|
MAKE_SERVICE_COMMAND_META(RegisterService),
|
|
|
|
MAKE_SERVICE_COMMAND_META(UnregisterService),
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-10-11 10:15:14 +01:00
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereInstallMitm),
|
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereUninstallMitm),
|
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereAcknowledgeMitmSession),
|
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereHasMitm),
|
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereWaitMitm),
|
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereDeclareFutureMitm),
|
2019-06-25 01:57:49 +01:00
|
|
|
|
2019-10-11 10:15:14 +01:00
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereHasService),
|
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereWaitService),
|
2019-06-21 02:23:40 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-06-21 02:32:00 +01:00
|
|
|
}
|