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/>.
|
|
|
|
*/
|
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. */
|
2021-01-17 23:03:51 +00:00
|
|
|
class UserService {
|
2019-06-21 02:23:40 +01:00
|
|
|
private:
|
2021-04-10 09:58:26 +01:00
|
|
|
os::ProcessId m_process_id;
|
|
|
|
bool m_initialized;
|
2020-09-17 16:24:47 +01:00
|
|
|
public:
|
2021-04-10 09:58:26 +01:00
|
|
|
constexpr UserService() : m_process_id{os::InvalidProcessId}, m_initialized{false} { /* ... */ }
|
2020-09-17 16:24:47 +01:00
|
|
|
virtual ~UserService();
|
2021-04-10 09:58:26 +01:00
|
|
|
private:
|
|
|
|
Result EnsureInitialized();
|
2019-06-21 02:23:40 +01:00
|
|
|
public:
|
|
|
|
/* Official commands. */
|
2021-04-10 09:58:26 +01:00
|
|
|
Result RegisterClient(const tipc::ClientProcessId client_process_id);
|
|
|
|
Result GetServiceHandle(tipc::OutMoveHandle out_h, ServiceName service);
|
|
|
|
Result RegisterService(tipc::OutMoveHandle out_h, ServiceName service, u32 max_sessions, bool is_light);
|
2020-07-08 01:07:23 +01:00
|
|
|
Result UnregisterService(ServiceName service);
|
2021-04-10 09:58:26 +01:00
|
|
|
Result DetachClient(const tipc::ClientProcessId client_process_id);
|
2019-06-17 17:17:53 +01:00
|
|
|
|
2019-06-21 02:23:40 +01:00
|
|
|
/* Atmosphere commands. */
|
2021-04-10 09:58:26 +01:00
|
|
|
Result AtmosphereInstallMitm(tipc::OutMoveHandle srv_h, tipc::OutMoveHandle qry_h, ServiceName service);
|
2020-07-08 01:07:23 +01:00
|
|
|
Result AtmosphereUninstallMitm(ServiceName service);
|
2021-04-10 09:58:26 +01:00
|
|
|
Result AtmosphereAcknowledgeMitmSession(tipc::Out<MitmProcessInfo> client_info, tipc::OutMoveHandle fwd_h, ServiceName service);
|
|
|
|
Result AtmosphereHasMitm(tipc::Out<bool> out, ServiceName service);
|
2020-07-08 01:07:23 +01:00
|
|
|
Result AtmosphereWaitMitm(ServiceName service);
|
|
|
|
Result AtmosphereDeclareFutureMitm(ServiceName service);
|
2020-09-07 18:40:43 +01:00
|
|
|
Result AtmosphereClearFutureMitm(ServiceName service);
|
2020-07-08 01:07:23 +01:00
|
|
|
|
2021-04-10 09:58:26 +01:00
|
|
|
Result AtmosphereHasService(tipc::Out<bool> out, ServiceName service);
|
2020-07-08 01:07:23 +01:00
|
|
|
Result AtmosphereWaitService(ServiceName service);
|
2021-04-10 09:58:26 +01:00
|
|
|
public:
|
|
|
|
/* Backwards compatibility layer for cmif. */
|
|
|
|
Result ProcessDefaultServiceCommand(const svc::ipc::MessageBuffer &message_buffer);
|
2019-06-21 02:23:40 +01:00
|
|
|
};
|
2020-07-08 01:07:23 +01:00
|
|
|
static_assert(sm::impl::IsIUserInterface<UserService>);
|
2021-04-10 09:58:26 +01:00
|
|
|
/* TODO: static assert that this is a tipc interface with default prototyping. */
|
2019-06-21 02:23:40 +01:00
|
|
|
|
2019-06-21 02:32:00 +01:00
|
|
|
}
|