ClickHouse/dbms/programs/server/MySQLHandler.h

105 lines
3.7 KiB
C++
Raw Normal View History

2019-03-16 02:08:21 +00:00
#pragma once
2019-09-11 11:21:54 +00:00
#include <Common/config.h>
2019-03-16 02:08:21 +00:00
#include <Poco/Net/TCPServerConnection.h>
#include <Common/getFQDNOrHostName.h>
#include <Core/MySQLProtocol.h>
2019-03-16 02:08:21 +00:00
#include "IServer.h"
#if USE_POCO_NETSSL
#include <Poco/Net/SecureStreamSocket.h>
#endif
2019-03-16 02:08:21 +00:00
namespace DB
{
2019-03-16 02:08:21 +00:00
/// Handler for MySQL wire protocol connections. Allows to connect to ClickHouse using MySQL client.
2019-04-01 09:59:49 +00:00
class MySQLHandler : public Poco::Net::TCPServerConnection
{
2019-03-16 02:08:21 +00:00
public:
MySQLHandler(IServer & server_, const Poco::Net::StreamSocket & socket_, bool ssl_enabled, size_t connection_id_);
2019-03-16 02:08:21 +00:00
void run() final;
private:
2019-04-29 06:05:30 +00:00
/// Enables SSL, if client requested.
void finishHandshake(MySQLProtocol::HandshakeResponse &);
2019-04-29 06:05:30 +00:00
2019-07-14 22:13:56 +00:00
void comQuery(ReadBuffer & payload);
2019-03-16 02:08:21 +00:00
2019-07-14 22:13:56 +00:00
void comFieldList(ReadBuffer & payload);
2019-03-16 02:08:21 +00:00
void comPing();
2019-07-14 22:13:56 +00:00
void comInitDB(ReadBuffer & payload);
2019-04-01 09:59:49 +00:00
void authenticate(const String & user_name, const String & auth_plugin_name, const String & auth_response);
virtual void authPluginSSL();
virtual void finishHandshakeSSL(size_t packet_size, char * buf, size_t pos, std::function<void(size_t)> read_bytes, MySQLProtocol::HandshakeResponse & packet);
2019-03-16 02:08:21 +00:00
IServer & server;
protected:
2019-03-16 02:08:21 +00:00
Poco::Logger * log;
2019-03-16 02:08:21 +00:00
Context connection_context;
std::shared_ptr<MySQLProtocol::PacketSender> packet_sender;
2019-03-16 02:08:21 +00:00
private:
2019-05-26 06:52:29 +00:00
size_t connection_id = 0;
2019-03-16 02:08:21 +00:00
2019-06-16 18:12:14 +00:00
size_t server_capability_flags = 0;
size_t client_capability_flags = 0;
2019-03-16 02:08:21 +00:00
protected:
std::unique_ptr<MySQLProtocol::Authentication::IPlugin> auth_plugin;
2019-04-29 06:05:30 +00:00
std::shared_ptr<ReadBuffer> in;
std::shared_ptr<WriteBuffer> out;
bool secure_connection = false;
2019-03-16 02:08:21 +00:00
};
#if USE_SSL && USE_POCO_NETSSL
class MySQLHandlerSSL : public MySQLHandler
{
public:
MySQLHandlerSSL(IServer & server_, const Poco::Net::StreamSocket & socket_, bool ssl_enabled, size_t connection_id_, RSA & public_key_, RSA & private_key_);
private:
void authPluginSSL() override;
void finishHandshakeSSL(size_t packet_size, char * buf, size_t pos, std::function<void(size_t)> read_bytes, MySQLProtocol::HandshakeResponse & packet) override;
RSA & public_key;
RSA & private_key;
std::shared_ptr<Poco::Net::SecureStreamSocket> ss;
};
2019-09-11 11:21:54 +00:00
#endif
const String show_table_status_replacement_query("SELECT"
" name AS Name,"
" engine AS Engine,"
" '10' AS Version,"
" 'Dynamic' AS Row_format,"
" 0 AS Rows,"
" 0 AS Avg_row_length,"
" 0 AS Data_length,"
" 0 AS Max_data_length,"
" 0 AS Index_length,"
" 0 AS Data_free,"
" 'NULL' AS Auto_increment,"
" metadata_modification_time AS Create_time,"
" metadata_modification_time AS Update_time,"
" metadata_modification_time AS Check_time,"
" 'utf8_bin' AS Collation,"
" 'NULL' AS Checksum,"
" '' AS Create_options,"
" '' AS Comment"
" FROM system.tables"
" WHERE name=");
}