1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*
Copyright (c) 2014, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <functional>
#include <vector>
#include "client/base/mysql_connection_options.h"
#include "client/client_priv.h"
#include "my_compiler.h"
#include "sslopt-vars.h"
#include "typelib.h"
using namespace Mysql::Tools::Base::Options;
using std::placeholders::_1;
void Mysql_connection_options::Ssl_options::create_options() {
std::function<void(char *)> callback(std::bind(
&Mysql_connection_options::Ssl_options::mode_option_callback, this, _1));
this->create_new_option(&this->m_ssl_mode_string, "ssl-mode",
"SSL connection mode.")
->add_callback(new std::function<void(char *)>(std::bind(
&Mysql_connection_options::Ssl_options::mode_option_callback, this,
_1)));
this->create_new_option(&::opt_ssl_ca, "ssl-ca", "CA file in PEM format.")
->add_callback(new std::function<void(char *)>(
std::bind(&Mysql_connection_options::Ssl_options::ca_option_callback,
this, _1)));
this->create_new_option(&::opt_ssl_capath, "ssl-capath", "CA directory.")
->add_callback(new std::function<void(char *)>(
std::bind(&Mysql_connection_options::Ssl_options::ca_option_callback,
this, _1)));
this->create_new_option(&::opt_ssl_cert, "ssl-cert",
"X509 cert in PEM format.");
this->create_new_option(&::opt_ssl_cipher, "ssl-cipher",
"SSL cipher to use.");
this->create_new_option(&::opt_tls_ciphersuites, "tls-ciphersuites",
"TLS v1.3 cipher to use.");
this->create_new_option(&::opt_ssl_key, "ssl-key", "X509 key in PEM format.");
this->create_new_option(&::opt_ssl_crl, "ssl-crl",
"Certificate revocation list.");
this->create_new_option(&::opt_ssl_crlpath, "ssl-crlpath",
"Certificate revocation list path.");
this->create_new_option(&::opt_tls_version, "tls-version",
"TLS version to use.");
this->create_new_option(&this->m_ssl_fips_mode_string, "ssl-fips-mode",
"SSL fips mode to use.")
->add_callback(new std::function<void(char *)>(std::bind(
&Mysql_connection_options::Ssl_options::fips_mode_option_callback,
this, _1)));
this->create_new_option(
&::opt_ssl_session_data, "ssl-session-data",
"Session data file to use to enable ssl session reuse");
this->create_new_option(&::opt_ssl_session_data_continue_on_failed_reuse,
"ssl-session-data-continue-on-failed-reuse",
"If set to ON, this option will allow connection to "
"succeed even if session data cannot be reused.");
}
void Mysql_connection_options::Ssl_options::ca_option_callback(
char *argument [[maybe_unused]]) {
if (!ssl_mode_set_explicitly) ::opt_ssl_mode = SSL_MODE_VERIFY_CA;
}
void Mysql_connection_options::Ssl_options::mode_option_callback(
char *argument) {
::opt_ssl_mode = find_type_or_exit(argument, &ssl_mode_typelib, "ssl-mode");
ssl_mode_set_explicitly = true;
}
void Mysql_connection_options::Ssl_options::fips_mode_option_callback(
char *argument) {
::opt_ssl_fips_mode =
find_type_or_exit(argument, &ssl_fips_mode_typelib, "ssl-fips-mode") - 1;
}
bool Mysql_connection_options::Ssl_options::apply_for_connection(
MYSQL *connection) {
if (SSL_SET_OPTIONS(connection)) {
std::cerr << SSL_SET_OPTIONS_ERROR;
return true;
}
return false;
}
bool Mysql_connection_options::Ssl_options::check_connection(
MYSQL *connection) {
return ssl_client_check_post_connect_ssl_setup(
connection, [](const char *err) { std::cerr << err << std::endl; });
}
|