| // Copyright 2018 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <lib/fidl/coding.h> |
| #include <lib/fidl/cpp/builder.h> |
| #include <lib/fidl/cpp/message.h> |
| #include <lib/fidl/internal.h> |
| #include <lib/fidl/trace.h> |
| #include <lib/fidl/transformer.h> |
| #include <string.h> |
| |
| #ifdef __Fuchsia__ |
| #include <zircon/errors.h> |
| #include <zircon/syscalls.h> |
| #endif |
| |
| namespace fidl { |
| |
| HLCPPIncomingMessage::HLCPPIncomingMessage() = default; |
| |
| HLCPPIncomingMessage::HLCPPIncomingMessage(BytePart bytes, HandleInfoPart handles) |
| : bytes_(std::move(bytes)), handles_(std::move(handles)) {} |
| |
| HLCPPIncomingMessage::~HLCPPIncomingMessage() { |
| #ifdef __Fuchsia__ |
| FidlHandleInfoCloseMany(handles_.data(), handles_.actual()); |
| #endif |
| ClearHandlesUnsafe(); |
| } |
| |
| HLCPPIncomingMessage::HLCPPIncomingMessage(HLCPPIncomingMessage&& other) |
| : bytes_(std::move(other.bytes_)), handles_(std::move(other.handles_)) {} |
| |
| HLCPPIncomingMessage& HLCPPIncomingMessage::operator=(HLCPPIncomingMessage&& other) { |
| bytes_ = std::move(other.bytes_); |
| handles_ = std::move(other.handles_); |
| return *this; |
| } |
| |
| zx_status_t HLCPPIncomingMessage::Decode(const fidl_type_t* type, const char** error_msg_out) { |
| return DecodeWithExternalHeader_InternalMayBreak(header(), type, error_msg_out); |
| } |
| |
| zx_status_t HLCPPIncomingMessage::DecodeWithExternalHeader_InternalMayBreak( |
| const fidl_message_header_t& header, const fidl_type_t* type, const char** error_msg_out) { |
| if ((header.flags[0] & FIDL_MESSAGE_HEADER_FLAGS_0_USE_VERSION_V2) == 0) { |
| zx_status_t status = internal__fidl_validate__v1__may_break( |
| type, bytes_.data(), bytes_.actual(), handles_.actual(), error_msg_out); |
| if (status != ZX_OK) { |
| return status; |
| } |
| |
| auto transformer_bytes = std::make_unique<uint8_t[]>(ZX_CHANNEL_MAX_MSG_BYTES); |
| |
| uint32_t num_bytes = 0; |
| status = internal__fidl_transform__may_break( |
| FIDL_TRANSFORMATION_V1_TO_V2, type, bytes_.data(), bytes_.actual(), transformer_bytes.get(), |
| ZX_CHANNEL_MAX_MSG_BYTES, &num_bytes, error_msg_out); |
| if (status != ZX_OK) { |
| return status; |
| } |
| |
| if (num_bytes > bytes_.capacity()) { |
| *error_msg_out = "transformed bytes exceeds message buffer capacity"; |
| return ZX_ERR_BUFFER_TOO_SMALL; |
| } |
| |
| memcpy(bytes_.data(), transformer_bytes.get(), num_bytes); |
| bytes_.set_actual(num_bytes); |
| } |
| |
| fidl_trace(WillHLCPPDecode, type, bytes_.data(), bytes_.actual(), handles_.actual()); |
| zx_status_t status = internal__fidl_decode_etc_hlcpp__v2__may_break( |
| type, bytes_.data(), bytes_.actual(), handles_.data(), handles_.actual(), error_msg_out); |
| fidl_trace(DidHLCPPDecode); |
| |
| ClearHandlesUnsafe(); |
| return status; |
| } |
| |
| #ifdef __Fuchsia__ |
| zx_status_t HLCPPIncomingMessage::Read(zx_handle_t channel, uint32_t flags) { |
| uint32_t actual_bytes = 0u; |
| uint32_t actual_handles = 0u; |
| fidl_trace(WillHLCPPChannelRead); |
| zx_status_t status = |
| zx_channel_read_etc(channel, flags, bytes_.data(), handles_.data(), bytes_.capacity(), |
| handles_.capacity(), &actual_bytes, &actual_handles); |
| if (status != ZX_OK) { |
| return status; |
| } |
| fidl_trace(DidHLCPPChannelRead, nullptr /* type */, bytes_.data(), actual_bytes, actual_handles); |
| |
| // Ensure we received enough bytes for the FIDL header. |
| if (actual_bytes < sizeof(fidl_message_header_t)) { |
| return ZX_ERR_INVALID_ARGS; |
| } |
| |
| bytes_.set_actual(actual_bytes); |
| handles_.set_actual(actual_handles); |
| return ZX_OK; |
| } |
| #endif |
| |
| void HLCPPIncomingMessage::ClearHandlesUnsafe() { handles_.set_actual(0u); } |
| |
| HLCPPOutgoingMessage::HLCPPOutgoingMessage() = default; |
| |
| HLCPPOutgoingMessage::HLCPPOutgoingMessage(BytePart bytes, HandleDispositionPart handles) |
| : bytes_(std::move(bytes)), handles_(std::move(handles)) {} |
| |
| HLCPPOutgoingMessage::~HLCPPOutgoingMessage() { |
| #ifdef __Fuchsia__ |
| if (handles_.actual() > 0) { |
| FidlHandleDispositionCloseMany(handles_.data(), handles_.actual()); |
| } |
| #endif |
| ClearHandlesUnsafe(); |
| } |
| |
| HLCPPOutgoingMessage::HLCPPOutgoingMessage(HLCPPOutgoingMessage&& other) |
| : bytes_(std::move(other.bytes_)), handles_(std::move(other.handles_)) {} |
| |
| HLCPPOutgoingMessage& HLCPPOutgoingMessage::operator=(HLCPPOutgoingMessage&& other) { |
| bytes_ = std::move(other.bytes_); |
| handles_ = std::move(other.handles_); |
| return *this; |
| } |
| |
| zx_status_t HLCPPOutgoingMessage::Encode(const fidl_type_t* type, const char** error_msg_out) { |
| uint32_t actual_handles = 0u; |
| zx_status_t status = fidl_encode_etc(type, bytes_.data(), bytes_.actual(), handles_.data(), |
| handles_.capacity(), &actual_handles, error_msg_out); |
| if (status == ZX_OK) |
| handles_.set_actual(actual_handles); |
| |
| return status; |
| } |
| |
| zx_status_t HLCPPOutgoingMessage::Validate(const fidl_type_t* type, |
| const char** error_msg_out) const { |
| internal::WireFormatVersion wire_format_version = internal::WireFormatVersion::kV1; |
| if ((header().flags[0] & FIDL_MESSAGE_HEADER_FLAGS_0_USE_VERSION_V2) != 0) { |
| wire_format_version = internal::WireFormatVersion::kV2; |
| } |
| |
| return ValidateWithVersion_InternalMayBreak(wire_format_version, type, error_msg_out); |
| } |
| |
| zx_status_t HLCPPOutgoingMessage::ValidateWithVersion_InternalMayBreak( |
| internal::WireFormatVersion wire_format_version, const fidl_type_t* type, |
| const char** error_msg_out) const { |
| fidl_trace(WillHLCPPValidate, type, bytes_.data(), bytes_.actual(), handles_.actual()); |
| zx_status_t status; |
| switch (wire_format_version) { |
| case internal::WireFormatVersion::kV1: |
| status = internal__fidl_validate__v1__may_break(type, bytes_.data(), bytes_.actual(), |
| handles_.actual(), error_msg_out); |
| break; |
| case internal::WireFormatVersion::kV2: |
| status = internal__fidl_validate__v2__may_break(type, bytes_.data(), bytes_.actual(), |
| handles_.actual(), error_msg_out); |
| break; |
| default: |
| __builtin_unreachable(); |
| } |
| fidl_trace(DidHLCPPValidate); |
| |
| return status; |
| } |
| |
| #ifdef __Fuchsia__ |
| zx_status_t HLCPPOutgoingMessage::Write(zx_handle_t channel, uint32_t flags) { |
| fidl_trace(WillHLCPPChannelWrite, nullptr /* type */, bytes_.data(), bytes_.actual(), |
| handles_.actual()); |
| zx_status_t status = zx_channel_write_etc(channel, flags, bytes_.data(), bytes_.actual(), |
| handles_.data(), handles_.actual()); |
| fidl_trace(DidHLCPPChannelWrite); |
| |
| // Handles are cleared by the kernel on either success or failure. |
| ClearHandlesUnsafe(); |
| |
| return status; |
| } |
| |
| zx_status_t HLCPPOutgoingMessage::Call(zx_handle_t channel, uint32_t flags, zx_time_t deadline, |
| HLCPPIncomingMessage* response) { |
| zx_channel_call_etc_args_t args; |
| args.wr_bytes = bytes_.data(); |
| args.wr_handles = handles_.data(); |
| args.rd_bytes = response->bytes().data(); |
| args.rd_handles = response->handles().data(); |
| args.wr_num_bytes = bytes_.actual(); |
| args.wr_num_handles = handles_.actual(); |
| args.rd_num_bytes = response->bytes().capacity(); |
| args.rd_num_handles = response->handles().capacity(); |
| uint32_t actual_bytes = 0u; |
| uint32_t actual_handles = 0u; |
| zx_status_t status = |
| zx_channel_call_etc(channel, flags, deadline, &args, &actual_bytes, &actual_handles); |
| ClearHandlesUnsafe(); |
| if (status == ZX_OK) { |
| response->bytes().set_actual(actual_bytes); |
| response->handles().set_actual(actual_handles); |
| } |
| return status; |
| } |
| #endif |
| |
| void HLCPPOutgoingMessage::ClearHandlesUnsafe() { handles_.set_actual(0u); } |
| |
| } // namespace fidl |