MySQL 8.0.37
Source Code Documentation
classic_auth_caching_sha2_forwarder.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2023, 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_CACHING_SHA2_FORWARDER_INCLUDED
27#define ROUTING_CLASSIC_AUTH_CACHING_SHA2_FORWARDER_INCLUDED
28
29#include <string>
30#include <string_view>
31#include <system_error>
32
33#include "classic_auth.h"
38
40 public:
42 std::string initial_server_auth_data,
43 bool in_handshake = true,
44 bool client_requested_full_auth = false)
45 : ForwardingProcessor(conn),
46 initial_server_auth_data_{std::move(initial_server_auth_data)},
47 client_requested_full_auth_{client_requested_full_auth},
48 stage_{in_handshake ? Stage::Response : Stage::Init} {}
49
50 enum class Stage {
51 Init,
52
56
60
62
63 Error,
64 Ok,
65
66 Done,
67 };
68
70
72 [[nodiscard]] Stage stage() const { return stage_; }
73
74 private:
76
87
89
91
92 // track if the plaintext password was requested from the client.
94 // track if the plaintext password was requested by the server.
96
98};
99
100#endif
Definition: classic_auth_caching_sha2_forwarder.h:39
AuthCachingSha2Forwarder(MysqlRoutingClassicConnectionBase *conn, std::string initial_server_auth_data, bool in_handshake=true, bool client_requested_full_auth=false)
Definition: classic_auth_caching_sha2_forwarder.h:41
Stage stage_
Definition: classic_auth_caching_sha2_forwarder.h:97
bool client_requested_full_auth_
Definition: classic_auth_caching_sha2_forwarder.h:93
Stage
Definition: classic_auth_caching_sha2_forwarder.h:50
stdx::expected< Result, std::error_code > public_key()
Definition: classic_auth_caching_sha2_forwarder.cc:495
std::string initial_server_auth_data_
Definition: classic_auth_caching_sha2_forwarder.h:90
stdx::expected< Result, std::error_code > auth_data()
Definition: classic_auth_caching_sha2_forwarder.cc:550
stdx::expected< Result, std::error_code > ok()
Definition: classic_auth_caching_sha2_forwarder.cc:624
stdx::expected< Result, std::error_code > error()
Definition: classic_auth_caching_sha2_forwarder.cc:636
void stage(Stage stage)
Definition: classic_auth_caching_sha2_forwarder.h:71
stdx::expected< Result, std::error_code > process() override
Definition: classic_auth_caching_sha2_forwarder.cc:44
bool server_requested_full_auth_
Definition: classic_auth_caching_sha2_forwarder.h:95
stdx::expected< Result, std::error_code > client_data()
Definition: classic_auth_caching_sha2_forwarder.cc:93
stdx::expected< Result, std::error_code > init()
Definition: classic_auth_caching_sha2_forwarder.cc:74
stdx::expected< Result, std::error_code > response()
Definition: classic_auth_caching_sha2_forwarder.cc:402
Stage stage() const
Definition: classic_auth_caching_sha2_forwarder.h:72
stdx::expected< Result, std::error_code > public_key_response()
Definition: classic_auth_caching_sha2_forwarder.cc:447
stdx::expected< Result, std::error_code > send_password()
Definition: classic_auth_caching_sha2_forwarder.cc:346
stdx::expected< Result, std::error_code > plaintext_password()
Definition: classic_auth_caching_sha2_forwarder.cc:257
stdx::expected< Result, std::error_code > encrypted_password()
Definition: classic_auth_caching_sha2_forwarder.cc:211
Definition: classic_auth_caching_sha2.h:39
a processor base class with helper functions.
Definition: forwarding_processor.h:34
Definition: classic_connection_base.h:221
Definition: expected.h:944
Definition: gcs_xcom_synode.h:64