2011-06-30 17:37:13 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
|
2006-01-12 19:51:02 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-27 02:23:51 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2006-01-12 19:51:02 +01:00
|
|
|
|
|
|
|
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 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
|
2011-06-30 17:37:13 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2006-01-12 19:51:02 +01:00
|
|
|
|
|
|
|
#include "mysql_priv.h"
|
|
|
|
#include "rpl_injector.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
injector::transaction - member definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* inline since it's called below */
|
|
|
|
inline
|
2006-05-05 08:45:58 +02:00
|
|
|
injector::transaction::transaction(MYSQL_BIN_LOG *log, THD *thd)
|
2006-02-24 16:19:55 +01:00
|
|
|
: m_state(START_STATE), m_thd(thd)
|
2006-01-12 19:51:02 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
Default initialization of m_start_pos (which initializes it to garbage).
|
|
|
|
We need to fill it in using the code below.
|
|
|
|
*/
|
|
|
|
LOG_INFO log_info;
|
|
|
|
log->get_current_log(&log_info);
|
|
|
|
/* !!! binlog_pos does not follow RAII !!! */
|
|
|
|
m_start_pos.m_file_name= my_strdup(log_info.log_file_name, MYF(0));
|
|
|
|
m_start_pos.m_file_pos= log_info.pos;
|
|
|
|
|
|
|
|
begin_trans(m_thd);
|
2006-11-13 15:42:01 +01:00
|
|
|
|
|
|
|
thd->set_current_stmt_binlog_row_based();
|
2006-01-12 19:51:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
injector::transaction::~transaction()
|
|
|
|
{
|
2006-03-11 06:58:48 +01:00
|
|
|
if (!good())
|
|
|
|
return;
|
|
|
|
|
2006-01-12 19:51:02 +01:00
|
|
|
/* Needed since my_free expects a 'char*' (instead of 'void*'). */
|
|
|
|
char* const the_memory= const_cast<char*>(m_start_pos.m_file_name);
|
|
|
|
|
|
|
|
/*
|
|
|
|
We set the first character to null just to give all the copies of the
|
|
|
|
start position a (minimal) chance of seening that the memory is lost.
|
|
|
|
All assuming the my_free does not step over the memory, of course.
|
|
|
|
*/
|
|
|
|
*the_memory= '\0';
|
|
|
|
|
|
|
|
my_free(the_memory, MYF(0));
|
|
|
|
}
|
|
|
|
|
2010-01-24 08:03:23 +01:00
|
|
|
/**
|
|
|
|
@retval 0 transaction committed
|
|
|
|
@retval 1 transaction rolled back
|
|
|
|
*/
|
2006-01-12 19:51:02 +01:00
|
|
|
int injector::transaction::commit()
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::transaction::commit()");
|
2010-01-24 08:03:23 +01:00
|
|
|
int error= m_thd->binlog_flush_pending_rows_event(true);
|
2008-02-19 12:43:01 +01:00
|
|
|
/*
|
|
|
|
Cluster replication does not preserve statement or
|
|
|
|
transaction boundaries of the master. Instead, a new
|
|
|
|
transaction on replication slave is started when a new GCI
|
|
|
|
(global checkpoint identifier) is issued, and is committed
|
|
|
|
when the last event of the check point has been received and
|
|
|
|
processed. This ensures consistency of each cluster in
|
|
|
|
cluster replication, and there is no requirement for stronger
|
|
|
|
consistency: MySQL replication is asynchronous with other
|
|
|
|
engines as well.
|
|
|
|
|
|
|
|
A practical consequence of that is that row level replication
|
|
|
|
stream passed through the injector thread never contains
|
|
|
|
COMMIT events.
|
|
|
|
Here we should preserve the server invariant that there is no
|
|
|
|
outstanding statement transaction when the normal transaction
|
|
|
|
is committed by committing the statement transaction
|
|
|
|
explicitly.
|
|
|
|
*/
|
2010-01-24 08:03:23 +01:00
|
|
|
error |= ha_autocommit_or_rollback(m_thd, error);
|
|
|
|
end_trans(m_thd, error ? ROLLBACK : COMMIT);
|
|
|
|
DBUG_RETURN(error);
|
2006-01-12 19:51:02 +01:00
|
|
|
}
|
|
|
|
|
2006-02-24 16:19:55 +01:00
|
|
|
int injector::transaction::use_table(server_id_type sid, table tbl)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::transaction::use_table");
|
|
|
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error= check_state(TABLE_STATE)))
|
|
|
|
DBUG_RETURN(error);
|
|
|
|
|
2007-04-12 16:13:49 +02:00
|
|
|
server_id_type save_id= m_thd->server_id;
|
2006-02-24 16:19:55 +01:00
|
|
|
m_thd->set_server_id(sid);
|
|
|
|
error= m_thd->binlog_write_table_map(tbl.get_table(),
|
|
|
|
tbl.is_transactional());
|
2007-04-12 16:13:49 +02:00
|
|
|
m_thd->set_server_id(save_id);
|
2006-02-24 16:19:55 +01:00
|
|
|
DBUG_RETURN(error);
|
|
|
|
}
|
|
|
|
|
2006-01-12 19:51:02 +01:00
|
|
|
|
|
|
|
int injector::transaction::write_row (server_id_type sid, table tbl,
|
|
|
|
MY_BITMAP const* cols, size_t colcnt,
|
|
|
|
record_type record)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::transaction::write_row(...)");
|
2010-01-24 08:03:23 +01:00
|
|
|
|
2010-01-28 22:51:40 +01:00
|
|
|
int error= check_state(ROW_STATE);
|
|
|
|
if (error)
|
2006-02-24 16:19:55 +01:00
|
|
|
DBUG_RETURN(error);
|
|
|
|
|
2007-04-12 16:13:49 +02:00
|
|
|
server_id_type save_id= m_thd->server_id;
|
2006-01-12 19:51:02 +01:00
|
|
|
m_thd->set_server_id(sid);
|
2010-01-24 08:03:23 +01:00
|
|
|
error= m_thd->binlog_write_row(tbl.get_table(), tbl.is_transactional(),
|
|
|
|
cols, colcnt, record);
|
2007-04-12 16:13:49 +02:00
|
|
|
m_thd->set_server_id(save_id);
|
2010-01-24 08:03:23 +01:00
|
|
|
DBUG_RETURN(error);
|
2006-01-12 19:51:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int injector::transaction::delete_row(server_id_type sid, table tbl,
|
|
|
|
MY_BITMAP const* cols, size_t colcnt,
|
|
|
|
record_type record)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::transaction::delete_row(...)");
|
2006-02-24 16:19:55 +01:00
|
|
|
|
2010-01-28 22:51:40 +01:00
|
|
|
int error= check_state(ROW_STATE);
|
|
|
|
if (error)
|
2006-02-24 16:19:55 +01:00
|
|
|
DBUG_RETURN(error);
|
|
|
|
|
2007-04-12 16:13:49 +02:00
|
|
|
server_id_type save_id= m_thd->server_id;
|
2006-01-12 19:51:02 +01:00
|
|
|
m_thd->set_server_id(sid);
|
2010-01-24 08:03:23 +01:00
|
|
|
error= m_thd->binlog_delete_row(tbl.get_table(), tbl.is_transactional(),
|
|
|
|
cols, colcnt, record);
|
2007-04-12 16:13:49 +02:00
|
|
|
m_thd->set_server_id(save_id);
|
2010-01-24 08:03:23 +01:00
|
|
|
DBUG_RETURN(error);
|
2006-01-12 19:51:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int injector::transaction::update_row(server_id_type sid, table tbl,
|
|
|
|
MY_BITMAP const* cols, size_t colcnt,
|
|
|
|
record_type before, record_type after)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::transaction::update_row(...)");
|
2006-02-24 16:19:55 +01:00
|
|
|
|
2010-01-28 22:51:40 +01:00
|
|
|
int error= check_state(ROW_STATE);
|
|
|
|
if (error)
|
2006-02-24 16:19:55 +01:00
|
|
|
DBUG_RETURN(error);
|
|
|
|
|
2007-04-12 16:13:49 +02:00
|
|
|
server_id_type save_id= m_thd->server_id;
|
2006-01-12 19:51:02 +01:00
|
|
|
m_thd->set_server_id(sid);
|
2010-01-24 08:03:23 +01:00
|
|
|
error= m_thd->binlog_update_row(tbl.get_table(), tbl.is_transactional(),
|
|
|
|
cols, colcnt, before, after);
|
2007-04-12 16:13:49 +02:00
|
|
|
m_thd->set_server_id(save_id);
|
2010-01-24 08:03:23 +01:00
|
|
|
DBUG_RETURN(error);
|
2006-01-12 19:51:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
injector::transaction::binlog_pos injector::transaction::start_pos() const
|
|
|
|
{
|
|
|
|
return m_start_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
injector - member definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This constructor is called below */
|
|
|
|
inline injector::injector()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static injector *s_injector= 0;
|
|
|
|
injector *injector::instance()
|
|
|
|
{
|
|
|
|
if (s_injector == 0)
|
|
|
|
s_injector= new injector;
|
|
|
|
/* "There can be only one [instance]" */
|
|
|
|
return s_injector;
|
|
|
|
}
|
|
|
|
|
2006-06-19 14:31:22 +02:00
|
|
|
void injector::free_instance()
|
|
|
|
{
|
|
|
|
injector *inj = s_injector;
|
|
|
|
|
|
|
|
if (inj != 0)
|
|
|
|
{
|
|
|
|
s_injector= 0;
|
|
|
|
delete inj;
|
|
|
|
}
|
|
|
|
}
|
2006-01-12 19:51:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
injector::transaction injector::new_trans(THD *thd)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::new_trans(THD*)");
|
|
|
|
/*
|
|
|
|
Currently, there is no alternative to using 'mysql_bin_log' since that
|
|
|
|
is hardcoded into the way the handler is using the binary log.
|
|
|
|
*/
|
|
|
|
DBUG_RETURN(transaction(&mysql_bin_log, thd));
|
|
|
|
}
|
|
|
|
|
|
|
|
void injector::new_trans(THD *thd, injector::transaction *ptr)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("injector::new_trans(THD *, transaction *)");
|
|
|
|
/*
|
|
|
|
Currently, there is no alternative to using 'mysql_bin_log' since that
|
|
|
|
is hardcoded into the way the handler is using the binary log.
|
|
|
|
*/
|
|
|
|
transaction trans(&mysql_bin_log, thd);
|
|
|
|
ptr->swap(trans);
|
|
|
|
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
2007-03-29 20:31:09 +02:00
|
|
|
|
|
|
|
int injector::record_incident(THD *thd, Incident incident)
|
|
|
|
{
|
|
|
|
Incident_log_event ev(thd, incident);
|
|
|
|
if (int error= mysql_bin_log.write(&ev))
|
|
|
|
return error;
|
BUG#46166: MYSQL_BIN_LOG::new_file_impl is not propagating error
when generating new name.
If find_uniq_filename returns an error, then this error is not
being propagated upwards, and execution does not report error to
the user (although a entry in the error log is generated).
Additionally, some more errors were ignored in new_file_impl:
- when writing the rotate event
- when reopening the index and binary log file
This patch addresses this by propagating the error up in the
execution stack. Furthermore, when rotation of the binary log
fails, an incident event is written, because there may be a
chance that some changes for a given statement, were not properly
logged. For example, in SBR, LOAD DATA INFILE statement requires
more than one event to be logged, should rotation fail while
logging part of the LOAD DATA events, then the logged data would
become inconsistent with the data in the storage engine.
2010-12-01 00:32:51 +01:00
|
|
|
return mysql_bin_log.rotate_and_purge(RP_FORCE_ROTATE);
|
2007-03-29 20:31:09 +02:00
|
|
|
}
|
|
|
|
|
2007-04-03 14:31:46 +02:00
|
|
|
int injector::record_incident(THD *thd, Incident incident, LEX_STRING const message)
|
2007-03-29 20:31:09 +02:00
|
|
|
{
|
|
|
|
Incident_log_event ev(thd, incident, message);
|
|
|
|
if (int error= mysql_bin_log.write(&ev))
|
|
|
|
return error;
|
BUG#46166: MYSQL_BIN_LOG::new_file_impl is not propagating error
when generating new name.
If find_uniq_filename returns an error, then this error is not
being propagated upwards, and execution does not report error to
the user (although a entry in the error log is generated).
Additionally, some more errors were ignored in new_file_impl:
- when writing the rotate event
- when reopening the index and binary log file
This patch addresses this by propagating the error up in the
execution stack. Furthermore, when rotation of the binary log
fails, an incident event is written, because there may be a
chance that some changes for a given statement, were not properly
logged. For example, in SBR, LOAD DATA INFILE statement requires
more than one event to be logged, should rotation fail while
logging part of the LOAD DATA events, then the logged data would
become inconsistent with the data in the storage engine.
2010-12-01 00:32:51 +01:00
|
|
|
return mysql_bin_log.rotate_and_purge(RP_FORCE_ROTATE);
|
2007-03-29 20:31:09 +02:00
|
|
|
}
|