2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-06-06 06:31:59 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <tuple>
|
2017-06-07 04:25:28 +00:00
|
|
|
#include "common/assert.h"
|
2018-08-28 16:30:33 +00:00
|
|
|
#include "core/core.h"
|
2017-10-15 02:18:42 +00:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2017-06-06 08:29:46 +00:00
|
|
|
#include "core/hle/kernel/client_port.h"
|
2017-06-06 06:31:59 +00:00
|
|
|
#include "core/hle/kernel/client_session.h"
|
|
|
|
#include "core/hle/kernel/server_port.h"
|
|
|
|
#include "core/hle/result.h"
|
2017-10-15 02:18:42 +00:00
|
|
|
#include "core/hle/service/sm/controller.h"
|
2017-06-06 06:31:59 +00:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::SM {
|
2017-06-06 06:31:59 +00:00
|
|
|
|
2018-09-14 05:43:59 +00:00
|
|
|
constexpr ResultCode ERR_ALREADY_REGISTERED(ErrorModule::SM, 4);
|
|
|
|
constexpr ResultCode ERR_INVALID_NAME(ErrorModule::SM, 6);
|
|
|
|
constexpr ResultCode ERR_SERVICE_NOT_REGISTERED(ErrorModule::SM, 7);
|
|
|
|
|
2018-09-06 18:32:25 +00:00
|
|
|
ServiceManager::ServiceManager() = default;
|
2018-04-20 23:29:04 +00:00
|
|
|
ServiceManager::~ServiceManager() = default;
|
|
|
|
|
2017-10-15 02:18:42 +00:00
|
|
|
void ServiceManager::InvokeControlRequest(Kernel::HLERequestContext& context) {
|
|
|
|
controller_interface->InvokeRequest(context);
|
|
|
|
}
|
|
|
|
|
2017-06-06 06:31:59 +00:00
|
|
|
static ResultCode ValidateServiceName(const std::string& name) {
|
|
|
|
if (name.size() <= 0 || name.size() > 8) {
|
2020-04-29 01:15:21 +00:00
|
|
|
LOG_ERROR(Service_SM, "Invalid service name! service={}", name);
|
2018-09-14 05:43:59 +00:00
|
|
|
return ERR_INVALID_NAME;
|
2017-06-06 06:31:59 +00:00
|
|
|
}
|
|
|
|
if (name.find('\0') != std::string::npos) {
|
2020-04-29 01:15:21 +00:00
|
|
|
LOG_ERROR(Service_SM, "A non null terminated service was passed");
|
2018-09-14 05:43:59 +00:00
|
|
|
return ERR_INVALID_NAME;
|
2017-06-06 06:31:59 +00:00
|
|
|
}
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
void ServiceManager::InstallInterfaces(std::shared_ptr<ServiceManager> self,
|
|
|
|
Kernel::KernelCore& kernel) {
|
2017-10-15 02:18:42 +00:00
|
|
|
ASSERT(self->sm_interface.expired());
|
2017-06-07 04:25:28 +00:00
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
auto sm = std::make_shared<SM>(self, kernel);
|
2020-09-07 07:17:06 +00:00
|
|
|
sm->InstallAsNamedPort(kernel);
|
2017-10-15 02:18:42 +00:00
|
|
|
self->sm_interface = sm;
|
|
|
|
self->controller_interface = std::make_unique<Controller>();
|
2017-06-07 04:25:28 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 01:15:51 +00:00
|
|
|
ResultVal<std::shared_ptr<Kernel::ServerPort>> ServiceManager::RegisterService(
|
2017-06-06 06:31:59 +00:00
|
|
|
std::string name, unsigned int max_sessions) {
|
|
|
|
|
|
|
|
CASCADE_CODE(ValidateServiceName(name));
|
2017-09-24 05:12:58 +00:00
|
|
|
|
2020-04-29 01:15:21 +00:00
|
|
|
if (registered_services.find(name) != registered_services.end()) {
|
|
|
|
LOG_ERROR(Service_SM, "Service is already registered! service={}", name);
|
2017-09-24 05:12:58 +00:00
|
|
|
return ERR_ALREADY_REGISTERED;
|
2020-04-29 01:15:21 +00:00
|
|
|
}
|
2017-09-24 05:12:58 +00:00
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
auto& kernel = Core::System::GetInstance().Kernel();
|
2018-12-06 06:29:17 +00:00
|
|
|
auto [server_port, client_port] =
|
2018-08-28 16:30:33 +00:00
|
|
|
Kernel::ServerPort::CreatePortPair(kernel, max_sessions, name);
|
2017-06-06 06:31:59 +00:00
|
|
|
|
2017-06-07 04:25:28 +00:00
|
|
|
registered_services.emplace(std::move(name), std::move(client_port));
|
2018-12-06 06:33:19 +00:00
|
|
|
return MakeResult(std::move(server_port));
|
2017-06-06 06:31:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-24 05:04:07 +00:00
|
|
|
ResultCode ServiceManager::UnregisterService(const std::string& name) {
|
2018-11-04 00:02:18 +00:00
|
|
|
CASCADE_CODE(ValidateServiceName(name));
|
|
|
|
|
|
|
|
const auto iter = registered_services.find(name);
|
2020-04-29 01:15:21 +00:00
|
|
|
if (iter == registered_services.end()) {
|
|
|
|
LOG_ERROR(Service_SM, "Server is not registered! service={}", name);
|
2018-11-04 00:02:18 +00:00
|
|
|
return ERR_SERVICE_NOT_REGISTERED;
|
2020-04-29 01:15:21 +00:00
|
|
|
}
|
2018-11-04 00:02:18 +00:00
|
|
|
registered_services.erase(iter);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-11-25 01:15:51 +00:00
|
|
|
ResultVal<std::shared_ptr<Kernel::ClientPort>> ServiceManager::GetServicePort(
|
2017-06-06 06:31:59 +00:00
|
|
|
const std::string& name) {
|
|
|
|
|
|
|
|
CASCADE_CODE(ValidateServiceName(name));
|
|
|
|
auto it = registered_services.find(name);
|
|
|
|
if (it == registered_services.end()) {
|
2020-04-29 01:15:21 +00:00
|
|
|
LOG_ERROR(Service_SM, "Server is not registered! service={}", name);
|
2017-06-06 06:31:59 +00:00
|
|
|
return ERR_SERVICE_NOT_REGISTERED;
|
|
|
|
}
|
|
|
|
|
2018-12-06 06:33:19 +00:00
|
|
|
return MakeResult(it->second);
|
2017-06-06 06:31:59 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 01:15:51 +00:00
|
|
|
ResultVal<std::shared_ptr<Kernel::ClientSession>> ServiceManager::ConnectToService(
|
2017-06-06 06:31:59 +00:00
|
|
|
const std::string& name) {
|
|
|
|
|
|
|
|
CASCADE_RESULT(auto client_port, GetServicePort(name));
|
|
|
|
return client_port->Connect();
|
|
|
|
}
|
|
|
|
|
2018-04-20 23:29:04 +00:00
|
|
|
SM::~SM() = default;
|
2017-06-06 06:31:59 +00:00
|
|
|
|
2017-10-15 02:18:42 +00:00
|
|
|
/**
|
|
|
|
* SM::Initialize service function
|
|
|
|
* Inputs:
|
|
|
|
* 0: 0x00000000
|
|
|
|
* Outputs:
|
2017-10-15 05:24:22 +00:00
|
|
|
* 0: ResultCode
|
2017-10-15 02:18:42 +00:00
|
|
|
*/
|
|
|
|
void SM::Initialize(Kernel::HLERequestContext& ctx) {
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_SM, "called");
|
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2017-10-15 02:18:42 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SM::GetService(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
2018-01-07 14:57:41 +00:00
|
|
|
auto name_buf = rp.PopRaw<std::array<char, 8>>();
|
|
|
|
auto end = std::find(name_buf.begin(), name_buf.end(), '\0');
|
|
|
|
|
|
|
|
std::string name(name_buf.begin(), end);
|
2017-10-15 02:18:42 +00:00
|
|
|
|
|
|
|
auto client_port = service_manager->GetServicePort(name);
|
|
|
|
if (client_port.Failed()) {
|
2018-09-19 05:09:59 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
2017-10-15 02:18:42 +00:00
|
|
|
rb.Push(client_port.Code());
|
2018-07-02 16:20:50 +00:00
|
|
|
LOG_ERROR(Service_SM, "called service={} -> error 0x{:08X}", name, client_port.Code().raw);
|
2018-02-05 10:03:22 +00:00
|
|
|
if (name.length() == 0)
|
|
|
|
return; // LibNX Fix
|
2018-01-20 00:35:25 +00:00
|
|
|
UNIMPLEMENTED();
|
2017-10-15 02:18:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
auto [client, server] = Kernel::Session::Create(kernel, name);
|
|
|
|
|
|
|
|
const auto& server_port = client_port.Unwrap()->GetServerPort();
|
|
|
|
if (server_port->GetHLEHandler()) {
|
|
|
|
server_port->GetHLEHandler()->ClientConnected(server);
|
|
|
|
} else {
|
|
|
|
server_port->AppendPendingSession(server);
|
2017-10-15 02:18:42 +00:00
|
|
|
}
|
2019-11-25 23:28:48 +00:00
|
|
|
|
|
|
|
// Wake the threads waiting on the ServerPort
|
2020-04-01 21:28:49 +00:00
|
|
|
server_port->Signal();
|
2019-11-25 23:28:48 +00:00
|
|
|
|
|
|
|
LOG_DEBUG(Service_SM, "called service={} -> session={}", name, client->GetObjectId());
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1, IPC::ResponseBuilder::Flags::AlwaysMoveHandles};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushMoveObjects(std::move(client));
|
2017-10-15 02:18:42 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 00:02:18 +00:00
|
|
|
void SM::RegisterService(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
|
|
|
|
const auto name_buf = rp.PopRaw<std::array<char, 8>>();
|
|
|
|
const auto end = std::find(name_buf.begin(), name_buf.end(), '\0');
|
|
|
|
|
|
|
|
const std::string name(name_buf.begin(), end);
|
|
|
|
|
2018-12-18 04:04:35 +00:00
|
|
|
const auto is_light = static_cast<bool>(rp.PopRaw<u32>());
|
|
|
|
const auto max_session_count = rp.PopRaw<u32>();
|
2018-11-04 00:02:18 +00:00
|
|
|
|
2018-12-18 04:04:35 +00:00
|
|
|
LOG_DEBUG(Service_SM, "called with name={}, max_session_count={}, is_light={}", name,
|
|
|
|
max_session_count, is_light);
|
2018-11-04 00:02:18 +00:00
|
|
|
|
2018-12-18 04:04:35 +00:00
|
|
|
auto handle = service_manager->RegisterService(name, max_session_count);
|
2018-11-04 00:02:18 +00:00
|
|
|
if (handle.Failed()) {
|
|
|
|
LOG_ERROR(Service_SM, "failed to register service with error_code={:08X}",
|
|
|
|
handle.Code().raw);
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(handle.Code());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1, IPC::ResponseBuilder::Flags::AlwaysMoveHandles};
|
|
|
|
rb.Push(handle.Code());
|
|
|
|
rb.PushMoveObjects(std::move(handle).Unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SM::UnregisterService(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
|
|
|
|
const auto name_buf = rp.PopRaw<std::array<char, 8>>();
|
|
|
|
const auto end = std::find(name_buf.begin(), name_buf.end(), '\0');
|
|
|
|
|
|
|
|
const std::string name(name_buf.begin(), end);
|
2018-11-26 06:06:13 +00:00
|
|
|
LOG_DEBUG(Service_SM, "called with name={}", name);
|
2018-11-04 00:02:18 +00:00
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
rb.Push(service_manager->UnregisterService(name));
|
|
|
|
}
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
SM::SM(std::shared_ptr<ServiceManager> service_manager, Kernel::KernelCore& kernel)
|
|
|
|
: ServiceFramework{"sm:", 4}, service_manager{std::move(service_manager)}, kernel{kernel} {
|
2017-10-15 02:18:42 +00:00
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0x00000000, &SM::Initialize, "Initialize"},
|
|
|
|
{0x00000001, &SM::GetService, "GetService"},
|
2018-11-04 00:02:18 +00:00
|
|
|
{0x00000002, &SM::RegisterService, "RegisterService"},
|
|
|
|
{0x00000003, &SM::UnregisterService, "UnregisterService"},
|
2017-10-15 02:18:42 +00:00
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::SM
|