MySQL 9.1.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 */
34#include "mysqld_error.h" /* Errors */
35
36#include "backend/backend.h"
37#include "config/config.h"
38
39namespace keyring_file {
40/** Keyring operations object */
42 backend::Keyring_file_backend> *g_keyring_operations;
43
44/** Component callbacks */
47
48/** Keyring data source */
49extern config::Config_pod *g_config_pod;
50
51/** Keyring state */
52extern bool g_keyring_file_inited;
53
54/* Initialize keyring */
55bool init_or_reinit_keyring(std::string &err);
56
57bool set_paths(const char *component_path, const char *instance_path);
58
59} // namespace keyring_file
60
64 mysql_service_registry_no_lock);
66 mysql_service_registration_no_lock);
Keyring operations A class to perform operations on keyring.
Definition: operations.h:482
Specifies macros to define Components.
REQUIRES_SERVICE_PLACEHOLDER_AS(registry, mysql_service_registry_no_lock)
REQUIRES_SERVICE_PLACEHOLDER(registry)
const mysql_service_registry_registration_t * registry_registration
static Value err()
Create a Value object that represents an error condition.
Definition: json_binary.cc:908
Definition: backend.cc:38
bool init_or_reinit_keyring(std::string &err)
Initialize or re-initialize keyring.
Definition: keyring_file.cc:193
Config_pod * g_config_pod
Keyring data source.
Definition: keyring_file.cc:149
Keyring_operations< Keyring_file_backend > * g_keyring_operations
Keyring operations object.
Definition: keyring_file.cc:146
bool set_paths(const char *component_path, const char *instance_path)
Set path to component.
Definition: keyring_file.cc:164
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:152