mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
This adds generalized IncomingHttpMessage and OutgoingHttpMessage templates that support different types of streams (via a std::variant) and can both be used for either requests or responses. The tacked on metadata from the old HttpRequest and server connection from the old HttpServerConnection have been moved to HttpApi(Request|Response) classes that derive from the above generalized message types.
131 lines
3.2 KiB
C++
131 lines
3.2 KiB
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef TLSSTREAM_H
|
|
#define TLSSTREAM_H
|
|
|
|
#include "base/i2-base.hpp"
|
|
#include "base/shared.hpp"
|
|
#include "base/socket.hpp"
|
|
#include "base/stream.hpp"
|
|
#include "base/tlsutility.hpp"
|
|
#include "base/fifo.hpp"
|
|
#include "base/utility.hpp"
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <utility>
|
|
#include <variant>
|
|
#include <boost/asio/buffered_stream.hpp>
|
|
#include <boost/asio/io_context.hpp>
|
|
#include <boost/asio/ip/tcp.hpp>
|
|
#include <boost/asio/spawn.hpp>
|
|
#include <boost/asio/ssl/context.hpp>
|
|
#include <boost/asio/ssl/stream.hpp>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
template<class ARS>
|
|
class SeenStream : public ARS
|
|
{
|
|
public:
|
|
template<class... Args>
|
|
SeenStream(Args&&... args) : ARS(std::forward<Args>(args)...)
|
|
{
|
|
m_Seen.store(nullptr);
|
|
}
|
|
|
|
template<class... Args>
|
|
auto async_read_some(Args&&... args) -> decltype(((ARS*)nullptr)->async_read_some(std::forward<Args>(args)...))
|
|
{
|
|
{
|
|
auto seen (m_Seen.load());
|
|
|
|
if (seen) {
|
|
*seen = Utility::GetTime();
|
|
}
|
|
}
|
|
|
|
return ((ARS*)this)->async_read_some(std::forward<Args>(args)...);
|
|
}
|
|
|
|
inline void SetSeen(double* seen)
|
|
{
|
|
m_Seen.store(seen);
|
|
}
|
|
|
|
private:
|
|
std::atomic<double*> m_Seen;
|
|
};
|
|
|
|
struct UnbufferedAsioTlsStreamParams
|
|
{
|
|
boost::asio::io_context& IoContext;
|
|
boost::asio::ssl::context& SslContext;
|
|
const String& Hostname;
|
|
};
|
|
|
|
typedef SeenStream<boost::asio::ssl::stream<boost::asio::ip::tcp::socket>> AsioTcpTlsStream;
|
|
|
|
class UnbufferedAsioTlsStream : public AsioTcpTlsStream
|
|
{
|
|
public:
|
|
inline
|
|
UnbufferedAsioTlsStream(UnbufferedAsioTlsStreamParams& init)
|
|
: AsioTcpTlsStream(init.IoContext, init.SslContext), m_Hostname(init.Hostname)
|
|
{
|
|
}
|
|
|
|
bool IsVerifyOK();
|
|
String GetVerifyError();
|
|
std::shared_ptr<X509> GetPeerCertificate();
|
|
|
|
template<class... Args>
|
|
inline
|
|
auto async_handshake(handshake_type type, Args&&... args) -> decltype(((AsioTcpTlsStream*)nullptr)->async_handshake(type, std::forward<Args>(args)...))
|
|
{
|
|
BeforeHandshake(type);
|
|
|
|
return AsioTcpTlsStream::async_handshake(type, std::forward<Args>(args)...);
|
|
}
|
|
|
|
template<class... Args>
|
|
inline
|
|
auto handshake(handshake_type type, Args&&... args) -> decltype(((AsioTcpTlsStream*)nullptr)->handshake(type, std::forward<Args>(args)...))
|
|
{
|
|
BeforeHandshake(type);
|
|
|
|
return AsioTcpTlsStream::handshake(type, std::forward<Args>(args)...);
|
|
}
|
|
|
|
private:
|
|
String m_Hostname;
|
|
|
|
void BeforeHandshake(handshake_type type);
|
|
};
|
|
|
|
class AsioTlsStream : public boost::asio::buffered_stream<UnbufferedAsioTlsStream>
|
|
{
|
|
public:
|
|
inline
|
|
AsioTlsStream(boost::asio::io_context& ioContext, boost::asio::ssl::context& sslContext, const String& hostname = String())
|
|
: AsioTlsStream(UnbufferedAsioTlsStreamParams{ioContext, sslContext, hostname})
|
|
{
|
|
}
|
|
|
|
void ForceDisconnect();
|
|
void GracefulDisconnect(boost::asio::io_context::strand& strand, boost::asio::yield_context& yc);
|
|
|
|
private:
|
|
inline
|
|
AsioTlsStream(UnbufferedAsioTlsStreamParams init)
|
|
: buffered_stream(init)
|
|
{
|
|
}
|
|
};
|
|
|
|
using AsioTcpStream = boost::asio::buffered_stream<boost::asio::ip::tcp::socket>;
|
|
using OptionalTlsStream = std::pair<Shared<AsioTlsStream>::Ptr, Shared<AsioTcpStream>::Ptr>;
|
|
using AsioTlsOrTcpStream = std::variant<Shared<AsioTlsStream>::Ptr, Shared<AsioTcpStream>::Ptr>;
|
|
}
|
|
|
|
#endif /* TLSSTREAM_H */
|