1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/* Copyright (c) 2018, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#ifndef PLUGIN_GR_INCLUDE_UDF_UTILS_H
#define PLUGIN_GR_INCLUDE_UDF_UTILS_H
#include <assert.h>
#include <mysql/components/services/registry.h>
#include <mysql/components/services/udf_metadata.h>
#include <mysql/udf_registration_types.h>
#include "plugin/group_replication/include/group_actions/group_action.h"
#include "plugin/group_replication/include/member_version.h"
const char *const member_offline_or_minority_str =
"Member must be ONLINE and in the majority partition.";
const char *const unreachable_member_on_group_str =
"All members in the group must be reachable.";
const char *const recovering_member_on_group_str =
"A member is joining the group, wait for it to be ONLINE.";
const char *const server_uuid_not_present_str =
"Wrong arguments: You need to specify a server uuid.";
const char *const server_uuid_not_valid_str =
"Wrong arguments: The server uuid is not valid.";
const char *const server_uuid_not_on_group_str =
"The requested uuid is not a member of the group.";
/**
* Result data type for user_has_gr_admin_privilege.
* There are three cases:
*
* error: There was an error fetching the user's privileges
* ok: The user has the required privileges
* no_privilege: The user does *not* have the required privileges
*
* In the no_privilege case, the result contains the user's name and host for
* the caller to create an helpful error message.
*/
enum class privilege_status { ok, no_privilege, error };
class privilege_result {
public:
privilege_status status;
char const *get_user() const {
assert(status == privilege_status::no_privilege &&
"get_user() can only be called if status == no_privilege");
return user;
}
char const *get_host() const {
assert(status == privilege_status::no_privilege &&
"get_host() can only be called if status == no_privilege");
return host;
}
static privilege_result success() {
return privilege_result(privilege_status::ok);
}
static privilege_result error() {
return privilege_result(privilege_status::error);
}
static privilege_result no_privilege(char const *user, char const *host) {
return privilege_result(user, host);
}
private:
char const *user;
char const *host;
privilege_result(privilege_status status)
: status(status), user(nullptr), host(nullptr) {
assert(status != privilege_status::no_privilege &&
"privilege_result(status) can only be called if status != "
"no_privilege");
}
privilege_result(char const *user, char const *host)
: status(privilege_status::no_privilege), user(user), host(host) {}
};
/**
@class UDF_counter
Class used to increase an atomic value when UDF functions are being
initialized. If initialization fails the value will be decreased.
number_udfs_running works together with plugin_is_stopping so when group
replication is stopping, all new udf will fail to start and server will
wait for the running ones to finish.
*/
class UDF_counter {
public:
static std::atomic<int> number_udfs_running;
static void terminated() { number_udfs_running--; }
static bool is_zero() { return number_udfs_running == 0; }
UDF_counter() : success(false) { number_udfs_running++; }
~UDF_counter() {
if (!success) number_udfs_running--;
}
void succeeded() { success = true; }
private:
bool success;
};
/**
* Checks whether the user has GROUP_REPLICATION_ADMIN privilege.
*
* @retval privilege_result::error if there was an error fetching the user's
* privileges
* @retval privilege_result::no_privilege if the user does not have the
* privilege
* @retval privilege_result::success if the user has the privilege
*/
privilege_result user_has_gr_admin_privilege();
/**
* Logs the privilege status of @c privilege into @c message.
*
* @param privilege the result of @c user_has_gr_admin_privilege()
* @param[out] message the buffer where the log message will be written
*/
void log_privilege_status_result(privilege_result const &privilege,
char *message);
/**
* Checks that `super_read_only` is disabled on the server.
*
* @returns std::pair<bool, std::string> where each element has the
* following meaning:
* first element of the pair is the function error value:
* false Successful
* true Error
* second element of the pair is the error message.
*/
std::pair<bool, std::string> check_super_read_only_is_disabled();
/**
* Checks whether the server is ONLINE and belongs to the majority partition.
*
* @retval true if the member is online and in the majority partition
* @retval false otherwise
*/
bool member_online_with_majority();
/**
* Checks if an unreachable member exists in the group
*
* @retval true if an unreachable member exists
* @retval false otherwise
*/
bool group_contains_unreachable_member();
/**
* Checks if a member in recovery exists in the group
*
* @retval true if a recovering member exists
* @retval false otherwise
*/
bool group_contains_recovering_member();
/**
* Checks if the uuid is valid to use in a function
* It checks:
* 1. It is not empty
* 2. It is a valid uuid
* 3. It belongs to the group
*
* @param uuid the uuid string
* @param ulength the length of the uuid string
* @param[out] error_message the returned error message
*
* @retval true if uuid is not valid
* @retval false otherwise
*/
bool validate_uuid_parameter(std::string &uuid, size_t ulength,
const char **error_message);
/**
* Throw a error on a UDF function with mysql_error_service_printf
*
* @param action_name the action name when the error occurred
* @param error_message the error message to print
* @param log_error should the error also go to the log (default = false)
*
* @retval true the function failed to use the mysql_runtime_error service to
* throw the error
* @retval false everything went OK
*/
bool throw_udf_error(const char *action_name, const char *error_message,
bool log_error = false);
/**
* Logs the group action @c action_name result from @c result_area into
* @c result_message.
*
* @param result_area describes the log message level
* @param action_name group action name
* @param[out] result_message buffer where the log message will be written
* @param[out] length size of the log message written to @c result_message
*
* @retval true the group action failed and this function threw/logged the group
* action's error
* @retval false everything went OK
*/
bool log_group_action_result_message(Group_action_diagnostics *result_area,
const char *action_name,
char *result_message,
unsigned long *length);
/**
* Checks if tables are locked, and logs to @c message if so.
*
* @param[out] message buffer where the log message will be written to
* @retval true if tables are not locked
* @retval false if tables are locked (@c message is written to)
*/
bool check_locked_tables(char *message);
/**
* Checks whether the group contains a member older than the specified version.
*
* @param min_required_version Minimum version required
* @returns true if there is some older member, false otherwise
*/
bool group_contains_member_older_than(
Member_version const &min_required_version);
/**
@class Charset_service
Class that acquire/release the udf_metadata_service from registry service.
It provides the APIs to set the character set of return value and arguments
of UDFs using the udf_metadata service.
*/
class Charset_service {
public:
/**
Acquires the udf_metadata_service from the registry service.
@param[in] reg_srv Registry service from which udf_metadata service
will be acquired
@retval true if service could not be acquired
@retval false Otherwise
*/
static bool init(SERVICE_TYPE(registry) * reg_srv);
/**
Release the udf_metadata service
@param[in] reg_srv Registry service from which the udf_metadata
service will be released.
@retval true if service could not be released
@retval false Otherwise
*/
static bool deinit(SERVICE_TYPE(registry) * reg_srv);
/**
Set the specified character set of UDF return value
@param[in] initid UDF_INIT structure
@param[in] charset_name Character set that has to be set.
The default charset is set to 'latin1'
@retval true Could not set the character set of return value
@retval false Otherwise
*/
static bool set_return_value_charset(
UDF_INIT *initid, const std::string &charset_name = "latin1");
/**
Set the specified character set of all UDF arguments
@param[in] args UDF_ARGS structure
@param[in] charset_name Character set that has to be set.
The default charset is set to 'latin1'
@retval true Could not set the character set of any of the argument
@retval false Otherwise
*/
static bool set_args_charset(UDF_ARGS *args,
const std::string &charset_name = "latin1");
private:
/* Argument type to specify in the metadata service methods */
static const char *arg_type;
/* udf_metadata service name */
static const char *service_name;
/* Handle of udf_metadata_service */
static SERVICE_TYPE(mysql_udf_metadata) * udf_metadata_service;
};
#endif /* PLUGIN_GR_INCLUDE_UDF_UTILS_H */
|