]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/asio/ssl/detail/engine.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / asio / ssl / detail / engine.hpp
1 //
2 // ssl/detail/engine.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2017 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
11 #ifndef BOOST_ASIO_SSL_DETAIL_ENGINE_HPP
12 #define BOOST_ASIO_SSL_DETAIL_ENGINE_HPP
13
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17
18 #include <boost/asio/detail/config.hpp>
19
20 #include <boost/asio/buffer.hpp>
21 #include <boost/asio/detail/static_mutex.hpp>
22 #include <boost/asio/ssl/detail/openssl_types.hpp>
23 #include <boost/asio/ssl/detail/verify_callback.hpp>
24 #include <boost/asio/ssl/stream_base.hpp>
25 #include <boost/asio/ssl/verify_mode.hpp>
26
27 #include <boost/asio/detail/push_options.hpp>
28
29 namespace boost {
30 namespace asio {
31 namespace ssl {
32 namespace detail {
33
34 class engine
35 {
36 public:
37 enum want
38 {
39 // Returned by functions to indicate that the engine wants input. The input
40 // buffer should be updated to point to the data. The engine then needs to
41 // be called again to retry the operation.
42 want_input_and_retry = -2,
43
44 // Returned by functions to indicate that the engine wants to write output.
45 // The output buffer points to the data to be written. The engine then
46 // needs to be called again to retry the operation.
47 want_output_and_retry = -1,
48
49 // Returned by functions to indicate that the engine doesn't need input or
50 // output.
51 want_nothing = 0,
52
53 // Returned by functions to indicate that the engine wants to write output.
54 // The output buffer points to the data to be written. After that the
55 // operation is complete, and the engine does not need to be called again.
56 want_output = 1
57 };
58
59 // Construct a new engine for the specified context.
60 BOOST_ASIO_DECL explicit engine(SSL_CTX* context);
61
62 // Destructor.
63 BOOST_ASIO_DECL ~engine();
64
65 // Get the underlying implementation in the native type.
66 BOOST_ASIO_DECL SSL* native_handle();
67
68 // Set the peer verification mode.
69 BOOST_ASIO_DECL boost::system::error_code set_verify_mode(
70 verify_mode v, boost::system::error_code& ec);
71
72 // Set the peer verification depth.
73 BOOST_ASIO_DECL boost::system::error_code set_verify_depth(
74 int depth, boost::system::error_code& ec);
75
76 // Set a peer certificate verification callback.
77 BOOST_ASIO_DECL boost::system::error_code set_verify_callback(
78 verify_callback_base* callback, boost::system::error_code& ec);
79
80 // Perform an SSL handshake using either SSL_connect (client-side) or
81 // SSL_accept (server-side).
82 BOOST_ASIO_DECL want handshake(
83 stream_base::handshake_type type, boost::system::error_code& ec);
84
85 // Perform a graceful shutdown of the SSL session.
86 BOOST_ASIO_DECL want shutdown(boost::system::error_code& ec);
87
88 // Write bytes to the SSL session.
89 BOOST_ASIO_DECL want write(const boost::asio::const_buffer& data,
90 boost::system::error_code& ec, std::size_t& bytes_transferred);
91
92 // Read bytes from the SSL session.
93 BOOST_ASIO_DECL want read(const boost::asio::mutable_buffer& data,
94 boost::system::error_code& ec, std::size_t& bytes_transferred);
95
96 // Get output data to be written to the transport.
97 BOOST_ASIO_DECL boost::asio::mutable_buffer get_output(
98 const boost::asio::mutable_buffer& data);
99
100 // Put input data that was read from the transport.
101 BOOST_ASIO_DECL boost::asio::const_buffer put_input(
102 const boost::asio::const_buffer& data);
103
104 // Map an error::eof code returned by the underlying transport according to
105 // the type and state of the SSL session. Returns a const reference to the
106 // error code object, suitable for passing to a completion handler.
107 BOOST_ASIO_DECL const boost::system::error_code& map_error_code(
108 boost::system::error_code& ec) const;
109
110 private:
111 // Disallow copying and assignment.
112 engine(const engine&);
113 engine& operator=(const engine&);
114
115 // Callback used when the SSL implementation wants to verify a certificate.
116 BOOST_ASIO_DECL static int verify_callback_function(
117 int preverified, X509_STORE_CTX* ctx);
118
119 #if (OPENSSL_VERSION_NUMBER < 0x10000000L)
120 // The SSL_accept function may not be thread safe. This mutex is used to
121 // protect all calls to the SSL_accept function.
122 BOOST_ASIO_DECL static boost::asio::detail::static_mutex& accept_mutex();
123 #endif // (OPENSSL_VERSION_NUMBER < 0x10000000L)
124
125 // Perform one operation. Returns >= 0 on success or error, want_read if the
126 // operation needs more input, or want_write if it needs to write some output
127 // before the operation can complete.
128 BOOST_ASIO_DECL want perform(int (engine::* op)(void*, std::size_t),
129 void* data, std::size_t length, boost::system::error_code& ec,
130 std::size_t* bytes_transferred);
131
132 // Adapt the SSL_accept function to the signature needed for perform().
133 BOOST_ASIO_DECL int do_accept(void*, std::size_t);
134
135 // Adapt the SSL_connect function to the signature needed for perform().
136 BOOST_ASIO_DECL int do_connect(void*, std::size_t);
137
138 // Adapt the SSL_shutdown function to the signature needed for perform().
139 BOOST_ASIO_DECL int do_shutdown(void*, std::size_t);
140
141 // Adapt the SSL_read function to the signature needed for perform().
142 BOOST_ASIO_DECL int do_read(void* data, std::size_t length);
143
144 // Adapt the SSL_write function to the signature needed for perform().
145 BOOST_ASIO_DECL int do_write(void* data, std::size_t length);
146
147 SSL* ssl_;
148 BIO* ext_bio_;
149 };
150
151 } // namespace detail
152 } // namespace ssl
153 } // namespace asio
154 } // namespace boost
155
156 #include <boost/asio/detail/pop_options.hpp>
157
158 #if defined(BOOST_ASIO_HEADER_ONLY)
159 # include <boost/asio/ssl/detail/impl/engine.ipp>
160 #endif // defined(BOOST_ASIO_HEADER_ONLY)
161
162 #endif // BOOST_ASIO_SSL_DETAIL_ENGINE_HPP