用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

861 lines
25 KiB

/* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
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 also distributed 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 included with MySQL.
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 */
#include "sql/rpl_gtid_persist.h"
#include "my_config.h"
#include "my_loglevel.h"
#include "sql/derror.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <list>
#include "libbinlogevents/include/control_events.h"
#include "m_ctype.h"
#include "m_string.h"
#include "my_base.h"
#include "my_command.h"
#include "my_dbug.h"
#include "my_sys.h"
#include "my_thread.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_thread.h"
#include "mysql/thread_type.h"
#include "sql/auth/sql_security_ctx.h"
#include "sql/current_thd.h"
#include "sql/debug_sync.h" // debug_sync_set_action
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/key.h"
#include "sql/log.h"
#include "sql/mysqld.h" // gtid_executed_compression_period
#include "sql/query_options.h"
#include "sql/replication.h" // THD_ENTER_COND
#include "sql/sql_base.h" // MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_lex.h"
#include "sql/sql_parse.h" // mysql_reset_thd_for_next_command
#include "sql/system_variables.h"
#include "sql_string.h"
using std::list;
using std::string;
my_thread_handle compress_thread_id;
static bool terminate_compress_thread = false;
static bool should_compress = false;
const LEX_CSTRING Gtid_table_access_context::TABLE_NAME = {
STRING_WITH_LEN("gtid_executed")};
const LEX_CSTRING Gtid_table_access_context::DB_NAME = {
STRING_WITH_LEN("mysql")};
/**
Initialize a new THD.
@param p_thd Pointer to pointer to thread structure
*/
static void init_thd(THD **p_thd) {
DBUG_TRACE;
THD *thd = *p_thd;
thd->thread_stack = reinterpret_cast<char *>(p_thd);
thd->set_command(COM_DAEMON);
thd->security_context()->skip_grants();
thd->system_thread = SYSTEM_THREAD_COMPRESS_GTID_TABLE;
thd->store_globals();
thd->set_time();
}
/**
Release resourses for the thread and restores the
system_thread information.
@param thd Thread requesting to be destroyed
*/
static void deinit_thd(THD *thd) {
DBUG_TRACE;
thd->release_resources();
thd->restore_globals();
delete thd;
current_thd = nullptr;
}
THD *Gtid_table_access_context::create_thd() {
THD *thd = System_table_access::create_thd();
thd->system_thread = SYSTEM_THREAD_COMPRESS_GTID_TABLE;
/*
This is equivalent to a new "statement". For that reason, we call
both lex_start() and mysql_reset_thd_for_next_command.
*/
lex_start(thd);
mysql_reset_thd_for_next_command(thd);
thd->set_skip_readonly_check();
return (thd);
}
void Gtid_table_access_context::drop_thd(THD *thd) {
thd->reset_skip_readonly_check();
System_table_access::drop_thd(thd);
}
void Gtid_table_access_context::before_open(THD *) {
DBUG_TRACE;
/*
Allow to operate the gtid_executed table
while disconnecting the session.
*/
m_flags = (MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK |
MYSQL_LOCK_IGNORE_GLOBAL_READ_ONLY | MYSQL_OPEN_IGNORE_FLUSH |
MYSQL_LOCK_IGNORE_TIMEOUT | MYSQL_OPEN_IGNORE_KILLED);
}
bool Gtid_table_access_context::init(THD **thd, TABLE **table, bool is_write) {
DBUG_TRACE;
if (!(*thd)) *thd = m_drop_thd_object = this->create_thd();
if (!(*thd)->is_cmd_skip_readonly()) {
(*thd)->set_skip_readonly_check();
this->m_skip_readonly_set = true;
}
m_is_write = is_write;
if (m_is_write) {
/* Disable binlog temporarily */
m_tmp_disable_binlog__save_options = (*thd)->variables.option_bits;
(*thd)->variables.option_bits &= ~OPTION_BIN_LOG;
}
if (!(*thd)->get_transaction()->xid_state()->has_state(XID_STATE::XA_NOTR)) {
/*
This type of caller of Attachable_trx_rw is deadlock-free with
the main transaction thanks to rejection to update
'mysql.gtid_executed' by XA main transaction.
*/
DBUG_ASSERT(
(*thd)->get_transaction()->xid_state()->has_state(XID_STATE::XA_IDLE) ||
(*thd)->get_transaction()->xid_state()->has_state(
XID_STATE::XA_PREPARED));
(*thd)->begin_attachable_rw_transaction();
}
(*thd)->is_operating_gtid_table_implicitly = true;
bool ret = this->open_table(
*thd, DB_NAME, TABLE_NAME, Gtid_table_persistor::number_fields,
m_is_write ? TL_WRITE : TL_READ, table, &m_backup);
return ret;
}
bool Gtid_table_access_context::deinit(THD *thd, TABLE *table, bool error,
bool need_commit) {
DBUG_TRACE;
bool err;
err = this->close_table(thd, table, &m_backup, 0 != error, need_commit);
/*
If err is true this means that there was some problem during
FLUSH LOGS commit phase.
*/
if (err) {
my_printf_error(ER_ERROR_DURING_FLUSH_LOGS,
ER_THD(thd, ER_ERROR_DURING_FLUSH_LOGS), MYF(ME_FATALERROR),
err);
LogErr(ERROR_LEVEL, ER_ERROR_DURING_FLUSH_LOG_COMMIT_PHASE, err);
return err;
}
/*
If Gtid is inserted through Attachable_trx_rw its has been done
in the above close_table() through ha_commit_trans().
It does not have any side effect to the global transaction state
as the only vulnerable part there relates to gtid (and is blocked
from recursive invocation).
*/
if (thd->is_attachable_rw_transaction_active())
thd->end_attachable_transaction();
thd->is_operating_gtid_table_implicitly = false;
/* Reenable binlog */
if (m_is_write)
thd->variables.option_bits = m_tmp_disable_binlog__save_options;
if (this->m_skip_readonly_set) {
thd->reset_skip_readonly_check();
this->m_skip_readonly_set = false;
}
if (m_drop_thd_object) this->drop_thd(m_drop_thd_object);
return err;
}
int Gtid_table_persistor::fill_fields(Field **fields, const char *sid,
rpl_gno gno_start, rpl_gno gno_end) {
DBUG_TRACE;
/* Store SID */
fields[0]->set_notnull();
if (fields[0]->store(sid, binary_log::Uuid::TEXT_LENGTH, &my_charset_bin)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[0]->field_name);
goto err;
}
/* Store gno_start */
fields[1]->set_notnull();
if (fields[1]->store(gno_start, true /* unsigned = true*/)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[1]->field_name);
goto err;
}
/* Store gno_end */
fields[2]->set_notnull();
if (fields[2]->store(gno_end, true /* unsigned = true*/)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[2]->field_name);
goto err;
}
return 0;
err:
return -1;
}
int Gtid_table_persistor::write_row(TABLE *table, const char *sid,
rpl_gno gno_start, rpl_gno gno_end) {
DBUG_TRACE;
int error = 0;
Field **fields = nullptr;
fields = table->field;
empty_record(table);
if (fill_fields(fields, sid, gno_start, gno_end)) return -1;
/* Inserts a new row into the gtid_executed table. */
error = table->file->ha_write_row(table->record[0]);
if (DBUG_EVALUATE_IF("simulate_err_on_write_gtid_into_table", (error = -1),
error)) {
if (error == HA_ERR_FOUND_DUPP_KEY) {
/* Ignore the duplicate key error, log a warning for it. */
LogErr(WARNING_LEVEL, ER_GTID_ALREADY_ADDED_BY_USER,
Gtid_table_access_context::TABLE_NAME.str);
} else {
table->file->print_error(error, MYF(0));
/*
This makes sure that the error is -1 and not the status
returned by the handler.
*/
return -1;
}
}
return 0;
}
int Gtid_table_persistor::update_row(TABLE *table, const char *sid,
rpl_gno gno_start, rpl_gno new_gno_end) {
DBUG_TRACE;
int error = 0;
Field **fields = nullptr;
uchar user_key[MAX_KEY_LENGTH];
fields = table->field;
empty_record(table);
/* Store SID */
fields[0]->set_notnull();
if (fields[0]->store(sid, binary_log::Uuid::TEXT_LENGTH, &my_charset_bin)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[0]->field_name);
return -1;
}
/* Store gno_start */
fields[1]->set_notnull();
if (fields[1]->store(gno_start, true /* unsigned = true*/)) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[1]->field_name);
return -1;
}
key_copy(user_key, table->record[0], table->key_info,
table->key_info->key_length);
if ((error = table->file->ha_index_init(0, 1))) {
table->file->print_error(error, MYF(0));
DBUG_PRINT("info", ("ha_index_init error"));
goto end;
}
if ((error = table->file->ha_index_read_map(
table->record[0], user_key, HA_WHOLE_KEY, HA_READ_KEY_EXACT))) {
DBUG_PRINT("info", ("Row not found"));
goto end;
} else {
DBUG_PRINT("info", ("Row found"));
store_record(table, record[1]);
}
/* Store new_gno_end */
fields[2]->set_notnull();
if ((error = fields[2]->store(new_gno_end, true /* unsigned = true*/))) {
my_error(ER_RPL_INFO_DATA_TOO_LONG, MYF(0), fields[2]->field_name);
goto end;
}
/* Update a row in the gtid_executed table. */
error = table->file->ha_update_row(table->record[1], table->record[0]);
if (DBUG_EVALUATE_IF("simulate_error_on_compress_gtid_table", (error = -1),
error)) {
table->file->print_error(error, MYF(0));
/*
This makes sure that the error is -1 and not the status returned
by the handler.
*/
goto end;
}
end:
table->file->ha_index_end();
if (error)
return -1;
else
return 0;
}
int Gtid_table_persistor::save(THD *thd, const Gtid *gtid) {
DBUG_TRACE;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
char buf[binary_log::Uuid::TEXT_LENGTH + 1];
/* Get source id */
global_sid_lock->rdlock();
rpl_sid sid = global_sid_map->sidno_to_sid(gtid->sidno);
global_sid_lock->unlock();
sid.to_string(buf);
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
goto end;
}
/* Save the gtid info into table. */
error = write_row(table, buf, gtid->gno, gtid->gno);
end:
table_access_ctx.deinit(thd, table, 0 != error, false);
/* Do not protect m_atomic_count for improving transactions' concurrency */
if (error == 0 && gtid_executed_compression_period != 0) {
uint32 count = (uint32)m_atomic_count++;
if (count == gtid_executed_compression_period ||
DBUG_EVALUATE_IF("compress_gtid_table", 1, 0)) {
mysql_mutex_lock(&LOCK_compress_gtid_table);
should_compress = true;
mysql_cond_signal(&COND_compress_gtid_table);
mysql_mutex_unlock(&LOCK_compress_gtid_table);
}
}
return error;
}
int Gtid_table_persistor::save(const Gtid_set *gtid_set, bool compress) {
DBUG_TRACE;
int ret = 0;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
THD *thd = current_thd;
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
/*
Gtid table is not ready to be used, so failed to
open it. Ignore the error.
*/
thd->clear_error();
if (!thd->get_stmt_da()->is_set())
thd->get_stmt_da()->set_ok_status(0, 0, nullptr);
goto end;
}
ret = error = save(table, gtid_set);
end:
const int deinit_ret = table_access_ctx.deinit(thd, table, 0 != error, true);
if (!ret && deinit_ret) ret = -1;
/* Notify compression thread to compress gtid_executed table. */
if (error == 0 && compress &&
DBUG_EVALUATE_IF("dont_compress_gtid_table", 0, 1)) {
mysql_mutex_lock(&LOCK_compress_gtid_table);
should_compress = true;
mysql_cond_signal(&COND_compress_gtid_table);
mysql_mutex_unlock(&LOCK_compress_gtid_table);
}
return ret;
}
int Gtid_table_persistor::save(TABLE *table, const Gtid_set *gtid_set) {
DBUG_TRACE;
int error = 0;
list<Gtid_interval> gtid_intervals;
list<Gtid_interval>::iterator iter;
/* Get GTID intervals from gtid_set. */
gtid_set->get_gtid_intervals(&gtid_intervals);
for (iter = gtid_intervals.begin(); iter != gtid_intervals.end(); iter++) {
/* Get source id. */
char buf[binary_log::Uuid::TEXT_LENGTH + 1];
rpl_sid sid = gtid_set->get_sid_map()->sidno_to_sid(iter->sidno);
sid.to_string(buf);
/* Save the gtid interval into table. */
if ((error = write_row(table, buf, iter->gno_start, iter->gno_end))) break;
}
gtid_intervals.clear();
return error;
}
/**
Simulate error and crash in the middle of the transaction
of compressing gtid_executed table.
@param thd Thread requesting to compress the table
@return
@retval 0 OK.
@retval -1 Error.
*/
#ifndef DBUG_OFF
static int dbug_test_on_compress(THD *thd) {
DBUG_TRACE;
/*
Sleep a little, so that notified user thread executed the statement
completely.
*/
DBUG_EXECUTE_IF("fetch_compression_thread_stage_info", sleep(5););
DBUG_EXECUTE_IF("fetch_compression_thread_stage_info", {
const char act[] = "now signal fetch_thread_stage";
DBUG_ASSERT(opt_debug_sync_timeout > 0);
DBUG_ASSERT(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
/* Sleep a little, so that we can always fetch the correct stage info. */
DBUG_EXECUTE_IF("fetch_compression_thread_stage_info", sleep(1););
/*
Wait until notified user thread executed the statement completely,
then go to crash.
*/
DBUG_EXECUTE_IF("simulate_crash_on_compress_gtid_table", {
const char act[] = "now wait_for notified_thread_complete";
DBUG_ASSERT(opt_debug_sync_timeout > 0);
DBUG_ASSERT(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
DBUG_EXECUTE_IF("simulate_crash_on_compress_gtid_table", DBUG_SUICIDE(););
return 0;
}
#endif
int Gtid_table_persistor::compress(THD *thd) {
DBUG_TRACE;
int error = 0;
bool is_complete = false;
while (!is_complete && !error)
error = compress_in_single_transaction(thd, is_complete);
m_atomic_count = 0;
DBUG_EXECUTE_IF("compress_gtid_table", {
const char act[] = "now signal complete_compression";
DBUG_ASSERT(opt_debug_sync_timeout > 0);
DBUG_ASSERT(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
return error;
}
int Gtid_table_persistor::compress_in_single_transaction(THD *thd,
bool &is_complete) {
DBUG_TRACE;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
mysql_mutex_lock(&LOCK_reset_gtid_table);
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
goto end;
}
/*
Reset stage_compressing_gtid_table to overwrite
stage_system_lock set in open_table(...).
*/
THD_STAGE_INFO(thd, stage_compressing_gtid_table);
if ((error = compress_first_consecutive_range(table, is_complete))) goto end;
#ifndef DBUG_OFF
error = dbug_test_on_compress(thd);
#endif
end:
table_access_ctx.deinit(thd, table, 0 != error, true);
mysql_mutex_unlock(&LOCK_reset_gtid_table);
return error;
}
int Gtid_table_persistor::compress_first_consecutive_range(TABLE *table,
bool &is_complete) {
DBUG_TRACE;
int ret = 0;
int err = 0;
/* Record the source id of the first consecutive gtid. */
string sid;
/* Record the first GNO of the first consecutive gtid. */
rpl_gno gno_start = 0;
/* Record the last GNO of the last consecutive gtid. */
rpl_gno gno_end = 0;
/* Record the gtid interval of the current gtid. */
string cur_sid;
rpl_gno cur_gno_start = 0;
rpl_gno cur_gno_end = 0;
/*
Indicate if we have consecutive gtids in the table.
Set the flag to true if we find the first consecutive gtids.
The first consecutive range of gtids will be compressed if
the flag is true.
*/
bool find_first_consecutive_gtids = false;
if ((err = table->file->ha_index_init(0, true))) return -1;
/* Read each row by the PK(sid, gno_start) in increasing order. */
err = table->file->ha_index_first(table->record[0]);
/* Compress the first consecutive range of gtids. */
while (!err) {
get_gtid_interval(table, cur_sid, cur_gno_start, cur_gno_end);
/*
Check if gtid intervals of previous gtid and current gtid
are consecutive.
*/
if (sid == cur_sid && gno_end + 1 == cur_gno_start) {
find_first_consecutive_gtids = true;
gno_end = cur_gno_end;
/* Delete the consecutive gtid. We do not delete the first
consecutive gtid, so that we can update it later. */
if ((err = table->file->ha_delete_row(table->record[0]))) {
table->file->print_error(err, MYF(0));
break;
}
} else {
if (find_first_consecutive_gtids) break;
/* Record the gtid interval of the first consecutive gtid. */
sid = cur_sid;
gno_start = cur_gno_start;
gno_end = cur_gno_end;
}
err = table->file->ha_index_next(table->record[0]);
}
table->file->ha_index_end();
/* Indicate if the gtid_executed table is compressd completely. */
is_complete = (err == HA_ERR_END_OF_FILE);
if (err != HA_ERR_END_OF_FILE && err != 0)
ret = -1;
else if (find_first_consecutive_gtids)
/*
Update the gno_end of the first consecutive gtid with the gno_end of
the last consecutive gtid for the first consecutive range of gtids.
*/
ret = update_row(table, sid.c_str(), gno_start, gno_end);
return ret;
}
int Gtid_table_persistor::reset(THD *thd) {
DBUG_TRACE;
int error = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
mysql_mutex_lock(&LOCK_reset_gtid_table);
if (table_access_ctx.init(&thd, &table, true)) {
error = 1;
goto end;
}
/* Reseting the counter as gtid_executed table will also
be emptied.
*/
m_atomic_count = 0;
error = delete_all(table);
end:
table_access_ctx.deinit(thd, table, 0 != error, true);
mysql_mutex_unlock(&LOCK_reset_gtid_table);
return error;
}
string Gtid_table_persistor::encode_gtid_text(TABLE *table) {
DBUG_TRACE;
char buff[MAX_FIELD_WIDTH];
String str(buff, sizeof(buff), &my_charset_bin);
/* Fetch gtid interval from the table */
table->field[0]->val_str(&str);
string gtid_text(str.c_ptr_safe());
gtid_text.append(Gtid_set::default_string_format.sid_gno_separator);
table->field[1]->val_str(&str);
gtid_text.append(str.c_ptr_safe());
gtid_text.append(Gtid_set::default_string_format.gno_start_end_separator);
table->field[2]->val_str(&str);
gtid_text.append(str.c_ptr_safe());
return gtid_text;
}
void Gtid_table_persistor::get_gtid_interval(TABLE *table, string &sid,
rpl_gno &gno_start,
rpl_gno &gno_end) {
DBUG_TRACE;
char buff[MAX_FIELD_WIDTH];
String str(buff, sizeof(buff), &my_charset_bin);
/* Fetch gtid interval from the table */
table->field[0]->val_str(&str);
sid = string(str.c_ptr_safe());
gno_start = table->field[1]->val_int();
gno_end = table->field[2]->val_int();
}
int Gtid_table_persistor::fetch_gtids(Gtid_set *gtid_set) {
DBUG_TRACE;
int ret = 0;
int err = 0;
TABLE *table = nullptr;
Gtid_table_access_context table_access_ctx;
THD *thd = current_thd;
if (table_access_ctx.init(&thd, &table, false)) {
ret = 1;
goto end;
}
if ((err = table->file->ha_rnd_init(true))) {
ret = -1;
goto end;
}
while (!(err = table->file->ha_rnd_next(table->record[0]))) {
/* Store the gtid into the gtid_set */
/**
@todo:
- take only global_sid_lock->rdlock(), and take
gtid_state->sid_lock for each iteration.
- Add wrapper around Gtid_set::add_gno_interval and call that
instead.
*/
global_sid_lock->wrlock();
if (gtid_set->add_gtid_text(encode_gtid_text(table).c_str()) !=
RETURN_STATUS_OK) {
global_sid_lock->unlock();
break;
}
global_sid_lock->unlock();
}
table->file->ha_rnd_end();
if (err != HA_ERR_END_OF_FILE) ret = -1;
end:
table_access_ctx.deinit(thd, table, 0 != ret, true);
return ret;
}
int Gtid_table_persistor::delete_all(TABLE *table) {
DBUG_TRACE;
int err = 0;
if ((err = table->file->ha_rnd_init(true))) return -1;
/*
Delete all rows in the gtid_executed table. We cannot use truncate(),
since it is a non-transactional DDL operation.
*/
while (!(err = table->file->ha_rnd_next(table->record[0]))) {
/* Delete current row. */
err = table->file->ha_delete_row(table->record[0]);
if (DBUG_EVALUATE_IF("simulate_error_on_delete_gtid_from_table", (err = -1),
err)) {
table->file->print_error(err, MYF(0));
LogErr(ERROR_LEVEL, ER_FAILED_TO_DELETE_FROM_GTID_EXECUTED_TABLE,
encode_gtid_text(table).c_str());
break;
}
}
table->file->ha_rnd_end();
if (err != HA_ERR_END_OF_FILE) return -1;
return 0;
}
/**
The main function of the compression thread.
- compress the gtid_executed table when get a compression signal.
@param p_thd Thread requesting to compress the table
@return
@retval 0 OK. always, the compression thread will swallow any error
for going to wait for next compression signal until
it is terminated.
*/
extern "C" {
static void *compress_gtid_table(void *p_thd) {
THD *thd = (THD *)p_thd;
mysql_thread_set_psi_id(thd->thread_id());
my_thread_init();
{
DBUG_TRACE;
init_thd(&thd);
/*
Gtid table compression thread should ignore 'read-only' and
'super_read_only' options so that it can update 'mysql.gtid_executed'
replication repository tables.
*/
thd->set_skip_readonly_check();
for (;;) {
mysql_mutex_lock(&LOCK_compress_gtid_table);
if (terminate_compress_thread) break;
THD_ENTER_COND(thd, &COND_compress_gtid_table, &LOCK_compress_gtid_table,
&stage_suspending, nullptr);
/* Add the check to handle spurious wakeups from system. */
while (!(should_compress || terminate_compress_thread))
mysql_cond_wait(&COND_compress_gtid_table, &LOCK_compress_gtid_table);
should_compress = false;
if (terminate_compress_thread) break;
mysql_mutex_unlock(&LOCK_compress_gtid_table);
THD_EXIT_COND(thd, nullptr);
THD_STAGE_INFO(thd, stage_compressing_gtid_table);
/* Compressing the gtid_executed table. */
if (gtid_state->compress(thd)) {
LogErr(WARNING_LEVEL, ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE);
/* Clear the error for going to wait for next compression signal. */
thd->clear_error();
DBUG_EXECUTE_IF("simulate_error_on_compress_gtid_table", {
const char act[] = "now signal compression_failed";
DBUG_ASSERT(opt_debug_sync_timeout > 0);
DBUG_ASSERT(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
};);
}
}
mysql_mutex_unlock(&LOCK_compress_gtid_table);
thd->reset_skip_readonly_check();
deinit_thd(thd);
}
my_thread_end();
my_thread_exit(0);
return 0;
}
} // extern "C"
/**
Create the compression thread to compress gtid_executed table.
*/
void create_compress_gtid_table_thread() {
my_thread_attr_t attr;
int error = 0;
THD *thd;
if (!(thd = new THD)) {
LogErr(ERROR_LEVEL, ER_FAILED_TO_COMPRESS_GTID_EXECUTED_TABLE_OOM);
return;
}
thd->set_new_thread_id();
THD_CHECK_SENTRY(thd);
if (my_thread_attr_init(&attr)) {
LogErr(ERROR_LEVEL,
ER_FAILED_TO_INIT_THREAD_ATTR_FOR_GTID_TABLE_COMPRESSION);
delete thd;
return;
}
if (DBUG_EVALUATE_IF("simulate_create_compress_thread_failure", error = 1,
0) ||
#ifndef _WIN32
(error = pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) ||
#endif
(error = mysql_thread_create(key_thread_compress_gtid_table,
&compress_thread_id, &attr,
compress_gtid_table, (void *)thd))) {
LogErr(ERROR_LEVEL, ER_FAILED_TO_CREATE_GTID_TABLE_COMPRESSION_THREAD,
error);
/* Delete the created THD after failed to create a compression thread. */
delete thd;
}
(void)my_thread_attr_destroy(&attr);
}
/**
Terminate the compression thread.
*/
void terminate_compress_gtid_table_thread() {
DBUG_TRACE;
int error = 0;
/* Notify suspended compression thread. */
mysql_mutex_lock(&LOCK_compress_gtid_table);
terminate_compress_thread = true;
mysql_cond_signal(&COND_compress_gtid_table);
mysql_mutex_unlock(&LOCK_compress_gtid_table);
if (compress_thread_id.thread != 0) {
error = my_thread_join(&compress_thread_id, nullptr);
compress_thread_id.thread = 0;
}
if (error != 0)
LogErr(WARNING_LEVEL, ER_FAILED_TO_JOIN_GTID_TABLE_COMPRESSION_THREAD,
error);
}