2016-12-26 13:39:45 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2017-05-30 01:45:42 +02:00
|
|
|
|
2017-06-09 09:51:18 +02:00
|
|
|
#include <array>
|
2019-03-23 22:09:02 +01:00
|
|
|
#include <memory>
|
2017-06-09 09:51:18 +02:00
|
|
|
#include <tuple>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <utility>
|
2017-11-05 18:50:22 +01:00
|
|
|
#include <vector>
|
2016-12-26 13:39:45 +01:00
|
|
|
#include "core/hle/ipc.h"
|
2017-06-09 06:30:39 +02:00
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
2016-12-26 13:39:45 +01:00
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
|
|
|
|
class RequestHelperBase {
|
|
|
|
protected:
|
2018-03-10 12:25:22 +01:00
|
|
|
Kernel::HLERequestContext* context;
|
2016-12-26 13:39:45 +01:00
|
|
|
u32* cmdbuf;
|
2019-07-14 20:49:34 +02:00
|
|
|
std::size_t index = 1;
|
2016-12-26 13:39:45 +01:00
|
|
|
Header header;
|
|
|
|
|
|
|
|
public:
|
2017-06-09 06:30:39 +02:00
|
|
|
RequestHelperBase(Kernel::HLERequestContext& context, Header desired_header)
|
|
|
|
: context(&context), cmdbuf(context.CommandBuffer()), header(desired_header) {}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
/// Returns the total size of the request in words
|
2018-09-06 22:03:28 +02:00
|
|
|
std::size_t TotalSize() const {
|
2016-12-26 13:39:45 +01:00
|
|
|
return 1 /* command header */ + header.normal_params_size + header.translate_params_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ValidateHeader() {
|
2018-03-27 17:28:42 +02:00
|
|
|
DEBUG_ASSERT_MSG(index == TotalSize(), "Operations do not match the header (cmd {:#x})",
|
2016-12-26 13:39:45 +01:00
|
|
|
header.raw);
|
|
|
|
}
|
2016-12-28 17:11:14 +01:00
|
|
|
|
2017-03-18 11:47:40 +01:00
|
|
|
void Skip(unsigned size_in_words, bool set_to_null) {
|
|
|
|
if (set_to_null)
|
|
|
|
memset(cmdbuf + index, 0, size_in_words * sizeof(u32));
|
|
|
|
index += size_in_words;
|
|
|
|
}
|
2016-12-26 13:39:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class RequestBuilder : public RequestHelperBase {
|
|
|
|
public:
|
2017-06-09 06:30:39 +02:00
|
|
|
RequestBuilder(Kernel::HLERequestContext& context, Header command_header)
|
|
|
|
: RequestHelperBase(context, command_header) {
|
2017-06-11 02:57:08 +02:00
|
|
|
// From this point we will start overwriting the existing command buffer, so it's safe to
|
|
|
|
// release all previous incoming Object pointers since they won't be usable anymore.
|
|
|
|
context.ClearIncomingObjects();
|
2017-06-09 06:30:39 +02:00
|
|
|
cmdbuf[0] = header.raw;
|
|
|
|
}
|
|
|
|
|
|
|
|
RequestBuilder(Kernel::HLERequestContext& context, u16 command_id, unsigned normal_params_size,
|
|
|
|
unsigned translate_params_size)
|
|
|
|
: RequestBuilder(
|
|
|
|
context, Header{MakeHeader(command_id, normal_params_size, translate_params_size)}) {}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
// Validate on destruction, as there shouldn't be any case where we don't want it
|
|
|
|
~RequestBuilder() {
|
|
|
|
ValidateHeader();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void Push(T value);
|
|
|
|
|
2017-02-05 00:29:07 +01:00
|
|
|
template <typename First, typename... Other>
|
2016-12-30 15:54:40 +01:00
|
|
|
void Push(const First& first_value, const Other&... other_values);
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2017-12-11 02:37:44 +01:00
|
|
|
template <typename T>
|
|
|
|
void PushEnum(T value) {
|
|
|
|
static_assert(std::is_enum<T>(), "T must be an enum type within a PushEnum call.");
|
|
|
|
static_assert(!std::is_convertible<T, int>(),
|
|
|
|
"enum type in PushEnum must be a strongly typed enum.");
|
|
|
|
static_assert(sizeof(value) < sizeof(u64), "64-bit enums may not be pushed.");
|
|
|
|
Push(static_cast<std::underlying_type_t<T>>(value));
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
/**
|
|
|
|
* @brief Copies the content of the given trivially copyable class to the buffer as a normal
|
|
|
|
* param
|
|
|
|
* @note: The input class must be correctly packed/padded to fit hardware layout.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2016-12-30 15:54:40 +01:00
|
|
|
void PushRaw(const T& value);
|
2016-12-26 13:39:45 +01:00
|
|
|
|
|
|
|
// TODO : ensure that translate params are added after all regular params
|
2017-06-09 09:51:18 +02:00
|
|
|
template <typename... O>
|
2019-03-23 21:04:19 +01:00
|
|
|
void PushCopyObjects(std::shared_ptr<O>... pointers);
|
2017-12-03 11:08:57 +01:00
|
|
|
|
|
|
|
template <typename... O>
|
2019-03-23 21:04:19 +01:00
|
|
|
void PushMoveObjects(std::shared_ptr<O>... pointers);
|
2017-06-09 09:51:18 +02:00
|
|
|
|
2017-11-05 18:50:22 +01:00
|
|
|
void PushStaticBuffer(const std::vector<u8>& buffer, u8 buffer_id);
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2017-07-14 21:38:35 +02:00
|
|
|
/// Pushes an HLE MappedBuffer interface back to unmapped the buffer.
|
|
|
|
void PushMappedBuffer(const Kernel::MappedBuffer& mapped_buffer);
|
2018-03-01 15:37:56 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
template <typename... H>
|
|
|
|
void PushCopyHLEHandles(H... handles);
|
|
|
|
|
|
|
|
template <typename... H>
|
|
|
|
void PushMoveHLEHandles(H... handles);
|
2016-12-26 13:39:45 +01:00
|
|
|
};
|
|
|
|
|
2016-12-26 14:42:06 +01:00
|
|
|
/// Push ///
|
|
|
|
|
|
|
|
template <>
|
2016-12-30 15:54:40 +01:00
|
|
|
inline void RequestBuilder::Push(u32 value) {
|
|
|
|
cmdbuf[index++] = value;
|
|
|
|
}
|
|
|
|
|
2018-07-16 19:39:48 +02:00
|
|
|
template <>
|
|
|
|
inline void RequestBuilder::Push(s32 value) {
|
|
|
|
cmdbuf[index++] = static_cast<u32>(value);
|
|
|
|
}
|
|
|
|
|
2016-12-30 15:54:40 +01:00
|
|
|
template <typename T>
|
|
|
|
void RequestBuilder::PushRaw(const T& value) {
|
|
|
|
static_assert(std::is_trivially_copyable<T>(), "Raw types should be trivially copyable");
|
|
|
|
std::memcpy(cmdbuf + index, &value, sizeof(T));
|
|
|
|
index += (sizeof(T) + 3) / 4; // round up to word length
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline void RequestBuilder::Push(u8 value) {
|
|
|
|
PushRaw(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline void RequestBuilder::Push(u16 value) {
|
|
|
|
PushRaw(value);
|
2016-12-26 14:42:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2016-12-30 15:54:40 +01:00
|
|
|
inline void RequestBuilder::Push(u64 value) {
|
2016-12-26 14:42:06 +01:00
|
|
|
Push(static_cast<u32>(value));
|
|
|
|
Push(static_cast<u32>(value >> 32));
|
|
|
|
}
|
|
|
|
|
2019-06-09 16:03:22 +02:00
|
|
|
template <>
|
|
|
|
inline void RequestBuilder::Push(f32 value) {
|
|
|
|
u32 integral;
|
|
|
|
std::memcpy(&integral, &value, sizeof(u32));
|
|
|
|
Push(integral);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline void RequestBuilder::Push(f64 value) {
|
|
|
|
u64 integral;
|
|
|
|
std::memcpy(&integral, &value, sizeof(u64));
|
|
|
|
Push(integral);
|
|
|
|
}
|
|
|
|
|
2016-12-26 14:42:06 +01:00
|
|
|
template <>
|
2016-12-30 15:54:40 +01:00
|
|
|
inline void RequestBuilder::Push(bool value) {
|
2017-02-11 15:07:12 +01:00
|
|
|
Push(static_cast<u8>(value));
|
2016-12-30 15:54:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline void RequestBuilder::Push(ResultCode value) {
|
2016-12-26 14:42:06 +01:00
|
|
|
Push(value.raw);
|
|
|
|
}
|
|
|
|
|
2016-12-30 15:54:40 +01:00
|
|
|
template <typename First, typename... Other>
|
|
|
|
void RequestBuilder::Push(const First& first_value, const Other&... other_values) {
|
|
|
|
Push(first_value);
|
|
|
|
Push(other_values...);
|
|
|
|
}
|
|
|
|
|
2018-03-01 15:37:56 +01:00
|
|
|
template <typename... H>
|
|
|
|
inline void RequestBuilder::PushCopyHLEHandles(H... handles) {
|
2016-12-30 15:54:40 +01:00
|
|
|
Push(CopyHandleDesc(sizeof...(H)));
|
2018-03-01 15:37:56 +01:00
|
|
|
Push(static_cast<u32>(handles)...);
|
2016-12-30 15:54:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... H>
|
2018-03-01 15:37:56 +01:00
|
|
|
inline void RequestBuilder::PushMoveHLEHandles(H... handles) {
|
2016-12-30 15:54:40 +01:00
|
|
|
Push(MoveHandleDesc(sizeof...(H)));
|
2018-03-01 15:37:56 +01:00
|
|
|
Push(static_cast<u32>(handles)...);
|
2016-12-30 15:54:40 +01:00
|
|
|
}
|
|
|
|
|
2017-06-09 09:51:18 +02:00
|
|
|
template <typename... O>
|
2019-03-23 21:04:19 +01:00
|
|
|
inline void RequestBuilder::PushCopyObjects(std::shared_ptr<O>... pointers) {
|
2018-03-01 15:37:56 +01:00
|
|
|
PushCopyHLEHandles(context->AddOutgoingHandle(std::move(pointers))...);
|
2017-12-03 11:08:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... O>
|
2019-03-23 21:04:19 +01:00
|
|
|
inline void RequestBuilder::PushMoveObjects(std::shared_ptr<O>... pointers) {
|
2018-03-01 15:37:56 +01:00
|
|
|
PushMoveHLEHandles(context->AddOutgoingHandle(std::move(pointers))...);
|
2017-06-09 09:51:18 +02:00
|
|
|
}
|
|
|
|
|
2017-11-05 18:50:22 +01:00
|
|
|
inline void RequestBuilder::PushStaticBuffer(const std::vector<u8>& buffer, u8 buffer_id) {
|
|
|
|
ASSERT_MSG(buffer_id < MAX_STATIC_BUFFERS, "Invalid static buffer id");
|
|
|
|
|
|
|
|
Push(StaticBufferDesc(buffer.size(), buffer_id));
|
|
|
|
// This address will be replaced by the correct static buffer address during IPC translation.
|
|
|
|
Push<VAddr>(0xDEADC0DE);
|
|
|
|
|
|
|
|
context->AddStaticBuffer(buffer_id, buffer);
|
|
|
|
}
|
|
|
|
|
2017-07-14 21:38:35 +02:00
|
|
|
inline void RequestBuilder::PushMappedBuffer(const Kernel::MappedBuffer& mapped_buffer) {
|
|
|
|
Push(mapped_buffer.GenerateDescriptor());
|
|
|
|
Push(mapped_buffer.GetId());
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
class RequestParser : public RequestHelperBase {
|
|
|
|
public:
|
2017-06-09 06:30:39 +02:00
|
|
|
RequestParser(Kernel::HLERequestContext& context, Header desired_header)
|
|
|
|
: RequestHelperBase(context, desired_header) {}
|
|
|
|
|
|
|
|
RequestParser(Kernel::HLERequestContext& context, u16 command_id, unsigned normal_params_size,
|
|
|
|
unsigned translate_params_size)
|
|
|
|
: RequestParser(context,
|
|
|
|
Header{MakeHeader(command_id, normal_params_size, translate_params_size)}) {
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
RequestBuilder MakeBuilder(u32 normal_params_size, u32 translate_params_size,
|
|
|
|
bool validateHeader = true) {
|
|
|
|
if (validateHeader)
|
|
|
|
ValidateHeader();
|
2017-09-27 01:26:09 +02:00
|
|
|
Header builderHeader{MakeHeader(static_cast<u16>(header.command_id), normal_params_size,
|
|
|
|
translate_params_size)};
|
2018-03-10 12:25:22 +01:00
|
|
|
return {*context, builderHeader};
|
2016-12-26 13:39:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T Pop();
|
|
|
|
|
|
|
|
template <typename T>
|
2016-12-26 14:42:06 +01:00
|
|
|
void Pop(T& value);
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2017-02-05 00:29:07 +01:00
|
|
|
template <typename First, typename... Other>
|
2016-12-26 14:42:06 +01:00
|
|
|
void Pop(First& first_value, Other&... other_values);
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2017-12-11 02:37:44 +01:00
|
|
|
template <typename T>
|
|
|
|
T PopEnum() {
|
|
|
|
static_assert(std::is_enum<T>(), "T must be an enum type within a PopEnum call.");
|
|
|
|
static_assert(!std::is_convertible<T, int>(),
|
|
|
|
"enum type in PopEnum must be a strongly typed enum.");
|
|
|
|
static_assert(sizeof(T) < sizeof(u64), "64-bit enums cannot be popped.");
|
|
|
|
return static_cast<T>(Pop<std::underlying_type_t<T>>());
|
|
|
|
}
|
|
|
|
|
2017-06-09 09:51:18 +02:00
|
|
|
/// Equivalent to calling `PopGenericObjects<1>()[0]`.
|
2019-03-23 21:04:19 +01:00
|
|
|
std::shared_ptr<Kernel::Object> PopGenericObject();
|
2017-06-09 09:51:18 +02:00
|
|
|
|
|
|
|
/// Equivalent to calling `std::get<0>(PopObjects<T>())`.
|
|
|
|
template <typename T>
|
2019-03-23 21:04:19 +01:00
|
|
|
std::shared_ptr<T> PopObject();
|
2017-06-09 09:51:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pop a descriptor containing `N` handles and resolves them to Kernel::Object pointers. If a
|
2018-03-01 15:37:56 +01:00
|
|
|
* handle is invalid, null is returned for that object instead. The descriptor must contain
|
|
|
|
* exactly `N` handles, it is not permitted to, for example, call PopGenericObjects<1>() twice
|
|
|
|
* to read a multi-handle descriptor with 2 handles, or to make a single PopGenericObjects<2>()
|
|
|
|
* call to read 2 single-handle descriptors.
|
2017-06-09 09:51:18 +02:00
|
|
|
*/
|
|
|
|
template <unsigned int N>
|
2019-03-23 21:04:19 +01:00
|
|
|
std::array<std::shared_ptr<Kernel::Object>, N> PopGenericObjects();
|
2017-06-09 09:51:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolves handles to Kernel::Objects as in PopGenericsObjects(), but then also casts them to
|
|
|
|
* the passed `T` types, while verifying that the cast is valid. If the type of an object does
|
|
|
|
* not match, null is returned instead.
|
|
|
|
*/
|
|
|
|
template <typename... T>
|
2019-03-23 21:04:19 +01:00
|
|
|
std::tuple<std::shared_ptr<T>...> PopObjects();
|
2017-06-09 09:51:18 +02:00
|
|
|
|
|
|
|
/// Convenience wrapper around PopObjects() which assigns the handles to the passed references.
|
|
|
|
template <typename... T>
|
2019-03-23 21:04:19 +01:00
|
|
|
void PopObjects(std::shared_ptr<T>&... pointers) {
|
2017-06-09 09:51:18 +02:00
|
|
|
std::tie(pointers...) = PopObjects<T...>();
|
|
|
|
}
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2018-02-15 10:16:41 +01:00
|
|
|
u32 PopPID();
|
|
|
|
|
2017-11-05 18:50:22 +01:00
|
|
|
/**
|
|
|
|
* @brief Pops a static buffer from the IPC request buffer.
|
|
|
|
* @return The buffer that was copied from the IPC request originator.
|
|
|
|
*
|
|
|
|
* In real services, static buffers must be set up before any IPC request using those is sent.
|
|
|
|
* It is the duty of the process (usually services) to allocate and set up the receiving static
|
|
|
|
* buffer information. Our HLE services do not need to set up the buffers beforehand.
|
|
|
|
*/
|
|
|
|
const std::vector<u8>& PopStaticBuffer();
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2017-07-14 21:38:35 +02:00
|
|
|
/// Pops a mapped buffer descriptor with its vaddr and resolves it to an HLE interface
|
|
|
|
Kernel::MappedBuffer& PopMappedBuffer();
|
2016-12-26 13:39:45 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reads the next normal parameters as a struct, by copying it
|
|
|
|
* @note: The output class must be correctly packed/padded to fit hardware layout.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2016-12-26 14:42:06 +01:00
|
|
|
void PopRaw(T& value);
|
2016-12-30 15:54:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reads the next normal parameters as a struct, by copying it into a new value
|
|
|
|
* @note: The output class must be correctly packed/padded to fit hardware layout.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
T PopRaw();
|
2018-03-01 15:37:56 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
template <unsigned int N>
|
|
|
|
std::array<u32, N> PopHLEHandles();
|
2016-12-26 13:39:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Pop ///
|
|
|
|
|
|
|
|
template <>
|
2016-12-30 15:54:40 +01:00
|
|
|
inline u32 RequestParser::Pop() {
|
2016-12-26 13:39:45 +01:00
|
|
|
return cmdbuf[index++];
|
|
|
|
}
|
|
|
|
|
2016-12-30 15:54:40 +01:00
|
|
|
template <typename T>
|
|
|
|
void RequestParser::PopRaw(T& value) {
|
|
|
|
static_assert(std::is_trivially_copyable<T>(), "Raw types should be trivially copyable");
|
|
|
|
std::memcpy(&value, cmdbuf + index, sizeof(T));
|
|
|
|
index += (sizeof(T) + 3) / 4; // round up to word length
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T RequestParser::PopRaw() {
|
|
|
|
T value;
|
|
|
|
PopRaw(value);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
template <>
|
2016-12-30 15:54:40 +01:00
|
|
|
inline u8 RequestParser::Pop() {
|
|
|
|
return PopRaw<u8>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline u16 RequestParser::Pop() {
|
|
|
|
return PopRaw<u16>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline u64 RequestParser::Pop() {
|
2016-12-26 13:39:45 +01:00
|
|
|
const u64 lsw = Pop<u32>();
|
|
|
|
const u64 msw = Pop<u32>();
|
|
|
|
return msw << 32 | lsw;
|
|
|
|
}
|
|
|
|
|
2018-07-16 19:39:48 +02:00
|
|
|
template <>
|
|
|
|
inline s32 RequestParser::Pop() {
|
|
|
|
s32_le data = PopRaw<s32_le>();
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2019-06-09 16:03:22 +02:00
|
|
|
template <>
|
|
|
|
inline f32 RequestParser::Pop() {
|
|
|
|
const u32 value = Pop<u32>();
|
|
|
|
float real;
|
|
|
|
std::memcpy(&real, &value, sizeof(real));
|
|
|
|
return real;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline f64 RequestParser::Pop() {
|
|
|
|
const u64 value = Pop<u64>();
|
|
|
|
f64 real;
|
|
|
|
std::memcpy(&real, &value, sizeof(real));
|
|
|
|
return real;
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
template <>
|
2016-12-30 15:54:40 +01:00
|
|
|
inline bool RequestParser::Pop() {
|
2017-02-11 15:07:12 +01:00
|
|
|
return Pop<u8>() != 0;
|
2016-12-30 15:54:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline ResultCode RequestParser::Pop() {
|
2016-12-26 13:39:45 +01:00
|
|
|
return ResultCode{Pop<u32>()};
|
|
|
|
}
|
|
|
|
|
2016-12-26 14:42:06 +01:00
|
|
|
template <typename T>
|
|
|
|
void RequestParser::Pop(T& value) {
|
|
|
|
value = Pop<T>();
|
|
|
|
}
|
2016-12-26 13:39:45 +01:00
|
|
|
|
2017-02-05 00:29:07 +01:00
|
|
|
template <typename First, typename... Other>
|
2016-12-26 14:42:06 +01:00
|
|
|
void RequestParser::Pop(First& first_value, Other&... other_values) {
|
|
|
|
first_value = Pop<First>();
|
|
|
|
Pop(other_values...);
|
2016-12-26 13:39:45 +01:00
|
|
|
}
|
|
|
|
|
2017-06-09 09:51:18 +02:00
|
|
|
template <unsigned int N>
|
2018-03-01 15:37:56 +01:00
|
|
|
std::array<u32, N> RequestParser::PopHLEHandles() {
|
2017-06-09 09:51:18 +02:00
|
|
|
u32 handle_descriptor = Pop<u32>();
|
|
|
|
ASSERT_MSG(IsHandleDescriptor(handle_descriptor),
|
|
|
|
"Tried to pop handle(s) but the descriptor is not a handle descriptor");
|
|
|
|
ASSERT_MSG(N == HandleNumberFromDesc(handle_descriptor),
|
|
|
|
"Number of handles doesn't match the descriptor");
|
|
|
|
|
2018-03-01 15:37:56 +01:00
|
|
|
std::array<u32, N> handles{};
|
|
|
|
for (u32& handle : handles) {
|
|
|
|
handle = Pop<u32>();
|
2017-06-09 09:51:18 +02:00
|
|
|
}
|
|
|
|
return handles;
|
|
|
|
}
|
|
|
|
|
2019-03-23 21:04:19 +01:00
|
|
|
inline std::shared_ptr<Kernel::Object> RequestParser::PopGenericObject() {
|
2018-03-09 18:54:43 +01:00
|
|
|
auto [handle] = PopHLEHandles<1>();
|
2017-06-09 09:51:18 +02:00
|
|
|
return context->GetIncomingHandle(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2019-03-23 21:04:19 +01:00
|
|
|
std::shared_ptr<T> RequestParser::PopObject() {
|
2017-06-09 09:51:18 +02:00
|
|
|
return Kernel::DynamicObjectCast<T>(PopGenericObject());
|
|
|
|
}
|
|
|
|
|
|
|
|
template <unsigned int N>
|
2019-03-23 21:04:19 +01:00
|
|
|
inline std::array<std::shared_ptr<Kernel::Object>, N> RequestParser::PopGenericObjects() {
|
2018-03-01 15:37:56 +01:00
|
|
|
std::array<u32, N> handles = PopHLEHandles<N>();
|
2019-03-23 21:04:19 +01:00
|
|
|
std::array<std::shared_ptr<Kernel::Object>, N> pointers;
|
2017-06-09 09:51:18 +02:00
|
|
|
for (int i = 0; i < N; ++i) {
|
|
|
|
pointers[i] = context->GetIncomingHandle(handles[i]);
|
|
|
|
}
|
|
|
|
return pointers;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace detail {
|
2018-09-06 22:03:28 +02:00
|
|
|
template <typename... T, std::size_t... I>
|
2019-03-23 21:04:19 +01:00
|
|
|
std::tuple<std::shared_ptr<T>...> PopObjectsHelper(
|
|
|
|
std::array<std::shared_ptr<Kernel::Object>, sizeof...(T)>&& pointers,
|
2017-06-09 09:51:18 +02:00
|
|
|
std::index_sequence<I...>) {
|
|
|
|
return std::make_tuple(Kernel::DynamicObjectCast<T>(std::move(pointers[I]))...);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
template <typename... T>
|
2019-03-23 21:04:19 +01:00
|
|
|
inline std::tuple<std::shared_ptr<T>...> RequestParser::PopObjects() {
|
2017-06-09 09:51:18 +02:00
|
|
|
return detail::PopObjectsHelper<T...>(PopGenericObjects<sizeof...(T)>(),
|
|
|
|
std::index_sequence_for<T...>{});
|
2016-12-26 14:42:06 +01:00
|
|
|
}
|
|
|
|
|
2018-02-15 10:16:41 +01:00
|
|
|
inline u32 RequestParser::PopPID() {
|
|
|
|
ASSERT(Pop<u32>() == static_cast<u32>(DescriptorType::CallingPid));
|
|
|
|
return Pop<u32>();
|
|
|
|
}
|
|
|
|
|
2017-11-05 18:50:22 +01:00
|
|
|
inline const std::vector<u8>& RequestParser::PopStaticBuffer() {
|
|
|
|
const u32 sbuffer_descriptor = Pop<u32>();
|
|
|
|
// Pop the address from the incoming request buffer
|
|
|
|
Pop<VAddr>();
|
|
|
|
|
|
|
|
StaticBufferDescInfo buffer_info{sbuffer_descriptor};
|
2018-07-23 23:08:14 +02:00
|
|
|
return context->GetStaticBuffer(static_cast<u8>(buffer_info.buffer_id));
|
2016-12-26 14:42:06 +01:00
|
|
|
}
|
|
|
|
|
2017-07-14 21:38:35 +02:00
|
|
|
inline Kernel::MappedBuffer& RequestParser::PopMappedBuffer() {
|
|
|
|
u32 mapped_buffer_descriptor = Pop<u32>();
|
|
|
|
ASSERT_MSG(GetDescriptorType(mapped_buffer_descriptor) == MappedBuffer,
|
|
|
|
"Tried to pop mapped buffer but the descriptor is not a mapped buffer descriptor");
|
|
|
|
return context->GetMappedBuffer(Pop<u32>());
|
|
|
|
}
|
|
|
|
|
2016-12-26 13:39:45 +01:00
|
|
|
} // namespace IPC
|