summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/domain.cpp21
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp10
2 files changed, 29 insertions, 2 deletions
diff --git a/src/core/hle/kernel/domain.cpp b/src/core/hle/kernel/domain.cpp
index 7ebb4b9c7..5035e9c08 100644
--- a/src/core/hle/kernel/domain.cpp
+++ b/src/core/hle/kernel/domain.cpp
@@ -2,6 +2,8 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/logging/log.h"
6#include "core/hle/ipc_helpers.h"
5#include "core/hle/kernel/client_port.h" 7#include "core/hle/kernel/client_port.h"
6#include "core/hle/kernel/domain.h" 8#include "core/hle/kernel/domain.h"
7#include "core/hle/kernel/handle_table.h" 9#include "core/hle/kernel/handle_table.h"
@@ -36,7 +38,24 @@ ResultCode Domain::SendSyncRequest(SharedPtr<Thread> thread) {
36 if (domain_message_header) { 38 if (domain_message_header) {
37 // If there is a DomainMessageHeader, then this is CommandType "Request" 39 // If there is a DomainMessageHeader, then this is CommandType "Request"
38 const u32 object_id{context.GetDomainMessageHeader()->object_id}; 40 const u32 object_id{context.GetDomainMessageHeader()->object_id};
39 return request_handlers[object_id - 1]->HandleSyncRequest(context); 41 switch (domain_message_header->command) {
42 case IPC::DomainMessageHeader::CommandType::SendMessage:
43 return request_handlers[object_id - 1]->HandleSyncRequest(context);
44
45 case IPC::DomainMessageHeader::CommandType::CloseVirtualHandle: {
46 LOG_DEBUG(IPC, "CloseVirtualHandle, object_id=0x%08X", object_id);
47
48 request_handlers[object_id - 1] = nullptr;
49
50 IPC::RequestBuilder rb{context, 2};
51 rb.Push(RESULT_SUCCESS);
52
53 return RESULT_SUCCESS;
54 }
55 }
56
57 LOG_CRITICAL(IPC, "Unknown domain command=%d", domain_message_header->command.Value());
58 UNIMPLEMENTED();
40 } 59 }
41 return request_handlers.front()->HandleSyncRequest(context); 60 return request_handlers.front()->HandleSyncRequest(context);
42} 61}
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index afa09b404..ac62a0d5a 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -102,13 +102,21 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
102 data_payload_header = 102 data_payload_header =
103 std::make_unique<IPC::DataPayloadHeader>(rp.PopRaw<IPC::DataPayloadHeader>()); 103 std::make_unique<IPC::DataPayloadHeader>(rp.PopRaw<IPC::DataPayloadHeader>());
104 104
105 data_payload_offset = rp.GetCurrentOffset();
106
107 if (domain_message_header &&
108 domain_message_header->command ==
109 IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) {
110 // CloseVirtualHandle command does not have SFC* or any data
111 return;
112 }
113
105 if (incoming) { 114 if (incoming) {
106 ASSERT(data_payload_header->magic == Common::MakeMagic('S', 'F', 'C', 'I')); 115 ASSERT(data_payload_header->magic == Common::MakeMagic('S', 'F', 'C', 'I'));
107 } else { 116 } else {
108 ASSERT(data_payload_header->magic == Common::MakeMagic('S', 'F', 'C', 'O')); 117 ASSERT(data_payload_header->magic == Common::MakeMagic('S', 'F', 'C', 'O'));
109 } 118 }
110 119
111 data_payload_offset = rp.GetCurrentOffset();
112 command = rp.Pop<u32_le>(); 120 command = rp.Pop<u32_le>();
113 rp.Skip(1, false); // The command is actually an u64, but we don't use the high part. 121 rp.Skip(1, false); // The command is actually an u64, but we don't use the high part.
114} 122}