2019-03-16 02:08:21 +00:00
|
|
|
#include <DataStreams/copyData.h>
|
2019-05-16 03:34:04 +00:00
|
|
|
#include <IO/ReadBufferFromMemory.h>
|
2019-03-16 02:08:21 +00:00
|
|
|
#include <IO/ReadBufferFromPocoSocket.h>
|
|
|
|
#include <IO/WriteBufferFromPocoSocket.h>
|
|
|
|
#include <Interpreters/executeQuery.h>
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Core/MySQLProtocol.h>
|
|
|
|
#include <Core/NamesAndTypes.h>
|
|
|
|
#include <Columns/ColumnVector.h>
|
|
|
|
#include <Common/config_version.h>
|
|
|
|
#include <Common/NetException.h>
|
2019-04-22 10:57:50 +00:00
|
|
|
#include <Poco/Crypto/RSAKey.h>
|
|
|
|
#include <Poco/Crypto/CipherFactory.h>
|
2019-04-29 06:05:30 +00:00
|
|
|
#include <Poco/Net/SecureStreamSocket.h>
|
|
|
|
#include <Poco/Net/SSLManager.h>
|
2019-03-16 02:08:21 +00:00
|
|
|
#include "MySQLHandler.h"
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
using namespace MySQLProtocol;
|
2019-04-29 06:05:30 +00:00
|
|
|
using Poco::Net::SecureStreamSocket;
|
|
|
|
using Poco::Net::SSLManager;
|
2019-03-16 02:08:21 +00:00
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
namespace ErrorCodes
|
2019-03-16 02:08:21 +00:00
|
|
|
{
|
2019-04-29 06:37:39 +00:00
|
|
|
extern const int MYSQL_CLIENT_INSUFFICIENT_CAPABILITIES;
|
|
|
|
extern const int UNKNOWN_EXCEPTION;
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
uint32_t MySQLHandler::last_connection_id = 0;
|
2019-03-16 02:08:21 +00:00
|
|
|
|
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
void MySQLHandler::run()
|
|
|
|
{
|
2019-03-16 02:08:21 +00:00
|
|
|
connection_context = server.context();
|
2019-05-16 03:34:04 +00:00
|
|
|
connection_context.setDefaultFormat("MySQL");
|
2019-03-16 02:08:21 +00:00
|
|
|
|
2019-05-16 03:34:04 +00:00
|
|
|
in = std::make_shared<ReadBufferFromPocoSocket>(socket());
|
|
|
|
out = std::make_shared<WriteBufferFromPocoSocket>(socket());
|
|
|
|
packet_sender = std::make_shared<PacketSender>(*in, *out, connection_context.sequence_id, "MySQLHandler");
|
2019-03-16 02:08:21 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2019-04-22 10:57:50 +00:00
|
|
|
String scramble = generateScramble();
|
|
|
|
|
|
|
|
/** Native authentication sent 20 bytes + '\0' character = 21 bytes.
|
|
|
|
* This plugin must do the same to stay consistent with historical behavior if it is set to operate as a default plugin.
|
|
|
|
* https://github.com/mysql/mysql-server/blob/8.0/sql/auth/sql_authentication.cc#L3994
|
|
|
|
*/
|
|
|
|
Handshake handshake(connection_id, VERSION_STRING, scramble + '\0');
|
|
|
|
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sendPacket<Handshake>(handshake, true);
|
2019-03-26 18:30:41 +00:00
|
|
|
|
|
|
|
LOG_TRACE(log, "Sent handshake");
|
|
|
|
|
2019-04-29 06:05:30 +00:00
|
|
|
HandshakeResponse handshake_response = finishHandshake();
|
2019-05-16 03:34:04 +00:00
|
|
|
connection_context.client_capabilities = handshake_response.capability_flags;
|
2019-05-16 17:15:43 +00:00
|
|
|
if (handshake_response.max_packet_size)
|
|
|
|
connection_context.max_packet_size = handshake_response.max_packet_size;
|
|
|
|
if (!connection_context.max_packet_size)
|
|
|
|
connection_context.max_packet_size = MAX_PACKET_LENGTH;
|
2019-03-26 18:30:41 +00:00
|
|
|
|
|
|
|
LOG_DEBUG(log, "Capabilities: " << handshake_response.capability_flags
|
|
|
|
<< "\nmax_packet_size: "
|
|
|
|
<< handshake_response.max_packet_size
|
|
|
|
<< "\ncharacter_set: "
|
|
|
|
<< handshake_response.character_set
|
|
|
|
<< "\nuser: "
|
|
|
|
<< handshake_response.username
|
|
|
|
<< "\nauth_response length: "
|
|
|
|
<< handshake_response.auth_response.length()
|
|
|
|
<< "\nauth_response: "
|
|
|
|
<< handshake_response.auth_response
|
|
|
|
<< "\ndatabase: "
|
|
|
|
<< handshake_response.database
|
|
|
|
<< "\nauth_plugin_name: "
|
|
|
|
<< handshake_response.auth_plugin_name);
|
2019-03-16 02:08:21 +00:00
|
|
|
|
|
|
|
capabilities = handshake_response.capability_flags;
|
2019-03-26 18:30:41 +00:00
|
|
|
if (!(capabilities & CLIENT_PROTOCOL_41))
|
|
|
|
{
|
|
|
|
throw Exception("Required capability: CLIENT_PROTOCOL_41.", ErrorCodes::MYSQL_CLIENT_INSUFFICIENT_CAPABILITIES);
|
|
|
|
}
|
|
|
|
if (!(capabilities & CLIENT_PLUGIN_AUTH))
|
|
|
|
{
|
|
|
|
throw Exception("Required capability: CLIENT_PLUGIN_AUTH.", ErrorCodes::MYSQL_CLIENT_INSUFFICIENT_CAPABILITIES);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 10:57:50 +00:00
|
|
|
authenticate(handshake_response, scramble);
|
2019-05-16 05:36:08 +00:00
|
|
|
OK_Packet ok_packet(0, handshake_response.capability_flags, 0, 0, 0);
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sendPacket(ok_packet, true);
|
2019-03-16 02:08:21 +00:00
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
while (true)
|
|
|
|
{
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->resetSequenceId();
|
|
|
|
String payload = packet_sender->receivePacketPayload();
|
2019-03-16 02:08:21 +00:00
|
|
|
int command = payload[0];
|
|
|
|
LOG_DEBUG(log, "Received command: " << std::to_string(command) << ". Connection id: " << connection_id << ".");
|
2019-03-26 18:30:41 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
switch (command)
|
|
|
|
{
|
2019-03-16 02:08:21 +00:00
|
|
|
case COM_QUIT:
|
|
|
|
return;
|
|
|
|
case COM_INIT_DB:
|
|
|
|
comInitDB(payload);
|
|
|
|
break;
|
|
|
|
case COM_QUERY:
|
|
|
|
comQuery(payload);
|
|
|
|
break;
|
|
|
|
case COM_FIELD_LIST:
|
|
|
|
comFieldList(payload);
|
|
|
|
break;
|
|
|
|
case COM_PING:
|
|
|
|
comPing();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw Exception(Poco::format("Command %d is not implemented.", command), ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
}
|
|
|
|
}
|
2019-03-26 18:30:41 +00:00
|
|
|
catch (const NetException & exc)
|
|
|
|
{
|
2019-03-16 02:08:21 +00:00
|
|
|
log->log(exc);
|
|
|
|
throw;
|
|
|
|
}
|
2019-03-26 18:30:41 +00:00
|
|
|
catch (const Exception & exc)
|
|
|
|
{
|
2019-03-16 02:08:21 +00:00
|
|
|
log->log(exc);
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sendPacket(ERR_Packet(exc.code(), "00000", exc.message()), true);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-26 18:30:41 +00:00
|
|
|
catch (Poco::Exception & exc)
|
2019-03-16 02:08:21 +00:00
|
|
|
{
|
|
|
|
log->log(exc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 03:34:04 +00:00
|
|
|
/** Reads 3 bytes, finds out whether it is SSLRequest or HandshakeResponse packet, starts secure connection, if it is SSLRequest.
|
2019-05-16 17:15:43 +00:00
|
|
|
* Reading is performed from socket instead of ReadBuffer to prevent reading part of SSL handshake.
|
2019-05-16 03:34:04 +00:00
|
|
|
* If we read it from socket, it will be impossible to start SSL connection using Poco. Size of SSLRequest packet payload is 32 bytes, thus we can read at most 36 bytes.
|
|
|
|
*/
|
2019-04-29 06:05:30 +00:00
|
|
|
MySQLProtocol::HandshakeResponse MySQLHandler::finishHandshake()
|
|
|
|
{
|
|
|
|
HandshakeResponse packet;
|
2019-05-16 17:15:43 +00:00
|
|
|
size_t packet_size = PACKET_HEADER_SIZE + SSL_REQUEST_PAYLOAD_SIZE;
|
|
|
|
|
|
|
|
/// Buffer for SSLRequest or part of HandshakeResponse.
|
|
|
|
char buf[packet_size];
|
2019-04-29 06:05:30 +00:00
|
|
|
size_t pos = 0;
|
2019-05-16 17:15:43 +00:00
|
|
|
|
|
|
|
/// Reads at least count and at most packet_size bytes.
|
|
|
|
auto read_bytes = [this, &buf, &pos, &packet_size](size_t count) -> void {
|
|
|
|
while (pos < count)
|
2019-04-29 06:37:39 +00:00
|
|
|
{
|
2019-05-16 17:15:43 +00:00
|
|
|
int ret = socket().receiveBytes(buf + pos, packet_size - pos);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
throw Exception("Cannot read all data. Bytes read: " + std::to_string(pos) + ". Bytes expected: 3.", ErrorCodes::CANNOT_READ_ALL_DATA);
|
|
|
|
}
|
|
|
|
pos += ret;
|
2019-04-29 06:05:30 +00:00
|
|
|
}
|
2019-05-16 17:15:43 +00:00
|
|
|
};
|
|
|
|
read_bytes(3); /// We can find out whether it is SSLRequest of HandshakeResponse by first 3 bytes.
|
2019-04-29 06:05:30 +00:00
|
|
|
|
2019-05-16 17:15:43 +00:00
|
|
|
size_t payload_size = *reinterpret_cast<uint32_t *>(buf) & 0xFFFFFFu;
|
|
|
|
LOG_TRACE(log, "payload size: " << payload_size);
|
2019-05-16 03:34:04 +00:00
|
|
|
|
2019-05-16 17:15:43 +00:00
|
|
|
if (payload_size == SSL_REQUEST_PAYLOAD_SIZE)
|
2019-04-29 06:37:39 +00:00
|
|
|
{
|
2019-05-16 17:15:43 +00:00
|
|
|
read_bytes(packet_size); /// Reading rest SSLRequest.
|
|
|
|
SSLRequest ssl_request;
|
|
|
|
ssl_request.readPayload(String(buf + PACKET_HEADER_SIZE, pos - PACKET_HEADER_SIZE));
|
|
|
|
connection_context.client_capabilities = ssl_request.capability_flags;
|
|
|
|
connection_context.max_packet_size = ssl_request.max_packet_size ? ssl_request.max_packet_size : MAX_PACKET_LENGTH;
|
2019-04-29 06:05:30 +00:00
|
|
|
secure_connection = true;
|
2019-05-16 03:34:04 +00:00
|
|
|
ss = std::make_shared<SecureStreamSocket>(SecureStreamSocket::attach(socket(), SSLManager::instance().defaultServerContext()));
|
|
|
|
in = std::make_shared<ReadBufferFromPocoSocket>(*ss);
|
|
|
|
out = std::make_shared<WriteBufferFromPocoSocket>(*ss);
|
|
|
|
connection_context.sequence_id = 2;
|
|
|
|
packet_sender = std::make_shared<PacketSender>(*in, *out, connection_context.sequence_id, "MySQLHandler");
|
2019-05-16 17:15:43 +00:00
|
|
|
packet_sender->max_packet_size = connection_context.max_packet_size;
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->receivePacket(packet); /// Reading HandshakeResponse from secure socket.
|
2019-04-29 06:37:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-05-16 03:34:04 +00:00
|
|
|
/// Reading rest of HandshakeResponse.
|
2019-05-16 17:15:43 +00:00
|
|
|
packet_size = PACKET_HEADER_SIZE + payload_size;
|
|
|
|
WriteBufferFromOwnString buf_for_handshake_response;
|
|
|
|
buf_for_handshake_response.write(buf, pos);
|
|
|
|
copyData(*packet_sender->in, buf_for_handshake_response, packet_size - pos);
|
|
|
|
packet.readPayload(buf_for_handshake_response.str().substr(PACKET_HEADER_SIZE));
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sequence_id++;
|
2019-04-29 06:05:30 +00:00
|
|
|
}
|
|
|
|
return packet;
|
|
|
|
}
|
2019-04-22 10:57:50 +00:00
|
|
|
|
|
|
|
String MySQLHandler::generateScramble()
|
|
|
|
{
|
|
|
|
String scramble(MySQLProtocol::SCRAMBLE_LENGTH, 0);
|
|
|
|
Poco::RandomInputStream generator;
|
2019-04-29 06:37:39 +00:00
|
|
|
for (size_t i = 0; i < scramble.size(); i++)
|
|
|
|
{
|
2019-04-22 10:57:50 +00:00
|
|
|
generator >> scramble[i];
|
|
|
|
}
|
|
|
|
return scramble;
|
|
|
|
}
|
|
|
|
|
2019-04-29 06:37:39 +00:00
|
|
|
void MySQLHandler::authenticate(const HandshakeResponse & handshake_response, const String & scramble)
|
|
|
|
{
|
2019-04-22 10:57:50 +00:00
|
|
|
|
|
|
|
String auth_response;
|
|
|
|
AuthSwitchResponse response;
|
2019-05-16 17:15:43 +00:00
|
|
|
if (handshake_response.auth_plugin_name != Authentication::SHA256)
|
2019-04-29 06:37:39 +00:00
|
|
|
{
|
2019-05-16 17:15:43 +00:00
|
|
|
packet_sender->sendPacket(AuthSwitchRequest(Authentication::SHA256, scramble + '\0'), true);
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->receivePacket(response);
|
2019-04-22 10:57:50 +00:00
|
|
|
auth_response = response.value;
|
|
|
|
LOG_TRACE(log, "Authentication method mismatch.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auth_response = handshake_response.auth_response;
|
|
|
|
LOG_TRACE(log, "Authentication method match.");
|
|
|
|
}
|
|
|
|
|
2019-04-29 06:37:39 +00:00
|
|
|
auto getOpenSSLError = []() -> String
|
|
|
|
{
|
2019-04-22 10:57:50 +00:00
|
|
|
BIO * mem = BIO_new(BIO_s_mem());
|
|
|
|
ERR_print_errors(mem);
|
2019-04-29 06:05:30 +00:00
|
|
|
char * buf = nullptr;
|
|
|
|
long size = BIO_get_mem_data(mem, &buf);
|
|
|
|
String errors_str(buf, size);
|
2019-04-22 10:57:50 +00:00
|
|
|
BIO_free(mem);
|
2019-04-29 06:05:30 +00:00
|
|
|
return errors_str;
|
2019-04-22 10:57:50 +00:00
|
|
|
};
|
|
|
|
|
2019-05-16 17:15:43 +00:00
|
|
|
if (auth_response == "\1")
|
2019-04-22 10:57:50 +00:00
|
|
|
{
|
|
|
|
LOG_TRACE(log, "Client requests public key.");
|
|
|
|
/// Client requests public key.
|
|
|
|
BIO * mem = BIO_new(BIO_s_mem());
|
|
|
|
if (PEM_write_bio_RSA_PUBKEY(mem, public_key) != 1)
|
|
|
|
{
|
|
|
|
LOG_TRACE(log, "OpenSSL error:\n" << getOpenSSLError());
|
|
|
|
throw Exception("Failed to write public key to memory.", ErrorCodes::UNKNOWN_EXCEPTION);
|
|
|
|
}
|
|
|
|
char * pem_buf = nullptr;
|
|
|
|
long pem_size = BIO_get_mem_data(mem, &pem_buf);
|
|
|
|
String pem(pem_buf, pem_size);
|
|
|
|
BIO_free(mem);
|
|
|
|
|
|
|
|
LOG_TRACE(log, "Key: " << pem);
|
|
|
|
|
|
|
|
AuthMoreData data(pem);
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sendPacket(data, true);
|
|
|
|
packet_sender->receivePacket(response);
|
2019-04-22 10:57:50 +00:00
|
|
|
auth_response = response.value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LOG_TRACE(log, "Client didn't request public key.");
|
|
|
|
}
|
|
|
|
|
|
|
|
String password;
|
|
|
|
|
2019-05-16 17:15:43 +00:00
|
|
|
LOG_TRACE(log, "auth response: " << auth_response << " len: " <<auth_response.length());
|
2019-04-22 10:57:50 +00:00
|
|
|
|
|
|
|
/** Decrypt password, if it's not empty.
|
|
|
|
* The original intention was that the password is a string[NUL] but this never got enforced properly so now we have to accept that
|
|
|
|
* an empty packet is a blank password, thus the check for auth_response.empty() has to be made too.
|
|
|
|
* https://github.com/mysql/mysql-server/blob/8.0/sql/auth/sql_authentication.cc#L4017
|
|
|
|
*/
|
2019-05-16 17:15:43 +00:00
|
|
|
if (!secure_connection && (!auth_response.empty() && auth_response != "\0"))
|
2019-04-22 10:57:50 +00:00
|
|
|
{
|
|
|
|
LOG_TRACE(log, "Received nonempty password");
|
|
|
|
auto ciphertext = reinterpret_cast<unsigned char *>(auth_response.data());
|
|
|
|
|
|
|
|
unsigned char plaintext[RSA_size(private_key)];
|
|
|
|
int plaintext_size = RSA_private_decrypt(auth_response.size(), ciphertext, plaintext, private_key, RSA_PKCS1_OAEP_PADDING);
|
|
|
|
if (plaintext_size == -1)
|
|
|
|
{
|
|
|
|
LOG_TRACE(log, "OpenSSL error:\n" << getOpenSSLError());
|
|
|
|
throw Exception("Failed to decrypt.", ErrorCodes::UNKNOWN_EXCEPTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
password.resize(plaintext_size);
|
2019-04-29 06:37:39 +00:00
|
|
|
for (int i = 0; i < plaintext_size; i++)
|
|
|
|
{
|
2019-04-22 10:57:50 +00:00
|
|
|
password[i] = plaintext[i] ^ static_cast<unsigned char>(scramble[i % scramble.size()]);
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 06:05:30 +00:00
|
|
|
else if (secure_connection)
|
|
|
|
{
|
|
|
|
password = auth_response;
|
|
|
|
}
|
2019-04-22 10:57:50 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
LOG_TRACE(log, "Received empty password");
|
|
|
|
}
|
|
|
|
|
2019-04-29 06:37:39 +00:00
|
|
|
if (!password.empty())
|
|
|
|
{
|
2019-05-16 17:15:43 +00:00
|
|
|
password.pop_back(); /// terminating null byte
|
2019-04-22 10:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
connection_context.setUser(handshake_response.username, password, socket().address(), "");
|
|
|
|
connection_context.setCurrentDatabase(handshake_response.database);
|
|
|
|
connection_context.setCurrentQueryId("");
|
|
|
|
LOG_ERROR(log, "Authentication for user " << handshake_response.username << " succeeded.");
|
|
|
|
}
|
|
|
|
catch (const Exception & exc)
|
|
|
|
{
|
|
|
|
LOG_ERROR(log, "Authentication for user " << handshake_response.username << " failed.");
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sendPacket(ERR_Packet(exc.code(), "00000", exc.message()), true);
|
2019-04-22 10:57:50 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 03:34:04 +00:00
|
|
|
void MySQLHandler::comInitDB(const String & payload)
|
2019-03-16 02:08:21 +00:00
|
|
|
{
|
|
|
|
String database = payload.substr(1);
|
|
|
|
LOG_DEBUG(log, "Setting current database to " << database);
|
|
|
|
connection_context.setCurrentDatabase(database);
|
2019-05-16 05:36:08 +00:00
|
|
|
packet_sender->sendPacket(OK_Packet(0, capabilities, 0, 0, 1), true);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
|
2019-05-16 03:34:04 +00:00
|
|
|
void MySQLHandler::comFieldList(const String & payload)
|
2019-03-26 18:30:41 +00:00
|
|
|
{
|
2019-03-16 02:08:21 +00:00
|
|
|
ComFieldList packet;
|
|
|
|
packet.readPayload(payload);
|
2019-03-26 18:30:41 +00:00
|
|
|
String database = connection_context.getCurrentDatabase();
|
|
|
|
StoragePtr tablePtr = connection_context.getTable(database, packet.table);
|
2019-03-16 02:08:21 +00:00
|
|
|
for (const NameAndTypePair & column: tablePtr->getColumns().getAll())
|
|
|
|
{
|
|
|
|
ColumnDefinition column_definition(
|
2019-03-26 18:30:41 +00:00
|
|
|
database, packet.table, packet.table, column.name, column.name, CharacterSet::binary, 100, ColumnType::MYSQL_TYPE_STRING, 0, 0
|
2019-03-16 02:08:21 +00:00
|
|
|
);
|
2019-05-16 03:34:04 +00:00
|
|
|
packet_sender->sendPacket(column_definition);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
2019-05-16 05:36:08 +00:00
|
|
|
packet_sender->sendPacket(OK_Packet(0xfe, capabilities, 0, 0, 0), true);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
void MySQLHandler::comPing()
|
|
|
|
{
|
2019-05-16 05:36:08 +00:00
|
|
|
packet_sender->sendPacket(OK_Packet(0x0, capabilities, 0, 0, 0), true);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
|
2019-05-16 03:34:04 +00:00
|
|
|
void MySQLHandler::comQuery(const String & payload)
|
2019-03-26 18:30:41 +00:00
|
|
|
{
|
2019-05-16 03:34:04 +00:00
|
|
|
bool with_output = false;
|
|
|
|
std::function<void(const String &)> set_content_type = [&with_output](const String &) -> void {
|
|
|
|
with_output = true;
|
|
|
|
};
|
|
|
|
ReadBufferFromMemory query(payload.data() + 1, payload.size() - 1);
|
|
|
|
executeQuery(query, *out, true, connection_context, set_content_type, nullptr);
|
2019-05-16 03:45:17 +00:00
|
|
|
if (!with_output)
|
2019-05-16 05:36:08 +00:00
|
|
|
packet_sender->sendPacket(OK_Packet(0x00, capabilities, 0, 0, 0), true);
|
2019-03-16 02:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|