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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
/* Copyright (c) 2017, 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 */
/**
@file storage/perfschema/table_log_status.cc
Table log_status (implementation).
*/
#include "storage/perfschema/table_log_status.h"
#include "mysql/plugin.h"
#include "sql/current_thd.h"
#include "sql/debug_sync.h"
#include "sql/field.h"
#include "sql/log_resource.h"
#include "sql/plugin_table.h"
#include "sql/rpl_msr.h" // channel_map
#include "storage/perfschema/pfs_instr.h"
#include "storage/perfschema/pfs_instr_class.h"
#include "storage/perfschema/table_helper.h"
THR_LOCK table_log_status::m_table_lock;
Plugin_table table_log_status::m_table_def(
/* Schema name */
"performance_schema",
/* Name */
"log_status",
/* Definition */
" SERVER_UUID CHAR(36) collate utf8mb4_bin not null,\n"
" LOCAL JSON not null,\n"
" REPLICATION JSON not null,\n"
" STORAGE_ENGINES JSON not null\n",
/* Options */
" ENGINE=PERFORMANCE_SCHEMA",
/* Tablespace */
nullptr);
PFS_engine_table_share table_log_status::m_share = {
&pfs_readonly_acl,
table_log_status::create,
nullptr, /* write_row */
nullptr, /* delete_all_rows */
table_log_status::get_row_count, /* records */
sizeof(PFS_simple_index), /* ref length */
&m_table_lock,
&m_table_def,
true, /* perpetual */
PFS_engine_table_proxy(),
{0},
false /* m_in_purgatory */
};
PFS_engine_table *table_log_status::create(PFS_engine_table_share *) {
return new table_log_status();
}
table_log_status::table_log_status()
: PFS_engine_table(&m_share, &m_pos), m_pos(0), m_next_pos(0) {}
table_log_status::~table_log_status() = default;
void table_log_status::reset_position() {
m_pos.m_index = 0;
m_next_pos.m_index = 0;
}
ha_rows table_log_status::get_row_count() { return 1; }
int table_log_status::rnd_next() {
int res = HA_ERR_END_OF_FILE;
for (m_pos.set_at(&m_next_pos); m_pos.m_index < 1 && res != 0; m_pos.next()) {
res = make_row();
m_next_pos.set_after(&m_pos);
}
return res;
}
int table_log_status::rnd_pos(const void *pos [[maybe_unused]]) {
int res = HA_ERR_RECORD_DELETED;
set_position(pos);
if (m_pos.m_index == 1) {
res = make_row();
}
return res;
}
struct st_register_hton_arg {
std::list<Log_resource *> *resources;
Json_dom *json;
};
static bool iter_storage_engines_register(THD *, plugin_ref plugin, void *arg) {
auto *vargs = (st_register_hton_arg *)arg;
auto *hton = plugin_data<handlerton *>(plugin);
bool result = false;
assert(plugin_state(plugin) == PLUGIN_IS_READY);
/* The storage engine must implement all three functions to be supported */
if (hton->lock_hton_log && hton->unlock_hton_log &&
hton->collect_hton_log_info) {
Log_resource *resource;
resource = Log_resource_factory::get_wrapper(hton, vargs->json);
result = !resource;
if (!result) {
vargs->resources->push_back(resource);
}
}
return result;
}
int table_log_status::make_row() {
DBUG_TRACE;
THD *thd = current_thd;
/* Report an error if THD has no BACKUP_ADMIN privilege */
Security_context *sctx = thd->security_context();
if (!sctx->has_global_grant(STRING_WITH_LEN("BACKUP_ADMIN")).first) {
my_error(ER_SPECIFIC_ACCESS_DENIED_ERROR, MYF(0), "BACKUP_ADMIN");
return HA_ERR_RECORD_DELETED;
}
/* Lock instance to collect log information */
mysql_mutex_lock(&LOCK_collect_instance_log);
bool error = false;
Json_object json_local; // LOCAL field
Json_object json_replication; // REPLICATION field
Json_array json_replication_array; // JSON array for REPLICATION field
Json_object json_storage_engines; // STORAGE_ENGINES field
/* To block replication channels creation/removal */
channel_map.wrlock();
/* List of resources to be locked/collected/unlocked */
std::list<Log_resource *> resources;
std::list<Log_resource *>::iterator it;
std::list<Log_resource *>::reverse_iterator rit;
/*
Add resources to lock/collect/unlock list.
Each resource will to be added to the list will be wrapped with a new
object that will be deleted once finishing this process.
Note: the order the resources are added to the resource list is also the
order they will lock theirs resources.
*/
/*
Add existing channels Master_info to the resources list, so that they can
be blocked and their data collected in later steps.
*/
for (uint mi_index = 0; mi_index < channel_map.get_max_channels();
mi_index++) {
Master_info *mi = channel_map.get_mi_at_pos(mi_index);
if (Master_info::is_configured(mi)) // channel is configured
{
Log_resource *res;
res = Log_resource_factory::get_wrapper(mi, &json_replication_array);
error = DBUG_EVALUATE_IF("log_status_oom_mi", 1, !res);
if (error) {
char errfmt[] =
"failed to allocate memory to collect "
"information from replication channel '%s'";
char errbuf[sizeof(errfmt) + CHANNEL_NAME_LENGTH];
(void)sprintf(errbuf, errfmt, mi->get_channel());
my_error(ER_UNABLE_TO_COLLECT_LOG_STATUS, MYF(0), "REPLICATION",
errbuf);
/* To please valgrind */
DBUG_EXECUTE_IF("log_status_oom_mi", resources.push_back(res););
goto end;
}
resources.push_back(res);
}
}
/*
Add binary log to the resources list, so that it can be blocked and its
data collected in later steps.
*/
{
Log_resource *res;
res = Log_resource_factory::get_wrapper(&mysql_bin_log, &json_local);
error = DBUG_EVALUATE_IF("log_status_oom_binlog", 1, !res);
if (error) {
my_error(ER_UNABLE_TO_COLLECT_LOG_STATUS, MYF(0), "LOCAL",
"failed to allocate memory to collect "
"binary log information");
/* To please valgrind */
DBUG_EXECUTE_IF("log_status_oom_binlog", resources.push_back(res););
goto end;
}
resources.push_back(res);
}
/*
Add Gtid_state to the resources list, so that it can be blocked and its
data (GTID_EXECUTED) collected in later steps.
*/
{
Log_resource *res;
res = Log_resource_factory::get_wrapper(gtid_state, &json_local,
&mysql_bin_log);
error = DBUG_EVALUATE_IF("log_status_oom_gtid", 1, !res);
if (error) {
my_error(ER_UNABLE_TO_COLLECT_LOG_STATUS, MYF(0), "LOCAL",
"failed to allocate memory to collect "
"gtid_executed information");
/* To please valgrind */
DBUG_EXECUTE_IF("log_status_oom_gtid", resources.push_back(res););
goto end;
}
resources.push_back(res);
}
/* To block storage engines logs, collect their logs information */
/*
Add storage engine's handlertons to the resources list, so that they can be
blocked and their data collected in later steps.
*/
{
st_register_hton_arg args = {&resources, &json_storage_engines};
error = plugin_foreach(thd, iter_storage_engines_register,
MYSQL_STORAGE_ENGINE_PLUGIN, &args);
if (error || DBUG_EVALUATE_IF("log_status_oom_se", 1, 0)) {
my_error(ER_UNABLE_TO_COLLECT_LOG_STATUS, MYF(0), "STORAGE_ENGINE",
"failed to allocate memory to collect "
"storage engines information");
goto end;
}
}
/* Lock all resources */
for (it = resources.begin(); it != resources.end(); ++it) {
(*it)->lock();
}
DBUG_SIGNAL_WAIT_FOR(thd, "pause_collecting_instance_logs_info",
"reached_collecting_instance_logs_info",
"continue_collecting_instance_logs_info");
/* Collect all resources information (up to hitting some error) */
for (it = resources.begin(); it != resources.end(); ++it) {
error =
DBUG_EVALUATE_IF("log_status_oom_collecting", 1, (*it)->collect_info());
if (error) {
my_error(ER_UNABLE_TO_COLLECT_LOG_STATUS, MYF(0),
(*it)->get_json() == &json_storage_engines ? "STORAGE_ENGINES"
: (*it)->get_json() == &json_local ? "LOCAL"
: "REPLICATION",
"failed to allocate memory to collect information");
goto err_unlock;
}
}
err_unlock:
/* Unlock all resources */
for (rit = resources.rbegin(); rit != resources.rend(); ++rit) {
(*rit)->unlock();
}
end:
/* Delete all wrappers */
while (!resources.empty()) {
Log_resource *wrapper = resources.back();
resources.pop_back();
delete wrapper;
}
/* To allow replication channels creation/removal/admin */
channel_map.unlock();
/* Unlock instance after collecting log information */
mysql_mutex_unlock(&LOCK_collect_instance_log);
if (!error) {
/* Populate m_row */
error = DBUG_EVALUATE_IF(
"log_status_oom_replication", 1,
json_replication.add_clone("channels", &json_replication_array));
if (error) {
my_error(ER_UNABLE_TO_COLLECT_LOG_STATUS, MYF(0), "REPLICATION",
"failed to allocate memory to collect information");
} else {
memcpy(m_row.server_uuid, server_uuid, UUID_LENGTH);
m_row.w_local = Json_wrapper(json_local.clone());
m_row.w_replication = Json_wrapper(json_replication.clone());
m_row.w_storage_engines = Json_wrapper(json_storage_engines.clone());
}
}
return error ? HA_ERR_RECORD_DELETED : 0;
}
int table_log_status::read_row_values(TABLE *table [[maybe_unused]],
unsigned char *buf [[maybe_unused]],
Field **fields [[maybe_unused]],
bool read_all [[maybe_unused]]) {
Field *f;
assert(table->s->null_bytes == 0);
buf[0] = 0;
for (; (f = *fields); fields++) {
if (read_all || bitmap_is_set(table->read_set, f->field_index())) {
switch (f->field_index()) {
case 0: /*server_uuid*/
set_field_char_utf8mb4(f, m_row.server_uuid, UUID_LENGTH);
break;
case 1: /*local*/
set_field_json(f, &m_row.w_local);
break;
case 2: /*replication*/
set_field_json(f, &m_row.w_replication);
break;
case 3: /*storage_engines*/
set_field_json(f, &m_row.w_storage_engines);
break;
default:
assert(false);
}
}
}
m_row.cleanup();
return 0;
}
|