Current section
Files
Jump to
Current section
Files
native/clickhouse-cpp/clickhouse/base/sslsocket.h
#pragma once
#include "socket.h"
#include <memory>
#include <optional>
#include <vector>
typedef struct ssl_ctx_st SSL_CTX;
typedef struct ssl_st SSL;
namespace clickhouse {
struct SSLParams
{
std::vector<std::string> path_to_ca_files;
std::string path_to_ca_directory;
bool use_default_ca_locations;
int context_options;
int min_protocol_version;
int max_protocol_version;
bool use_SNI;
bool skip_verification;
int host_flags;
using ConfigurationType = std::vector<std::pair<std::string, std::optional<std::string>>>;
ConfigurationType configuration;
};
class SSLContext
{
public:
explicit SSLContext(SSL_CTX & context);
explicit SSLContext(const SSLParams & context_params);
~SSLContext() = default;
SSLContext(const SSLContext &) = delete;
SSLContext& operator=(const SSLContext &) = delete;
SSLContext(SSLContext &&) = delete;
SSLContext& operator=(SSLContext &) = delete;
private:
friend class SSLSocket;
SSL_CTX * getContext();
private:
std::unique_ptr<SSL_CTX, void (*)(SSL_CTX*)> context_;
};
class SSLSocket : public Socket {
public:
explicit SSLSocket(const NetworkAddress& addr, const SocketTimeoutParams& timeout_params,
const SSLParams& ssl_params, SSLContext& context);
SSLSocket(SSLSocket &&) = default;
~SSLSocket() override = default;
SSLSocket(const SSLSocket & ) = delete;
SSLSocket& operator=(const SSLSocket & ) = delete;
std::unique_ptr<InputStream> makeInputStream() const override;
std::unique_ptr<OutputStream> makeOutputStream() const override;
static void validateParams(const SSLParams & ssl_params);
private:
std::unique_ptr<SSL, void (*)(SSL *s)> ssl_;
};
class SSLSocketFactory : public NonSecureSocketFactory {
public:
explicit SSLSocketFactory(const ClientOptions& opts);
~SSLSocketFactory() override;
protected:
std::unique_ptr<Socket> doConnect(const NetworkAddress& address, const ClientOptions& opts) override;
private:
const SSLParams ssl_params_;
std::unique_ptr<SSLContext> ssl_context_;
};
class SSLSocketInput : public InputStream {
public:
explicit SSLSocketInput(SSL *ssl);
~SSLSocketInput() = default;
bool Skip(size_t /*bytes*/) override {
return false;
}
protected:
size_t DoRead(void* buf, size_t len) override;
private:
// Not owning
SSL *ssl_;
};
class SSLSocketOutput : public OutputStream {
public:
explicit SSLSocketOutput(SSL *ssl);
~SSLSocketOutput() = default;
protected:
size_t DoWrite(const void* data, size_t len) override;
private:
// Not owning
SSL *ssl_;
};
}