2014-04-13 02:55:36 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-13 02:55:36 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-06-09 07:52:30 +01:00
|
|
|
#include <algorithm>
|
2017-06-07 05:20:52 +01:00
|
|
|
#include <fmt/format.h>
|
2017-06-09 07:52:30 +01:00
|
|
|
#include "common/assert.h"
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/logging/log.h"
|
2014-04-16 03:40:19 +01:00
|
|
|
#include "common/string_util.h"
|
2017-06-09 07:52:30 +01:00
|
|
|
#include "core/hle/ipc.h"
|
2017-06-06 09:29:46 +01:00
|
|
|
#include "core/hle/kernel/client_port.h"
|
2017-09-29 16:00:28 +01:00
|
|
|
#include "core/hle/kernel/event.h"
|
2017-06-09 13:23:13 +01:00
|
|
|
#include "core/hle/kernel/process.h"
|
2016-12-01 03:50:13 +00:00
|
|
|
#include "core/hle/kernel/server_port.h"
|
2017-06-05 05:52:19 +01:00
|
|
|
#include "core/hle/kernel/server_session.h"
|
2016-12-12 08:56:43 +00:00
|
|
|
#include "core/hle/service/ac/ac.h"
|
2016-12-13 06:35:24 +00:00
|
|
|
#include "core/hle/service/act/act.h"
|
2015-06-11 23:12:16 +01:00
|
|
|
#include "core/hle/service/am/am.h"
|
2015-02-27 02:13:08 +00:00
|
|
|
#include "core/hle/service/apt/apt.h"
|
2015-06-11 23:12:16 +01:00
|
|
|
#include "core/hle/service/boss/boss.h"
|
|
|
|
#include "core/hle/service/cam/cam.h"
|
|
|
|
#include "core/hle/service/cecd/cecd.h"
|
2016-09-18 01:38:01 +01:00
|
|
|
#include "core/hle/service/cfg/cfg.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/csnd_snd.h"
|
2016-06-05 00:38:54 +01:00
|
|
|
#include "core/hle/service/dlp/dlp.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/dsp_dsp.h"
|
|
|
|
#include "core/hle/service/err_f.h"
|
2015-06-11 23:12:16 +01:00
|
|
|
#include "core/hle/service/frd/frd.h"
|
2015-02-27 02:13:08 +00:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2017-12-16 19:35:37 +00:00
|
|
|
#include "core/hle/service/gsp/gsp.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/gsp_lcd.h"
|
2015-02-27 02:13:08 +00:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/http_c.h"
|
2015-03-27 23:51:54 +00:00
|
|
|
#include "core/hle/service/ir/ir.h"
|
2016-07-15 07:17:01 +01:00
|
|
|
#include "core/hle/service/ldr_ro/ldr_ro.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/mic_u.h"
|
2016-12-08 09:26:23 +00:00
|
|
|
#include "core/hle/service/mvd/mvd.h"
|
2016-02-14 11:53:32 +00:00
|
|
|
#include "core/hle/service/ndm/ndm.h"
|
2015-06-11 23:12:16 +01:00
|
|
|
#include "core/hle/service/news/news.h"
|
2016-12-08 07:43:27 +00:00
|
|
|
#include "core/hle/service/nfc/nfc.h"
|
2015-06-11 23:12:16 +01:00
|
|
|
#include "core/hle/service/nim/nim.h"
|
2017-08-29 02:26:07 +01:00
|
|
|
#include "core/hle/service/ns/ns.h"
|
2016-12-22 08:06:27 +00:00
|
|
|
#include "core/hle/service/nwm/nwm.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/pm_app.h"
|
2015-02-27 02:13:08 +00:00
|
|
|
#include "core/hle/service/ptm/ptm.h"
|
2017-12-09 01:37:28 +00:00
|
|
|
#include "core/hle/service/pxi/pxi.h"
|
2016-12-08 09:26:23 +00:00
|
|
|
#include "core/hle/service/qtm/qtm.h"
|
2016-09-21 07:52:38 +01:00
|
|
|
#include "core/hle/service/service.h"
|
2017-06-06 07:31:59 +01:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2017-06-06 06:18:19 +01:00
|
|
|
#include "core/hle/service/sm/srv.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#include "core/hle/service/soc_u.h"
|
|
|
|
#include "core/hle/service/ssl_c.h"
|
|
|
|
#include "core/hle/service/y2r_u.h"
|
2015-02-27 02:13:08 +00:00
|
|
|
|
2017-06-07 05:20:52 +01:00
|
|
|
using Kernel::ClientPort;
|
|
|
|
using Kernel::ServerPort;
|
|
|
|
using Kernel::ServerSession;
|
|
|
|
using Kernel::SharedPtr;
|
|
|
|
|
2014-04-13 02:55:36 +01:00
|
|
|
namespace Service {
|
|
|
|
|
2017-06-07 05:22:28 +01:00
|
|
|
std::unordered_map<std::string, SharedPtr<ClientPort>> g_kernel_named_ports;
|
2014-04-13 02:55:36 +01:00
|
|
|
|
2015-04-14 19:22:09 +01:00
|
|
|
/**
|
2015-05-25 19:34:09 +01:00
|
|
|
* Creates a function string for logging, complete with the name (or header code, depending
|
2015-04-14 19:22:09 +01:00
|
|
|
* on what's passed in) the port name, and all the cmd_buff arguments.
|
|
|
|
*/
|
2016-09-18 01:38:01 +01:00
|
|
|
static std::string MakeFunctionString(const char* name, const char* port_name,
|
|
|
|
const u32* cmd_buff) {
|
2015-04-14 19:22:09 +01:00
|
|
|
// Number of params == bits 0-5 + bits 6-11
|
|
|
|
int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F);
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
std::string function_string =
|
|
|
|
Common::StringFromFormat("function '%s': port=%s", name, port_name);
|
2015-04-14 19:22:09 +01:00
|
|
|
for (int i = 1; i <= num_params; ++i) {
|
2015-07-19 21:34:38 +01:00
|
|
|
function_string += Common::StringFromFormat(", cmd_buff[%i]=0x%X", i, cmd_buff[i]);
|
2015-04-14 19:22:09 +01:00
|
|
|
}
|
|
|
|
return function_string;
|
|
|
|
}
|
|
|
|
|
2016-12-09 17:39:12 +00:00
|
|
|
Interface::Interface(u32 max_sessions) : max_sessions(max_sessions) {}
|
2016-12-08 16:06:19 +00:00
|
|
|
Interface::~Interface() = default;
|
|
|
|
|
2017-06-07 05:22:28 +01:00
|
|
|
void Interface::HandleSyncRequest(SharedPtr<ServerSession> server_session) {
|
2016-12-14 17:33:49 +00:00
|
|
|
// TODO(Subv): Make use of the server_session in the HLE service handlers to distinguish which
|
|
|
|
// session triggered each command.
|
2016-06-18 19:39:26 +01:00
|
|
|
|
2015-04-14 19:22:09 +01:00
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
|
|
|
auto itr = m_functions.find(cmd_buff[0]);
|
|
|
|
|
|
|
|
if (itr == m_functions.end() || itr->second.func == nullptr) {
|
2016-09-18 01:38:01 +01:00
|
|
|
std::string function_name = (itr == m_functions.end())
|
|
|
|
? Common::StringFromFormat("0x%08X", cmd_buff[0])
|
|
|
|
: itr->second.name;
|
|
|
|
LOG_ERROR(
|
|
|
|
Service, "unknown / unimplemented %s",
|
|
|
|
MakeFunctionString(function_name.c_str(), GetPortName().c_str(), cmd_buff).c_str());
|
2015-04-14 19:22:09 +01:00
|
|
|
|
|
|
|
// TODO(bunnei): Hack - ignore error
|
|
|
|
cmd_buff[1] = 0;
|
2016-12-05 17:05:00 +00:00
|
|
|
return;
|
2015-04-14 19:22:09 +01:00
|
|
|
}
|
2016-09-18 01:38:01 +01:00
|
|
|
LOG_TRACE(Service, "%s",
|
|
|
|
MakeFunctionString(itr->second.name, GetPortName().c_str(), cmd_buff).c_str());
|
2015-04-14 19:22:09 +01:00
|
|
|
|
|
|
|
itr->second.func(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Interface::Register(const FunctionInfo* functions, size_t n) {
|
|
|
|
m_functions.reserve(n);
|
|
|
|
for (size_t i = 0; i < n; ++i) {
|
|
|
|
// Usually this array is sorted by id already, so hint to instead at the end
|
|
|
|
m_functions.emplace_hint(m_functions.cend(), functions[i].id, functions[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 05:20:52 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
ServiceFrameworkBase::ServiceFrameworkBase(const char* service_name, u32 max_sessions,
|
|
|
|
InvokerFn* handler_invoker)
|
|
|
|
: service_name(service_name), max_sessions(max_sessions), handler_invoker(handler_invoker) {}
|
|
|
|
|
|
|
|
ServiceFrameworkBase::~ServiceFrameworkBase() = default;
|
|
|
|
|
|
|
|
void ServiceFrameworkBase::InstallAsService(SM::ServiceManager& service_manager) {
|
|
|
|
ASSERT(port == nullptr);
|
|
|
|
port = service_manager.RegisterService(service_name, max_sessions).Unwrap();
|
|
|
|
port->SetHleHandler(shared_from_this());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceFrameworkBase::InstallAsNamedPort() {
|
|
|
|
ASSERT(port == nullptr);
|
|
|
|
SharedPtr<ServerPort> server_port;
|
|
|
|
SharedPtr<ClientPort> client_port;
|
|
|
|
std::tie(server_port, client_port) = ServerPort::CreatePortPair(max_sessions, service_name);
|
|
|
|
server_port->SetHleHandler(shared_from_this());
|
|
|
|
AddNamedPort(service_name, std::move(client_port));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceFrameworkBase::RegisterHandlersBase(const FunctionInfoBase* functions, size_t n) {
|
|
|
|
handlers.reserve(handlers.size() + n);
|
|
|
|
for (size_t i = 0; i < n; ++i) {
|
|
|
|
// Usually this array is sorted by id already, so hint to insert at the end
|
|
|
|
handlers.emplace_hint(handlers.cend(), functions[i].expected_header, functions[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceFrameworkBase::ReportUnimplementedFunction(u32* cmd_buf, const FunctionInfoBase* info) {
|
|
|
|
IPC::Header header{cmd_buf[0]};
|
|
|
|
int num_params = header.normal_params_size + header.translate_params_size;
|
|
|
|
std::string function_name = info == nullptr ? fmt::format("{:#08x}", cmd_buf[0]) : info->name;
|
|
|
|
|
|
|
|
fmt::MemoryWriter w;
|
|
|
|
w.write("function '{}': port='{}' cmd_buf={{[0]={:#x}", function_name, service_name,
|
|
|
|
cmd_buf[0]);
|
|
|
|
for (int i = 1; i <= num_params; ++i) {
|
|
|
|
w.write(", [{}]={:#x}", i, cmd_buf[i]);
|
|
|
|
}
|
|
|
|
w << '}';
|
|
|
|
|
|
|
|
LOG_ERROR(Service, "unknown / unimplemented %s", w.c_str());
|
|
|
|
// TODO(bunnei): Hack - ignore error
|
|
|
|
cmd_buf[1] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceFrameworkBase::HandleSyncRequest(SharedPtr<ServerSession> server_session) {
|
|
|
|
u32* cmd_buf = Kernel::GetCommandBuffer();
|
|
|
|
|
|
|
|
u32 header_code = cmd_buf[0];
|
|
|
|
auto itr = handlers.find(header_code);
|
|
|
|
const FunctionInfoBase* info = itr == handlers.end() ? nullptr : &itr->second;
|
|
|
|
if (info == nullptr || info->handler_callback == nullptr) {
|
|
|
|
return ReportUnimplementedFunction(cmd_buf, info);
|
|
|
|
}
|
|
|
|
|
2017-06-09 07:52:30 +01:00
|
|
|
// TODO(yuriks): The kernel should be the one handling this as part of translation after
|
|
|
|
// everything else is migrated
|
2017-06-19 00:05:12 +01:00
|
|
|
Kernel::HLERequestContext context(std::move(server_session));
|
2017-06-09 13:23:13 +01:00
|
|
|
context.PopulateFromIncomingCommandBuffer(cmd_buf, *Kernel::g_current_process,
|
|
|
|
Kernel::g_handle_table);
|
2017-06-09 07:52:30 +01:00
|
|
|
|
2017-06-07 05:20:52 +01:00
|
|
|
LOG_TRACE(Service, "%s",
|
|
|
|
MakeFunctionString(info->name, GetServiceName().c_str(), cmd_buf).c_str());
|
|
|
|
handler_invoker(this, info->handler_callback, context);
|
2017-06-09 13:23:13 +01:00
|
|
|
context.WriteToOutgoingCommandBuffer(cmd_buf, *Kernel::g_current_process,
|
|
|
|
Kernel::g_handle_table);
|
2017-06-07 05:20:52 +01:00
|
|
|
}
|
|
|
|
|
2014-04-13 05:38:48 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2015-01-30 18:07:04 +00:00
|
|
|
// Module interface
|
2014-04-13 02:55:36 +01:00
|
|
|
|
2017-06-07 05:20:52 +01:00
|
|
|
// TODO(yuriks): Move to kernel
|
|
|
|
void AddNamedPort(std::string name, SharedPtr<ClientPort> port) {
|
|
|
|
g_kernel_named_ports.emplace(std::move(name), std::move(port));
|
|
|
|
}
|
|
|
|
|
2015-02-27 02:13:08 +00:00
|
|
|
static void AddNamedPort(Interface* interface_) {
|
2017-06-07 05:22:28 +01:00
|
|
|
SharedPtr<ServerPort> server_port;
|
|
|
|
SharedPtr<ClientPort> client_port;
|
2017-06-06 06:39:26 +01:00
|
|
|
std::tie(server_port, client_port) =
|
2017-06-07 05:22:28 +01:00
|
|
|
ServerPort::CreatePortPair(interface_->GetMaxSessions(), interface_->GetPortName());
|
2017-06-06 06:39:26 +01:00
|
|
|
|
|
|
|
server_port->SetHleHandler(std::shared_ptr<Interface>(interface_));
|
2017-06-07 05:20:52 +01:00
|
|
|
AddNamedPort(interface_->GetPortName(), std::move(client_port));
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
2015-02-27 02:13:08 +00:00
|
|
|
void AddService(Interface* interface_) {
|
2017-06-06 07:31:59 +01:00
|
|
|
auto server_port =
|
|
|
|
SM::g_service_manager
|
|
|
|
->RegisterService(interface_->GetPortName(), interface_->GetMaxSessions())
|
2017-06-19 03:03:15 +01:00
|
|
|
.Unwrap();
|
2017-06-06 06:39:26 +01:00
|
|
|
server_port->SetHleHandler(std::shared_ptr<Interface>(interface_));
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
2017-09-29 16:00:28 +01:00
|
|
|
bool ThreadContinuationToken::IsValid() {
|
|
|
|
return thread != nullptr && event != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadContinuationToken SleepClientThread(const std::string& reason,
|
|
|
|
ThreadContinuationToken::Callback callback) {
|
|
|
|
auto thread = Kernel::GetCurrentThread();
|
|
|
|
|
|
|
|
ASSERT(thread->status == THREADSTATUS_RUNNING);
|
|
|
|
|
|
|
|
ThreadContinuationToken token;
|
|
|
|
|
|
|
|
token.event = Kernel::Event::Create(Kernel::ResetType::OneShot, "HLE Pause Event: " + reason);
|
|
|
|
token.thread = thread;
|
|
|
|
token.callback = std::move(callback);
|
|
|
|
token.pause_reason = std::move(reason);
|
|
|
|
|
|
|
|
// Make the thread wait on our newly created event, it will be signaled when
|
|
|
|
// ContinueClientThread is called.
|
|
|
|
thread->status = THREADSTATUS_WAIT_HLE_EVENT;
|
|
|
|
thread->wait_objects = {token.event};
|
|
|
|
token.event->AddWaitingThread(thread);
|
|
|
|
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContinueClientThread(ThreadContinuationToken& token) {
|
|
|
|
ASSERT_MSG(token.IsValid(), "Invalid continuation token");
|
|
|
|
ASSERT(token.thread->status == THREADSTATUS_WAIT_HLE_EVENT);
|
|
|
|
|
|
|
|
// Signal the event to wake up the thread
|
|
|
|
token.event->Signal();
|
|
|
|
ASSERT(token.thread->status == THREADSTATUS_READY);
|
|
|
|
|
|
|
|
token.callback(token.thread);
|
|
|
|
|
|
|
|
token.event = nullptr;
|
|
|
|
token.thread = nullptr;
|
|
|
|
token.callback = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-13 02:55:36 +01:00
|
|
|
/// Initialize ServiceManager
|
|
|
|
void Init() {
|
2017-06-07 05:25:28 +01:00
|
|
|
SM::g_service_manager = std::make_shared<SM::ServiceManager>();
|
|
|
|
SM::ServiceManager::InstallInterfaces(SM::g_service_manager);
|
|
|
|
|
2017-12-04 19:03:11 +00:00
|
|
|
ERR::InstallInterfaces();
|
|
|
|
|
2017-12-09 01:37:28 +00:00
|
|
|
PXI::InstallInterfaces(*SM::g_service_manager);
|
2017-08-29 02:26:07 +01:00
|
|
|
NS::InstallInterfaces(*SM::g_service_manager);
|
2017-10-04 22:22:14 +01:00
|
|
|
AC::InstallInterfaces(*SM::g_service_manager);
|
2017-12-05 14:23:57 +00:00
|
|
|
LDR::InstallInterfaces(*SM::g_service_manager);
|
2017-12-09 01:00:05 +00:00
|
|
|
MIC::InstallInterfaces(*SM::g_service_manager);
|
2017-08-29 02:26:07 +01:00
|
|
|
|
2016-12-08 07:43:27 +00:00
|
|
|
FS::ArchiveInit();
|
2016-12-13 06:35:24 +00:00
|
|
|
ACT::Init();
|
2016-12-08 07:43:27 +00:00
|
|
|
AM::Init();
|
|
|
|
APT::Init();
|
|
|
|
BOSS::Init();
|
2017-12-06 14:53:03 +00:00
|
|
|
CAM::InstallInterfaces(*SM::g_service_manager);
|
2016-12-08 07:43:27 +00:00
|
|
|
CECD::Init();
|
|
|
|
CFG::Init();
|
|
|
|
DLP::Init();
|
|
|
|
FRD::Init();
|
2017-12-16 19:35:37 +00:00
|
|
|
GSP::InstallInterfaces(*SM::g_service_manager);
|
2016-12-08 07:43:27 +00:00
|
|
|
HID::Init();
|
2017-12-09 10:34:23 +00:00
|
|
|
IR::InstallInterfaces(*SM::g_service_manager);
|
2016-12-08 09:26:23 +00:00
|
|
|
MVD::Init();
|
2016-12-08 07:43:27 +00:00
|
|
|
NDM::Init();
|
|
|
|
NEWS::Init();
|
|
|
|
NFC::Init();
|
|
|
|
NIM::Init();
|
2016-12-22 08:06:27 +00:00
|
|
|
NWM::Init();
|
2016-12-08 07:43:27 +00:00
|
|
|
PTM::Init();
|
2016-12-08 09:26:23 +00:00
|
|
|
QTM::Init();
|
2015-02-27 02:13:08 +00:00
|
|
|
|
2016-12-10 12:51:50 +00:00
|
|
|
AddService(new CSND::CSND_SND);
|
2015-01-30 18:07:04 +00:00
|
|
|
AddService(new DSP_DSP::Interface);
|
2016-12-10 12:51:50 +00:00
|
|
|
AddService(new GSP::GSP_LCD);
|
|
|
|
AddService(new HTTP::HTTP_C);
|
|
|
|
AddService(new PM::PM_APP);
|
|
|
|
AddService(new SOC::SOC_U);
|
|
|
|
AddService(new SSL::SSL_C);
|
|
|
|
AddService(new Y2R::Y2R_U);
|
2014-04-16 05:03:41 +01:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Service, "initialized OK");
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown ServiceManager
|
|
|
|
void Shutdown() {
|
2016-12-08 07:43:27 +00:00
|
|
|
PTM::Shutdown();
|
2016-12-29 20:38:47 +00:00
|
|
|
NFC::Shutdown();
|
2016-12-08 07:43:27 +00:00
|
|
|
NIM::Shutdown();
|
|
|
|
NEWS::Shutdown();
|
|
|
|
NDM::Shutdown();
|
|
|
|
HID::Shutdown();
|
|
|
|
FRD::Shutdown();
|
|
|
|
DLP::Shutdown();
|
|
|
|
CFG::Shutdown();
|
|
|
|
CECD::Shutdown();
|
|
|
|
BOSS::Shutdown();
|
|
|
|
APT::Shutdown();
|
|
|
|
AM::Shutdown();
|
|
|
|
FS::ArchiveShutdown();
|
2015-02-27 02:13:08 +00:00
|
|
|
|
2017-06-06 07:31:59 +01:00
|
|
|
SM::g_service_manager = nullptr;
|
2015-01-30 18:07:04 +00:00
|
|
|
g_kernel_named_ports.clear();
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Service, "shutdown OK");
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
2017-09-29 16:00:28 +01:00
|
|
|
} // namespace Service
|