aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/ipc_helpers.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-06 21:14:14 -0500
committerbunnei <bunneidev@gmail.com>2018-01-07 17:11:43 -0500
commit226786f0b05405b4c0287786f106ae2e08feefec (patch)
treef4cb770adc575fa749b98e60f8f5fa0012cdc4c6 /src/core/hle/ipc_helpers.h
parentbc8ef64804841c996aeebfe7ce23f34347a0be60 (diff)
IPC: Use the correct size when pushing raw data to the command buffer and fixed pushing domain objects.
Domain object ids are always stored immediately after the raw data.
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r--src/core/hle/ipc_helpers.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index 28a2b8545..705943e6b 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -58,14 +58,20 @@ public:
RequestBuilder(u32* command_buffer) : RequestHelperBase(command_buffer) {}
RequestBuilder(Kernel::HLERequestContext& context, unsigned normal_params_size,
- u32 num_handles_to_copy = 0, u32 num_handles_to_move = 0)
+ u32 num_handles_to_copy = 0, u32 num_handles_to_move = 0, u32 num_domain_objects = 0)
: RequestHelperBase(context) {
memset(cmdbuf, 0, 64);
context.ClearIncomingObjects();
IPC::CommandHeader header{};
- header.data_size.Assign(normal_params_size * sizeof(u32));
+
+ // The entire size of the raw data section in u32 units, including the 16 bytes of mandatory padding.
+ u32 raw_data_size = sizeof(IPC::DataPayloadHeader) / 4 + 4 + normal_params_size;
+ if (context.IsDomain())
+ raw_data_size += sizeof(DomainResponseMessageHeader) / 4 + num_domain_objects;
+
+ header.data_size.Assign(raw_data_size);
if (num_handles_to_copy || num_handles_to_move) {
header.enable_handle_descriptor.Assign(1);
}
@@ -82,7 +88,9 @@ public:
AlignWithPadding();
if (context.IsDomain()) {
- PushRaw(IPC::DomainMessageHeader{});
+ IPC::DomainResponseMessageHeader domain_header{};
+ domain_header.num_objects = num_domain_objects;
+ PushRaw(domain_header);
}
IPC::DataPayloadHeader data_payload_header{};
@@ -93,9 +101,10 @@ public:
template <class T>
void PushIpcInterface() {
auto& request_handlers = context->Domain()->request_handlers;
- request_handlers.push_back(std::move(std::make_shared<T>()->shared_from_this()));
+ request_handlers.emplace_back(std::make_shared<T>());
Push(RESULT_SUCCESS);
- AlignWithPadding();
+ Push<u32>(0); // The error code is the lower word of an u64, so we fill the rest with 0.
+ // Now push the id of the newly-added object.
Push<u32>(static_cast<u32>(request_handlers.size()));
}