Commit e82e216e authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-17849 Undo tablespace truncation recovery fails to shrink file

fil_space_t::add(): Replaces fil_node_create(), fil_node_create_low().
Let the caller pass fil_node_t::handle, to avoid having to close and
re-open files.

fil_node_t::read_page0(): Refactored from fil_node_open_file().
Read the first page of a data file.

fil_node_open_file(): Open the file only once.

srv_undo_tablespace_open(): Set the file handle for the opened
undo tablespace. This should ensure that ut_ad(file->is_open())
no longer fails in recv_add_trim().

xtrabackup_backup_func(): Remove some dead code.

xb_fil_cur_open(): Open files only if needed. Undo tablespaces
should already have been opened.
parent eb636461
...@@ -159,8 +159,11 @@ xb_fil_cur_open( ...@@ -159,8 +159,11 @@ xb_fil_cur_open(
/* In the backup mode we should already have a tablespace handle created /* In the backup mode we should already have a tablespace handle created
by fil_ibd_load() unless it is a system by fil_ibd_load() unless it is a system
tablespace. Otherwise we open the file here. */ tablespace. Otherwise we open the file here. */
if (cursor->is_system() || srv_operation == SRV_OPERATION_RESTORE_DELTA if (!node->is_open()) {
|| xb_close_files) { ut_ad(cursor->is_system()
|| srv_operation == SRV_OPERATION_RESTORE_DELTA
|| xb_close_files);
node->handle = os_file_create_simple_no_error_handling( node->handle = os_file_create_simple_no_error_handling(
0, node->name, 0, node->name,
OS_FILE_OPEN, OS_FILE_OPEN,
......
...@@ -3101,11 +3101,8 @@ xb_load_single_table_tablespace( ...@@ -3101,11 +3101,8 @@ xb_load_single_table_tablespace(
ut_a(space != NULL); ut_a(space != NULL);
if (!fil_node_create(file->filepath(), ulint(n_pages), space, space->add(file->filepath(), OS_FILE_CLOSED, ulint(n_pages),
false, false)) { false, false);
ut_error;
}
/* by opening the tablespace we forcing node and space objects /* by opening the tablespace we forcing node and space objects
in the cache to be populated with fields from space header */ in the cache to be populated with fields from space header */
fil_space_open(space->name); fil_space_open(space->name);
...@@ -3781,22 +3778,17 @@ xb_filters_free() ...@@ -3781,22 +3778,17 @@ xb_filters_free()
} }
/*********************************************************************//** /*********************************************************************//**
Creates or opens the log files and closes them. Create log file metadata. */
@return DB_SUCCESS or error code */
static static
ulint void
open_or_create_log_file( open_or_create_log_file(
/*====================*/ /*====================*/
fil_space_t* space, fil_space_t* space,
ibool* log_file_created, /*!< out: TRUE if new log file
created */
ulint i) /*!< in: log file number in group */ ulint i) /*!< in: log file number in group */
{ {
char name[10000]; char name[10000];
ulint dirnamelen; ulint dirnamelen;
*log_file_created = FALSE;
os_normalize_path(srv_log_group_home_dir); os_normalize_path(srv_log_group_home_dir);
dirnamelen = strlen(srv_log_group_home_dir); dirnamelen = strlen(srv_log_group_home_dir);
...@@ -3808,14 +3800,13 @@ open_or_create_log_file( ...@@ -3808,14 +3800,13 @@ open_or_create_log_file(
name[dirnamelen++] = OS_PATH_SEPARATOR; name[dirnamelen++] = OS_PATH_SEPARATOR;
} }
sprintf(name + dirnamelen, "%s%lu", "ib_logfile", (ulong) i); sprintf(name + dirnamelen, "%s%zu", "ib_logfile", i);
ut_a(fil_validate()); ut_a(fil_validate());
ut_a(fil_node_create(name, ulint(srv_log_file_size >> srv_page_size_shift), space->add(name, OS_FILE_CLOSED,
space, false, false)); ulint(srv_log_file_size >> srv_page_size_shift),
false, false);
return(DB_SUCCESS);
} }
/*********************************************************************//** /*********************************************************************//**
...@@ -4124,13 +4115,6 @@ xtrabackup_backup_func() ...@@ -4124,13 +4115,6 @@ xtrabackup_backup_func()
xb_filters_init(); xb_filters_init();
{
ibool log_file_created;
ibool log_created = FALSE;
ibool log_opened = FALSE;
ulint err;
ulint i;
xb_fil_io_init(); xb_fil_io_init();
srv_n_file_io_threads = srv_n_read_io_threads; srv_n_file_io_threads = srv_n_read_io_threads;
...@@ -4145,36 +4129,8 @@ xtrabackup_backup_func() ...@@ -4145,36 +4129,8 @@ xtrabackup_backup_func()
lock_sys_create(srv_lock_table_size); lock_sys_create(srv_lock_table_size);
for (i = 0; i < srv_n_log_files; i++) { for (ulint i = 0; i < srv_n_log_files; i++) {
err = open_or_create_log_file(space, &log_file_created, i); open_or_create_log_file(space, i);
if (err != DB_SUCCESS) {
goto fail;
}
if (log_file_created) {
log_created = TRUE;
} else {
log_opened = TRUE;
}
if ((log_opened && log_created)) {
msg(
"mariabackup: Error: all log files must be created at the same time.\n"
"mariabackup: All log files must be created also in database creation.\n"
"mariabackup: If you want bigger or smaller log files, shut down the\n"
"mariabackup: database and make sure there were no errors in shutdown.\n"
"mariabackup: Then delete the existing log files. Edit the .cnf file\n"
"mariabackup: and start the database again.\n");
goto fail;
}
}
/* log_file_created must not be TRUE, if online */
if (log_file_created) {
msg("mariabackup: Something wrong with source files...\n");
goto fail;
}
} }
/* create extra LSN dir if it does not exist. */ /* create extra LSN dir if it does not exist. */
......
This diff is collapsed.
...@@ -123,18 +123,15 @@ Tablespace::open_or_create(bool is_temp) ...@@ -123,18 +123,15 @@ Tablespace::open_or_create(bool is_temp)
is_temp is_temp
? FIL_TYPE_TEMPORARY : FIL_TYPE_TABLESPACE, ? FIL_TYPE_TEMPORARY : FIL_TYPE_TABLESPACE,
NULL); NULL);
if (!space) {
return DB_ERROR;
}
} }
ut_a(fil_validate()); ut_a(fil_validate());
/* Create the tablespace node entry for this data file. */ space->add(it->m_filepath, OS_FILE_CLOSED, it->m_size,
if (!fil_node_create( false, true);
it->m_filepath, it->m_size, space, false,
TRUE)) {
err = DB_ERROR;
break;
}
} }
return(err); return(err);
......
...@@ -918,6 +918,9 @@ SysTablespace::open_or_create( ...@@ -918,6 +918,9 @@ SysTablespace::open_or_create(
name(), space_id(), flags(), is_temp name(), space_id(), flags(), is_temp
? FIL_TYPE_TEMPORARY : FIL_TYPE_TABLESPACE, ? FIL_TYPE_TEMPORARY : FIL_TYPE_TABLESPACE,
NULL); NULL);
if (!space) {
return DB_ERROR;
}
} }
ut_a(fil_validate()); ut_a(fil_validate());
...@@ -928,15 +931,8 @@ SysTablespace::open_or_create( ...@@ -928,15 +931,8 @@ SysTablespace::open_or_create(
: m_last_file_size_max) : m_last_file_size_max)
: it->m_size); : it->m_size);
/* Add the datafile to the fil_system cache. */ space->add(it->m_filepath, OS_FILE_CLOSED, it->m_size,
if (!fil_node_create( it->m_type != SRV_NOT_RAW, true, max_size);
it->m_filepath, it->m_size,
space, it->m_type != SRV_NOT_RAW,
TRUE, max_size)) {
err = DB_ERROR;
break;
}
} }
return(err); return(err);
......
...@@ -195,6 +195,19 @@ struct fil_space_t { ...@@ -195,6 +195,19 @@ struct fil_space_t {
return !atomic_write_supported return !atomic_write_supported
&& srv_use_doublewrite_buf && buf_dblwr; && srv_use_doublewrite_buf && buf_dblwr;
} }
/** Append a file to the chain of files of a space.
@param[in] name file name of a file that is not open
@param[in] handle file handle, or OS_FILE_CLOSED
@param[in] size file size in entire database pages
@param[in] is_raw whether this is a raw device
@param[in] atomic_write true if atomic write could be enabled
@param[in] max_pages maximum number of pages in file,
or ULINT_MAX for unlimited
@return file object */
fil_node_t* add(const char* name, pfs_os_file_t handle,
ulint size, bool is_raw, bool atomic_write,
ulint max_pages = ULINT_MAX);
}; };
/** Value of fil_space_t::magic_n */ /** Value of fil_space_t::magic_n */
...@@ -252,6 +265,11 @@ struct fil_node_t { ...@@ -252,6 +265,11 @@ struct fil_node_t {
{ {
return(handle != OS_FILE_CLOSED); return(handle != OS_FILE_CLOSED);
} }
/** Read the first page of a data file.
@param[in] first whether this is the very first read
@return whether the page was found valid */
bool read_page0(bool first);
}; };
/** Value of fil_node_t::magic_n */ /** Value of fil_node_t::magic_n */
...@@ -547,26 +565,6 @@ void ...@@ -547,26 +565,6 @@ void
fil_space_set_imported( fil_space_set_imported(
ulint id); ulint id);
/** Append a file to the chain of files of a space.
@param[in] name file name of a file that is not open
@param[in] size file size in entire database blocks
@param[in,out] space tablespace from fil_space_create()
@param[in] is_raw whether this is a raw device or partition
@param[in] atomic_write true if atomic write could be enabled
@param[in] max_pages maximum number of pages in file,
ULINT_MAX means the file size is unlimited.
@return pointer to the file name
@retval NULL if error */
char*
fil_node_create(
const char* name,
ulint size,
fil_space_t* space,
bool is_raw,
bool atomic_write,
ulint max_pages = ULINT_MAX)
MY_ATTRIBUTE((warn_unused_result));
/** Create a space memory object and put it to the fil_system hash table. /** Create a space memory object and put it to the fil_system hash table.
Error messages are issued to the server log. Error messages are issued to the server log.
@param[in] name tablespace name @param[in] name tablespace name
...@@ -575,7 +573,7 @@ Error messages are issued to the server log. ...@@ -575,7 +573,7 @@ Error messages are issued to the server log.
@param[in] purpose tablespace purpose @param[in] purpose tablespace purpose
@param[in,out] crypt_data encryption information @param[in,out] crypt_data encryption information
@param[in] mode encryption mode @param[in] mode encryption mode
@return pointer to created tablespace, to be filled in with fil_node_create() @return pointer to created tablespace, to be filled in with fil_space_t::add()
@retval NULL on failure (such as when the same tablespace exists) */ @retval NULL on failure (such as when the same tablespace exists) */
fil_space_t* fil_space_t*
fil_space_create( fil_space_create(
......
...@@ -470,23 +470,16 @@ create_log_files( ...@@ -470,23 +470,16 @@ create_log_files(
const ulint size = ulint(srv_log_file_size >> srv_page_size_shift); const ulint size = ulint(srv_log_file_size >> srv_page_size_shift);
logfile0 = fil_node_create( logfile0 = log_space->add(logfilename, OS_FILE_CLOSED, size,
logfilename, size, log_space, false, false); false, false)->name;
ut_a(logfile0); ut_a(logfile0);
for (unsigned i = 1; i < srv_n_log_files; i++) { for (unsigned i = 1; i < srv_n_log_files; i++) {
sprintf(logfilename + dirnamelen, "ib_logfile%u", i); sprintf(logfilename + dirnamelen, "ib_logfile%u", i);
if (!fil_node_create(logfilename, size, log_space->add(logfilename, OS_FILE_CLOSED, size,
log_space, false, false)) { false, false);
ib::error()
<< "Cannot create file node for log file "
<< logfilename;
return(DB_ERROR);
}
} }
log_init(srv_n_log_files); log_init(srv_n_log_files);
...@@ -634,83 +627,68 @@ srv_undo_tablespace_create( ...@@ -634,83 +627,68 @@ srv_undo_tablespace_create(
return(err); return(err);
} }
/*********************************************************************//**
Open an undo tablespace. /** Open an undo tablespace.
@return DB_SUCCESS or error code */ @param[in] name tablespace file name
static @param[in] space_id tablespace ID
dberr_t @param[in] create_new_db whether undo tablespaces are being created
srv_undo_tablespace_open( @return whether the tablespace was opened */
/*=====================*/ static bool srv_undo_tablespace_open(const char* name, ulint space_id,
const char* name, /*!< in: tablespace file name */ bool create_new_db)
ulint space_id) /*!< in: tablespace id */
{ {
pfs_os_file_t fh; pfs_os_file_t fh;
bool ret; bool success;
dberr_t err = DB_ERROR;
char undo_name[sizeof "innodb_undo000"]; char undo_name[sizeof "innodb_undo000"];
snprintf(undo_name, sizeof(undo_name), snprintf(undo_name, sizeof(undo_name),
"innodb_undo%03u", static_cast<unsigned>(space_id)); "innodb_undo%03u", static_cast<unsigned>(space_id));
if (!srv_file_check_mode(name)) {
ib::error() << "UNDO tablespaces must be " <<
(srv_read_only_mode ? "writable" : "readable") << "!";
return(DB_ERROR);
}
fh = os_file_create( fh = os_file_create(
innodb_data_file_key, name, innodb_data_file_key, name, OS_FILE_OPEN
OS_FILE_OPEN_RETRY | OS_FILE_ON_ERROR_NO_EXIT | OS_FILE_ON_ERROR_SILENT,
| OS_FILE_ON_ERROR_NO_EXIT OS_FILE_AIO, OS_DATA_FILE, srv_read_only_mode, &success);
| OS_FILE_ON_ERROR_SILENT, if (!success) {
OS_FILE_NORMAL, return false;
OS_DATA_FILE, }
srv_read_only_mode,
&ret);
/* If the file open was successful then load the tablespace. */
if (ret) {
os_offset_t size;
fil_space_t* space;
size = os_file_get_size(fh);
ut_a(size != (os_offset_t) -1);
ret = os_file_close(fh); os_offset_t size = os_file_get_size(fh);
ut_a(ret); ut_a(size != os_offset_t(-1));
/* Load the tablespace into InnoDB's internal /* Load the tablespace into InnoDB's internal data structures. */
data structures. */
/* We set the biggest space id to the undo tablespace /* We set the biggest space id to the undo tablespace
because InnoDB hasn't opened any other tablespace apart because InnoDB hasn't opened any other tablespace apart
from the system tablespace. */ from the system tablespace. */
fil_set_max_space_id_if_bigger(space_id); fil_set_max_space_id_if_bigger(space_id);
space = fil_space_create( fil_space_t* space = fil_space_create(
undo_name, space_id, FSP_FLAGS_PAGE_SSIZE(), undo_name, space_id, FSP_FLAGS_PAGE_SSIZE(),
FIL_TYPE_TABLESPACE, NULL); FIL_TYPE_TABLESPACE, NULL);
ut_a(fil_validate()); ut_a(fil_validate());
ut_a(space); ut_a(space);
os_offset_t n_pages = size / UNIV_PAGE_SIZE; fil_node_t* file = space->add(name, fh, 0, false, true);
/* On 32-bit platforms, ulint is 32 bits and os_offset_t mutex_enter(&fil_system->mutex);
is 64 bits. It is OK to cast the n_pages to ulint because
the unit has been scaled to pages and page number is always
32 bits. */
if (fil_node_create(
name, (ulint) n_pages, space, false, TRUE)) {
err = DB_SUCCESS; if (create_new_db) {
space->size = file->size = ulint(size >> srv_page_size_shift);
space->size_in_header = SRV_UNDO_TABLESPACE_SIZE_IN_PAGES;
} else {
success = file->read_page0(true);
if (!success) {
os_file_close(file->handle);
file->handle = OS_FILE_CLOSED;
ut_a(fil_system->n_open > 0);
fil_system->n_open--;
} }
} }
return(err); mutex_exit(&fil_system->mutex);
return success;
} }
/** Check if undo tablespaces and redo log files exist before creating a /** Check if undo tablespaces and redo log files exist before creating a
...@@ -936,12 +914,11 @@ srv_undo_tablespaces_init(bool create_new_db) ...@@ -936,12 +914,11 @@ srv_undo_tablespaces_init(bool create_new_db)
ut_a(undo_tablespace_ids[i] != 0); ut_a(undo_tablespace_ids[i] != 0);
ut_a(undo_tablespace_ids[i] != ULINT_UNDEFINED); ut_a(undo_tablespace_ids[i] != ULINT_UNDEFINED);
err = srv_undo_tablespace_open(name, undo_tablespace_ids[i]); if (!srv_undo_tablespace_open(name, undo_tablespace_ids[i],
create_new_db)) {
if (err != DB_SUCCESS) {
ib::error() << "Unable to open undo tablespace '" ib::error() << "Unable to open undo tablespace '"
<< name << "'."; << name << "'.";
return(err); return DB_ERROR;
} }
prev_space_id = undo_tablespace_ids[i]; prev_space_id = undo_tablespace_ids[i];
...@@ -966,9 +943,8 @@ srv_undo_tablespaces_init(bool create_new_db) ...@@ -966,9 +943,8 @@ srv_undo_tablespaces_init(bool create_new_db)
name, sizeof(name), name, sizeof(name),
"%s%cundo%03zu", srv_undo_dir, OS_PATH_SEPARATOR, i); "%s%cundo%03zu", srv_undo_dir, OS_PATH_SEPARATOR, i);
err = srv_undo_tablespace_open(name, i); if (!srv_undo_tablespace_open(name, i, create_new_db)) {
err = DB_ERROR;
if (err != DB_SUCCESS) {
break; break;
} }
...@@ -2078,10 +2054,8 @@ innobase_start_or_create_for_mysql() ...@@ -2078,10 +2054,8 @@ innobase_start_or_create_for_mysql()
for (unsigned j = 0; j < srv_n_log_files_found; j++) { for (unsigned j = 0; j < srv_n_log_files_found; j++) {
sprintf(logfilename + dirnamelen, "ib_logfile%u", j); sprintf(logfilename + dirnamelen, "ib_logfile%u", j);
if (!fil_node_create(logfilename, size, log_space->add(logfilename, OS_FILE_CLOSED, size,
log_space, false, false)) { false, false);
return(srv_init_abort(DB_ERROR));
}
} }
log_init(srv_n_log_files_found); log_init(srv_n_log_files_found);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment