// Copyright 2016 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include #include #include #include #include "core/hle/ipc.h" #include "core/hle/kernel/hle_ipc.h" #include "core/hle/kernel/kernel.h" namespace IPC { class RequestHelperBase { protected: Kernel::HLERequestContext* context; u32* cmdbuf; ptrdiff_t index = 1; Header header; public: RequestHelperBase(Kernel::HLERequestContext& context, Header desired_header) : context(&context), cmdbuf(context.CommandBuffer()), header(desired_header) {} /// Returns the total size of the request in words size_t TotalSize() const { return 1 /* command header */ + header.normal_params_size + header.translate_params_size; } void ValidateHeader() { DEBUG_ASSERT_MSG(index == TotalSize(), "Operations do not match the header (cmd {:#x})", header.raw); } 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; } }; class RequestBuilder : public RequestHelperBase { public: RequestBuilder(Kernel::HLERequestContext& context, Header command_header) : RequestHelperBase(context, command_header) { // 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(); 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)}) {} // Validate on destruction, as there shouldn't be any case where we don't want it ~RequestBuilder() { ValidateHeader(); } template void Push(T value); template void Push(const First& first_value, const Other&... other_values); template void PushEnum(T value) { static_assert(std::is_enum(), "T must be an enum type within a PushEnum call."); static_assert(!std::is_convertible(), "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>(value)); } /** * @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 void PushRaw(const T& value); // TODO : ensure that translate params are added after all regular params template void PushCopyObjects(Kernel::SharedPtr... pointers); template void PushMoveObjects(Kernel::SharedPtr... pointers); void PushStaticBuffer(const std::vector& buffer, u8 buffer_id); /// Pushes an HLE MappedBuffer interface back to unmapped the buffer. void PushMappedBuffer(const Kernel::MappedBuffer& mapped_buffer); private: template void PushCopyHLEHandles(H... handles); template void PushMoveHLEHandles(H... handles); }; /// Push /// template <> inline void RequestBuilder::Push(u32 value) { cmdbuf[index++] = value; } template void RequestBuilder::PushRaw(const T& value) { static_assert(std::is_trivially_copyable(), "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); } template <> inline void RequestBuilder::Push(u64 value) { Push(static_cast(value)); Push(static_cast(value >> 32)); } template <> inline void RequestBuilder::Push(bool value) { Push(static_cast(value)); } template <> inline void RequestBuilder::Push(ResultCode value) { Push(value.raw); } template void RequestBuilder::Push(const First& first_value, const Other&... other_values) { Push(first_value); Push(other_values...); } template inline void RequestBuilder::PushCopyHLEHandles(H... handles) { Push(CopyHandleDesc(sizeof...(H))); Push(static_cast(handles)...); } template inline void RequestBuilder::PushMoveHLEHandles(H... handles) { Push(MoveHandleDesc(sizeof...(H))); Push(static_cast(handles)...); } template inline void RequestBuilder::PushCopyObjects(Kernel::SharedPtr... pointers) { PushCopyHLEHandles(context->AddOutgoingHandle(std::move(pointers))...); } template inline void RequestBuilder::PushMoveObjects(Kernel::SharedPtr... pointers) { PushMoveHLEHandles(context->AddOutgoingHandle(std::move(pointers))...); } inline void RequestBuilder::PushStaticBuffer(const std::vector& 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(0xDEADC0DE); context->AddStaticBuffer(buffer_id, buffer); } inline void RequestBuilder::PushMappedBuffer(const Kernel::MappedBuffer& mapped_buffer) { Push(mapped_buffer.GenerateDescriptor()); Push(mapped_buffer.GetId()); } class RequestParser : public RequestHelperBase { public: 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)}) { } RequestBuilder MakeBuilder(u32 normal_params_size, u32 translate_params_size, bool validateHeader = true) { if (validateHeader) ValidateHeader(); Header builderHeader{MakeHeader(static_cast(header.command_id), normal_params_size, translate_params_size)}; return {*context, builderHeader}; } template T Pop(); template void Pop(T& value); template void Pop(First& first_value, Other&... other_values); template T PopEnum() { static_assert(std::is_enum(), "T must be an enum type within a PopEnum call."); static_assert(!std::is_convertible(), "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(Pop>()); } /// Equivalent to calling `PopGenericObjects<1>()[0]`. Kernel::SharedPtr PopGenericObject(); /// Equivalent to calling `std::get<0>(PopObjects())`. template Kernel::SharedPtr PopObject(); /** * Pop a descriptor containing `N` handles and resolves them to Kernel::Object pointers. If a * 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. */ template std::array, N> PopGenericObjects(); /** * 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 std::tuple...> PopObjects(); /// Convenience wrapper around PopObjects() which assigns the handles to the passed references. template void PopObjects(Kernel::SharedPtr&... pointers) { std::tie(pointers...) = PopObjects(); } u32 PopPID(); /** * @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& PopStaticBuffer(); /// Pops a mapped buffer descriptor with its vaddr and resolves it to an HLE interface Kernel::MappedBuffer& PopMappedBuffer(); /** * @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 void PopRaw(T& value); /** * @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 T PopRaw(); private: template std::array PopHLEHandles(); }; /// Pop /// template <> inline u32 RequestParser::Pop() { return cmdbuf[index++]; } template void RequestParser::PopRaw(T& value) { static_assert(std::is_trivially_copyable(), "Raw types should be trivially copyable"); std::memcpy(&value, cmdbuf + index, sizeof(T)); index += (sizeof(T) + 3) / 4; // round up to word length } template T RequestParser::PopRaw() { T value; PopRaw(value); return value; } template <> inline u8 RequestParser::Pop() { return PopRaw(); } template <> inline u16 RequestParser::Pop() { return PopRaw(); } template <> inline u64 RequestParser::Pop() { const u64 lsw = Pop(); const u64 msw = Pop(); return msw << 32 | lsw; } template <> inline bool RequestParser::Pop() { return Pop() != 0; } template <> inline ResultCode RequestParser::Pop() { return ResultCode{Pop()}; } template void RequestParser::Pop(T& value) { value = Pop(); } template void RequestParser::Pop(First& first_value, Other&... other_values) { first_value = Pop(); Pop(other_values...); } template std::array RequestParser::PopHLEHandles() { u32 handle_descriptor = Pop(); 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"); std::array handles{}; for (u32& handle : handles) { handle = Pop(); } return handles; } inline Kernel::SharedPtr RequestParser::PopGenericObject() { auto [handle] = PopHLEHandles<1>(); return context->GetIncomingHandle(handle); } template Kernel::SharedPtr RequestParser::PopObject() { return Kernel::DynamicObjectCast(PopGenericObject()); } template inline std::array, N> RequestParser::PopGenericObjects() { std::array handles = PopHLEHandles(); std::array, N> pointers; for (int i = 0; i < N; ++i) { pointers[i] = context->GetIncomingHandle(handles[i]); } return pointers; } namespace detail { template std::tuple...> PopObjectsHelper( std::array, sizeof...(T)>&& pointers, std::index_sequence) { return std::make_tuple(Kernel::DynamicObjectCast(std::move(pointers[I]))...); } } // namespace detail template inline std::tuple...> RequestParser::PopObjects() { return detail::PopObjectsHelper(PopGenericObjects(), std::index_sequence_for{}); } inline u32 RequestParser::PopPID() { ASSERT(Pop() == static_cast(DescriptorType::CallingPid)); return Pop(); } inline const std::vector& RequestParser::PopStaticBuffer() { const u32 sbuffer_descriptor = Pop(); // Pop the address from the incoming request buffer Pop(); StaticBufferDescInfo buffer_info{sbuffer_descriptor}; return context->GetStaticBuffer(buffer_info.buffer_id); } inline Kernel::MappedBuffer& RequestParser::PopMappedBuffer() { u32 mapped_buffer_descriptor = Pop(); 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()); } } // namespace IPC