MySQL 8.3.0
Source Code Documentation
keyring_file.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 2023, 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 also distributed 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 included with MySQL.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License, version 2.0, for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#include <cstring>
24#include <memory>
25#include <string>
26#include <vector>
27
30#include <mysql/components/services/log_builtins.h> /* LogComponentErr */
31#include "mysqld_error.h" /* Errors */
32
33#include "backend/backend.h"
34#include "config/config.h"
35
36extern SERVICE_TYPE(log_builtins) * log_bi;
37extern SERVICE_TYPE(log_builtins_string) * log_bs;
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 */
56
57bool set_paths(const char *component_path, const char *instance_path);
58
59} // namespace keyring_file
Keyring operations A class to perform operations on keyring.
Definition: operations.h:482
const mysql_service_log_builtins_string_t * log_bs
string built-ins
Definition: keyring_file.cc:136
const mysql_service_log_builtins_t * log_bi
accessor built-ins
Definition: keyring_file.cc:135
Definition: backend.cc:36
Config_pod * g_config_pod
Keyring data source.
Definition: keyring_file.cc:143
bool init_or_reinit_keyring()
Initialize or re-initialize keyring.
Definition: keyring_file.cc:185
Keyring_operations< Keyring_file_backend > * g_keyring_operations
Keyring operations object.
Definition: keyring_file.cc:140
bool set_paths(const char *component_path, const char *instance_path)
Set path to component.
Definition: keyring_file.cc:158
keyring_common::service_implementation::Component_callbacks * g_component_callbacks
Component callbacks.
Definition: component_callbacks.cc:43
bool g_keyring_file_inited
Keyring state.
Definition: keyring_file.cc:146
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:75