mirror of https://github.com/Icinga/icinga2.git
parent
24bfc6d084
commit
737441f201
|
@ -144,13 +144,11 @@ void AgentListener::NewClientHandler(const Socket::Ptr& client, TlsRole role)
|
|||
{
|
||||
CONTEXT("Handling new agent client connection");
|
||||
|
||||
NetworkStream::Ptr netStream = make_shared<NetworkStream>(client);
|
||||
|
||||
TlsStream::Ptr tlsStream;
|
||||
|
||||
{
|
||||
ObjectLock olock(this);
|
||||
tlsStream = make_shared<TlsStream>(netStream, role, m_SSLContext);
|
||||
tlsStream = make_shared<TlsStream>(client, role, m_SSLContext);
|
||||
}
|
||||
|
||||
tlsStream->Handshake();
|
||||
|
|
|
@ -526,9 +526,7 @@ void ClusterListener::NewClientHandler(const Socket::Ptr& client, TlsRole role)
|
|||
{
|
||||
CONTEXT("Handling new cluster client connection");
|
||||
|
||||
NetworkStream::Ptr netStream = make_shared<NetworkStream>(client);
|
||||
|
||||
TlsStream::Ptr tlsStream = make_shared<TlsStream>(netStream, role, m_SSLContext);
|
||||
TlsStream::Ptr tlsStream = make_shared<TlsStream>(client, role, m_SSLContext);
|
||||
tlsStream->Handshake();
|
||||
|
||||
shared_ptr<X509> cert = tlsStream->GetPeerCertificate();
|
||||
|
|
|
@ -28,6 +28,10 @@
|
|||
#include <boost/exception/errinfo_errno.hpp>
|
||||
#include <boost/exception/errinfo_file_name.hpp>
|
||||
|
||||
#ifndef _WIN32
|
||||
# include <poll.h>
|
||||
#endif /* _WIN32 */
|
||||
|
||||
using namespace icinga;
|
||||
|
||||
/**
|
||||
|
@ -284,3 +288,45 @@ Socket::Ptr Socket::Accept(void)
|
|||
|
||||
return make_shared<Socket>(fd);
|
||||
}
|
||||
|
||||
void Socket::Poll(bool read, bool write)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
fd_set readfds, writefds, exceptfds;
|
||||
|
||||
FD_ZERO(&readfds);
|
||||
if (read)
|
||||
FD_SET(GetFD(), &readfds);
|
||||
|
||||
FD_ZERO(&writefds);
|
||||
if (write)
|
||||
FD_SET(GetFD(), &writefds);
|
||||
|
||||
FD_ZERO(&exceptfds);
|
||||
FD_SET(GetFD(), &exceptfds);
|
||||
|
||||
if (select(GetFD() + 1, &readfds, &writefds, &exceptfds, NULL) < 0)
|
||||
BOOST_THROW_EXCEPTION(socket_error()
|
||||
<< boost::errinfo_api_function("select")
|
||||
<< errinfo_win32_error(WSAGetLastError()));
|
||||
#else /* _WIN32 */
|
||||
pollfd pfd;
|
||||
pfd.fd = GetFD();
|
||||
pfd.events = (read ? POLLIN : 0) | (write ? POLLOUT : 0);
|
||||
pfd.revents = 0;
|
||||
|
||||
if (poll(&pfd, 1, -1) < 0)
|
||||
BOOST_THROW_EXCEPTION(socket_error()
|
||||
<< boost::errinfo_api_function("poll")
|
||||
<< boost::errinfo_errno(errno));
|
||||
#endif /* _WIN32 */
|
||||
}
|
||||
|
||||
void Socket::MakeNonBlocking(void)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
Utility::SetNonBlockingSocket(GetFD());
|
||||
#else /* _WIN32 */
|
||||
Utility::SetNonBlocking(GetFD());
|
||||
#endif /* _WIN32 */
|
||||
}
|
|
@ -43,6 +43,8 @@ public:
|
|||
Socket(SOCKET fd);
|
||||
~Socket(void);
|
||||
|
||||
SOCKET GetFD(void) const;
|
||||
|
||||
void Close(void);
|
||||
|
||||
String GetClientAddress(void);
|
||||
|
@ -54,9 +56,12 @@ public:
|
|||
void Listen(void);
|
||||
Socket::Ptr Accept(void);
|
||||
|
||||
void Poll(bool read, bool write);
|
||||
|
||||
void MakeNonBlocking(void);
|
||||
|
||||
protected:
|
||||
void SetFD(SOCKET fd);
|
||||
SOCKET GetFD(void) const;
|
||||
|
||||
int GetError(void) const;
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
******************************************************************************/
|
||||
|
||||
#include "base/tlsstream.h"
|
||||
#include "base/stream_bio.h"
|
||||
#include "base/objectlock.h"
|
||||
#include "base/debug.h"
|
||||
#include "base/utility.h"
|
||||
|
@ -37,8 +36,8 @@ bool I2_EXPORT TlsStream::m_SSLIndexInitialized = false;
|
|||
* @param role The role of the client.
|
||||
* @param sslContext The SSL context for the client.
|
||||
*/
|
||||
TlsStream::TlsStream(const Stream::Ptr& innerStream, TlsRole role, shared_ptr<SSL_CTX> sslContext)
|
||||
: m_InnerStream(innerStream), m_Role(role)
|
||||
TlsStream::TlsStream(const Socket::Ptr& socket, TlsRole role, shared_ptr<SSL_CTX> sslContext)
|
||||
: m_Socket(socket), m_Role(role)
|
||||
{
|
||||
m_SSL = shared_ptr<SSL>(SSL_new(sslContext.get()), SSL_free);
|
||||
|
||||
|
@ -57,7 +56,10 @@ TlsStream::TlsStream(const Stream::Ptr& innerStream, TlsRole role, shared_ptr<SS
|
|||
|
||||
SSL_set_verify(m_SSL.get(), SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, NULL);
|
||||
|
||||
m_BIO = BIO_new_I2Stream(m_InnerStream);
|
||||
socket->MakeNonBlocking();
|
||||
|
||||
m_BIO = BIO_new_socket(socket->GetFD(), 0);
|
||||
BIO_set_nbio(m_BIO, 1);
|
||||
SSL_set_bio(m_SSL.get(), m_BIO, m_BIO);
|
||||
|
||||
if (m_Role == TlsRoleServer)
|
||||
|
@ -92,19 +94,28 @@ void TlsStream::Handshake(void)
|
|||
|
||||
int rc;
|
||||
|
||||
ObjectLock olock(this);
|
||||
for (;;) {
|
||||
int rc;
|
||||
|
||||
{
|
||||
ObjectLock olock(this);
|
||||
rc = SSL_do_handshake(m_SSL.get());
|
||||
}
|
||||
|
||||
if (rc > 0)
|
||||
break;
|
||||
|
||||
while ((rc = SSL_do_handshake(m_SSL.get())) <= 0) {
|
||||
switch (SSL_get_error(m_SSL.get(), rc)) {
|
||||
case SSL_ERROR_WANT_READ:
|
||||
m_Socket->Poll(true, false);
|
||||
continue;
|
||||
case SSL_ERROR_WANT_WRITE:
|
||||
m_Socket->Poll(false, true);
|
||||
continue;
|
||||
case SSL_ERROR_ZERO_RETURN:
|
||||
Close();
|
||||
return;
|
||||
default:
|
||||
I2Stream_check_exception(m_BIO);
|
||||
BOOST_THROW_EXCEPTION(openssl_error()
|
||||
<< boost::errinfo_api_function("SSL_do_handshake")
|
||||
<< errinfo_openssl_error(ERR_get_error()));
|
||||
|
@ -121,22 +132,26 @@ size_t TlsStream::Read(void *buffer, size_t count)
|
|||
|
||||
size_t left = count;
|
||||
|
||||
ObjectLock olock(this);
|
||||
|
||||
while (left > 0) {
|
||||
int rc = SSL_read(m_SSL.get(), ((char *)buffer) + (count - left), left);
|
||||
int rc;
|
||||
|
||||
{
|
||||
ObjectLock olock(this);
|
||||
rc = SSL_read(m_SSL.get(), ((char *)buffer) + (count - left), left);
|
||||
}
|
||||
|
||||
if (rc <= 0) {
|
||||
switch (SSL_get_error(m_SSL.get(), rc)) {
|
||||
case SSL_ERROR_WANT_READ:
|
||||
m_Socket->Poll(true, false);
|
||||
continue;
|
||||
case SSL_ERROR_WANT_WRITE:
|
||||
m_Socket->Poll(false, true);
|
||||
continue;
|
||||
case SSL_ERROR_ZERO_RETURN:
|
||||
Close();
|
||||
return count - left;
|
||||
default:
|
||||
I2Stream_check_exception(m_BIO);
|
||||
BOOST_THROW_EXCEPTION(openssl_error()
|
||||
<< boost::errinfo_api_function("SSL_read")
|
||||
<< errinfo_openssl_error(ERR_get_error()));
|
||||
|
@ -155,22 +170,26 @@ void TlsStream::Write(const void *buffer, size_t count)
|
|||
|
||||
size_t left = count;
|
||||
|
||||
ObjectLock olock(this);
|
||||
|
||||
while (left > 0) {
|
||||
int rc = SSL_write(m_SSL.get(), ((const char *)buffer) + (count - left), left);
|
||||
int rc;
|
||||
|
||||
{
|
||||
ObjectLock olock(this);
|
||||
rc = SSL_write(m_SSL.get(), ((const char *)buffer) + (count - left), left);
|
||||
}
|
||||
|
||||
if (rc <= 0) {
|
||||
switch (SSL_get_error(m_SSL.get(), rc)) {
|
||||
case SSL_ERROR_WANT_READ:
|
||||
m_Socket->Poll(true, false);
|
||||
continue;
|
||||
case SSL_ERROR_WANT_WRITE:
|
||||
m_Socket->Poll(false, true);
|
||||
continue;
|
||||
case SSL_ERROR_ZERO_RETURN:
|
||||
Close();
|
||||
return;
|
||||
default:
|
||||
I2Stream_check_exception(m_BIO);
|
||||
BOOST_THROW_EXCEPTION(openssl_error()
|
||||
<< boost::errinfo_api_function("SSL_write")
|
||||
<< errinfo_openssl_error(ERR_get_error()));
|
||||
|
@ -186,10 +205,10 @@ void TlsStream::Write(const void *buffer, size_t count)
|
|||
*/
|
||||
void TlsStream::Close(void)
|
||||
{
|
||||
m_InnerStream->Close();
|
||||
m_Socket->Close();
|
||||
}
|
||||
|
||||
bool TlsStream::IsEof(void) const
|
||||
{
|
||||
return m_InnerStream->IsEof();
|
||||
return BIO_eof(m_BIO);
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#define TLSSTREAM_H
|
||||
|
||||
#include "base/i2-base.h"
|
||||
#include "base/stream.h"
|
||||
#include "base/socket.h"
|
||||
#include "base/fifo.h"
|
||||
#include "base/tlsutility.h"
|
||||
|
||||
|
@ -44,7 +44,7 @@ class I2_BASE_API TlsStream : public Stream
|
|||
public:
|
||||
DECLARE_PTR_TYPEDEFS(TlsStream);
|
||||
|
||||
TlsStream(const Stream::Ptr& innerStream, TlsRole role, shared_ptr<SSL_CTX> sslContext);
|
||||
TlsStream(const Socket::Ptr& socket, TlsRole role, shared_ptr<SSL_CTX> sslContext);
|
||||
|
||||
shared_ptr<X509> GetClientCertificate(void) const;
|
||||
shared_ptr<X509> GetPeerCertificate(void) const;
|
||||
|
@ -62,7 +62,7 @@ private:
|
|||
shared_ptr<SSL> m_SSL;
|
||||
BIO *m_BIO;
|
||||
|
||||
Stream::Ptr m_InnerStream;
|
||||
Socket::Ptr m_Socket;
|
||||
TlsRole m_Role;
|
||||
|
||||
static int m_SSLIndex;
|
||||
|
|
Loading…
Reference in New Issue