io_uring_socket_recvfrom_op.hpp 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. //
  2. // detail/io_uring_socket_recvfrom_op.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef ASIO_DETAIL_IO_URING_SOCKET_RECVFROM_OP_HPP
  11. #define ASIO_DETAIL_IO_URING_SOCKET_RECVFROM_OP_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #if defined(ASIO_HAS_IO_URING)
  17. #include "asio/detail/bind_handler.hpp"
  18. #include "asio/detail/buffer_sequence_adapter.hpp"
  19. #include "asio/detail/socket_ops.hpp"
  20. #include "asio/detail/fenced_block.hpp"
  21. #include "asio/detail/handler_work.hpp"
  22. #include "asio/detail/io_uring_operation.hpp"
  23. #include "asio/detail/memory.hpp"
  24. #include "asio/detail/push_options.hpp"
  25. namespace asio {
  26. namespace detail {
  27. template <typename MutableBufferSequence, typename Endpoint>
  28. class io_uring_socket_recvfrom_op_base : public io_uring_operation
  29. {
  30. public:
  31. io_uring_socket_recvfrom_op_base(const asio::error_code& success_ec,
  32. socket_type socket, socket_ops::state_type state,
  33. const MutableBufferSequence& buffers, Endpoint& endpoint,
  34. socket_base::message_flags flags, func_type complete_func)
  35. : io_uring_operation(success_ec,
  36. &io_uring_socket_recvfrom_op_base::do_prepare,
  37. &io_uring_socket_recvfrom_op_base::do_perform, complete_func),
  38. socket_(socket),
  39. state_(state),
  40. buffers_(buffers),
  41. sender_endpoint_(endpoint),
  42. flags_(flags),
  43. bufs_(buffers),
  44. msghdr_()
  45. {
  46. msghdr_.msg_iov = bufs_.buffers();
  47. msghdr_.msg_iovlen = static_cast<int>(bufs_.count());
  48. msghdr_.msg_name = static_cast<sockaddr*>(
  49. static_cast<void*>(sender_endpoint_.data()));
  50. msghdr_.msg_namelen = sender_endpoint_.capacity();
  51. }
  52. static void do_prepare(io_uring_operation* base, ::io_uring_sqe* sqe)
  53. {
  54. ASIO_ASSUME(base != 0);
  55. io_uring_socket_recvfrom_op_base* o(
  56. static_cast<io_uring_socket_recvfrom_op_base*>(base));
  57. if ((o->state_ & socket_ops::internal_non_blocking) != 0)
  58. {
  59. bool except_op = (o->flags_ & socket_base::message_out_of_band) != 0;
  60. ::io_uring_prep_poll_add(sqe, o->socket_, except_op ? POLLPRI : POLLIN);
  61. }
  62. else
  63. {
  64. ::io_uring_prep_recvmsg(sqe, o->socket_, &o->msghdr_, o->flags_);
  65. }
  66. }
  67. static bool do_perform(io_uring_operation* base, bool after_completion)
  68. {
  69. ASIO_ASSUME(base != 0);
  70. io_uring_socket_recvfrom_op_base* o(
  71. static_cast<io_uring_socket_recvfrom_op_base*>(base));
  72. if ((o->state_ & socket_ops::internal_non_blocking) != 0)
  73. {
  74. bool except_op = (o->flags_ & socket_base::message_out_of_band) != 0;
  75. if (after_completion || !except_op)
  76. {
  77. std::size_t addr_len = o->sender_endpoint_.capacity();
  78. bool result;
  79. if (o->bufs_.is_single_buffer)
  80. {
  81. result = socket_ops::non_blocking_recvfrom1(o->socket_,
  82. o->bufs_.first(o->buffers_).data(),
  83. o->bufs_.first(o->buffers_).size(), o->flags_,
  84. o->sender_endpoint_.data(), &addr_len,
  85. o->ec_, o->bytes_transferred_);
  86. }
  87. else
  88. {
  89. result = socket_ops::non_blocking_recvfrom(o->socket_,
  90. o->bufs_.buffers(), o->bufs_.count(), o->flags_,
  91. o->sender_endpoint_.data(), &addr_len,
  92. o->ec_, o->bytes_transferred_);
  93. }
  94. if (result && !o->ec_)
  95. o->sender_endpoint_.resize(addr_len);
  96. }
  97. }
  98. else if (after_completion && !o->ec_)
  99. o->sender_endpoint_.resize(o->msghdr_.msg_namelen);
  100. if (o->ec_ && o->ec_ == asio::error::would_block)
  101. {
  102. o->state_ |= socket_ops::internal_non_blocking;
  103. return false;
  104. }
  105. return after_completion;
  106. }
  107. private:
  108. socket_type socket_;
  109. socket_ops::state_type state_;
  110. MutableBufferSequence buffers_;
  111. Endpoint& sender_endpoint_;
  112. socket_base::message_flags flags_;
  113. buffer_sequence_adapter<asio::mutable_buffer,
  114. MutableBufferSequence> bufs_;
  115. msghdr msghdr_;
  116. };
  117. template <typename MutableBufferSequence, typename Endpoint,
  118. typename Handler, typename IoExecutor>
  119. class io_uring_socket_recvfrom_op
  120. : public io_uring_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>
  121. {
  122. public:
  123. ASIO_DEFINE_HANDLER_PTR(io_uring_socket_recvfrom_op);
  124. io_uring_socket_recvfrom_op(const asio::error_code& success_ec,
  125. int socket, socket_ops::state_type state,
  126. const MutableBufferSequence& buffers, Endpoint& endpoint,
  127. socket_base::message_flags flags,
  128. Handler& handler, const IoExecutor& io_ex)
  129. : io_uring_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>(
  130. success_ec, socket, state, buffers, endpoint, flags,
  131. &io_uring_socket_recvfrom_op::do_complete),
  132. handler_(static_cast<Handler&&>(handler)),
  133. work_(handler_, io_ex)
  134. {
  135. }
  136. static void do_complete(void* owner, operation* base,
  137. const asio::error_code& /*ec*/,
  138. std::size_t /*bytes_transferred*/)
  139. {
  140. // Take ownership of the handler object.
  141. ASIO_ASSUME(base != 0);
  142. io_uring_socket_recvfrom_op* o
  143. (static_cast<io_uring_socket_recvfrom_op*>(base));
  144. ptr p = { asio::detail::addressof(o->handler_), o, o };
  145. ASIO_HANDLER_COMPLETION((*o));
  146. // Take ownership of the operation's outstanding work.
  147. handler_work<Handler, IoExecutor> w(
  148. static_cast<handler_work<Handler, IoExecutor>&&>(
  149. o->work_));
  150. ASIO_ERROR_LOCATION(o->ec_);
  151. // Make a copy of the handler so that the memory can be deallocated before
  152. // the upcall is made. Even if we're not about to make an upcall, a
  153. // sub-object of the handler may be the true owner of the memory associated
  154. // with the handler. Consequently, a local copy of the handler is required
  155. // to ensure that any owning sub-object remains valid until after we have
  156. // deallocated the memory here.
  157. detail::binder2<Handler, asio::error_code, std::size_t>
  158. handler(o->handler_, o->ec_, o->bytes_transferred_);
  159. p.h = asio::detail::addressof(handler.handler_);
  160. p.reset();
  161. // Make the upcall if required.
  162. if (owner)
  163. {
  164. fenced_block b(fenced_block::half);
  165. ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
  166. w.complete(handler, handler.handler_);
  167. ASIO_HANDLER_INVOCATION_END;
  168. }
  169. }
  170. private:
  171. Handler handler_;
  172. handler_work<Handler, IoExecutor> work_;
  173. };
  174. } // namespace detail
  175. } // namespace asio
  176. #include "asio/detail/pop_options.hpp"
  177. #endif // defined(ASIO_HAS_IO_URING)
  178. #endif // ASIO_DETAIL_IO_URING_SOCKET_RECVFROM_OP_HPP