mirror of
https://github.com/boostorg/mysql.git
synced 2026-02-14 00:42:53 +00:00
- Moved socket_connection to a separate include file. - Clarified Stream requirements. - Made make_error_code public. - Updated include styles to match Boost's. - Moved <boost/myql/mysql.hpp> to <boost/mysql.hpp> to match conventions. - Added support for the BIT type. closes #13 closes #21
322 lines
12 KiB
C++
322 lines
12 KiB
C++
//
|
|
// Copyright (c) 2019-2021 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#include <boost/mysql/socket_connection.hpp>
|
|
#include <boost/mysql/connection_params.hpp>
|
|
#include "integration_test_common.hpp"
|
|
#include "network_functions.hpp"
|
|
#include "test_common.hpp"
|
|
#include <boost/asio/ssl/error.hpp>
|
|
#include <boost/asio/ssl/verify_mode.hpp>
|
|
#include <boost/asio/ssl/host_name_verification.hpp>
|
|
#include <boost/test/unit_test_suite.hpp>
|
|
|
|
// Tests containing with label 'sha256' require SHA256 functionality.
|
|
// This is used by the build script to exclude these tests on databases
|
|
// that do not support this functionality
|
|
|
|
using namespace boost::mysql::test;
|
|
|
|
using boost::mysql::socket_connection;
|
|
using boost::mysql::ssl_mode;
|
|
using boost::mysql::errc;
|
|
using boost::mysql::error_code;
|
|
using boost::mysql::tcp_connection;
|
|
using boost::mysql::connection_params;
|
|
|
|
BOOST_AUTO_TEST_SUITE(test_handshake)
|
|
|
|
template <class Stream>
|
|
network_result<no_result> do_handshake(
|
|
socket_connection<Stream>& conn,
|
|
connection_params params,
|
|
network_functions<Stream>* net,
|
|
ssl_mode ssl
|
|
)
|
|
{
|
|
params.set_ssl(ssl);
|
|
return net->handshake(conn, params);
|
|
}
|
|
|
|
template <class Stream>
|
|
void do_handshake_ok(
|
|
socket_connection<Stream>& conn,
|
|
connection_params params,
|
|
network_functions<Stream>* net,
|
|
ssl_mode ssl
|
|
)
|
|
{
|
|
network_result<no_result> result = do_handshake(conn, params, net, ssl);
|
|
result.validate_no_error();
|
|
validate_ssl(conn, ssl);
|
|
}
|
|
|
|
|
|
// Handshake tests not depending on whether we use SSL or not
|
|
template <class Stream>
|
|
struct handshake_fixture : network_fixture<Stream>
|
|
{
|
|
handshake_fixture()
|
|
{
|
|
this->physical_connect();
|
|
}
|
|
};
|
|
|
|
// mysql_native_password
|
|
BOOST_AUTO_TEST_SUITE(mysql_native_password)
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(regular_user, handshake_fixture, network_ssl_gen)
|
|
{
|
|
this->set_credentials("mysqlnp_user", "mysqlnp_password");
|
|
do_handshake_ok(this->conn, this->params, sample.net, sample.ssl);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(empty_password, handshake_fixture, network_ssl_gen)
|
|
{
|
|
this->set_credentials("mysqlnp_empty_password_user", "");
|
|
do_handshake_ok(this->conn, this->params, sample.net, sample.ssl);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(bad_password, handshake_fixture, network_ssl_gen)
|
|
{
|
|
this->set_credentials("mysqlnp_user", "bad_password");
|
|
auto result = do_handshake(this->conn, this->params, sample.net, sample.ssl);
|
|
result.validate_error(errc::access_denied_error, {"access denied", "mysqlnp_user"});
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END() // mysql_native_password
|
|
|
|
// caching_sha2_password
|
|
BOOST_TEST_DECORATOR(*boost::unit_test::label("sha256"))
|
|
BOOST_AUTO_TEST_SUITE(caching_sha2_password)
|
|
|
|
template <class Stream>
|
|
struct caching_sha2_fixture : handshake_fixture<Stream>
|
|
{
|
|
void load_sha256_cache(boost::string_view user, boost::string_view password)
|
|
{
|
|
tcp_connection conn (this->ctx);
|
|
conn.connect(
|
|
get_endpoint<boost::asio::ip::tcp::socket>(endpoint_kind::localhost),
|
|
connection_params(user, password)
|
|
);
|
|
conn.close();
|
|
}
|
|
|
|
void clear_sha256_cache()
|
|
{
|
|
tcp_connection conn (this->ctx);
|
|
conn.connect(
|
|
get_endpoint<boost::asio::ip::tcp::socket>(endpoint_kind::localhost),
|
|
connection_params("root", "")
|
|
);
|
|
conn.query("FLUSH PRIVILEGES");
|
|
conn.close();
|
|
}
|
|
};
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(ssl_on_cache_hit, caching_sha2_fixture, network_gen)
|
|
{
|
|
this->set_credentials("csha2p_user", "csha2p_password");
|
|
this->load_sha256_cache("csha2p_user", "csha2p_password");
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::require);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(ssl_off_cache_hit, caching_sha2_fixture, network_gen)
|
|
{
|
|
// As we are sending password hashed, it is OK to not have SSL for this
|
|
this->set_credentials("csha2p_user", "csha2p_password");
|
|
this->load_sha256_cache("csha2p_user", "csha2p_password");
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::disable);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(ssl_on_cache_miss, caching_sha2_fixture, network_gen)
|
|
{
|
|
this->set_credentials("csha2p_user", "csha2p_password");
|
|
this->clear_sha256_cache();
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::require);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(ssl_off_cache_miss, caching_sha2_fixture, network_gen)
|
|
{
|
|
// A cache miss would force us send a plaintext password over
|
|
// a non-TLS connection, so we fail
|
|
this->set_credentials("csha2p_user", "csha2p_password");
|
|
this->clear_sha256_cache();
|
|
auto result = do_handshake(this->conn, this->params, sample.net, ssl_mode::disable);
|
|
result.validate_error(errc::auth_plugin_requires_ssl, {});
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(empty_password_ssl_on_cache_hit, caching_sha2_fixture, network_gen)
|
|
{
|
|
this->set_credentials("csha2p_empty_password_user", "");
|
|
this->load_sha256_cache("csha2p_empty_password_user", "");
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::require);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(empty_password_ssl_off_cache_hit, caching_sha2_fixture, network_gen)
|
|
{
|
|
// Empty passwords are allowed over non-TLS connections
|
|
this->set_credentials("csha2p_empty_password_user", "");
|
|
this->load_sha256_cache("csha2p_empty_password_user", "");
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::disable);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(empty_password_ssl_on_cache_miss, caching_sha2_fixture, network_gen)
|
|
{
|
|
this->set_credentials("csha2p_empty_password_user", "");
|
|
this->clear_sha256_cache();
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::require);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(empty_password_ssl_off_cache_miss, caching_sha2_fixture, network_gen)
|
|
{
|
|
// Empty passwords are allowed over non-TLS connections
|
|
this->set_credentials("csha2p_empty_password_user", "");
|
|
this->clear_sha256_cache();
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::disable);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(bad_password_ssl_on_cache_hit, caching_sha2_fixture, network_gen)
|
|
{
|
|
// Note: test over non-TLS would return "ssl required"
|
|
this->set_credentials("csha2p_user", "bad_password");
|
|
this->load_sha256_cache("csha2p_user", "csha2p_password");
|
|
auto result = do_handshake(this->conn, this->params, sample.net, ssl_mode::require);
|
|
result.validate_error(errc::access_denied_error, {"access denied", "csha2p_user"});
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(bad_password_ssl_on_cache_miss, caching_sha2_fixture, network_gen)
|
|
{
|
|
// Note: test over non-TLS would return "ssl required"
|
|
this->set_credentials("csha2p_user", "bad_password");
|
|
this->clear_sha256_cache();
|
|
auto result = do_handshake(this->conn, this->params, sample.net, ssl_mode::require);
|
|
result.validate_error(errc::access_denied_error, {"access denied", "csha2p_user"});
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END() // caching_sha2_password
|
|
|
|
// Externally-provided SSL context tests
|
|
BOOST_AUTO_TEST_SUITE(external_ssl_context)
|
|
|
|
template <class Stream>
|
|
struct external_ssl_context_fixture : public network_fixture<Stream>
|
|
{
|
|
external_ssl_context_fixture(): network_fixture<Stream>(use_external_ctx) {}
|
|
};
|
|
|
|
// The CA file that signed the server's certificate
|
|
constexpr const char CA_PEM [] = R"%(-----BEGIN CERTIFICATE-----
|
|
MIIDZzCCAk+gAwIBAgIUWznm2UoxXw3j7HCcp9PpiayTvFQwDQYJKoZIhvcNAQEL
|
|
BQAwQjELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxDjAMBgNVBAoM
|
|
BW15c3FsMQ4wDAYDVQQDDAVteXNxbDAgFw0yMDA0MDQxNDMwMjNaGA8zMDE5MDgw
|
|
NjE0MzAyM1owQjELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxDjAM
|
|
BgNVBAoMBW15c3FsMQ4wDAYDVQQDDAVteXNxbDCCASIwDQYJKoZIhvcNAQEBBQAD
|
|
ggEPADCCAQoCggEBAN0WYdvsDb+a0TxOGPejcwZT0zvTrf921mmDUlrLN1Z0hJ/S
|
|
ydgQCSD7Q+6za4lTFZCXcvs52xvvS2gfC0yXyYLCT/jA4RQRxuF+/+w1gDWEbGk0
|
|
KzEpsBuKrEIvEaVdoS78SxInnW/aegshdrRRocp4JQ6KHsZgkLTxSwPfYSUmMUo0
|
|
cRO0Q/ak3VK8NP13A6ZFvZjrBxjS3cSw9HqilgADcyj1D4EokvfI1C9LrgwgLlZC
|
|
XVkjjBqqoMXGGlnXOEK+pm8bU68HM/QvMBkb1Amo8pioNaaYgqJUCP0Ch0iu1nUU
|
|
HtsWt6emXv0jANgIW0oga7xcT4MDGN/M+IRWLTECAwEAAaNTMFEwHQYDVR0OBBYE
|
|
FNxhaGwf5ePPhzK7yOAKD3VF6wm2MB8GA1UdIwQYMBaAFNxhaGwf5ePPhzK7yOAK
|
|
D3VF6wm2MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAAoeJCAX
|
|
IDCFoAaZoQ1niI6Ac/cds8G8It0UCcFGSg+HrZ0YujJxWIruRCUG60Q2OAbEvn0+
|
|
uRpTm+4tV1Wt92WFeuRyqkomozx0g4CyfsxGX/x8mLhKPFK/7K9iTXM4/t+xQC4f
|
|
J+iRmPVsMKQ8YsHYiWVhlOMH9XJQiqERCB2kOKJCH6xkaF2k0GbM2sGgbS7Z6lrd
|
|
fsFTOIVx0VxLVsZnWX3byE9ghnDR5jn18u30Cpb/R/ShxNUGIHqRa4DkM5la6uZX
|
|
W1fpSW11JBSUv4WnOO0C2rlIu7UJWOROqZZ0OsybPRGGwagcyff2qVRuI2XFvAMk
|
|
OzBrmpfHEhF6NDU=
|
|
-----END CERTIFICATE-----
|
|
)%";
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(certificate_valid, external_ssl_context_fixture, network_gen)
|
|
{
|
|
this->external_ctx.set_verify_mode(boost::asio::ssl::verify_peer);
|
|
this->external_ctx.add_certificate_authority(boost::asio::buffer(CA_PEM));
|
|
this->physical_connect();
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::require);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(certificate_invalid, external_ssl_context_fixture, network_gen)
|
|
{
|
|
this->external_ctx.set_verify_mode(boost::asio::ssl::verify_peer);
|
|
this->physical_connect();
|
|
auto result = do_handshake(this->conn, this->params, sample.net, ssl_mode::require);
|
|
BOOST_TEST(result.err.message() == "certificate verify failed");
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(custom_certificate_verification_failed, external_ssl_context_fixture, network_gen)
|
|
{
|
|
this->external_ctx.set_verify_mode(boost::asio::ssl::verify_peer);
|
|
this->external_ctx.add_certificate_authority(boost::asio::buffer(CA_PEM));
|
|
this->external_ctx.set_verify_callback(boost::asio::ssl::host_name_verification("host.name"));
|
|
this->physical_connect();
|
|
auto result = do_handshake(this->conn, this->params, sample.net, ssl_mode::require);
|
|
BOOST_TEST(result.err.message() == "certificate verify failed");
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(custom_certificate_verification_ok, external_ssl_context_fixture, network_gen)
|
|
{
|
|
this->external_ctx.set_verify_mode(boost::asio::ssl::verify_peer);
|
|
this->external_ctx.add_certificate_authority(boost::asio::buffer(CA_PEM));
|
|
this->external_ctx.set_verify_callback(boost::asio::ssl::host_name_verification("mysql"));
|
|
this->physical_connect();
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::require);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(ssl_disable, external_ssl_context_fixture, network_gen)
|
|
{
|
|
this->external_ctx.set_verify_mode(boost::asio::ssl::verify_peer); // should have no effect
|
|
this->physical_connect();
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::disable);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END() // external_ssl_context
|
|
|
|
// Other handshake tests
|
|
BOOST_MYSQL_NETWORK_TEST(no_database, handshake_fixture, network_ssl_gen)
|
|
{
|
|
this->params.set_database("");
|
|
do_handshake_ok(this->conn, this->params, sample.net, sample.ssl);
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(bad_database, handshake_fixture, network_ssl_gen)
|
|
{
|
|
this->params.set_database("bad_database");
|
|
auto result = do_handshake(this->conn, this->params, sample.net, sample.ssl);
|
|
result.validate_error(errc::dbaccess_denied_error, {"database", "bad_database"});
|
|
}
|
|
|
|
BOOST_TEST_DECORATOR(*boost::unit_test::label("sha256"))
|
|
BOOST_MYSQL_NETWORK_TEST(unknown_auth_plugin, handshake_fixture, network_ssl_gen)
|
|
{
|
|
// Note: sha256_password is not supported, so it's an unknown plugin to us
|
|
this->set_credentials("sha2p_user", "sha2p_password");
|
|
auto result = do_handshake(this->conn, this->params, sample.net, sample.ssl);
|
|
result.validate_error(errc::unknown_auth_plugin, {});
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(bad_user, handshake_fixture, network_gen)
|
|
{
|
|
// unreliable without SSL. If the default plugin requires SSL
|
|
// (like SHA256), this would fail with 'ssl required'
|
|
this->set_credentials("non_existing_user", "bad_password");
|
|
auto result = do_handshake(this->conn, this->params, sample.net, ssl_mode::require);
|
|
result.validate_any_error(); // may be access denied or unknown auth plugin
|
|
}
|
|
|
|
BOOST_MYSQL_NETWORK_TEST(ssl_enable, handshake_fixture, network_gen)
|
|
{
|
|
// In all our CI systems, our servers support SSL, so
|
|
// ssl_mode::enable will do the same as ssl_mode::require.
|
|
// We test for this fact.
|
|
do_handshake_ok(this->conn, this->params, sample.net, ssl_mode::enable);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END() // test_handshake
|