MySQL 9.0.0
Source Code Documentation
keyring_file.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 2024, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is designed to work with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#include <cstring>
25#include <memory>
26#include <string>
27#include <vector>
28
31#include <mysql/components/services/log_builtins.h> /* LogComponentErr */
32#include "mysqld_error.h" /* Errors */
33
34#include "backend/backend.h"
35#include "config/config.h"
36
37namespace keyring_file {
38/** Keyring operations object */
40 backend::Keyring_file_backend> *g_keyring_operations;
41
42/** Component callbacks */
45
46/** Keyring data source */
47extern config::Config_pod *g_config_pod;
48
49/** Keyring state */
50extern bool g_keyring_file_inited;
51
52/* Initialize keyring */
53bool init_or_reinit_keyring(std::string &err);
54
55bool set_paths(const char *component_path, const char *instance_path);
56
57} // namespace keyring_file
Keyring operations A class to perform operations on keyring.
Definition: operations.h:481
static Value err()
Create a Value object that represents an error condition.
Definition: json_binary.cc:927
Definition: backend.cc:38
bool init_or_reinit_keyring(std::string &err)
Initialize or re-initialize keyring.
Definition: keyring_file.cc:188
Config_pod * g_config_pod
Keyring data source.
Definition: keyring_file.cc:144
Keyring_operations< Keyring_file_backend > * g_keyring_operations
Keyring operations object.
Definition: keyring_file.cc:141
bool set_paths(const char *component_path, const char *instance_path)
Set path to component.
Definition: keyring_file.cc:159
keyring_common::service_implementation::Component_callbacks * g_component_callbacks
Component callbacks.
Definition: component_callbacks.cc:42
bool g_keyring_file_inited
Keyring state.
Definition: keyring_file.cc:147