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"
|
2018-04-13 04:06:21 +01:00
|
|
|
#include "core/core.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"
|
2018-03-10 11:25:22 +00:00
|
|
|
#include "core/hle/kernel/handle_table.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"
|
2018-07-27 09:25:20 +01:00
|
|
|
#include "core/hle/service/csnd/csnd_snd.h"
|
2016-06-05 00:38:54 +01:00
|
|
|
#include "core/hle/service/dlp/dlp.h"
|
2018-07-12 15:54:26 +01:00
|
|
|
#include "core/hle/service/dsp/dsp_dsp.h"
|
2016-09-20 16:21:23 +01:00
|
|
|
#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"
|
2018-02-15 09:19:01 +00:00
|
|
|
#include "core/hle/service/fs/fs_user.h"
|
2017-12-16 19:35:37 +00:00
|
|
|
#include "core/hle/service/gsp/gsp.h"
|
2018-06-27 08:44:09 +01:00
|
|
|
#include "core/hle/service/gsp/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"
|
2018-05-14 09:25:57 +01:00
|
|
|
#include "core/hle/service/ndm/ndm_u.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"
|
2018-06-29 15:31:56 +01:00
|
|
|
#include "core/hle/service/pm/pm.h"
|
2018-07-09 22:37:48 +01:00
|
|
|
#include "core/hle/service/ps/ps_ps.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 {
|
|
|
|
|
2018-08-09 20:10:11 +01:00
|
|
|
const std::array<ServiceModuleInfo, 40> service_module_map{
|
|
|
|
{{"FS", 0x00040130'00001102, FS::InstallInterfaces},
|
|
|
|
{"PM", 0x00040130'00001202, PM::InstallInterfaces},
|
|
|
|
{"LDR", 0x00040130'00003702, LDR::InstallInterfaces},
|
|
|
|
{"PXI", 0x00040130'00001402, PXI::InstallInterfaces},
|
|
|
|
|
2018-10-05 15:59:43 +01:00
|
|
|
{"ERR", 0x00040030'00008A02, ERR::InstallInterfaces},
|
2018-08-09 20:10:11 +01:00
|
|
|
{"AC", 0x00040130'00002402, AC::InstallInterfaces},
|
|
|
|
{"ACT", 0x00040130'00003802, ACT::InstallInterfaces},
|
|
|
|
{"AM", 0x00040130'00001502, AM::InstallInterfaces},
|
|
|
|
{"BOSS", 0x00040130'00003402, BOSS::InstallInterfaces},
|
|
|
|
{"CAM", 0x00040130'00001602,
|
2018-10-05 15:59:43 +01:00
|
|
|
[](Core::System& system) {
|
|
|
|
CAM::InstallInterfaces(system);
|
|
|
|
Y2R::InstallInterfaces(system);
|
2018-08-09 20:10:11 +01:00
|
|
|
}},
|
|
|
|
{"CECD", 0x00040130'00002602, CECD::InstallInterfaces},
|
|
|
|
{"CFG", 0x00040130'00001702, CFG::InstallInterfaces},
|
|
|
|
{"DLP", 0x00040130'00002802, DLP::InstallInterfaces},
|
|
|
|
{"DSP", 0x00040130'00001A02, DSP::InstallInterfaces},
|
|
|
|
{"FRD", 0x00040130'00003202, FRD::InstallInterfaces},
|
|
|
|
{"GSP", 0x00040130'00001C02, GSP::InstallInterfaces},
|
|
|
|
{"HID", 0x00040130'00001D02, HID::InstallInterfaces},
|
|
|
|
{"IR", 0x00040130'00003302, IR::InstallInterfaces},
|
|
|
|
{"MIC", 0x00040130'00002002, MIC::InstallInterfaces},
|
|
|
|
{"MVD", 0x00040130'20004102, MVD::InstallInterfaces},
|
|
|
|
{"NDM", 0x00040130'00002B02, NDM::InstallInterfaces},
|
|
|
|
{"NEWS", 0x00040130'00003502, NEWS::InstallInterfaces},
|
|
|
|
{"NFC", 0x00040130'00004002, NFC::InstallInterfaces},
|
|
|
|
{"NIM", 0x00040130'00002C02, NIM::InstallInterfaces},
|
|
|
|
{"NS", 0x00040130'00008002,
|
2018-10-05 15:59:43 +01:00
|
|
|
[](Core::System& system) {
|
|
|
|
NS::InstallInterfaces(system);
|
|
|
|
APT::InstallInterfaces(system);
|
2018-08-09 20:10:11 +01:00
|
|
|
}},
|
|
|
|
{"NWM", 0x00040130'00002D02, NWM::InstallInterfaces},
|
|
|
|
{"PTM", 0x00040130'00002202, PTM::InstallInterfaces},
|
|
|
|
{"QTM", 0x00040130'00004202, QTM::InstallInterfaces},
|
|
|
|
{"CSND", 0x00040130'00002702, CSND::InstallInterfaces},
|
|
|
|
{"HTTP", 0x00040130'00002902, HTTP::InstallInterfaces},
|
|
|
|
{"SOC", 0x00040130'00002E02, SOC::InstallInterfaces},
|
|
|
|
{"SSL", 0x00040130'00002F02, SSL::InstallInterfaces},
|
|
|
|
// no HLE implementation
|
|
|
|
{"CDC", 0x00040130'00001802, nullptr},
|
|
|
|
{"GPIO", 0x00040130'00001B02, nullptr},
|
|
|
|
{"I2C", 0x00040130'00001E02, nullptr},
|
|
|
|
{"MCU", 0x00040130'00001F02, nullptr},
|
|
|
|
{"MP", 0x00040130'00002A02, nullptr},
|
|
|
|
{"PDN", 0x00040130'00002102, nullptr},
|
|
|
|
{"PS", 0x00040130'00003102, nullptr},
|
|
|
|
{"SPI", 0x00040130'00002302, nullptr}}};
|
|
|
|
|
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.
|
|
|
|
*/
|
2018-11-14 05:44:17 +00:00
|
|
|
[[maybe_unused]] 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);
|
|
|
|
|
2018-04-29 23:37:15 +01:00
|
|
|
std::string function_string = fmt::format("function '{}': port={}", name, port_name);
|
2015-04-14 19:22:09 +01:00
|
|
|
for (int i = 1; i <= num_params; ++i) {
|
2018-04-29 23:37:15 +01:00
|
|
|
function_string += fmt::format(", cmd_buff[{}]={:#X}", i, cmd_buff[i]);
|
2015-04-14 19:22:09 +01:00
|
|
|
}
|
|
|
|
return function_string;
|
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2018-10-13 00:00:16 +01:00
|
|
|
void ServiceFrameworkBase::InstallAsNamedPort(Kernel::KernelSystem& kernel) {
|
2017-06-07 05:20:52 +01:00
|
|
|
ASSERT(port == nullptr);
|
|
|
|
SharedPtr<ServerPort> server_port;
|
|
|
|
SharedPtr<ClientPort> client_port;
|
2018-10-13 00:00:16 +01:00
|
|
|
std::tie(server_port, client_port) = kernel.CreatePortPair(max_sessions, service_name);
|
2017-06-07 05:20:52 +01:00
|
|
|
server_port->SetHleHandler(shared_from_this());
|
2018-10-26 15:27:13 +01:00
|
|
|
kernel.AddNamedPort(service_name, std::move(client_port));
|
2017-06-07 05:20:52 +01:00
|
|
|
}
|
|
|
|
|
2018-09-06 21:03:28 +01:00
|
|
|
void ServiceFrameworkBase::RegisterHandlersBase(const FunctionInfoBase* functions, std::size_t n) {
|
2017-06-07 05:20:52 +01:00
|
|
|
handlers.reserve(handlers.size() + n);
|
2018-09-06 21:03:28 +01:00
|
|
|
for (std::size_t i = 0; i < n; ++i) {
|
2017-06-07 05:20:52 +01: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]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2018-03-02 16:12:51 +00:00
|
|
|
fmt::memory_buffer buf;
|
|
|
|
fmt::format_to(buf, "function '{}': port='{}' cmd_buf={{[0]={:#x}", function_name, service_name,
|
|
|
|
cmd_buf[0]);
|
2017-06-07 05:20:52 +01:00
|
|
|
for (int i = 1; i <= num_params; ++i) {
|
2018-03-02 16:12:51 +00:00
|
|
|
fmt::format_to(buf, ", [{}]={:#x}", i, cmd_buf[i]);
|
2017-06-07 05:20:52 +01:00
|
|
|
}
|
2018-03-02 16:12:51 +00:00
|
|
|
buf.push_back('}');
|
2017-06-07 05:20:52 +01:00
|
|
|
|
2018-06-29 12:18:07 +01:00
|
|
|
LOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf));
|
2017-06-07 05:20:52 +01:00
|
|
|
// TODO(bunnei): Hack - ignore error
|
|
|
|
cmd_buf[1] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceFrameworkBase::HandleSyncRequest(SharedPtr<ServerSession> server_session) {
|
2018-10-23 16:40:57 +01:00
|
|
|
Kernel::KernelSystem& kernel = Core::System::GetInstance().Kernel();
|
|
|
|
auto thread = kernel.GetThreadManager().GetCurrentThread();
|
|
|
|
// TODO(wwylele): avoid GetPointer
|
|
|
|
u32* cmd_buf = reinterpret_cast<u32*>(Memory::GetPointer(thread->GetCommandBufferAddress()));
|
2017-06-07 05:20:52 +01:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-10-23 16:40:57 +01:00
|
|
|
Kernel::SharedPtr<Kernel::Process> current_process = kernel.GetCurrentProcess();
|
2018-10-17 20:23:56 +01:00
|
|
|
|
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));
|
2018-10-20 02:04:18 +01:00
|
|
|
context.PopulateFromIncomingCommandBuffer(cmd_buf, *current_process);
|
2017-06-09 07:52:30 +01:00
|
|
|
|
2018-06-29 12:18:07 +01:00
|
|
|
LOG_TRACE(Service, "{}", MakeFunctionString(info->name, GetServiceName().c_str(), cmd_buf));
|
2017-06-07 05:20:52 +01:00
|
|
|
handler_invoker(this, info->handler_callback, context);
|
2017-11-09 23:13:11 +00:00
|
|
|
|
2018-09-13 20:57:45 +01:00
|
|
|
ASSERT(thread->status == Kernel::ThreadStatus::Running ||
|
|
|
|
thread->status == Kernel::ThreadStatus::WaitHleEvent);
|
2017-11-09 23:13:11 +00:00
|
|
|
// Only write the response immediately if the thread is still running. If the HLE handler put
|
|
|
|
// the thread to sleep then the writing of the command buffer will be deferred to the wakeup
|
|
|
|
// callback.
|
2018-09-13 20:57:45 +01:00
|
|
|
if (thread->status == Kernel::ThreadStatus::Running) {
|
2018-10-20 02:04:18 +01:00
|
|
|
context.WriteToOutgoingCommandBuffer(cmd_buf, *current_process);
|
2017-11-09 23:13:11 +00:00
|
|
|
}
|
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
|
|
|
|
2018-08-09 20:10:11 +01:00
|
|
|
static bool AttemptLLE(const ServiceModuleInfo& service_module) {
|
|
|
|
if (!Settings::values.lle_modules.at(service_module.name))
|
|
|
|
return false;
|
|
|
|
std::unique_ptr<Loader::AppLoader> loader =
|
|
|
|
Loader::GetLoader(AM::GetTitleContentPath(FS::MediaType::NAND, service_module.title_id));
|
|
|
|
if (!loader) {
|
|
|
|
LOG_ERROR(Service,
|
|
|
|
"Service module \"{}\" could not be loaded; Defaulting to HLE implementation.",
|
|
|
|
service_module.name);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SharedPtr<Kernel::Process> process;
|
|
|
|
loader->Load(process);
|
|
|
|
LOG_DEBUG(Service, "Service module \"{}\" has been successfully loaded.", service_module.name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-13 02:55:36 +01:00
|
|
|
/// Initialize ServiceManager
|
2018-10-12 21:11:51 +01:00
|
|
|
void Init(Core::System& core) {
|
|
|
|
SM::ServiceManager::InstallInterfaces(core);
|
2014-04-16 05:03:41 +01:00
|
|
|
|
2018-08-09 20:10:11 +01:00
|
|
|
for (const auto& service_module : service_module_map) {
|
|
|
|
if (!AttemptLLE(service_module) && service_module.init_function != nullptr)
|
2018-10-05 15:59:43 +01:00
|
|
|
service_module.init_function(core);
|
2018-08-09 20:10:11 +01:00
|
|
|
}
|
2018-06-29 12:18:07 +01:00
|
|
|
LOG_DEBUG(Service, "initialized OK");
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
2018-02-22 15:46:31 +00:00
|
|
|
} // namespace Service
|