2018-01-13 16:22:39 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-12 21:55:36 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-06-09 02:52:30 -04:00
|
|
|
#include <algorithm>
|
2017-06-07 00:20:52 -04:00
|
|
|
#include <fmt/format.h>
|
2017-06-09 02:52:30 -04:00
|
|
|
#include "common/assert.h"
|
2015-05-06 03:06:12 -04:00
|
|
|
#include "common/logging/log.h"
|
2014-04-15 22:40:19 -04:00
|
|
|
#include "common/string_util.h"
|
2018-03-13 17:49:59 -04:00
|
|
|
#include "core/core.h"
|
2017-06-09 02:52:30 -04:00
|
|
|
#include "core/hle/ipc.h"
|
2017-10-14 22:18:42 -04:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2017-06-06 04:29:46 -04:00
|
|
|
#include "core/hle/kernel/client_port.h"
|
2017-10-15 01:24:22 -04:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2018-09-02 11:58:58 -04:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-06-09 08:23:13 -04:00
|
|
|
#include "core/hle/kernel/process.h"
|
2016-11-30 22:50:13 -05:00
|
|
|
#include "core/hle/kernel/server_port.h"
|
2017-10-14 22:18:42 -04:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-01-16 21:32:59 -05:00
|
|
|
#include "core/hle/service/acc/acc.h"
|
2017-10-14 22:50:04 -04:00
|
|
|
#include "core/hle/service/am/am.h"
|
2017-12-28 15:24:05 -05:00
|
|
|
#include "core/hle/service/aoc/aoc_u.h"
|
2017-10-14 22:50:04 -04:00
|
|
|
#include "core/hle/service/apm/apm.h"
|
2018-08-04 17:54:54 -04:00
|
|
|
#include "core/hle/service/arp/arp.h"
|
2018-01-14 21:29:11 -05:00
|
|
|
#include "core/hle/service/audio/audio.h"
|
2018-10-21 17:01:01 -04:00
|
|
|
#include "core/hle/service/bcat/module.h"
|
2018-08-01 15:40:55 -04:00
|
|
|
#include "core/hle/service/bpc/bpc.h"
|
2018-07-26 18:00:50 -04:00
|
|
|
#include "core/hle/service/btdrv/btdrv.h"
|
2018-07-28 20:59:09 -04:00
|
|
|
#include "core/hle/service/btm/btm.h"
|
2018-08-01 16:24:03 -04:00
|
|
|
#include "core/hle/service/caps/caps.h"
|
2018-07-25 19:04:31 -04:00
|
|
|
#include "core/hle/service/erpt/erpt.h"
|
2018-07-25 15:30:50 -04:00
|
|
|
#include "core/hle/service/es/es.h"
|
2018-07-25 19:15:31 -04:00
|
|
|
#include "core/hle/service/eupld/eupld.h"
|
2018-03-20 09:55:20 -04:00
|
|
|
#include "core/hle/service/fatal/fatal.h"
|
2018-07-31 07:20:42 -04:00
|
|
|
#include "core/hle/service/fgm/fgm.h"
|
2018-01-16 22:20:12 -05:00
|
|
|
#include "core/hle/service/filesystem/filesystem.h"
|
2018-02-19 17:34:02 -05:00
|
|
|
#include "core/hle/service/friend/friend.h"
|
2018-07-26 09:25:54 -04:00
|
|
|
#include "core/hle/service/grc/grc.h"
|
2015-02-26 21:13:08 -05:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2018-07-27 13:48:33 -04:00
|
|
|
#include "core/hle/service/lbl/lbl.h"
|
2018-07-26 01:16:08 -04:00
|
|
|
#include "core/hle/service/ldn/ldn.h"
|
2018-07-25 22:57:08 -04:00
|
|
|
#include "core/hle/service/ldr/ldr.h"
|
2017-10-14 22:18:42 -04:00
|
|
|
#include "core/hle/service/lm/lm.h"
|
2018-08-02 09:59:08 -04:00
|
|
|
#include "core/hle/service/mig/mig.h"
|
2018-07-27 15:39:30 -04:00
|
|
|
#include "core/hle/service/mii/mii.h"
|
2018-06-05 05:19:29 -04:00
|
|
|
#include "core/hle/service/mm/mm_u.h"
|
2018-07-27 17:32:45 -04:00
|
|
|
#include "core/hle/service/ncm/ncm.h"
|
2018-07-27 14:32:39 -04:00
|
|
|
#include "core/hle/service/nfc/nfc.h"
|
2018-03-29 21:06:51 -04:00
|
|
|
#include "core/hle/service/nfp/nfp.h"
|
2018-02-02 06:31:27 -05:00
|
|
|
#include "core/hle/service/nifm/nifm.h"
|
2018-07-26 02:17:15 -04:00
|
|
|
#include "core/hle/service/nim/nim.h"
|
2018-10-21 17:01:01 -04:00
|
|
|
#include "core/hle/service/npns/npns.h"
|
2018-02-14 22:22:41 -05:00
|
|
|
#include "core/hle/service/ns/ns.h"
|
2018-01-07 21:27:58 -05:00
|
|
|
#include "core/hle/service/nvdrv/nvdrv.h"
|
2018-09-13 16:43:31 -04:00
|
|
|
#include "core/hle/service/nvflinger/nvflinger.h"
|
2018-07-31 06:33:38 -04:00
|
|
|
#include "core/hle/service/pcie/pcie.h"
|
2018-10-21 17:01:01 -04:00
|
|
|
#include "core/hle/service/pctl/module.h"
|
2018-08-01 15:40:55 -04:00
|
|
|
#include "core/hle/service/pcv/pcv.h"
|
2018-07-25 16:37:00 -04:00
|
|
|
#include "core/hle/service/pm/pm.h"
|
2018-04-22 01:04:24 -04:00
|
|
|
#include "core/hle/service/prepo/prepo.h"
|
2018-08-01 21:59:22 -04:00
|
|
|
#include "core/hle/service/psc/psc.h"
|
2018-10-20 17:22:15 -04:00
|
|
|
#include "core/hle/service/ptm/psm.h"
|
2016-09-21 02:52:38 -04:00
|
|
|
#include "core/hle/service/service.h"
|
2018-03-02 03:49:35 -05:00
|
|
|
#include "core/hle/service/set/settings.h"
|
2017-06-06 02:31:59 -04:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2018-01-18 14:35:03 -05:00
|
|
|
#include "core/hle/service/sockets/sockets.h"
|
2018-03-22 02:54:16 -04:00
|
|
|
#include "core/hle/service/spl/module.h"
|
2018-03-23 02:32:50 -04:00
|
|
|
#include "core/hle/service/ssl/ssl.h"
|
2018-01-14 21:42:23 -05:00
|
|
|
#include "core/hle/service/time/time.h"
|
2018-08-07 02:41:43 -04:00
|
|
|
#include "core/hle/service/usb/usb.h"
|
2018-01-07 21:27:58 -05:00
|
|
|
#include "core/hle/service/vi/vi.h"
|
2018-07-28 21:20:43 -04:00
|
|
|
#include "core/hle/service/wlan/wlan.h"
|
2015-02-26 21:13:08 -05:00
|
|
|
|
2017-06-07 00:20:52 -04:00
|
|
|
using Kernel::ClientPort;
|
|
|
|
using Kernel::ServerPort;
|
|
|
|
using Kernel::SharedPtr;
|
|
|
|
|
2014-04-12 21:55:36 -04:00
|
|
|
namespace Service {
|
|
|
|
|
2015-04-14 14:22:09 -04:00
|
|
|
/**
|
2015-05-25 14:34:09 -04:00
|
|
|
* Creates a function string for logging, complete with the name (or header code, depending
|
2015-04-14 14:22:09 -04:00
|
|
|
* on what's passed in) the port name, and all the cmd_buff arguments.
|
|
|
|
*/
|
2016-09-17 20:38:01 -04:00
|
|
|
static std::string MakeFunctionString(const char* name, const char* port_name,
|
|
|
|
const u32* cmd_buff) {
|
2015-04-14 14:22:09 -04:00
|
|
|
// Number of params == bits 0-5 + bits 6-11
|
|
|
|
int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F);
|
|
|
|
|
2018-04-29 18:37:15 -04:00
|
|
|
std::string function_string = fmt::format("function '{}': port={}", name, port_name);
|
2015-04-14 14:22:09 -04:00
|
|
|
for (int i = 1; i <= num_params; ++i) {
|
2018-05-02 09:14:28 -04:00
|
|
|
function_string += fmt::format(", cmd_buff[{}]=0x{:X}", i, cmd_buff[i]);
|
2015-04-14 14:22:09 -04:00
|
|
|
}
|
|
|
|
return function_string;
|
|
|
|
}
|
|
|
|
|
2017-06-07 00:20:52 -04: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);
|
2018-08-28 12:30:33 -04:00
|
|
|
|
|
|
|
auto& kernel = Core::System::GetInstance().Kernel();
|
2017-06-07 00:20:52 -04:00
|
|
|
SharedPtr<ServerPort> server_port;
|
|
|
|
SharedPtr<ClientPort> client_port;
|
2018-08-28 12:30:33 -04:00
|
|
|
std::tie(server_port, client_port) =
|
|
|
|
ServerPort::CreatePortPair(kernel, max_sessions, service_name);
|
2017-06-07 00:20:52 -04:00
|
|
|
server_port->SetHleHandler(shared_from_this());
|
2018-09-02 11:58:58 -04:00
|
|
|
kernel.AddNamedPort(service_name, std::move(client_port));
|
2017-06-07 00:20:52 -04:00
|
|
|
}
|
|
|
|
|
2017-10-18 21:34:19 -04:00
|
|
|
Kernel::SharedPtr<Kernel::ClientPort> ServiceFrameworkBase::CreatePort() {
|
|
|
|
ASSERT(port == nullptr);
|
2018-08-28 12:30:33 -04:00
|
|
|
|
|
|
|
auto& kernel = Core::System::GetInstance().Kernel();
|
2017-10-18 21:34:19 -04:00
|
|
|
Kernel::SharedPtr<Kernel::ServerPort> server_port;
|
|
|
|
Kernel::SharedPtr<Kernel::ClientPort> client_port;
|
2018-01-14 21:42:23 -05:00
|
|
|
std::tie(server_port, client_port) =
|
2018-08-28 12:30:33 -04:00
|
|
|
Kernel::ServerPort::CreatePortPair(kernel, max_sessions, service_name);
|
2017-10-18 21:34:19 -04:00
|
|
|
port = MakeResult<Kernel::SharedPtr<Kernel::ServerPort>>(std::move(server_port)).Unwrap();
|
|
|
|
port->SetHleHandler(shared_from_this());
|
|
|
|
return client_port;
|
|
|
|
}
|
|
|
|
|
2018-09-15 09:21:06 -04:00
|
|
|
void ServiceFrameworkBase::RegisterHandlersBase(const FunctionInfoBase* functions, std::size_t n) {
|
2017-06-07 00:20:52 -04:00
|
|
|
handlers.reserve(handlers.size() + n);
|
2018-09-15 09:21:06 -04:00
|
|
|
for (std::size_t i = 0; i < n; ++i) {
|
2017-06-07 00:20:52 -04:00
|
|
|
// 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]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-15 01:24:22 -04:00
|
|
|
void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext& ctx,
|
|
|
|
const FunctionInfoBase* info) {
|
2017-10-14 22:18:42 -04:00
|
|
|
auto cmd_buf = ctx.CommandBuffer();
|
2017-12-28 15:24:59 -05:00
|
|
|
std::string function_name = info == nullptr ? fmt::format("{}", ctx.GetCommand()) : info->name;
|
2017-06-07 00:20:52 -04:00
|
|
|
|
2018-04-02 14:49:58 -04:00
|
|
|
fmt::memory_buffer buf;
|
2018-05-02 09:14:28 -04:00
|
|
|
fmt::format_to(buf, "function '{}': port='{}' cmd_buf={{[0]=0x{:X}", function_name,
|
|
|
|
service_name, cmd_buf[0]);
|
2017-10-14 22:18:42 -04:00
|
|
|
for (int i = 1; i <= 8; ++i) {
|
2018-05-02 09:14:28 -04:00
|
|
|
fmt::format_to(buf, ", [{}]=0x{:X}", i, cmd_buf[i]);
|
2017-06-07 00:20:52 -04:00
|
|
|
}
|
2018-04-02 14:49:58 -04:00
|
|
|
buf.push_back('}');
|
2017-06-07 00:20:52 -04:00
|
|
|
|
2018-07-02 12:13:26 -04:00
|
|
|
LOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf));
|
2017-12-28 15:24:59 -05:00
|
|
|
UNIMPLEMENTED();
|
2017-06-07 00:20:52 -04:00
|
|
|
}
|
|
|
|
|
2017-10-14 22:18:42 -04:00
|
|
|
void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {
|
|
|
|
auto itr = handlers.find(ctx.GetCommand());
|
2017-06-07 00:20:52 -04:00
|
|
|
const FunctionInfoBase* info = itr == handlers.end() ? nullptr : &itr->second;
|
|
|
|
if (info == nullptr || info->handler_callback == nullptr) {
|
2017-10-14 22:18:42 -04:00
|
|
|
return ReportUnimplementedFunction(ctx, info);
|
2017-06-07 00:20:52 -04:00
|
|
|
}
|
|
|
|
|
2018-07-02 12:13:26 -04:00
|
|
|
LOG_TRACE(
|
2018-04-24 11:05:22 -04:00
|
|
|
Service, "{}",
|
2017-10-14 22:18:42 -04:00
|
|
|
MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str());
|
|
|
|
handler_invoker(this, info->handler_callback, ctx);
|
|
|
|
}
|
|
|
|
|
2017-12-29 00:36:22 -05:00
|
|
|
ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& context) {
|
2017-10-14 22:18:42 -04:00
|
|
|
switch (context.GetCommandType()) {
|
2017-10-15 01:24:22 -04:00
|
|
|
case IPC::CommandType::Close: {
|
2018-01-23 19:52:18 -05:00
|
|
|
IPC::ResponseBuilder rb{context, 2};
|
2017-10-14 22:18:42 -04:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2017-10-31 19:30:05 -04:00
|
|
|
return ResultCode(ErrorModule::HIPC, ErrorDescription::RemoteProcessDead);
|
2017-10-14 22:18:42 -04:00
|
|
|
}
|
2018-05-17 17:03:52 -04:00
|
|
|
case IPC::CommandType::ControlWithContext:
|
2017-10-15 01:24:22 -04:00
|
|
|
case IPC::CommandType::Control: {
|
2018-04-20 19:29:04 -04:00
|
|
|
Core::System::GetInstance().ServiceManager().InvokeControlRequest(context);
|
2017-10-14 22:18:42 -04:00
|
|
|
break;
|
|
|
|
}
|
2018-05-17 17:03:52 -04:00
|
|
|
case IPC::CommandType::RequestWithContext:
|
2017-10-15 01:24:22 -04:00
|
|
|
case IPC::CommandType::Request: {
|
2017-10-14 22:18:42 -04:00
|
|
|
InvokeRequest(context);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2018-04-27 07:54:05 -04:00
|
|
|
UNIMPLEMENTED_MSG("command_type={}", static_cast<int>(context.GetCommandType()));
|
2017-10-14 22:18:42 -04:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:17:06 -04:00
|
|
|
context.WriteToOutgoingCommandBuffer(*Kernel::GetCurrentThread());
|
2017-10-31 19:30:05 -04:00
|
|
|
|
|
|
|
return RESULT_SUCCESS;
|
2017-06-07 00:20:52 -04:00
|
|
|
}
|
|
|
|
|
2014-04-13 00:38:48 -04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2015-01-30 13:07:04 -05:00
|
|
|
// Module interface
|
2014-04-12 21:55:36 -04:00
|
|
|
|
|
|
|
/// Initialize ServiceManager
|
2018-10-13 11:25:13 -04:00
|
|
|
void Init(std::shared_ptr<SM::ServiceManager>& sm, FileSys::VfsFilesystem& vfs) {
|
2018-01-22 13:40:02 -05:00
|
|
|
// NVFlinger needs to be accessed by several services like Vi and AppletOE so we instantiate it
|
|
|
|
// here and pass it into the respective InstallInterfaces functions.
|
|
|
|
auto nv_flinger = std::make_shared<NVFlinger::NVFlinger>();
|
|
|
|
|
2018-04-20 19:29:04 -04:00
|
|
|
SM::ServiceManager::InstallInterfaces(sm);
|
|
|
|
|
|
|
|
Account::InstallInterfaces(*sm);
|
|
|
|
AM::InstallInterfaces(*sm, nv_flinger);
|
|
|
|
AOC::InstallInterfaces(*sm);
|
|
|
|
APM::InstallInterfaces(*sm);
|
2018-08-04 17:54:54 -04:00
|
|
|
ARP::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
Audio::InstallInterfaces(*sm);
|
2018-07-26 18:00:50 -04:00
|
|
|
BCAT::InstallInterfaces(*sm);
|
2018-08-01 15:40:55 -04:00
|
|
|
BPC::InstallInterfaces(*sm);
|
2018-07-26 18:00:50 -04:00
|
|
|
BtDrv::InstallInterfaces(*sm);
|
2018-07-28 20:59:09 -04:00
|
|
|
BTM::InstallInterfaces(*sm);
|
2018-08-01 16:24:03 -04:00
|
|
|
Capture::InstallInterfaces(*sm);
|
2018-07-25 19:04:31 -04:00
|
|
|
ERPT::InstallInterfaces(*sm);
|
2018-07-25 15:30:50 -04:00
|
|
|
ES::InstallInterfaces(*sm);
|
2018-07-25 19:15:31 -04:00
|
|
|
EUPLD::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
Fatal::InstallInterfaces(*sm);
|
2018-07-31 07:20:42 -04:00
|
|
|
FGM::InstallInterfaces(*sm);
|
2018-10-13 11:25:13 -04:00
|
|
|
FileSystem::InstallInterfaces(*sm, vfs);
|
2018-04-20 19:29:04 -04:00
|
|
|
Friend::InstallInterfaces(*sm);
|
2018-07-26 09:25:54 -04:00
|
|
|
GRC::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
HID::InstallInterfaces(*sm);
|
2018-07-27 13:48:33 -04:00
|
|
|
LBL::InstallInterfaces(*sm);
|
2018-07-26 01:16:08 -04:00
|
|
|
LDN::InstallInterfaces(*sm);
|
2018-07-25 22:57:08 -04:00
|
|
|
LDR::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
LM::InstallInterfaces(*sm);
|
2018-08-02 09:59:08 -04:00
|
|
|
Migration::InstallInterfaces(*sm);
|
2018-07-27 15:39:30 -04:00
|
|
|
Mii::InstallInterfaces(*sm);
|
2018-06-05 05:19:29 -04:00
|
|
|
MM::InstallInterfaces(*sm);
|
2018-07-27 17:32:45 -04:00
|
|
|
NCM::InstallInterfaces(*sm);
|
2018-07-27 14:32:39 -04:00
|
|
|
NFC::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
NFP::InstallInterfaces(*sm);
|
|
|
|
NIFM::InstallInterfaces(*sm);
|
2018-07-26 02:17:15 -04:00
|
|
|
NIM::InstallInterfaces(*sm);
|
2018-10-21 17:01:01 -04:00
|
|
|
NPNS::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
NS::InstallInterfaces(*sm);
|
2018-08-07 09:17:09 -04:00
|
|
|
Nvidia::InstallInterfaces(*sm, *nv_flinger);
|
2018-07-31 06:33:38 -04:00
|
|
|
PCIe::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
PCTL::InstallInterfaces(*sm);
|
2018-08-01 15:40:55 -04:00
|
|
|
PCV::InstallInterfaces(*sm);
|
2018-04-22 22:02:18 -04:00
|
|
|
PlayReport::InstallInterfaces(*sm);
|
2018-07-25 16:37:00 -04:00
|
|
|
PM::InstallInterfaces(*sm);
|
2018-08-01 21:59:22 -04:00
|
|
|
PSC::InstallInterfaces(*sm);
|
2018-10-20 17:22:15 -04:00
|
|
|
PSM::InstallInterfaces(*sm);
|
2018-07-28 21:20:43 -04:00
|
|
|
Set::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
Sockets::InstallInterfaces(*sm);
|
|
|
|
SPL::InstallInterfaces(*sm);
|
|
|
|
SSL::InstallInterfaces(*sm);
|
|
|
|
Time::InstallInterfaces(*sm);
|
2018-08-07 02:41:43 -04:00
|
|
|
USB::InstallInterfaces(*sm);
|
2018-04-20 19:29:04 -04:00
|
|
|
VI::InstallInterfaces(*sm, nv_flinger);
|
2018-07-28 21:20:43 -04:00
|
|
|
WLAN::InstallInterfaces(*sm);
|
2017-10-10 17:32:14 -04:00
|
|
|
|
2018-07-02 12:13:26 -04:00
|
|
|
LOG_DEBUG(Service, "initialized OK");
|
2014-04-12 21:55:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown ServiceManager
|
|
|
|
void Shutdown() {
|
2018-07-02 12:13:26 -04:00
|
|
|
LOG_DEBUG(Service, "shutdown OK");
|
2014-04-12 21:55:36 -04:00
|
|
|
}
|
2017-10-15 01:24:22 -04:00
|
|
|
} // namespace Service
|