-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathssl_init_callback.h
150 lines (122 loc) · 5.37 KB
/
ssl_init_callback.h
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* Copyright (c) 2020, 2024, 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 */
#ifndef SSL_INIT_CALLBACK_INCLUDED
#define SSL_INIT_CALLBACK_INCLUDED
#include <atomic>
#include <string>
#include <sql/auth/auth_common.h> /* ssl_artifacts_status */
/** The runtime value of whether admin TLS used different config or not */
extern std::atomic_bool g_admin_ssl_configured;
/**
The configure time value of whether admin TLS used different config or not.
The value for this is determined during system variable update.
True means that the ADMIN channel is using its own TLS configuration.
False means that the ADMIN channel is reusing the main channel's
TLS configuration.
To put this value into effect (and update @ref g_admin_ssl_configured)
one needs to execute the "ALTER INSTANCE RELOAD TLS" SQL command.
*/
extern bool opt_admin_ssl_configured;
extern std::string mysql_main_channel;
extern std::string mysql_admin_channel;
extern bool opt_tls_certificates_enforced_validation;
/** helper class to deal with optionally empty strings */
class OptionalString {
public:
OptionalString() : value_(), empty_(true) {}
OptionalString(const char *s) : value_(s ? s : ""), empty_(!s) {}
~OptionalString() = default;
OptionalString(const OptionalString &) = default;
const char *c_str() const { return empty_ ? nullptr : value_.c_str(); }
OptionalString &assign(const char *s) {
value_.assign(s ? s : "");
empty_ = !s;
return *this;
}
private:
std::string value_;
bool empty_;
};
/* Class to encasulate callbacks for init/reinit */
class Ssl_init_callback {
public:
virtual void read_parameters(OptionalString *ca, OptionalString *capath,
OptionalString *version, OptionalString *cert,
OptionalString *cipher,
OptionalString *ciphersuites,
OptionalString *key, OptionalString *crl,
OptionalString *crl_path,
bool *session_cache_mode,
long *session_cache_timeout) = 0;
virtual bool provision_certs() = 0;
virtual bool warn_self_signed_ca() = 0;
virtual ~Ssl_init_callback() = default;
};
/**
Class to encasulate callbacks for init/reinit
for client server connection port
*/
class Ssl_init_callback_server_main final : public Ssl_init_callback {
public:
void read_parameters(OptionalString *ca, OptionalString *capath,
OptionalString *version, OptionalString *cert,
OptionalString *cipher, OptionalString *ciphersuites,
OptionalString *key, OptionalString *crl,
OptionalString *crl_path, bool *session_cache_mode,
long *session_cache_timeout) override;
bool provision_certs() override;
bool warn_self_signed_ca() override;
~Ssl_init_callback_server_main() override = default;
private:
ssl_artifacts_status auto_detect_ssl();
};
/**
Class to encasulate callbacks for init/reinit
for admin connection port
*/
class Ssl_init_callback_server_admin final : public Ssl_init_callback {
public:
void read_parameters(OptionalString *ca, OptionalString *capath,
OptionalString *version, OptionalString *cert,
OptionalString *cipher, OptionalString *ciphersuites,
OptionalString *key, OptionalString *crl,
OptionalString *crl_path, bool *session_cache_mode,
long *session_cache_timeout) override;
bool provision_certs() override {
/*
No automatic provisioning. Always return
success to fallback to system variables.
*/
return false;
}
bool warn_self_signed_ca() override;
~Ssl_init_callback_server_admin() override = default;
};
extern Ssl_init_callback_server_main server_main_callback;
extern Ssl_init_callback_server_admin server_admin_callback;
/**
Helper method to validate values of --tls-version and --admin-tls-version
*/
bool validate_tls_version(const char *val);
enum class TLS_version { TLSv12 = 0, TLSv13 };
/**
Helper method to validate values of --ssl-cipher and --admin-ssl-cipher
*/
bool validate_ciphers(const char *option, const char *val, TLS_version version);
#endif // !SSL_INIT_CALLBACK_INCLUDED