MySQL 9.0.0
Source Code Documentation
classic_auth_native_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_NATIVE_FORWARDER_INCLUDED
27#define ROUTING_CLASSIC_AUTH_NATIVE_FORWARDER_INCLUDED
28
29#include <optional>
30#include <string>
31#include <string_view>
32#include <system_error>
33
34#include "classic_auth_native.h"
38
40 public:
42 std::string initial_server_auth_data,
43 bool in_handshake = false)
44 : ForwardingProcessor(conn),
45 initial_server_auth_data_{std::move(initial_server_auth_data)},
46 stage_{in_handshake ? Stage::Response : Stage::Init} {}
47
48 enum class Stage {
49 Init,
50
56
57 Error,
58 Ok,
59
60 Done,
61 };
62
64
66 [[nodiscard]] Stage stage() const { return stage_; }
67
68 private:
70
79
81
83};
84
85#endif
Definition: classic_auth_native_forwarder.h:39
Stage
Definition: classic_auth_native_forwarder.h:48
stdx::expected< Result, std::error_code > response()
Definition: classic_auth_native_forwarder.cc:329
stdx::expected< Result, std::error_code > process() override
Definition: classic_auth_native_forwarder.cc:40
stdx::expected< Result, std::error_code > init()
Definition: classic_auth_native_forwarder.cc:72
std::string initial_server_auth_data_
Definition: classic_auth_native_forwarder.h:80
void stage(Stage stage)
Definition: classic_auth_native_forwarder.h:65
stdx::expected< Result, std::error_code > caching_sha2_encrypted()
Definition: classic_auth_native_forwarder.cc:277
Stage stage_
Definition: classic_auth_native_forwarder.h:82
stdx::expected< Result, std::error_code > error()
Definition: classic_auth_native_forwarder.cc:379
stdx::expected< Result, std::error_code > client_data()
Definition: classic_auth_native_forwarder.cc:108
Stage stage() const
Definition: classic_auth_native_forwarder.h:66
AuthNativeForwarder(MysqlRoutingClassicConnectionBase *conn, std::string initial_server_auth_data, bool in_handshake=false)
Definition: classic_auth_native_forwarder.h:41
stdx::expected< Result, std::error_code > ok()
Definition: classic_auth_native_forwarder.cc:367
stdx::expected< Result, std::error_code > caching_sha2_plaintext()
Definition: classic_auth_native_forwarder.cc:189
stdx::expected< Result, std::error_code > caching_sha2_scrambled()
Definition: classic_auth_native_forwarder.cc:135
Definition: classic_auth_native.h:33
a processor base class with helper functions.
Definition: forwarding_processor.h:38
Definition: classic_connection_base.h:56
Definition: expected.h:284
Definition: gcs_xcom_synode.h:64