mirror of https://github.com/Icinga/icinga2.git
Quality: Purge old TlsStream functionality
This commit is contained in:
parent
e606d14705
commit
c7a2fc556c
|
@ -1,7 +1,7 @@
|
|||
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
||||
|
||||
#include "base/application.hpp"
|
||||
#include "base/tlsstream.hpp"
|
||||
#include "base/application.hpp"
|
||||
#include "base/utility.hpp"
|
||||
#include "base/exception.hpp"
|
||||
#include "base/logger.hpp"
|
||||
|
@ -16,446 +16,8 @@
|
|||
#include <openssl/x509.h>
|
||||
#include <sstream>
|
||||
|
||||
#ifndef _WIN32
|
||||
# include <poll.h>
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#define TLS_TIMEOUT_SECONDS 10
|
||||
|
||||
using namespace icinga;
|
||||
|
||||
int TlsStream::m_SSLIndex;
|
||||
bool TlsStream::m_SSLIndexInitialized = false;
|
||||
|
||||
/**
|
||||
* Constructor for the TlsStream class.
|
||||
*
|
||||
* @param role The role of the client.
|
||||
* @param sslContext The SSL context for the client.
|
||||
*/
|
||||
TlsStream::TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, const std::shared_ptr<SSL_CTX>& sslContext)
|
||||
: TlsStream(socket, hostname, role, sslContext.get())
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor for the TlsStream class.
|
||||
*
|
||||
* @param role The role of the client.
|
||||
* @param sslContext The SSL context for the client.
|
||||
*/
|
||||
TlsStream::TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, const std::shared_ptr<boost::asio::ssl::context>& sslContext)
|
||||
: TlsStream(socket, hostname, role, sslContext->native_handle())
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor for the TlsStream class.
|
||||
*
|
||||
* @param role The role of the client.
|
||||
* @param sslContext The SSL context for the client.
|
||||
*/
|
||||
TlsStream::TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, SSL_CTX* sslContext)
|
||||
: SocketEvents(socket), m_Eof(false), m_HandshakeOK(false), m_VerifyOK(true), m_ErrorCode(0),
|
||||
m_ErrorOccurred(false), m_Socket(socket), m_Role(role), m_SendQ(new FIFO()), m_RecvQ(new FIFO()),
|
||||
m_CurrentAction(TlsActionNone), m_Retry(false), m_Shutdown(false)
|
||||
{
|
||||
std::ostringstream msgbuf;
|
||||
char errbuf[256];
|
||||
|
||||
m_SSL = std::shared_ptr<SSL>(SSL_new(sslContext), SSL_free);
|
||||
|
||||
if (!m_SSL) {
|
||||
msgbuf << "SSL_new() failed with code " << ERR_peek_error() << ", \"" << ERR_error_string(ERR_peek_error(), errbuf) << "\"";
|
||||
Log(LogCritical, "TlsStream", msgbuf.str());
|
||||
|
||||
BOOST_THROW_EXCEPTION(openssl_error()
|
||||
<< boost::errinfo_api_function("SSL_new")
|
||||
<< errinfo_openssl_error(ERR_peek_error()));
|
||||
}
|
||||
|
||||
if (!m_SSLIndexInitialized) {
|
||||
m_SSLIndex = SSL_get_ex_new_index(0, const_cast<char *>("TlsStream"), nullptr, nullptr, nullptr);
|
||||
m_SSLIndexInitialized = true;
|
||||
}
|
||||
|
||||
SSL_set_ex_data(m_SSL.get(), m_SSLIndex, this);
|
||||
|
||||
SSL_set_verify(m_SSL.get(), SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, &TlsStream::ValidateCertificate);
|
||||
|
||||
socket->MakeNonBlocking();
|
||||
|
||||
SSL_set_fd(m_SSL.get(), socket->GetFD());
|
||||
|
||||
if (m_Role == RoleServer)
|
||||
SSL_set_accept_state(m_SSL.get());
|
||||
else {
|
||||
#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
|
||||
if (!hostname.IsEmpty())
|
||||
SSL_set_tlsext_host_name(m_SSL.get(), hostname.CStr());
|
||||
#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
|
||||
|
||||
SSL_set_connect_state(m_SSL.get());
|
||||
}
|
||||
}
|
||||
|
||||
TlsStream::~TlsStream()
|
||||
{
|
||||
CloseInternal(true);
|
||||
}
|
||||
|
||||
int TlsStream::ValidateCertificate(int preverify_ok, X509_STORE_CTX *ctx)
|
||||
{
|
||||
auto *ssl = static_cast<SSL *>(X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()));
|
||||
auto *stream = static_cast<TlsStream *>(SSL_get_ex_data(ssl, m_SSLIndex));
|
||||
|
||||
if (!preverify_ok) {
|
||||
stream->m_VerifyOK = false;
|
||||
|
||||
std::ostringstream msgbuf;
|
||||
int err = X509_STORE_CTX_get_error(ctx);
|
||||
msgbuf << "code " << err << ": " << X509_verify_cert_error_string(err);
|
||||
stream->m_VerifyError = msgbuf.str();
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool TlsStream::IsVerifyOK() const
|
||||
{
|
||||
return m_VerifyOK;
|
||||
}
|
||||
|
||||
String TlsStream::GetVerifyError() const
|
||||
{
|
||||
return m_VerifyError;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the X509 certficate for this client.
|
||||
*
|
||||
* @returns The X509 certificate.
|
||||
*/
|
||||
std::shared_ptr<X509> TlsStream::GetClientCertificate() const
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
return std::shared_ptr<X509>(SSL_get_certificate(m_SSL.get()), &Utility::NullDeleter);
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the X509 certficate for the peer.
|
||||
*
|
||||
* @returns The X509 certificate.
|
||||
*/
|
||||
std::shared_ptr<X509> TlsStream::GetPeerCertificate() const
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
return std::shared_ptr<X509>(SSL_get_peer_certificate(m_SSL.get()), X509_free);
|
||||
}
|
||||
|
||||
void TlsStream::OnEvent(int revents)
|
||||
{
|
||||
int rc;
|
||||
size_t count;
|
||||
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
if (!m_SSL)
|
||||
return;
|
||||
|
||||
char buffer[64 * 1024];
|
||||
|
||||
if (m_CurrentAction == TlsActionNone) {
|
||||
if (revents & (POLLIN | POLLERR | POLLHUP))
|
||||
m_CurrentAction = TlsActionRead;
|
||||
else if (m_SendQ->GetAvailableBytes() > 0 && (revents & POLLOUT))
|
||||
m_CurrentAction = TlsActionWrite;
|
||||
else {
|
||||
ChangeEvents(POLLIN);
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
bool success = false;
|
||||
|
||||
/* Clear error queue for this thread before using SSL_{read,write,do_handshake}.
|
||||
* Otherwise SSL_*_error() does not work reliably.
|
||||
*/
|
||||
ERR_clear_error();
|
||||
|
||||
size_t readTotal = 0;
|
||||
|
||||
switch (m_CurrentAction) {
|
||||
case TlsActionRead:
|
||||
do {
|
||||
rc = SSL_read(m_SSL.get(), buffer, sizeof(buffer));
|
||||
|
||||
if (rc > 0) {
|
||||
m_RecvQ->Write(buffer, rc);
|
||||
success = true;
|
||||
|
||||
readTotal += rc;
|
||||
}
|
||||
|
||||
#ifdef I2_DEBUG /* I2_DEBUG */
|
||||
Log(LogDebug, "TlsStream")
|
||||
<< "Read bytes: " << rc << " Total read bytes: " << readTotal;
|
||||
#endif /* I2_DEBUG */
|
||||
/* Limit read size. We cannot do this check inside the while loop
|
||||
* since below should solely check whether OpenSSL has more data
|
||||
* or not. */
|
||||
if (readTotal >= 64 * 1024) {
|
||||
#ifdef I2_DEBUG /* I2_DEBUG */
|
||||
Log(LogWarning, "TlsStream")
|
||||
<< "Maximum read bytes exceeded: " << readTotal;
|
||||
#endif /* I2_DEBUG */
|
||||
break;
|
||||
}
|
||||
|
||||
/* Use OpenSSL's state machine here to determine whether we need
|
||||
* to read more data. SSL_has_pending() is available with 1.1.0.
|
||||
*/
|
||||
} while (SSL_pending(m_SSL.get()));
|
||||
|
||||
if (success)
|
||||
m_CV.notify_all();
|
||||
|
||||
break;
|
||||
case TlsActionWrite:
|
||||
count = m_SendQ->Peek(buffer, sizeof(buffer), true);
|
||||
|
||||
rc = SSL_write(m_SSL.get(), buffer, count);
|
||||
|
||||
if (rc > 0) {
|
||||
m_SendQ->Read(nullptr, rc, true);
|
||||
success = true;
|
||||
}
|
||||
|
||||
break;
|
||||
case TlsActionHandshake:
|
||||
rc = SSL_do_handshake(m_SSL.get());
|
||||
|
||||
if (rc > 0) {
|
||||
success = true;
|
||||
m_HandshakeOK = true;
|
||||
m_CV.notify_all();
|
||||
}
|
||||
|
||||
break;
|
||||
default:
|
||||
VERIFY(!"Invalid TlsAction");
|
||||
}
|
||||
|
||||
if (rc <= 0) {
|
||||
int err = SSL_get_error(m_SSL.get(), rc);
|
||||
|
||||
switch (err) {
|
||||
case SSL_ERROR_WANT_READ:
|
||||
m_Retry = true;
|
||||
ChangeEvents(POLLIN);
|
||||
|
||||
break;
|
||||
case SSL_ERROR_WANT_WRITE:
|
||||
m_Retry = true;
|
||||
ChangeEvents(POLLOUT);
|
||||
|
||||
break;
|
||||
case SSL_ERROR_ZERO_RETURN:
|
||||
lock.unlock();
|
||||
|
||||
Close();
|
||||
|
||||
return;
|
||||
default:
|
||||
m_ErrorCode = ERR_peek_error();
|
||||
m_ErrorOccurred = true;
|
||||
|
||||
if (m_ErrorCode != 0) {
|
||||
char errbuf[256];
|
||||
Log(LogWarning, "TlsStream")
|
||||
<< "OpenSSL error: " << ERR_error_string(m_ErrorCode, errbuf);
|
||||
} else {
|
||||
Log(LogWarning, "TlsStream", "TLS stream was disconnected.");
|
||||
}
|
||||
|
||||
lock.unlock();
|
||||
|
||||
Close();
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (success) {
|
||||
m_CurrentAction = TlsActionNone;
|
||||
|
||||
if (!m_Eof) {
|
||||
if (m_SendQ->GetAvailableBytes() > 0)
|
||||
ChangeEvents(POLLIN|POLLOUT);
|
||||
else
|
||||
ChangeEvents(POLLIN);
|
||||
}
|
||||
|
||||
lock.unlock();
|
||||
|
||||
while (m_RecvQ->IsDataAvailable() && IsHandlingEvents())
|
||||
SignalDataAvailable();
|
||||
}
|
||||
|
||||
if (m_Shutdown && !m_SendQ->IsDataAvailable()) {
|
||||
if (!success)
|
||||
lock.unlock();
|
||||
|
||||
Close();
|
||||
}
|
||||
}
|
||||
|
||||
void TlsStream::HandleError() const
|
||||
{
|
||||
if (m_ErrorOccurred) {
|
||||
BOOST_THROW_EXCEPTION(openssl_error()
|
||||
<< boost::errinfo_api_function("TlsStream::OnEvent")
|
||||
<< errinfo_openssl_error(m_ErrorCode));
|
||||
}
|
||||
}
|
||||
|
||||
void TlsStream::Handshake()
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
m_CurrentAction = TlsActionHandshake;
|
||||
ChangeEvents(POLLOUT);
|
||||
|
||||
boost::system_time const timeout = boost::get_system_time() + boost::posix_time::milliseconds(long(Configuration::TlsHandshakeTimeout * 1000));
|
||||
|
||||
while (!m_HandshakeOK && !m_ErrorOccurred && !m_Eof && timeout > boost::get_system_time())
|
||||
m_CV.timed_wait(lock, timeout);
|
||||
|
||||
if (timeout < boost::get_system_time())
|
||||
BOOST_THROW_EXCEPTION(std::runtime_error("Timeout was reached (" + Convert::ToString(Configuration::TlsHandshakeTimeout) + ") during TLS handshake."));
|
||||
|
||||
if (m_Eof)
|
||||
BOOST_THROW_EXCEPTION(std::runtime_error("Socket was closed during TLS handshake."));
|
||||
|
||||
HandleError();
|
||||
}
|
||||
|
||||
/**
|
||||
* Processes data for the stream.
|
||||
*/
|
||||
size_t TlsStream::Peek(void *buffer, size_t count, bool allow_partial)
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
if (!allow_partial)
|
||||
while (m_RecvQ->GetAvailableBytes() < count && !m_ErrorOccurred && !m_Eof)
|
||||
m_CV.wait(lock);
|
||||
|
||||
HandleError();
|
||||
|
||||
return m_RecvQ->Peek(buffer, count, true);
|
||||
}
|
||||
|
||||
size_t TlsStream::Read(void *buffer, size_t count, bool allow_partial)
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
if (!allow_partial)
|
||||
while (m_RecvQ->GetAvailableBytes() < count && !m_ErrorOccurred && !m_Eof)
|
||||
m_CV.wait(lock);
|
||||
|
||||
HandleError();
|
||||
|
||||
return m_RecvQ->Read(buffer, count, true);
|
||||
}
|
||||
|
||||
void TlsStream::Write(const void *buffer, size_t count)
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
m_SendQ->Write(buffer, count);
|
||||
|
||||
ChangeEvents(POLLIN|POLLOUT);
|
||||
}
|
||||
|
||||
void TlsStream::Shutdown()
|
||||
{
|
||||
m_Shutdown = true;
|
||||
ChangeEvents(POLLOUT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Closes the stream.
|
||||
*/
|
||||
void TlsStream::Close()
|
||||
{
|
||||
CloseInternal(false);
|
||||
}
|
||||
|
||||
void TlsStream::CloseInternal(bool inDestructor)
|
||||
{
|
||||
if (m_Eof)
|
||||
return;
|
||||
|
||||
m_Eof = true;
|
||||
|
||||
if (!inDestructor)
|
||||
SignalDataAvailable();
|
||||
|
||||
SocketEvents::Unregister();
|
||||
|
||||
Stream::Close();
|
||||
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
if (!m_SSL)
|
||||
return;
|
||||
|
||||
/* https://www.openssl.org/docs/manmaster/man3/SSL_shutdown.html
|
||||
*
|
||||
* It is recommended to do a bidirectional shutdown by checking
|
||||
* the return value of SSL_shutdown() and call it again until
|
||||
* it returns 1 or a fatal error. A maximum of 2x pending + 2x data
|
||||
* is recommended.
|
||||
*/
|
||||
int rc = 0;
|
||||
|
||||
for (int i = 0; i < 4; i++) {
|
||||
if ((rc = SSL_shutdown(m_SSL.get())))
|
||||
break;
|
||||
}
|
||||
|
||||
m_SSL.reset();
|
||||
|
||||
m_Socket->Close();
|
||||
m_Socket.reset();
|
||||
|
||||
m_CV.notify_all();
|
||||
}
|
||||
|
||||
bool TlsStream::IsEof() const
|
||||
{
|
||||
return m_Eof && m_RecvQ->GetAvailableBytes() < 1u;
|
||||
}
|
||||
|
||||
bool TlsStream::SupportsWaiting() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TlsStream::IsDataAvailable() const
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
|
||||
return m_RecvQ->GetAvailableBytes() > 0;
|
||||
}
|
||||
|
||||
Socket::Ptr TlsStream::GetSocket() const
|
||||
{
|
||||
return m_Socket;
|
||||
}
|
||||
|
||||
bool UnbufferedAsioTlsStream::IsVerifyOK() const
|
||||
{
|
||||
return m_VerifyOK;
|
||||
|
|
|
@ -20,86 +20,6 @@
|
|||
namespace icinga
|
||||
{
|
||||
|
||||
enum TlsAction
|
||||
{
|
||||
TlsActionNone,
|
||||
TlsActionRead,
|
||||
TlsActionWrite,
|
||||
TlsActionHandshake
|
||||
};
|
||||
|
||||
/**
|
||||
* A TLS stream.
|
||||
*
|
||||
* @ingroup base
|
||||
*/
|
||||
class TlsStream final : public SocketEvents
|
||||
{
|
||||
public:
|
||||
DECLARE_PTR_TYPEDEFS(TlsStream);
|
||||
|
||||
TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, const std::shared_ptr<SSL_CTX>& sslContext = MakeSSLContext());
|
||||
TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, const std::shared_ptr<boost::asio::ssl::context>& sslContext);
|
||||
~TlsStream() override;
|
||||
|
||||
Socket::Ptr GetSocket() const;
|
||||
|
||||
std::shared_ptr<X509> GetClientCertificate() const;
|
||||
std::shared_ptr<X509> GetPeerCertificate() const;
|
||||
|
||||
void Handshake();
|
||||
|
||||
void Close() override;
|
||||
void Shutdown() override;
|
||||
|
||||
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;
|
||||
|
||||
bool IsEof() const override;
|
||||
|
||||
bool SupportsWaiting() const override;
|
||||
bool IsDataAvailable() const override;
|
||||
|
||||
bool IsVerifyOK() const;
|
||||
String GetVerifyError() const;
|
||||
|
||||
private:
|
||||
std::shared_ptr<SSL> m_SSL;
|
||||
bool m_Eof;
|
||||
mutable boost::mutex m_Mutex;
|
||||
mutable boost::condition_variable m_CV;
|
||||
bool m_HandshakeOK;
|
||||
bool m_VerifyOK;
|
||||
String m_VerifyError;
|
||||
int m_ErrorCode;
|
||||
bool m_ErrorOccurred;
|
||||
|
||||
Socket::Ptr m_Socket;
|
||||
ConnectionRole m_Role;
|
||||
|
||||
FIFO::Ptr m_SendQ;
|
||||
FIFO::Ptr m_RecvQ;
|
||||
|
||||
TlsAction m_CurrentAction;
|
||||
bool m_Retry;
|
||||
bool m_Shutdown;
|
||||
|
||||
static int m_SSLIndex;
|
||||
static bool m_SSLIndexInitialized;
|
||||
|
||||
TlsStream(const Socket::Ptr& socket, const String& hostname, ConnectionRole role, SSL_CTX* sslContext);
|
||||
|
||||
void OnEvent(int revents) override;
|
||||
|
||||
void HandleError() const;
|
||||
|
||||
static int ValidateCertificate(int preverify_ok, X509_STORE_CTX *ctx);
|
||||
static void NullCertificateDeleter(X509 *certificate);
|
||||
|
||||
void CloseInternal(bool inDestructor);
|
||||
};
|
||||
|
||||
struct UnbufferedAsioTlsStreamParams
|
||||
{
|
||||
boost::asio::io_service& IoService;
|
||||
|
|
Loading…
Reference in New Issue