|
|
|
@ -35,7 +35,7 @@ HLERequestContext::~HLERequestContext() = default;
|
|
|
|
|
|
|
|
|
|
void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
|
|
|
|
|
IPC::RequestParser rp(src_cmdbuf);
|
|
|
|
|
command_header = std::make_unique<IPC::CommandHeader>(rp.PopRaw<IPC::CommandHeader>());
|
|
|
|
|
command_header = std::make_shared<IPC::CommandHeader>(rp.PopRaw<IPC::CommandHeader>());
|
|
|
|
|
|
|
|
|
|
if (command_header->type == IPC::CommandType::Close) {
|
|
|
|
|
// Close does not populate the rest of the IPC header
|
|
|
|
@ -45,7 +45,7 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
|
|
|
|
|
// If handle descriptor is present, add size of it
|
|
|
|
|
if (command_header->enable_handle_descriptor) {
|
|
|
|
|
handle_descriptor_header =
|
|
|
|
|
std::make_unique<IPC::HandleDescriptorHeader>(rp.PopRaw<IPC::HandleDescriptorHeader>());
|
|
|
|
|
std::make_shared<IPC::HandleDescriptorHeader>(rp.PopRaw<IPC::HandleDescriptorHeader>());
|
|
|
|
|
if (handle_descriptor_header->send_current_pid) {
|
|
|
|
|
rp.Skip(2, false);
|
|
|
|
|
}
|
|
|
|
@ -88,7 +88,7 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
|
|
|
|
|
// All outgoing domain messages have the domain header, if only incoming has it
|
|
|
|
|
if (incoming || domain_message_header) {
|
|
|
|
|
domain_message_header =
|
|
|
|
|
std::make_unique<IPC::DomainMessageHeader>(rp.PopRaw<IPC::DomainMessageHeader>());
|
|
|
|
|
std::make_shared<IPC::DomainMessageHeader>(rp.PopRaw<IPC::DomainMessageHeader>());
|
|
|
|
|
} else {
|
|
|
|
|
if (Session()->IsDomain())
|
|
|
|
|
LOG_WARNING(IPC, "Domain request has no DomainMessageHeader!");
|
|
|
|
@ -96,7 +96,7 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data_payload_header =
|
|
|
|
|
std::make_unique<IPC::DataPayloadHeader>(rp.PopRaw<IPC::DataPayloadHeader>());
|
|
|
|
|
std::make_shared<IPC::DataPayloadHeader>(rp.PopRaw<IPC::DataPayloadHeader>());
|
|
|
|
|
|
|
|
|
|
data_payload_offset = rp.GetCurrentOffset();
|
|
|
|
|
|
|
|
|
|