1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
|
/*
* TLS ASIO Stream Wrapper
* (C) 2018-2019 Jack Lloyd
* 2018-2019 Hannes Rantzsch, Tim Oesterreich, Rene Meusel
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_ASIO_STREAM_H_
#define BOTAN_ASIO_STREAM_H_
#if defined(BOTAN_HAS_TLS) && defined(BOTAN_HAS_BOOST_ASIO)
#include <boost/version.hpp>
#if BOOST_VERSION > 106600
#include <botan/internal/asio_async_handshake_op.h>
#include <botan/internal/asio_async_read_op.h>
#include <botan/internal/asio_async_write_op.h>
#include <botan/internal/asio_convert_exceptions.h>
#include <botan/internal/asio_includes.h>
#include <botan/internal/asio_stream_base.h>
#include <botan/internal/asio_stream_core.h>
#include <algorithm>
#include <memory>
#include <thread>
#include <type_traits>
namespace boost {
namespace asio {
namespace ssl {
class context;
}
}
}
namespace Botan {
namespace TLS {
/**
* boost::asio compatible SSL/TLS stream based on TLS::Client or TLS::Server.
*/
template <class StreamLayer, class Channel>
class Stream : public StreamBase<Channel>
{
public:
using next_layer_type = typename std::remove_reference<StreamLayer>::type;
using lowest_layer_type = typename next_layer_type::lowest_layer_type;
using executor_type = typename next_layer_type::executor_type;
using native_handle_type = typename std::add_pointer<Channel>::type;
using StreamBase<Channel>::validate_handshake_type;
public:
template <typename... Args>
explicit Stream(StreamLayer&& nextLayer, Args&& ... args)
: StreamBase<Channel>(std::forward<Args>(args)...),
m_nextLayer(std::forward<StreamLayer>(nextLayer)) {}
Stream(StreamLayer&& nextLayer, boost::asio::ssl::context&)
: StreamBase<Channel>(Botan::TLS::Session_Manager_Noop(), Botan::Credentials_Manager()),
m_nextLayer(std::forward<StreamLayer>(nextLayer))
{
// Configuring a TLS stream via asio::ssl::context is not supported.
// The corresponding configuration objects for Botan are:
// * TLS::Session_Manager
// * Credentials_Manager
// * TLS::Policy
// * TLS::Server_Information
// It would be nice to have a masquarading wrapper that exposes an API
// compatible with asio::ssl::context for convenient drop-in replacement.
// For now, base your TLS configurations on the above mentioned classes.
throw Not_Implemented("cannot handle an asio::ssl::context");
}
Stream(Stream&& other) = default;
Stream& operator=(Stream&& other) = default;
Stream(const Stream& other) = delete;
Stream& operator=(const Stream& other) = delete;
//
// -- -- accessor methods
//
executor_type get_executor() noexcept { return m_nextLayer.get_executor(); }
const next_layer_type& next_layer() const { return m_nextLayer; }
next_layer_type& next_layer() { return m_nextLayer; }
lowest_layer_type& lowest_layer() { return m_nextLayer.lowest_layer(); }
const lowest_layer_type& lowest_layer() const { return m_nextLayer.lowest_layer(); }
native_handle_type native_handle() { return &this->m_channel; }
//
// -- -- configuration and callback setters
//
template<
typename VerifyCallback>
void set_verify_callback(VerifyCallback callback)
{
BOTAN_UNUSED(callback);
throw Not_Implemented("set_verify_callback is not implemented");
}
template<
typename VerifyCallback>
void set_verify_callback(VerifyCallback callback,
boost::system::error_code& ec)
{
BOTAN_UNUSED(callback);
ec = Botan::TLS::error::not_implemented;
}
void set_verify_depth(int depth)
{
BOTAN_UNUSED(depth);
throw Not_Implemented("set_verify_depth is not implemented");
}
void set_verify_depth(int depth,
boost::system::error_code& ec)
{
BOTAN_UNUSED(depth);
ec = Botan::TLS::error::not_implemented;
}
template <typename verify_mode>
void set_verify_mode(verify_mode v)
{
BOTAN_UNUSED(v);
throw Not_Implemented("set_verify_mode is not implemented");
}
template <typename verify_mode>
void set_verify_mode(verify_mode v,
boost::system::error_code& ec)
{
BOTAN_UNUSED(v);
ec = Botan::TLS::error::not_implemented;
}
//
// -- -- handshake methods
//
void handshake()
{
boost::system::error_code ec;
handshake(ec);
boost::asio::detail::throw_error(ec, "handshake");
}
void handshake(boost::system::error_code& ec)
{
while(!native_handle()->is_active())
{
writePendingTlsData(ec);
if(ec)
{ return; }
boost::asio::const_buffer read_buffer
{
this->m_core.input_buffer.data(),
m_nextLayer.read_some(this->m_core.input_buffer, ec)
};
if(ec)
{ return; }
try
{
native_handle()->received_data(static_cast<const uint8_t*>(read_buffer.data()),
read_buffer.size());
}
catch(const std::exception& ex)
{
ec = Botan::TLS::convertException();
return;
}
writePendingTlsData(ec);
}
}
template <typename HandshakeHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(HandshakeHandler,
void(boost::system::error_code))
async_handshake(HandshakeHandler&& handler)
{
BOOST_ASIO_HANDSHAKE_HANDLER_CHECK(HandshakeHandler, handler) type_check;
boost::asio::async_completion<HandshakeHandler, void(boost::system::error_code)> init(handler);
AsyncHandshakeOperation<typename std::decay<HandshakeHandler>::type, Stream>
op{std::move(init.completion_handler), *this, this->m_core};
op({}, 0, false);
return init.result.get();
}
//
// -- -- asio::ssl::stream compatibility methods
//
// The OpenSSL-based stream contains an operation flag that tells
// the stream to either impersonate a TLS server or client. This
// implementation defines those modes at compile time (via template
// specialization of the StreamBase class) and merely checks the
// flag's consistency before performing the respective handshakes.
//
void handshake(handshake_type type)
{
validate_handshake_type(type);
handshake();
}
void handshake(handshake_type type, boost::system::error_code& ec)
{
if(validate_handshake_type(type, ec))
{ handshake(ec); }
}
template <typename HandshakeHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(HandshakeHandler,
void(boost::system::error_code))
async_handshake(handshake_type type, HandshakeHandler&& handler)
{
validate_handshake_type(type);
return async_handshake(std::forward<HandshakeHandler>(handler));
}
template<typename ConstBufferSequence>
void handshake(handshake_type type, const ConstBufferSequence& buffers)
{
BOTAN_UNUSED(buffers);
validate_handshake_type(type);
throw Not_Implemented("buffered handshake is not implemented");
}
template<typename ConstBufferSequence>
void handshake(handshake_type type,
const ConstBufferSequence& buffers,
boost::system::error_code& ec)
{
BOTAN_UNUSED(buffers);
if(validate_handshake_type(type, ec))
{ ec = Botan::TLS::error::not_implemented; }
}
template <typename ConstBufferSequence, typename BufferedHandshakeHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(BufferedHandshakeHandler,
void(boost::system::error_code, std::size_t))
async_handshake(handshake_type type, const ConstBufferSequence& buffers,
BufferedHandshakeHandler&& handler)
{
BOTAN_UNUSED(buffers, handler);
BOOST_ASIO_HANDSHAKE_HANDLER_CHECK(BufferedHandshakeHandler, handler) type_check;
validate_handshake_type(type);
throw Not_Implemented("buffered async handshake is not implemented");
}
//
// -- -- shutdown methods
//
void shutdown(boost::system::error_code& ec)
{
try
{
native_handle()->close();
}
catch(const std::exception& ex)
{
ec = Botan::TLS::convertException();
return;
}
writePendingTlsData(ec);
}
void shutdown()
{
boost::system::error_code ec;
shutdown(ec);
boost::asio::detail::throw_error(ec, "shutdown");
}
template <typename ShutdownHandler>
void async_shutdown(ShutdownHandler&& handler)
{
BOOST_ASIO_HANDSHAKE_HANDLER_CHECK(ShutdownHandler, handler) type_check;
BOTAN_UNUSED(handler);
throw Not_Implemented("async shutdown is not implemented");
}
//
// -- -- I/O methods
//
template <typename MutableBufferSequence>
std::size_t read_some(const MutableBufferSequence& buffers,
boost::system::error_code& ec)
{
if(this->m_core.hasReceivedData())
{ return this->m_core.copyReceivedData(buffers); }
boost::asio::const_buffer read_buffer =
{
this->m_core.input_buffer.data(),
m_nextLayer.read_some(this->m_core.input_buffer, ec)
};
if(ec)
{ return 0; }
try
{
native_handle()->received_data(static_cast<const uint8_t*>(read_buffer.data()),
read_buffer.size());
}
catch(const std::exception& ex)
{
ec = Botan::TLS::convertException();
return 0;
}
return this->m_core.copyReceivedData(buffers);
}
template <typename MutableBufferSequence>
std::size_t read_some(const MutableBufferSequence& buffers)
{
boost::system::error_code ec;
auto const n = read_some(buffers, ec);
boost::asio::detail::throw_error(ec, "read_some");
return n;
}
template <typename ConstBufferSequence>
std::size_t write_some(const ConstBufferSequence& buffers,
boost::system::error_code& ec)
{
std::size_t sent = 0;
try
{
for(auto it = boost::asio::buffer_sequence_begin(buffers);
sent < MAX_PLAINTEXT_SIZE && it != boost::asio::buffer_sequence_end(buffers);
it++)
{
const std::size_t to_send =
std::min<std::size_t>(MAX_PLAINTEXT_SIZE - sent, boost::asio::buffer_size(*it));
native_handle()->send(static_cast<const uint8_t*>(it->data()), to_send);
sent += to_send;
}
}
catch(const std::exception& ex)
{
ec = Botan::TLS::convertException();
return 0;
}
writePendingTlsData(ec);
if(ec)
{ return 0; }
return sent;
}
template <typename ConstBufferSequence>
std::size_t write_some(const ConstBufferSequence& buffers)
{
boost::system::error_code ec;
auto const n = write_some(buffers, ec);
boost::asio::detail::throw_error(ec, "write_some");
return n;
}
template <typename ConstBufferSequence, typename WriteHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
void(boost::system::error_code, std::size_t))
async_write_some(const ConstBufferSequence& buffers, WriteHandler&& handler)
{
BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
boost::asio::async_completion<WriteHandler, void(boost::system::error_code, std::size_t)> init(handler);
std::size_t sent = 0;
try
{
// NOTE: This is not asynchronous: it encrypts the data synchronously.
// Only writing on the socket is asynchronous.
for(auto it = boost::asio::buffer_sequence_begin(buffers);
sent < MAX_PLAINTEXT_SIZE && it != boost::asio::buffer_sequence_end(buffers);
it++)
{
const std::size_t to_send =
std::min<std::size_t>(MAX_PLAINTEXT_SIZE - sent, boost::asio::buffer_size(*it));
native_handle()->send(static_cast<const uint8_t*>(it->data()), to_send);
sent += to_send;
}
}
catch(const std::exception&)
{
init.completion_handler(Botan::TLS::convertException(), 0);
return init.result.get();
}
Botan::TLS::AsyncWriteOperation<typename std::decay<WriteHandler>::type, Stream>
op{std::move(init.completion_handler),
*this,
this->m_core,
sent};
boost::asio::async_write(m_nextLayer, this->m_core.sendBuffer(), std::move(op));
return init.result.get();
}
template <typename MutableBufferSequence, typename ReadHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
void(boost::system::error_code, std::size_t))
async_read_some(const MutableBufferSequence& buffers, ReadHandler&& handler)
{
BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
boost::asio::async_completion<ReadHandler, void(boost::system::error_code, std::size_t)> init(handler);
AsyncReadOperation<typename std::decay<ReadHandler>::type, Stream, MutableBufferSequence>
op{std::move(init.completion_handler),
*this,
this->m_core,
buffers};
op({}, 0, false);
return init.result.get();
}
protected:
size_t writePendingTlsData(boost::system::error_code& ec)
{
auto writtenBytes = boost::asio::write(m_nextLayer, this->m_core.sendBuffer(), ec);
this->m_core.consumeSendBuffer(writtenBytes);
return writtenBytes;
}
StreamLayer m_nextLayer;
};
} // TLS
} // namespace Botan
#endif // BOOST_VERSION
#endif // BOTAN_HAS_TLS && BOTAN_HAS_BOOST_ASIO
#endif // BOTAN_ASIO_STREAM_H_
|