mysql-server/sql/xa.cc
2025-03-05 14:31:37 +07:00

702 lines
22 KiB
C++

/* Copyright (c) 2013, 2024, 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 */
#include "sql/xa.h"
#include <memory>
#include <new>
#include <string>
#include <unordered_map>
#include <utility>
#include "dig_vec.h"
#include "map_helpers.h"
#include "my_dbug.h"
#include "my_macros.h"
#include "my_psi_config.h"
#include "my_sys.h"
#include "mysql/components/services/bits/mysql_mutex_bits.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/components/services/bits/psi_mutex_bits.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/my_loglevel.h"
#include "mysql/plugin.h" // MYSQL_XIDDATASIZE
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_transaction.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/strings/m_ctype.h"
#include "mysql_com.h"
#include "mysqld_error.h"
#include "scope_guard.h" // Scope_guard
#include "sql/auth/sql_security_ctx.h"
#include "sql/binlog.h" // is_transaction_empty
#include "sql/clone_handler.h"
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/handler.h" // handlerton
#include "sql/item.h"
#include "sql/log.h"
#include "sql/mdl.h"
#include "sql/mdl_context_backup.h" // MDL_context_backup_manager
#include "sql/mysqld.h" // server_id
#include "sql/protocol.h"
#include "sql/psi_memory_key.h" // key_memory_xa_transaction_contexts
#include "sql/query_options.h"
#include "sql/rpl_context.h"
#include "sql/rpl_gtid.h"
#include "sql/rpl_handler.h" // RUN_HOOK
#include "sql/rpl_replica_commit_order_manager.h" // Commit_order_manager
#include "sql/sql_class.h" // THD
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_lex.h" // struct LEX
#include "sql/sql_list.h"
#include "sql/sql_plugin.h" // plugin_foreach
#include "sql/sql_table.h" // filename_to_tablename
#include "sql/system_variables.h"
#include "sql/tc_log.h" // tc_log
#include "sql/transaction.h" // trans_begin, trans_rollback
#include "sql/transaction_info.h"
#include "sql/xa/recovery.h" // xa::recovery
#include "sql/xa/sql_xa_commit.h" // Sql_cmd_xa_commit
#include "sql/xa/transaction_cache.h" // xa::Transaction_cache
#include "sql_string.h"
#include "string_with_len.h"
#include "template_utils.h"
#include "thr_mutex.h"
const char *XID_STATE::xa_state_names[] = {"NON-EXISTING", "ACTIVE", "IDLE",
"PREPARED", "ROLLBACK ONLY"};
/* for recover() handlerton call */
static const int MIN_XID_LIST_SIZE = 128;
static const int MAX_XID_LIST_SIZE = 1024 * 128;
static const uint MYSQL_XID_PREFIX_LEN = 8; // must be a multiple of 8
static const uint MYSQL_XID_OFFSET = MYSQL_XID_PREFIX_LEN + sizeof(server_id);
static const uint MYSQL_XID_GTRID_LEN = MYSQL_XID_OFFSET + sizeof(my_xid);
static void attach_native_trx(THD *thd);
my_xid xid_t::get_my_xid() const {
static_assert(XIDDATASIZE == MYSQL_XIDDATASIZE,
"Our #define needs to match the one in plugin.h.");
if (gtrid_length == static_cast<long>(MYSQL_XID_GTRID_LEN) &&
bqual_length == 0 &&
!memcmp(data, MYSQL_XID_PREFIX, MYSQL_XID_PREFIX_LEN)) {
my_xid tmp;
memcpy(&tmp, data + MYSQL_XID_OFFSET, sizeof(tmp));
return tmp;
}
return 0;
}
void xid_t::set(my_xid xid) {
formatID = 1;
memcpy(data, MYSQL_XID_PREFIX, MYSQL_XID_PREFIX_LEN);
memcpy(data + MYSQL_XID_PREFIX_LEN, &server_id, sizeof(server_id));
memcpy(data + MYSQL_XID_OFFSET, &xid, sizeof(xid));
gtrid_length = MYSQL_XID_GTRID_LEN;
bqual_length = 0;
}
xid_t &xid_t::operator=(
mysql::binlog::event::XA_prepare_event::MY_XID const &rhs) {
this->set_format_id(rhs.formatID);
this->set_gtrid_length(rhs.gtrid_length);
this->set_bqual_length(rhs.bqual_length);
this->set_data(rhs.data, rhs.gtrid_length + rhs.bqual_length);
return (*this);
}
bool xid_t::operator==(struct xid_t const &rhs) const { return this->eq(&rhs); }
bool xid_t::operator!=(struct xid_t const &rhs) const {
return !((*this) == rhs);
}
bool xid_t::operator<(const xid_t &rhs) const {
if (this->get_format_id() < rhs.get_format_id()) return true;
if (this->get_gtrid_length() < rhs.get_gtrid_length()) {
return true;
}
if (this->get_gtrid_length() > rhs.get_gtrid_length()) {
return false;
}
if (this->get_bqual_length() < rhs.get_bqual_length()) {
return true;
}
if (this->get_bqual_length() > rhs.get_bqual_length()) {
return false;
}
if (std::memcmp(this->get_data(), rhs.get_data(),
this->get_gtrid_length() + this->get_bqual_length()) < 0)
return true;
return false;
}
std::ostream &operator<<(std::ostream &out, struct xid_t const &in) {
char buf[XID::ser_buf_size] = {0};
out << const_cast<const char *>(in.serialize(buf)) << std::flush;
return out;
}
Recovered_xa_transactions *Recovered_xa_transactions::m_instance = nullptr;
Recovered_xa_transactions::Recovered_xa_transactions()
: m_prepared_xa_trans(Malloc_allocator<XA_recover_txn *>(
key_memory_xa_recovered_transactions)),
m_mem_root_inited(false) {}
Recovered_xa_transactions &Recovered_xa_transactions::instance() {
return *m_instance;
}
bool Recovered_xa_transactions::init() {
m_instance = new (std::nothrow) Recovered_xa_transactions();
return m_instance == nullptr;
}
void Recovered_xa_transactions::destroy() {
delete m_instance;
m_instance = nullptr;
}
bool Recovered_xa_transactions::add_prepared_xa_transaction(
XA_recover_txn const *prepared_xa_trn_arg) {
XA_recover_txn *prepared_xa_trn = new (&m_mem_root) XA_recover_txn();
if (prepared_xa_trn == nullptr) {
LogErr(ERROR_LEVEL, ER_SERVER_OUTOFMEMORY,
static_cast<int>(sizeof(XA_recover_txn)));
return true;
}
prepared_xa_trn->id = prepared_xa_trn_arg->id;
prepared_xa_trn->mod_tables = prepared_xa_trn_arg->mod_tables;
m_prepared_xa_trans.push_back(prepared_xa_trn);
return false;
}
MEM_ROOT *Recovered_xa_transactions::get_allocated_memroot() {
if (!m_mem_root_inited) {
init_sql_alloc(key_memory_xa_transaction_contexts, &m_mem_root,
TABLE_ALLOC_BLOCK_SIZE);
m_mem_root_inited = true;
}
return &m_mem_root;
}
static bool xarecover_create_mdl_backup(XA_recover_txn &txn,
MEM_ROOT *mem_root) {
MDL_request_list mdl_requests;
List_iterator<st_handler_tablename> table_list_it(*txn.mod_tables);
st_handler_tablename *tbl_name;
while ((tbl_name = table_list_it++)) {
MDL_request *table_mdl_request = new (mem_root) MDL_request;
if (table_mdl_request == nullptr) {
/* Out of memory: Abort() */
return true;
}
char db_buff[NAME_CHAR_LEN * FILENAME_CHARSET_MBMAXLEN + 1];
int len = filename_to_tablename(tbl_name->db, db_buff, sizeof(db_buff));
db_buff[len] = '\0';
char name_buff[NAME_CHAR_LEN * FILENAME_CHARSET_MBMAXLEN + 1];
len = filename_to_tablename(tbl_name->tablename, name_buff,
sizeof(name_buff));
name_buff[len] = '\0';
/*
We do not have information about the actual lock taken
during the transaction. Hence we are going with a strong
lock to be safe.
*/
MDL_REQUEST_INIT(table_mdl_request, MDL_key::TABLE, db_buff, name_buff,
MDL_SHARED_WRITE, MDL_TRANSACTION);
mdl_requests.push_front(table_mdl_request);
}
return MDL_context_backup_manager::instance().create_backup(
&mdl_requests, txn.id.key(), txn.id.key_length());
}
bool Recovered_xa_transactions::recover_prepared_xa_transactions() {
bool ret = false;
if (m_mem_root_inited) {
while (!m_prepared_xa_trans.empty()) {
auto prepared_xa_trn = m_prepared_xa_trans.front();
xa::Transaction_cache::insert(&prepared_xa_trn->id);
if (xarecover_create_mdl_backup(*prepared_xa_trn, &m_mem_root)) {
ret = true;
break;
}
m_prepared_xa_trans.pop_front();
}
m_mem_root.Clear();
m_mem_root_inited = false;
}
return ret;
}
int ha_recover(Xid_commit_list *commit_list, Xa_state_list *xa_list) {
xarecover_st info;
DBUG_TRACE;
info.found_foreign_xids = info.found_my_xids = 0;
info.commit_list = commit_list;
info.dry_run = (info.commit_list == nullptr &&
tc_heuristic_recover == TC_HEURISTIC_NOT_USED);
info.list = nullptr;
std::unique_ptr<MEM_ROOT> mem_root{nullptr};
std::unique_ptr<Xa_state_list::allocator> map_alloc{nullptr};
std::unique_ptr<Xa_state_list::list> xid_map{nullptr};
std::unique_ptr<Xa_state_list> external_xids{nullptr};
if (xa_list == nullptr) {
std::tie(mem_root, map_alloc, xid_map, external_xids) =
Xa_state_list::new_instance();
xa_list = external_xids.get();
}
info.xa_list = xa_list;
/* commit_list and tc_heuristic_recover cannot be set both */
assert(info.commit_list == nullptr ||
tc_heuristic_recover == TC_HEURISTIC_NOT_USED);
/* if either is set, total_ha_2pc must be set too */
assert(info.dry_run || total_ha_2pc > (ulong)opt_bin_log);
if (total_ha_2pc <= (ulong)opt_bin_log) return 0;
if (info.commit_list) LogErr(SYSTEM_LEVEL, ER_XA_STARTING_RECOVERY);
if (total_ha_2pc > (ulong)opt_bin_log + 1) {
if (tc_heuristic_recover == TC_HEURISTIC_RECOVER_ROLLBACK) {
LogErr(ERROR_LEVEL, ER_XA_NO_MULTI_2PC_HEURISTIC_RECOVER);
return 1;
}
} else {
/*
If there is only one 2pc capable storage engine it is always safe
to rollback. This setting will be ignored if we are in automatic
recovery mode.
*/
tc_heuristic_recover = TC_HEURISTIC_RECOVER_ROLLBACK; // forcing ROLLBACK
info.dry_run = false;
}
for (info.len = MAX_XID_LIST_SIZE;
info.list == nullptr && info.len > MIN_XID_LIST_SIZE; info.len /= 2) {
info.list = new (std::nothrow) XA_recover_txn[info.len];
}
if (!info.list) {
LogErr(ERROR_LEVEL, ER_SERVER_OUTOFMEMORY,
static_cast<int>(info.len * sizeof(XID)));
return 1;
}
auto clean_up_guard = create_scope_guard([&] { delete[] info.list; });
if (plugin_foreach(nullptr, xa::recovery::recover_prepared_in_tc_one_ht,
MYSQL_STORAGE_ENGINE_PLUGIN, &info)) {
return 1;
}
if (plugin_foreach(nullptr, xa::recovery::recover_one_ht,
MYSQL_STORAGE_ENGINE_PLUGIN, &info)) {
return 1;
}
if (info.found_foreign_xids)
LogErr(WARNING_LEVEL, ER_XA_RECOVER_FOUND_XA_TRX, info.found_foreign_xids);
if (info.dry_run && info.found_my_xids) {
LogErr(ERROR_LEVEL, ER_XA_RECOVER_EXPLANATION, info.found_my_xids,
opt_tc_log_file);
return 1;
}
if (info.commit_list) LogErr(SYSTEM_LEVEL, ER_XA_RECOVERY_DONE);
return 0;
}
bool xa_trans_force_rollback(THD *thd) {
/*
We must reset rm_error before calling ha_rollback(),
so thd->transaction.xid structure gets reset
by ha_rollback()/THD::transaction::cleanup().
*/
thd->get_transaction()->xid_state()->reset_error();
if (ha_rollback_trans(thd, true)) {
my_error(ER_XAER_RMERR, MYF(0));
return true;
}
return false;
}
void cleanup_trans_state(THD *thd) {
thd->variables.option_bits &= ~OPTION_BEGIN;
thd->server_status &=
~(SERVER_STATUS_IN_TRANS | SERVER_STATUS_IN_TRANS_READONLY);
thd->get_transaction()->reset_unsafe_rollback_flags(Transaction_ctx::SESSION);
DBUG_PRINT("info", ("clearing SERVER_STATUS_IN_TRANS"));
xa::Transaction_cache::remove(thd->get_transaction());
}
std::shared_ptr<Transaction_ctx> find_trn_for_recover_and_check_its_state(
THD *thd, xid_t *xid_for_trn_in_recover, XID_STATE *xid_state) {
if (!xid_state->has_state(XID_STATE::XA_NOTR) ||
thd->in_active_multi_stmt_transaction()) {
DBUG_PRINT("xa", ("Failed to look up tran because it is NOT in XA_NOTR"));
my_error(ER_XAER_RMFAIL, MYF(0), xid_state->state_name());
return nullptr;
}
auto foundit = xa::Transaction_cache::find(
xid_for_trn_in_recover,
[&](std::shared_ptr<Transaction_ctx> const &item) -> bool {
DEBUG_SYNC(thd, "before_accessing_xid_state");
return item->xid_state()
->is_detached(); // Safe from race condition with `~THD()` after
// we verify that no THD owns the transaction
// context (is_detached() == true).
});
if (foundit == nullptr) {
my_error(ER_XAER_NOTA, MYF(0));
return nullptr;
}
return foundit;
}
bool acquire_mandatory_metadata_locks(THD *thd, xid_t *detached_xid) {
/*
Acquire metadata lock which will ensure that XA ROLLBACK is blocked
by active FLUSH TABLES WITH READ LOCK (and vice versa ROLLBACK in
progress blocks FTWRL). This is to avoid binlog and redo entries
while a backup is in progress.
*/
MDL_request mdl_request;
MDL_REQUEST_INIT(&mdl_request, MDL_key::COMMIT, "", "",
MDL_INTENTION_EXCLUSIVE, MDL_STATEMENT);
if (thd->mdl_context.acquire_lock(&mdl_request,
thd->variables.lock_wait_timeout)) {
return true;
}
/*
Like in the commit case a failure to store gtid is regarded
as the resource manager issue.
*/
if (MDL_context_backup_manager::instance().restore_backup(
&thd->mdl_context, detached_xid->key(), detached_xid->key_length())) {
return true;
}
return false;
}
bool XID_STATE::xa_trans_rolled_back() {
DBUG_EXECUTE_IF("simulate_xa_rm_error", rm_error = true;);
if (rm_error) {
switch (rm_error) {
case ER_LOCK_WAIT_TIMEOUT:
my_error(ER_XA_RBTIMEOUT, MYF(0));
break;
case ER_LOCK_DEADLOCK:
my_error(ER_XA_RBDEADLOCK, MYF(0));
break;
default:
my_error(ER_XA_RBROLLBACK, MYF(0));
}
xa_state = XID_STATE::XA_ROLLBACK_ONLY;
}
return (xa_state == XID_STATE::XA_ROLLBACK_ONLY);
}
bool XID_STATE::check_xa_idle_or_prepared(bool report_error) const {
if (xa_state == XA_IDLE || xa_state == XA_PREPARED) {
if (report_error)
my_error(ER_XAER_RMFAIL, MYF(0), xa_state_names[xa_state]);
return true;
}
return false;
}
bool XID_STATE::check_has_uncommitted_xa() const {
if (xa_state == XA_IDLE || xa_state == XA_PREPARED ||
xa_state == XA_ROLLBACK_ONLY) {
my_error(ER_XAER_RMFAIL, MYF(0), xa_state_names[xa_state]);
return true;
}
return false;
}
bool XID_STATE::check_in_xa(bool report_error) const {
if (xa_state != XA_NOTR) {
if (report_error)
my_error(ER_XAER_RMFAIL, MYF(0), xa_state_names[xa_state]);
return true;
}
return false;
}
void XID_STATE::set_error(THD *thd) {
if (xa_state != XA_NOTR) rm_error = thd->get_stmt_da()->mysql_errno();
}
void XID_STATE::store_xid_info(Protocol *protocol,
bool print_xid_as_hex) const {
protocol->store_longlong(static_cast<longlong>(m_xid.formatID), false);
protocol->store_longlong(static_cast<longlong>(m_xid.gtrid_length), false);
protocol->store_longlong(static_cast<longlong>(m_xid.bqual_length), false);
if (print_xid_as_hex) {
/*
xid_buf contains enough space for 0x followed by HEX representation
of the binary XID data and one null termination character.
*/
char xid_buf[XIDDATASIZE * 2 + 2 + 1];
xid_buf[0] = '0';
xid_buf[1] = 'x';
const size_t xid_str_len =
bin_to_hex_str(xid_buf + 2, sizeof(xid_buf) - 2, m_xid.data,
m_xid.gtrid_length + m_xid.bqual_length) +
2;
protocol->store_string(xid_buf, xid_str_len, &my_charset_bin);
} else {
protocol->store_string(m_xid.data, m_xid.gtrid_length + m_xid.bqual_length,
&my_charset_bin);
}
}
#ifndef NDEBUG
char *XID::xid_to_str(char *buf) const {
char *s = buf;
*s++ = '\'';
for (int i = 0; i < gtrid_length + bqual_length; i++) {
/* is_next_dig is set if next character is a number */
bool is_next_dig = false;
if (i < XIDDATASIZE) {
const char ch = data[i + 1];
is_next_dig = (ch >= '0' && ch <= '9');
}
if (i == gtrid_length) {
*s++ = '\'';
if (bqual_length) {
*s++ = '.';
*s++ = '\'';
}
}
const uchar c = static_cast<uchar>(data[i]);
if (c < 32 || c > 126) {
*s++ = '\\';
/*
If next character is a number, write current character with
3 octal numbers to ensure that the next number is not seen
as part of the octal number
*/
if (c > 077 || is_next_dig) *s++ = dig_vec_lower[c >> 6];
if (c > 007 || is_next_dig) *s++ = dig_vec_lower[(c >> 3) & 7];
*s++ = dig_vec_lower[c & 7];
} else {
if (c == '\'' || c == '\\') *s++ = '\\';
*s++ = c;
}
}
*s++ = '\'';
*s = 0;
return buf;
}
#endif
/**
The function restores previously saved storage engine transaction context.
@param thd Thread context
*/
static void attach_native_trx(THD *thd) {
for (auto &ha_info :
thd->get_transaction()->ha_trx_info(Transaction_ctx::SESSION)) {
ha_info.reset();
}
thd->rpl_reattach_engine_ha_data();
}
bool applier_reset_xa_trans(THD *thd) {
DBUG_TRACE;
Transaction_ctx *trn_ctx = thd->get_transaction();
if (!is_xa_tran_detached_on_prepare(thd)) {
XID_STATE *xid_state = trn_ctx->xid_state();
if (MDL_context_backup_manager::instance().create_backup(
&thd->mdl_context, xid_state->get_xid()->key(),
xid_state->get_xid()->key_length()))
return true;
/*
In the following the server transaction state gets reset for
a slave applier thread similarly to xa_commit logics
except commit does not run.
*/
thd->variables.option_bits &= ~OPTION_BEGIN;
trn_ctx->reset_unsafe_rollback_flags(Transaction_ctx::STMT);
thd->server_status &= ~SERVER_STATUS_IN_TRANS;
/* Server transaction ctx is detached from THD */
xa::Transaction_cache::detach(trn_ctx);
xid_state->reset();
}
/*
The current engine transactions is detached from THD, and
previously saved is restored.
*/
attach_native_trx(thd);
trn_ctx->set_ha_trx_info(Transaction_ctx::SESSION, nullptr);
trn_ctx->set_no_2pc(Transaction_ctx::SESSION, false);
trn_ctx->cleanup();
#ifdef HAVE_PSI_TRANSACTION_INTERFACE
thd->m_transaction_psi = nullptr;
#endif
thd->mdl_context.release_transactional_locks();
/*
On client sessions a XA PREPARE will always be followed by a XA COMMIT
or a XA ROLLBACK, and both statements will reset the tx isolation level
and access mode when the statement is finishing a transaction.
For replicated workload it is possible to have other transactions between
the XA PREPARE and the XA [COMMIT|ROLLBACK].
So, if the slave applier changed the current transaction isolation level,
it needs to be restored to the session default value after having the
XA transaction prepared.
*/
trans_reset_one_shot_chistics(thd);
return thd->is_error();
}
/**
The function detaches existing storage engines transaction
context from thd. Backup area to save it is provided to low level
storage engine function.
is invoked by plugin_foreach() after
trans_xa_start() for each storage engine.
@param[in,out] thd Thread context
@param plugin Reference to handlerton
@return false on success, true otherwise.
*/
bool detach_native_trx(THD *thd, plugin_ref plugin, void *) {
DBUG_TRACE;
handlerton *hton = plugin_data<handlerton *>(plugin);
if (hton->replace_native_transaction_in_thd) {
/* Ensure any active backup engine ha_data won't be overwritten */
assert(!thd->get_ha_data(hton->slot)->ha_ptr_backup);
hton->replace_native_transaction_in_thd(
thd, nullptr, &thd->get_ha_data(hton->slot)->ha_ptr_backup);
}
return false;
}
bool reattach_native_trx(THD *thd, plugin_ref plugin, void *) {
DBUG_TRACE;
handlerton *hton = plugin_data<handlerton *>(plugin);
if (hton->replace_native_transaction_in_thd) {
/* restore the saved original engine transaction's link with thd */
void **trx_backup = &thd->get_ha_data(hton->slot)->ha_ptr_backup;
hton->replace_native_transaction_in_thd(thd, *trx_backup, nullptr);
*trx_backup = nullptr;
}
return false;
}
/**
Disconnect transaction in SE. This the same action which is performed
by SE when disconnecting a connection which has a prepared XA transaction,
when xa_detach_on_prepare is OFF. Signature matches that
required by plugin_foreach.
*/
bool disconnect_native_trx(THD *thd, plugin_ref plugin, void *) {
handlerton *hton = plugin_data<handlerton *>(plugin);
assert(hton != nullptr);
if (hton->state != SHOW_OPTION_YES) {
assert(hton->replace_native_transaction_in_thd == nullptr);
return false;
}
assert(hton->slot != HA_SLOT_UNDEF);
if (hton->replace_native_transaction_in_thd != nullptr) {
// Force call to trx_disconnect_prepared in Innodb when calling with
// nullptr,nullptr
hton->replace_native_transaction_in_thd(thd, nullptr, nullptr);
}
// Reset session Ha_trx_info so it is not marked as started.
// Otherwise, we will not be able to start a new XA transaction on
// this connection.
thd->get_ha_data(hton->slot)
->ha_info[Transaction_ctx::SESSION]
.reset(); // Mark as not started
thd->get_ha_data(hton->slot)
->ha_info[Transaction_ctx::STMT]
.reset(); // Mark as not started
return false;
}
bool thd_holds_xa_transaction(THD *thd) {
auto xs = thd->get_transaction()->xid_state();
return xs->get_xid()->get_my_xid() == 0 && !xs->has_state(XID_STATE::XA_NOTR);
}
bool is_xa_prepare(THD *thd) {
return thd->lex->sql_command == SQLCOM_XA_PREPARE;
}
bool is_xa_rollback(THD *thd) {
return thd->lex->sql_command == SQLCOM_XA_ROLLBACK;
}