MySQL 8.4.0
Source Code Documentation
classic_auth.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2022, 2024, Oracle and/or its affiliates.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License, version 2.0,
6 as published by the Free Software Foundation.
7
8 This program is designed to work with certain software (including
9 but not limited to OpenSSL) that is licensed under separate terms,
10 as designated in a particular file or component or in included license
11 documentation. The authors of MySQL hereby grant you an additional
12 permission to link the program and your derivative works with the
13 separately licensed software that they have either included with
14 the program or referenced in the documentation.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24*/
25
26#ifndef ROUTING_CLASSIC_AUTH_INCLUDED
27#define ROUTING_CLASSIC_AUTH_INCLUDED
28
29#include <memory> // unique_ptr
30#include <string_view>
31#include <system_error>
32
33#include <openssl/ssl.h>
34
37
38template <class T>
40
41template <>
42struct OsslDeleter<EVP_PKEY> {
43 void operator()(EVP_PKEY *k) { EVP_PKEY_free(k); }
44};
45
46using EvpPkey = std::unique_ptr<EVP_PKEY, OsslDeleter<EVP_PKEY>>;
47
48class AuthBase {
49 public:
51 public_key_from_ssl_ctx_as_pem(SSL_CTX *ssl_ctx);
52
54 std::string_view pubkey);
55
57 std::string plaintext, EVP_PKEY *pkey);
58
60 std::string_view ciphertext, EVP_PKEY *priv);
61
63 SSL_CTX *ssl_ctx, std::string_view encrypted, std::string_view nonce);
64
66 const EvpPkey &pkey, std::string_view password, std::string_view nonce);
67
68 static std::string_view strip_trailing_null(std::string_view s);
69
70 static bool connection_has_public_key(
72};
73
74#endif
Definition: classic_auth.h:48
static stdx::expected< std::string, std::error_code > public_key_encrypt(std::string plaintext, EVP_PKEY *pkey)
Definition: classic_auth.cc:125
static stdx::expected< std::string, std::error_code > private_key_decrypt(std::string_view ciphertext, EVP_PKEY *priv)
Definition: classic_auth.cc:166
static stdx::expected< std::string, std::error_code > rsa_encrypt_password(const EvpPkey &pkey, std::string_view password, std::string_view nonce)
Definition: classic_auth.cc:273
static stdx::expected< std::string, std::error_code > public_key_from_ssl_ctx_as_pem(SSL_CTX *ssl_ctx)
Definition: classic_auth.cc:86
static bool connection_has_public_key(MysqlRoutingClassicConnectionBase *connection)
Definition: classic_auth.cc:290
static std::string_view strip_trailing_null(std::string_view s)
remove trailing \0 in a string_view.
Definition: classic_auth.cc:45
static stdx::expected< std::string, std::error_code > rsa_decrypt_password(SSL_CTX *ssl_ctx, std::string_view encrypted, std::string_view nonce)
Definition: classic_auth.cc:244
static stdx::expected< EvpPkey, std::error_code > public_key_from_pem(std::string_view pubkey)
Definition: classic_auth.cc:112
Definition: classic_connection_base.h:56
std::unique_ptr< EVP_PKEY, OsslDeleter< EVP_PKEY > > EvpPkey
Definition: classic_auth.cc:76
Definition: expected.h:284
static char * password
Definition: mysql_secure_installation.cc:58
void operator()(EVP_PKEY *k)
Definition: classic_auth.h:43
Definition: classic_auth.h:39