21 changed files with 574 additions and 859 deletions
-
2src/common/logging/backend.cpp
-
2src/common/logging/log.h
-
6src/core/CMakeLists.txt
-
189src/core/hle/ipc.h
-
122src/core/hle/ipc_helpers.h
-
152src/core/hle/kernel/hle_ipc.cpp
-
25src/core/hle/kernel/hle_ipc.h
-
43src/core/hle/service/lm/lm.cpp
-
25src/core/hle/service/lm/lm.h
-
115src/core/hle/service/service.cpp
-
84src/core/hle/service/service.h
-
42src/core/hle/service/sm/controller.cpp
-
22src/core/hle/service/sm/controller.h
-
91src/core/hle/service/sm/sm.cpp
-
20src/core/hle/service/sm/sm.h
-
235src/core/hle/service/sm/srv.cpp
-
38src/core/hle/service/sm/srv.h
-
1src/core/hle/svc.cpp
-
1src/tests/CMakeLists.txt
-
216src/tests/core/hle/kernel/hle_ipc.cpp
-
2src/video_core/command_processor.cpp
@ -0,0 +1,43 @@ |
|||||
|
// Copyright 2017 Citra Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "common/logging/log.h"
|
||||
|
#include "core/hle/ipc_helpers.h"
|
||||
|
#include "core/hle/service/lm/lm.h"
|
||||
|
|
||||
|
namespace Service { |
||||
|
namespace LM { |
||||
|
|
||||
|
void InstallInterfaces(SM::ServiceManager& service_manager) { |
||||
|
std::make_shared<LM>()->InstallAsService(service_manager); |
||||
|
} |
||||
|
|
||||
|
/**
|
||||
|
* SRV::Initialize service function |
||||
|
* Inputs: |
||||
|
* 0: 0x00000000 |
||||
|
* Outputs: |
||||
|
* 1: ResultCode |
||||
|
*/ |
||||
|
void LM::Initialize(Kernel::HLERequestContext& ctx) { |
||||
|
IPC::RequestBuilder rb{ctx, 1}; |
||||
|
rb.Push(RESULT_SUCCESS); |
||||
|
LOG_WARNING(Service_SM, "(STUBBED) called"); |
||||
|
} |
||||
|
|
||||
|
LM::LM() : ServiceFramework("lm") { |
||||
|
static const FunctionInfo functions[] = { |
||||
|
{0x00000000, &LM::Initialize, "Initialize"}, |
||||
|
{0x00000001, nullptr, "Unknown2"}, |
||||
|
{0x00000002, nullptr, "Unknown3"}, |
||||
|
{0x00000003, nullptr, "Unknown4"}, |
||||
|
{0x00000004, nullptr, "Unknown5"}, |
||||
|
}; |
||||
|
RegisterHandlers(functions); |
||||
|
} |
||||
|
|
||||
|
LM::~LM() = default; |
||||
|
|
||||
|
} // namespace LM
|
||||
|
} // namespace Service
|
||||
@ -0,0 +1,25 @@ |
|||||
|
// Copyright 2017 Citra Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include "core/hle/service/service.h" |
||||
|
|
||||
|
namespace Service { |
||||
|
namespace LM { |
||||
|
|
||||
|
class LM final : public ServiceFramework<LM> { |
||||
|
public: |
||||
|
explicit LM(); |
||||
|
~LM(); |
||||
|
|
||||
|
private: |
||||
|
void Initialize(Kernel::HLERequestContext& ctx); |
||||
|
}; |
||||
|
|
||||
|
/// Registers all LM services with the specified service manager. |
||||
|
void InstallInterfaces(SM::ServiceManager& service_manager); |
||||
|
|
||||
|
} // namespace LM |
||||
|
} // namespace Service |
||||
@ -0,0 +1,42 @@ |
|||||
|
// Copyright 2017 Citra Emulator Project
|
||||
|
// Licensed under GPLv2 or any later version
|
||||
|
// Refer to the license.txt file included.
|
||||
|
|
||||
|
#include "common/logging/log.h"
|
||||
|
#include "core/hle/ipc_helpers.h"
|
||||
|
#include "core/hle/service/sm/controller.h"
|
||||
|
|
||||
|
namespace Service { |
||||
|
namespace SM { |
||||
|
|
||||
|
/**
|
||||
|
* Controller::QueryPointerBufferSize service function |
||||
|
* Inputs: |
||||
|
* 0: 0x00000003 |
||||
|
* Outputs: |
||||
|
* 1: ResultCode |
||||
|
* 3: Size of memory |
||||
|
*/ |
||||
|
void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) { |
||||
|
IPC::RequestBuilder rb{ctx, 2}; |
||||
|
rb.Push(RESULT_SUCCESS); |
||||
|
rb.Push(0x0U); |
||||
|
rb.Push(0x500U); |
||||
|
LOG_WARNING(Service, "(STUBBED) called"); |
||||
|
} |
||||
|
|
||||
|
Controller::Controller() : ServiceFramework("IpcController") { |
||||
|
static const FunctionInfo functions[] = { |
||||
|
{0x00000000, nullptr, "ConvertSessionToDomain"}, |
||||
|
{0x00000001, nullptr, "ConvertDomainToSession"}, |
||||
|
{0x00000002, nullptr, "DuplicateSession"}, |
||||
|
{0x00000003, &Controller::QueryPointerBufferSize, "QueryPointerBufferSize"}, |
||||
|
{0x00000004, nullptr, "DuplicateSessionEx"}, |
||||
|
}; |
||||
|
RegisterHandlers(functions); |
||||
|
} |
||||
|
|
||||
|
Controller::~Controller() = default; |
||||
|
|
||||
|
} // namespace SM
|
||||
|
} // namespace Service
|
||||
@ -0,0 +1,22 @@ |
|||||
|
// Copyright 2017 Citra Emulator Project |
||||
|
// Licensed under GPLv2 or any later version |
||||
|
// Refer to the license.txt file included. |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include "core/hle/service/service.h" |
||||
|
|
||||
|
namespace Service { |
||||
|
namespace SM { |
||||
|
|
||||
|
class Controller final : public ServiceFramework<Controller> { |
||||
|
public: |
||||
|
explicit Controller(); |
||||
|
~Controller(); |
||||
|
|
||||
|
private: |
||||
|
void QueryPointerBufferSize(Kernel::HLERequestContext& ctx); |
||||
|
}; |
||||
|
|
||||
|
} // namespace SM |
||||
|
} // namespace Service |
||||
@ -1,235 +0,0 @@ |
|||||
// Copyright 2016 Citra Emulator Project
|
|
||||
// Licensed under GPLv2 or any later version
|
|
||||
// Refer to the license.txt file included.
|
|
||||
|
|
||||
#include <tuple>
|
|
||||
|
|
||||
#include "common/common_types.h"
|
|
||||
#include "common/logging/log.h"
|
|
||||
#include "core/hle/ipc.h"
|
|
||||
#include "core/hle/ipc_helpers.h"
|
|
||||
#include "core/hle/kernel/client_port.h"
|
|
||||
#include "core/hle/kernel/client_session.h"
|
|
||||
#include "core/hle/kernel/errors.h"
|
|
||||
#include "core/hle/kernel/hle_ipc.h"
|
|
||||
#include "core/hle/kernel/semaphore.h"
|
|
||||
#include "core/hle/kernel/server_port.h"
|
|
||||
#include "core/hle/kernel/server_session.h"
|
|
||||
#include "core/hle/service/sm/sm.h"
|
|
||||
#include "core/hle/service/sm/srv.h"
|
|
||||
|
|
||||
namespace Service { |
|
||||
namespace SM { |
|
||||
|
|
||||
constexpr int MAX_PENDING_NOTIFICATIONS = 16; |
|
||||
|
|
||||
/**
|
|
||||
* SRV::RegisterClient service function |
|
||||
* Inputs: |
|
||||
* 0: 0x00010002 |
|
||||
* 1: ProcessId Header (must be 0x20) |
|
||||
* Outputs: |
|
||||
* 0: 0x00010040 |
|
||||
* 1: ResultCode |
|
||||
*/ |
|
||||
void SRV::RegisterClient(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0x1, 0, 2); |
|
||||
|
|
||||
u32 pid_descriptor = rp.Pop<u32>(); |
|
||||
if (pid_descriptor != IPC::CallingPidDesc()) { |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(IPC::ERR_INVALID_BUFFER_DESCRIPTOR); |
|
||||
return; |
|
||||
} |
|
||||
u32 caller_pid = rp.Pop<u32>(); |
|
||||
|
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(RESULT_SUCCESS); |
|
||||
LOG_WARNING(Service_SRV, "(STUBBED) called"); |
|
||||
} |
|
||||
|
|
||||
/**
|
|
||||
* SRV::EnableNotification service function |
|
||||
* Inputs: |
|
||||
* 0: 0x00020000 |
|
||||
* Outputs: |
|
||||
* 0: 0x00020042 |
|
||||
* 1: ResultCode |
|
||||
* 2: Translation descriptor: 0x20 |
|
||||
* 3: Handle to semaphore signaled on process notification |
|
||||
*/ |
|
||||
void SRV::EnableNotification(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0x2, 0, 0); |
|
||||
|
|
||||
notification_semaphore = |
|
||||
Kernel::Semaphore::Create(0, MAX_PENDING_NOTIFICATIONS, 0, "SRV:Notification").Unwrap(); |
|
||||
|
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2); |
|
||||
rb.Push(RESULT_SUCCESS); |
|
||||
rb.PushObjects(notification_semaphore); |
|
||||
LOG_WARNING(Service_SRV, "(STUBBED) called"); |
|
||||
} |
|
||||
|
|
||||
/**
|
|
||||
* SRV::GetServiceHandle service function |
|
||||
* Inputs: |
|
||||
* 0: 0x00050100 |
|
||||
* 1-2: 8-byte UTF-8 service name |
|
||||
* 3: Name length |
|
||||
* 4: Flags (bit0: if not set, return port-handle if session-handle unavailable) |
|
||||
* Outputs: |
|
||||
* 1: ResultCode |
|
||||
* 3: Service handle |
|
||||
*/ |
|
||||
void SRV::GetServiceHandle(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0x5, 4, 0); |
|
||||
auto name_buf = rp.PopRaw<std::array<char, 8>>(); |
|
||||
size_t name_len = rp.Pop<u32>(); |
|
||||
u32 flags = rp.Pop<u32>(); |
|
||||
|
|
||||
bool return_port_on_failure = (flags & 1) == 0; |
|
||||
|
|
||||
if (name_len > Service::kMaxPortSize) { |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(ERR_INVALID_NAME_SIZE); |
|
||||
LOG_ERROR(Service_SRV, "called name_len=0x%X -> ERR_INVALID_NAME_SIZE", name_len); |
|
||||
return; |
|
||||
} |
|
||||
std::string name(name_buf.data(), name_len); |
|
||||
|
|
||||
// TODO(yuriks): Permission checks go here
|
|
||||
|
|
||||
auto client_port = service_manager->GetServicePort(name); |
|
||||
if (client_port.Failed()) { |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(client_port.Code()); |
|
||||
LOG_ERROR(Service_SRV, "called service=%s -> error 0x%08X", name.c_str(), |
|
||||
client_port.Code().raw); |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
auto session = client_port.Unwrap()->Connect(); |
|
||||
if (session.Succeeded()) { |
|
||||
LOG_DEBUG(Service_SRV, "called service=%s -> session=%u", name.c_str(), |
|
||||
(*session)->GetObjectId()); |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2); |
|
||||
rb.Push(session.Code()); |
|
||||
rb.PushObjects(std::move(session).Unwrap()); |
|
||||
} else if (session.Code() == Kernel::ERR_MAX_CONNECTIONS_REACHED && return_port_on_failure) { |
|
||||
LOG_WARNING(Service_SRV, "called service=%s -> ERR_MAX_CONNECTIONS_REACHED, *port*=%u", |
|
||||
name.c_str(), (*client_port)->GetObjectId()); |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2); |
|
||||
rb.Push(ERR_MAX_CONNECTIONS_REACHED); |
|
||||
rb.PushObjects(std::move(client_port).Unwrap()); |
|
||||
} else { |
|
||||
LOG_ERROR(Service_SRV, "called service=%s -> error 0x%08X", name.c_str(), session.Code()); |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(session.Code()); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
/**
|
|
||||
* SRV::Subscribe service function |
|
||||
* Inputs: |
|
||||
* 0: 0x00090040 |
|
||||
* 1: Notification ID |
|
||||
* Outputs: |
|
||||
* 0: 0x00090040 |
|
||||
* 1: ResultCode |
|
||||
*/ |
|
||||
void SRV::Subscribe(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0x9, 1, 0); |
|
||||
u32 notification_id = rp.Pop<u32>(); |
|
||||
|
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(RESULT_SUCCESS); |
|
||||
LOG_WARNING(Service_SRV, "(STUBBED) called, notification_id=0x%X", notification_id); |
|
||||
} |
|
||||
|
|
||||
/**
|
|
||||
* SRV::Unsubscribe service function |
|
||||
* Inputs: |
|
||||
* 0: 0x000A0040 |
|
||||
* 1: Notification ID |
|
||||
* Outputs: |
|
||||
* 0: 0x000A0040 |
|
||||
* 1: ResultCode |
|
||||
*/ |
|
||||
void SRV::Unsubscribe(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0xA, 1, 0); |
|
||||
u32 notification_id = rp.Pop<u32>(); |
|
||||
|
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(RESULT_SUCCESS); |
|
||||
LOG_WARNING(Service_SRV, "(STUBBED) called, notification_id=0x%X", notification_id); |
|
||||
} |
|
||||
|
|
||||
/**
|
|
||||
* SRV::PublishToSubscriber service function |
|
||||
* Inputs: |
|
||||
* 0: 0x000C0080 |
|
||||
* 1: Notification ID |
|
||||
* 2: Flags (bit0: only fire if not fired, bit1: report errors) |
|
||||
* Outputs: |
|
||||
* 0: 0x000C0040 |
|
||||
* 1: ResultCode |
|
||||
*/ |
|
||||
void SRV::PublishToSubscriber(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0xC, 2, 0); |
|
||||
u32 notification_id = rp.Pop<u32>(); |
|
||||
u8 flags = rp.Pop<u8>(); |
|
||||
|
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(RESULT_SUCCESS); |
|
||||
LOG_WARNING(Service_SRV, "(STUBBED) called, notification_id=0x%X, flags=%u", notification_id, |
|
||||
flags); |
|
||||
} |
|
||||
|
|
||||
void SRV::RegisterService(Kernel::HLERequestContext& ctx) { |
|
||||
IPC::RequestParser rp(ctx, 0x3, 4, 0); |
|
||||
|
|
||||
auto name_buf = rp.PopRaw<std::array<char, 8>>(); |
|
||||
size_t name_len = rp.Pop<u32>(); |
|
||||
u32 max_sessions = rp.Pop<u32>(); |
|
||||
|
|
||||
std::string name(name_buf.data(), std::min(name_len, name_buf.size())); |
|
||||
|
|
||||
auto port = service_manager->RegisterService(name, max_sessions); |
|
||||
|
|
||||
if (port.Failed()) { |
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
|
||||
rb.Push(port.Code()); |
|
||||
LOG_ERROR(Service_SRV, "called service=%s -> error 0x%08X", name.c_str(), port.Code().raw); |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2); |
|
||||
rb.Push(RESULT_SUCCESS); |
|
||||
rb.PushObjects(port.Unwrap()); |
|
||||
} |
|
||||
|
|
||||
SRV::SRV(std::shared_ptr<ServiceManager> service_manager) |
|
||||
: ServiceFramework("srv:", 4), service_manager(std::move(service_manager)) { |
|
||||
static const FunctionInfo functions[] = { |
|
||||
{0x00010002, &SRV::RegisterClient, "RegisterClient"}, |
|
||||
{0x00020000, &SRV::EnableNotification, "EnableNotification"}, |
|
||||
{0x00030100, &SRV::RegisterService, "RegisterService"}, |
|
||||
{0x000400C0, nullptr, "UnregisterService"}, |
|
||||
{0x00050100, &SRV::GetServiceHandle, "GetServiceHandle"}, |
|
||||
{0x000600C2, nullptr, "RegisterPort"}, |
|
||||
{0x000700C0, nullptr, "UnregisterPort"}, |
|
||||
{0x00080100, nullptr, "GetPort"}, |
|
||||
{0x00090040, &SRV::Subscribe, "Subscribe"}, |
|
||||
{0x000A0040, &SRV::Unsubscribe, "Unsubscribe"}, |
|
||||
{0x000B0000, nullptr, "ReceiveNotification"}, |
|
||||
{0x000C0080, &SRV::PublishToSubscriber, "PublishToSubscriber"}, |
|
||||
{0x000D0040, nullptr, "PublishAndGetSubscriber"}, |
|
||||
{0x000E00C0, nullptr, "IsServiceRegistered"}, |
|
||||
}; |
|
||||
RegisterHandlers(functions); |
|
||||
} |
|
||||
|
|
||||
SRV::~SRV() = default; |
|
||||
|
|
||||
} // namespace SM
|
|
||||
} // namespace Service
|
|
||||
@ -1,38 +0,0 @@ |
|||||
// Copyright 2014 Citra Emulator Project |
|
||||
// Licensed under GPLv2 or any later version |
|
||||
// Refer to the license.txt file included. |
|
||||
|
|
||||
#pragma once |
|
||||
|
|
||||
#include "core/hle/kernel/kernel.h" |
|
||||
#include "core/hle/service/service.h" |
|
||||
|
|
||||
namespace Kernel { |
|
||||
class HLERequestContext; |
|
||||
class Semaphore; |
|
||||
} |
|
||||
|
|
||||
namespace Service { |
|
||||
namespace SM { |
|
||||
|
|
||||
/// Interface to "srv:" service |
|
||||
class SRV final : public ServiceFramework<SRV> { |
|
||||
public: |
|
||||
explicit SRV(std::shared_ptr<ServiceManager> service_manager); |
|
||||
~SRV(); |
|
||||
|
|
||||
private: |
|
||||
void RegisterClient(Kernel::HLERequestContext& ctx); |
|
||||
void EnableNotification(Kernel::HLERequestContext& ctx); |
|
||||
void GetServiceHandle(Kernel::HLERequestContext& ctx); |
|
||||
void Subscribe(Kernel::HLERequestContext& ctx); |
|
||||
void Unsubscribe(Kernel::HLERequestContext& ctx); |
|
||||
void PublishToSubscriber(Kernel::HLERequestContext& ctx); |
|
||||
void RegisterService(Kernel::HLERequestContext& ctx); |
|
||||
|
|
||||
std::shared_ptr<ServiceManager> service_manager; |
|
||||
Kernel::SharedPtr<Kernel::Semaphore> notification_semaphore; |
|
||||
}; |
|
||||
|
|
||||
} // namespace SM |
|
||||
} // namespace Service |
|
||||
@ -1,216 +0,0 @@ |
|||||
// Copyright 2017 Citra Emulator Project
|
|
||||
// Licensed under GPLv2 or any later version
|
|
||||
// Refer to the license.txt file included.
|
|
||||
|
|
||||
#include <catch.hpp>
|
|
||||
#include "core/hle/ipc.h"
|
|
||||
#include "core/hle/kernel/client_port.h"
|
|
||||
#include "core/hle/kernel/client_session.h"
|
|
||||
#include "core/hle/kernel/event.h"
|
|
||||
#include "core/hle/kernel/handle_table.h"
|
|
||||
#include "core/hle/kernel/hle_ipc.h"
|
|
||||
#include "core/hle/kernel/process.h"
|
|
||||
#include "core/hle/kernel/server_session.h"
|
|
||||
|
|
||||
namespace Kernel { |
|
||||
|
|
||||
static SharedPtr<Object> MakeObject() { |
|
||||
return Event::Create(ResetType::OneShot); |
|
||||
} |
|
||||
|
|
||||
TEST_CASE("HLERequestContext::PopulateFromIncomingCommandBuffer", "[core][kernel]") { |
|
||||
auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair()); |
|
||||
HLERequestContext context(std::move(session)); |
|
||||
|
|
||||
auto process = Process::Create(""); |
|
||||
HandleTable handle_table; |
|
||||
|
|
||||
SECTION("works with empty cmdbuf") { |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0x1234, 0, 0), |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(context.CommandBuffer()[0] == 0x12340000); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates regular params") { |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 3, 0), 0x12345678, 0x21122112, 0xAABBCCDD, |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
auto* output = context.CommandBuffer(); |
|
||||
REQUIRE(output[1] == 0x12345678); |
|
||||
REQUIRE(output[2] == 0x21122112); |
|
||||
REQUIRE(output[3] == 0xAABBCCDD); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates move handles") { |
|
||||
auto a = MakeObject(); |
|
||||
Handle a_handle = handle_table.Create(a).Unwrap(); |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 0, 2), IPC::MoveHandleDesc(1), a_handle, |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
auto* output = context.CommandBuffer(); |
|
||||
REQUIRE(context.GetIncomingHandle(output[2]) == a); |
|
||||
REQUIRE(handle_table.GetGeneric(a_handle) == nullptr); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates copy handles") { |
|
||||
auto a = MakeObject(); |
|
||||
Handle a_handle = handle_table.Create(a).Unwrap(); |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 0, 2), IPC::CopyHandleDesc(1), a_handle, |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
auto* output = context.CommandBuffer(); |
|
||||
REQUIRE(context.GetIncomingHandle(output[2]) == a); |
|
||||
REQUIRE(handle_table.GetGeneric(a_handle) == a); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates multi-handle descriptors") { |
|
||||
auto a = MakeObject(); |
|
||||
auto b = MakeObject(); |
|
||||
auto c = MakeObject(); |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 0, 5), IPC::MoveHandleDesc(2), |
|
||||
handle_table.Create(a).Unwrap(), handle_table.Create(b).Unwrap(), |
|
||||
IPC::MoveHandleDesc(1), handle_table.Create(c).Unwrap(), |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
auto* output = context.CommandBuffer(); |
|
||||
REQUIRE(context.GetIncomingHandle(output[2]) == a); |
|
||||
REQUIRE(context.GetIncomingHandle(output[3]) == b); |
|
||||
REQUIRE(context.GetIncomingHandle(output[5]) == c); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates null handles") { |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 0, 2), IPC::MoveHandleDesc(1), 0, |
|
||||
}; |
|
||||
|
|
||||
auto result = context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(result == RESULT_SUCCESS); |
|
||||
auto* output = context.CommandBuffer(); |
|
||||
REQUIRE(context.GetIncomingHandle(output[2]) == nullptr); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates CallingPid descriptors") { |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 0, 2), IPC::CallingPidDesc(), 0x98989898, |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(context.CommandBuffer()[2] == process->process_id); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates mixed params") { |
|
||||
auto a = MakeObject(); |
|
||||
const u32_le input[]{ |
|
||||
IPC::MakeHeader(0, 2, 4), |
|
||||
0x12345678, |
|
||||
0xABCDEF00, |
|
||||
IPC::MoveHandleDesc(1), |
|
||||
handle_table.Create(a).Unwrap(), |
|
||||
IPC::CallingPidDesc(), |
|
||||
0, |
|
||||
}; |
|
||||
|
|
||||
context.PopulateFromIncomingCommandBuffer(input, *process, handle_table); |
|
||||
|
|
||||
auto* output = context.CommandBuffer(); |
|
||||
REQUIRE(output[1] == 0x12345678); |
|
||||
REQUIRE(output[2] == 0xABCDEF00); |
|
||||
REQUIRE(context.GetIncomingHandle(output[4]) == a); |
|
||||
REQUIRE(output[6] == process->process_id); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
TEST_CASE("HLERequestContext::WriteToOutgoingCommandBuffer", "[core][kernel]") { |
|
||||
auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair()); |
|
||||
HLERequestContext context(std::move(session)); |
|
||||
|
|
||||
auto process = Process::Create(""); |
|
||||
HandleTable handle_table; |
|
||||
auto* input = context.CommandBuffer(); |
|
||||
u32_le output[IPC::COMMAND_BUFFER_LENGTH]; |
|
||||
|
|
||||
SECTION("works with empty cmdbuf") { |
|
||||
input[0] = IPC::MakeHeader(0x1234, 0, 0); |
|
||||
|
|
||||
context.WriteToOutgoingCommandBuffer(output, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(output[0] == 0x12340000); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates regular params") { |
|
||||
input[0] = IPC::MakeHeader(0, 3, 0); |
|
||||
input[1] = 0x12345678; |
|
||||
input[2] = 0x21122112; |
|
||||
input[3] = 0xAABBCCDD; |
|
||||
|
|
||||
context.WriteToOutgoingCommandBuffer(output, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(output[1] == 0x12345678); |
|
||||
REQUIRE(output[2] == 0x21122112); |
|
||||
REQUIRE(output[3] == 0xAABBCCDD); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates move/copy handles") { |
|
||||
auto a = MakeObject(); |
|
||||
auto b = MakeObject(); |
|
||||
input[0] = IPC::MakeHeader(0, 0, 4); |
|
||||
input[1] = IPC::MoveHandleDesc(1); |
|
||||
input[2] = context.AddOutgoingHandle(a); |
|
||||
input[3] = IPC::CopyHandleDesc(1); |
|
||||
input[4] = context.AddOutgoingHandle(b); |
|
||||
|
|
||||
context.WriteToOutgoingCommandBuffer(output, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(handle_table.GetGeneric(output[2]) == a); |
|
||||
REQUIRE(handle_table.GetGeneric(output[4]) == b); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates null handles") { |
|
||||
input[0] = IPC::MakeHeader(0, 0, 2); |
|
||||
input[1] = IPC::MoveHandleDesc(1); |
|
||||
input[2] = context.AddOutgoingHandle(nullptr); |
|
||||
|
|
||||
auto result = context.WriteToOutgoingCommandBuffer(output, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(result == RESULT_SUCCESS); |
|
||||
REQUIRE(output[2] == 0); |
|
||||
} |
|
||||
|
|
||||
SECTION("translates multi-handle descriptors") { |
|
||||
auto a = MakeObject(); |
|
||||
auto b = MakeObject(); |
|
||||
auto c = MakeObject(); |
|
||||
input[0] = IPC::MakeHeader(0, 0, 5); |
|
||||
input[1] = IPC::MoveHandleDesc(2); |
|
||||
input[2] = context.AddOutgoingHandle(a); |
|
||||
input[3] = context.AddOutgoingHandle(b); |
|
||||
input[4] = IPC::CopyHandleDesc(1); |
|
||||
input[5] = context.AddOutgoingHandle(c); |
|
||||
|
|
||||
context.WriteToOutgoingCommandBuffer(output, *process, handle_table); |
|
||||
|
|
||||
REQUIRE(handle_table.GetGeneric(output[2]) == a); |
|
||||
REQUIRE(handle_table.GetGeneric(output[3]) == b); |
|
||||
REQUIRE(handle_table.GetGeneric(output[5]) == c); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
} // namespace Kernel
|
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue