2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 12:06:41 +02:00
|
|
|
|
2012-11-22 12:04:32 +01:00
|
|
|
#ifndef TLSSTREAM_H
|
|
|
|
#define TLSSTREAM_H
|
2012-04-24 14:02:15 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/socket.hpp"
|
2015-02-13 21:02:48 +01:00
|
|
|
#include "base/socketevents.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/stream.hpp"
|
|
|
|
#include "base/tlsutility.hpp"
|
2015-02-13 21:02:48 +01:00
|
|
|
#include "base/fifo.hpp"
|
2019-02-08 14:23:10 +01:00
|
|
|
#include <boost/asio/ssl/context.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-02-13 21:02:48 +01:00
|
|
|
enum TlsAction
|
|
|
|
{
|
|
|
|
TlsActionNone,
|
|
|
|
TlsActionRead,
|
|
|
|
TlsActionWrite,
|
2015-02-25 13:21:38 +01:00
|
|
|
TlsActionHandshake
|
2015-02-13 21:02:48 +01:00
|
|
|
};
|
|
|
|
|
2012-05-15 10:58:14 +02:00
|
|
|
/**
|
2012-11-22 12:04:32 +01:00
|
|
|
* A TLS stream.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
2012-05-15 10:58:14 +02:00
|
|
|
*/
|
2018-07-24 14:24:56 +02:00
|
|
|
class TlsStream final : public SocketEvents
|
2012-04-24 14:02:15 +02:00
|
|
|
{
|
2012-05-21 23:42:54 +02:00
|
|
|
public:
|
2014-11-07 12:32:25 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(TlsStream);
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2017-11-21 13:20:55 +01:00
|
|
|
TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, const std::shared_ptr<SSL_CTX>& sslContext = MakeSSLContext());
|
2019-02-08 14:23:10 +01:00
|
|
|
TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, const std::shared_ptr<boost::asio::ssl::context>& sslContext);
|
2018-01-04 05:12:56 +01:00
|
|
|
~TlsStream() override;
|
2012-06-24 02:56:48 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Socket::Ptr GetSocket() const;
|
2016-07-25 09:43:13 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
std::shared_ptr<X509> GetClientCertificate() const;
|
|
|
|
std::shared_ptr<X509> GetPeerCertificate() const;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Handshake();
|
2013-04-04 16:08:02 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
void Close() override;
|
|
|
|
void Shutdown() override;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
size_t Peek(void *buffer, size_t count, bool allow_partial = false) override;
|
|
|
|
size_t Read(void *buffer, size_t count, bool allow_partial = false) override;
|
|
|
|
void Write(const void *buffer, size_t count) override;
|
2012-11-22 12:04:32 +01:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
bool IsEof() const override;
|
2013-08-27 12:21:41 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
bool SupportsWaiting() const override;
|
|
|
|
bool IsDataAvailable() const override;
|
2015-02-14 16:34:36 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool IsVerifyOK() const;
|
|
|
|
String GetVerifyError() const;
|
2014-10-16 09:01:18 +02:00
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
private:
|
2017-11-21 13:20:55 +01:00
|
|
|
std::shared_ptr<SSL> m_SSL;
|
2014-09-10 08:51:25 +02:00
|
|
|
bool m_Eof;
|
2015-02-13 21:02:48 +01:00
|
|
|
mutable boost::mutex m_Mutex;
|
|
|
|
mutable boost::condition_variable m_CV;
|
|
|
|
bool m_HandshakeOK;
|
2014-10-16 09:01:18 +02:00
|
|
|
bool m_VerifyOK;
|
2016-07-21 22:00:32 +02:00
|
|
|
String m_VerifyError;
|
2015-02-13 21:02:48 +01:00
|
|
|
int m_ErrorCode;
|
|
|
|
bool m_ErrorOccurred;
|
2012-04-24 14:02:15 +02:00
|
|
|
|
2014-04-23 13:42:59 +02:00
|
|
|
Socket::Ptr m_Socket;
|
2014-05-03 20:02:22 +02:00
|
|
|
ConnectionRole m_Role;
|
2012-04-27 14:15:22 +02:00
|
|
|
|
2015-02-13 21:02:48 +01:00
|
|
|
FIFO::Ptr m_SendQ;
|
|
|
|
FIFO::Ptr m_RecvQ;
|
|
|
|
|
|
|
|
TlsAction m_CurrentAction;
|
|
|
|
bool m_Retry;
|
2015-06-22 11:11:21 +02:00
|
|
|
bool m_Shutdown;
|
2015-02-13 21:02:48 +01:00
|
|
|
|
2012-04-24 14:54:05 +02:00
|
|
|
static int m_SSLIndex;
|
|
|
|
static bool m_SSLIndexInitialized;
|
|
|
|
|
2019-02-08 14:23:10 +01:00
|
|
|
TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, SSL_CTX* sslContext);
|
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnEvent(int revents) override;
|
2015-02-13 21:02:48 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void HandleError() const;
|
2014-12-19 12:07:06 +01:00
|
|
|
|
2014-10-16 09:01:18 +02:00
|
|
|
static int ValidateCertificate(int preverify_ok, X509_STORE_CTX *ctx);
|
2012-11-23 11:04:08 +01:00
|
|
|
static void NullCertificateDeleter(X509 *certificate);
|
2016-01-19 16:24:12 +01:00
|
|
|
|
|
|
|
void CloseInternal(bool inDestructor);
|
2012-11-22 12:04:32 +01:00
|
|
|
};
|
2012-04-24 14:02:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-11-22 12:04:32 +01:00
|
|
|
#endif /* TLSSTREAM_H */
|