| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- //
- // Copyright (c) 2025 Klemens Morgenstern (klemens.morgenstern@gmx.net)
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- #ifndef BOOST_COBALT_IO_SSL_HPP
- #define BOOST_COBALT_IO_SSL_HPP
- #if !defined(BOOST_COBALT_SSL_SOURCE) && !defined(BOOST_ALL_NO_LIB) \
- && !defined(BOOST_COBALT_NO_LIB) && !defined(BOOST_COBALT_IO_SSL_NO_LIB)
- #define BOOST_LIB_NAME boost_cobalt_io_ssl
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COBALT_DYN_LINK)
- #define BOOST_DYN_LINK
- #endif
- #include <boost/config/auto_link.hpp>
- #endif
- #include <boost/cobalt/io/socket.hpp>
- #include <boost/cobalt/io/stream.hpp>
- #include <boost/asio/generic/datagram_protocol.hpp>
- #include <boost/asio/basic_stream_socket.hpp>
- #include <boost/asio/ssl/stream.hpp>
- namespace boost::cobalt::io::ssl
- {
- enum class verify
- {
- none = asio::ssl::verify_none,
- peer = asio::ssl::verify_peer,
- fail_if_no_peer_cert = asio::ssl::verify_fail_if_no_peer_cert,
- client_once = asio::ssl::verify_client_once
- };
- using context = asio::ssl::context;
- using verify_mode = asio::ssl::verify_mode;
- namespace detail
- {
- struct stream_impl
- {
- asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> stream_socket_;
- };
- }
- struct BOOST_SYMBOL_VISIBLE stream final : private detail::stream_impl, socket, cobalt::io::stream, asio::ssl::stream_base
- {
- BOOST_COBALT_SSL_DECL stream(context & ctx, const cobalt::executor & executor = this_thread::get_executor());
- BOOST_COBALT_SSL_DECL stream(context & ctx, stream_socket && sock);
- BOOST_COBALT_SSL_DECL stream(context & ctx, native_handle_type h, protocol_type protocol = protocol_type(),
- const cobalt::executor & executor = this_thread::get_executor());
- BOOST_COBALT_SSL_DECL stream(context & ctx, endpoint ep,
- const cobalt::executor & executor = this_thread::get_executor());
- [[nodiscard]] write_op write_some(const_buffer_sequence buffer) override
- {
- return {buffer, this, initiate_write_some_};
- }
- [[nodiscard]] read_op read_some(mutable_buffer_sequence buffer) override
- {
- return {buffer, this, initiate_read_some_};
- }
- [[nodiscard]] bool secure() const {return upgraded_;}
- template<typename VerifyCallback>
- requires requires (const VerifyCallback & cb, context & ctx) {{cb(true, ctx)} -> std::same_as<bool>;}
- system::result<void> set_verify_callback(VerifyCallback vc)
- {
- system::error_code ec;
- stream_socket_.set_verify_callback(std::move(vc), ec);
- return ec ? ec : system::result<void>();
- }
- BOOST_COBALT_SSL_DECL
- system::result<void> set_verify_depth(int depth);
- BOOST_COBALT_SSL_DECL
- system::result<void> set_verify_mode(verify depth);
- private:
- struct BOOST_COBALT_SSL_DECL handshake_op_ final : cobalt::op<system::error_code>
- {
- void ready(handler<system::error_code> h) final;
- void initiate(completion_handler<system::error_code> h) final;
- handshake_op_(handshake_type type, bool upgraded, asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> & stream_socket)
- : type_(type), upgraded_(upgraded), stream_socket_(stream_socket) {}
- ~handshake_op_() = default;
- private:
- handshake_type type_;
- bool upgraded_;
- asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> &stream_socket_;
- };
- struct BOOST_COBALT_SSL_DECL handshake_buffer_op_ final : cobalt::op<system::error_code, std::size_t>
- {
- void ready(handler<system::error_code, std::size_t> h) final;
- void initiate(completion_handler<system::error_code, std::size_t> h) final;
- handshake_buffer_op_(handshake_type type, bool upgraded, const_buffer_sequence buffer_,
- asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> & stream_socket)
- : type_(type), upgraded_(upgraded), buffer_(buffer_), stream_socket_(stream_socket) {}
- ~handshake_buffer_op_() = default;
- private:
- handshake_type type_;
- bool upgraded_;
- const_buffer_sequence buffer_;
- asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> &stream_socket_;
- };
- struct BOOST_COBALT_SSL_DECL shutdown_op_ final : cobalt::op<system::error_code>
- {
- void ready(handler<system::error_code> h) final;
- void initiate(completion_handler<system::error_code> h) final;
- shutdown_op_(bool upgraded, asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> & stream_socket)
- : upgraded_(upgraded), stream_socket_(stream_socket) {}
- ~shutdown_op_() = default;
- private:
- bool upgraded_;
- asio::ssl::stream<asio::basic_stream_socket<protocol_type, executor>> &stream_socket_;
- };
- public:
- [[nodiscard]] auto handshake(handshake_type type) { return handshake_op_{type, upgraded_, stream_socket_}; }
- [[nodiscard]] auto handshake(handshake_type type, const_buffer_sequence buffer)
- {
- return handshake_buffer_op_{type, upgraded_, buffer, stream_socket_};
- }
- [[nodiscard]] auto shutdown() { return shutdown_op_{upgraded_, stream_socket_}; }
- private:
- BOOST_COBALT_SSL_DECL void adopt_endpoint_(endpoint & ep) override;
- BOOST_COBALT_SSL_DECL static void initiate_read_some_ (void *, mutable_buffer_sequence, cobalt::completion_handler<system::error_code, std::size_t>);
- BOOST_COBALT_SSL_DECL static void initiate_write_some_(void *, const_buffer_sequence, cobalt::completion_handler<system::error_code, std::size_t>);
- bool upgraded_ = false;
- };
- }
- #endif //BOOST_COBALT_IO_SSL_HPP
|