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

MDEV-12112 corruption in encrypted table may be overlooked

After validating the post-encryption checksum on an encrypted page,
Mariabackup should decrypt the page and validate the pre-encryption
checksum as well. This should reduce the probability of accepting
invalid pages as valid ones.

This is a backport and refactoring of a patch that was
originally written by Thirunarayanan Balathandayuthapani
for the 10.2 branch.
parent 621041b6
...@@ -30,6 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA ...@@ -30,6 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#include <trx0sys.h> #include <trx0sys.h>
#include "fil_cur.h" #include "fil_cur.h"
#include "fil0crypt.h"
#include "common.h" #include "common.h"
#include "read_filt.h" #include "read_filt.h"
#include "xtrabackup.h" #include "xtrabackup.h"
...@@ -219,7 +220,7 @@ xb_fil_cur_open( ...@@ -219,7 +220,7 @@ xb_fil_cur_open(
posix_fadvise(cursor->file, 0, 0, POSIX_FADV_SEQUENTIAL); posix_fadvise(cursor->file, 0, 0, POSIX_FADV_SEQUENTIAL);
/* Determine the page size */ /* Determine the page size */
zip_size = xb_get_zip_size(cursor->file); zip_size = xb_get_zip_size(node);
if (zip_size == ULINT_UNDEFINED) { if (zip_size == ULINT_UNDEFINED) {
xb_fil_cur_close(cursor); xb_fil_cur_close(cursor);
return(XB_FIL_CUR_SKIP); return(XB_FIL_CUR_SKIP);
...@@ -282,6 +283,8 @@ xb_fil_cur_read( ...@@ -282,6 +283,8 @@ xb_fil_cur_read(
xb_fil_cur_result_t ret; xb_fil_cur_result_t ret;
ib_int64_t offset; ib_int64_t offset;
ib_int64_t to_read; ib_int64_t to_read;
byte tmp_frame[UNIV_PAGE_SIZE_MAX];
byte tmp_page[UNIV_PAGE_SIZE_MAX];
cursor->read_filter->get_next_batch(&cursor->read_filter_ctxt, cursor->read_filter->get_next_batch(&cursor->read_filter_ctxt,
&offset, &to_read); &offset, &to_read);
...@@ -336,31 +339,40 @@ xb_fil_cur_read( ...@@ -336,31 +339,40 @@ xb_fil_cur_read(
return(XB_FIL_CUR_ERROR); return(XB_FIL_CUR_ERROR);
} }
fil_system_enter(); fil_space_t *space = fil_space_acquire_for_io(cursor->space_id);
fil_space_t *space = fil_space_get_by_id(cursor->space_id);
fil_system_exit();
/* check pages for corruption and re-read if necessary. i.e. in case of /* check pages for corruption and re-read if necessary. i.e. in case of
partially written pages */ partially written pages */
for (page = cursor->buf, i = 0; i < npages; for (page = cursor->buf, i = 0; i < npages;
page += cursor->page_size, i++) { page += cursor->page_size, i++) {
ib_int64_t page_no = cursor->buf_page_no + i; ulint page_no = cursor->buf_page_no + i;
bool checksum_ok = fil_space_verify_crypt_checksum(page, cursor->zip_size,space, (ulint)page_no); if (cursor->space_id == TRX_SYS_SPACE
&& page_no >= FSP_EXTENT_SIZE
if (!checksum_ok && && page_no < FSP_EXTENT_SIZE * 3) {
buf_page_is_corrupted(true, page, cursor->zip_size,space)) { /* We ignore the doublewrite buffer pages */
} else if (fil_space_verify_crypt_checksum(
if (cursor->is_system && page, cursor->zip_size,
page_no >= (ib_int64_t)FSP_EXTENT_SIZE && space, page_no)) {
page_no < (ib_int64_t) FSP_EXTENT_SIZE * 3) { ut_ad(mach_read_from_4(page + FIL_PAGE_SPACE_ID)
/* skip doublewrite buffer pages */ == space->id);
xb_a(cursor->page_size == UNIV_PAGE_SIZE);
msg("[%02u] mariabackup: " bool decrypted = false;
"Page " UINT64PF " is a doublewrite buffer page, "
"skipping.\n", cursor->thread_n, page_no); memcpy(tmp_page, page, cursor->page_size);
} else {
if (!fil_space_decrypt(space, tmp_frame,
tmp_page, &decrypted)
|| buf_page_is_corrupted(true, tmp_page,
cursor->zip_size,
space)) {
goto corrupted;
}
} else if (buf_page_is_corrupted(true, page, cursor->zip_size,
space)) {
corrupted:
retry_count--; retry_count--;
if (retry_count == 0) { if (retry_count == 0) {
msg("[%02u] mariabackup: " msg("[%02u] mariabackup: "
"Error: failed to read page after " "Error: failed to read page after "
...@@ -372,19 +384,18 @@ xb_fil_cur_read( ...@@ -372,19 +384,18 @@ xb_fil_cur_read(
} }
msg("[%02u] mariabackup: " msg("[%02u] mariabackup: "
"Database page corruption detected at page " "Database page corruption detected at page "
UINT64PF ", retrying...\n", cursor->thread_n, ULINTPF ", retrying...\n", cursor->thread_n,
page_no); page_no);
os_thread_sleep(100000); os_thread_sleep(100000);
goto read_retry; goto read_retry;
} }
}
cursor->buf_read += cursor->page_size; cursor->buf_read += cursor->page_size;
cursor->buf_npages++; cursor->buf_npages++;
} }
posix_fadvise(cursor->file, offset, to_read, POSIX_FADV_DONTNEED); posix_fadvise(cursor->file, offset, to_read, POSIX_FADV_DONTNEED);
fil_space_release_for_io(space);
return(ret); return(ret);
} }
......
...@@ -2300,7 +2300,7 @@ check_if_skip_table( ...@@ -2300,7 +2300,7 @@ check_if_skip_table(
Reads the space flags from a given data file and returns the compressed Reads the space flags from a given data file and returns the compressed
page size, or 0 if the space is not compressed. */ page size, or 0 if the space is not compressed. */
ulint ulint
xb_get_zip_size(pfs_os_file_t file) xb_get_zip_size(fil_node_t* file)
{ {
byte *buf; byte *buf;
byte *page; byte *page;
...@@ -2311,7 +2311,7 @@ xb_get_zip_size(pfs_os_file_t file) ...@@ -2311,7 +2311,7 @@ xb_get_zip_size(pfs_os_file_t file)
buf = static_cast<byte *>(ut_malloc(2 * UNIV_PAGE_SIZE)); buf = static_cast<byte *>(ut_malloc(2 * UNIV_PAGE_SIZE));
page = static_cast<byte *>(ut_align(buf, UNIV_PAGE_SIZE)); page = static_cast<byte *>(ut_align(buf, UNIV_PAGE_SIZE));
success = os_file_read(file, page, 0, UNIV_PAGE_SIZE); success = os_file_read(file->handle, page, 0, UNIV_PAGE_SIZE);
if (!success) { if (!success) {
goto end; goto end;
} }
...@@ -2319,6 +2319,17 @@ xb_get_zip_size(pfs_os_file_t file) ...@@ -2319,6 +2319,17 @@ xb_get_zip_size(pfs_os_file_t file)
space = mach_read_from_4(page + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID); space = mach_read_from_4(page + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID);
zip_size = (space == 0 ) ? 0 : zip_size = (space == 0 ) ? 0 :
dict_tf_get_zip_size(fsp_header_get_flags(page)); dict_tf_get_zip_size(fsp_header_get_flags(page));
if (!file->space->crypt_data) {
fil_system_enter();
if (!file->space->crypt_data) {
file->space->crypt_data = fil_space_read_crypt_data(
space, page,
fsp_header_get_crypt_offset(zip_size));
}
fil_system_exit();
}
end: end:
ut_free(buf); ut_free(buf);
......
...@@ -184,7 +184,7 @@ void xb_data_files_close(void); ...@@ -184,7 +184,7 @@ void xb_data_files_close(void);
/*********************************************************************** /***********************************************************************
Reads the space flags from a given data file and returns the compressed Reads the space flags from a given data file and returns the compressed
page size, or 0 if the space is not compressed. */ page size, or 0 if the space is not compressed. */
ulint xb_get_zip_size(pfs_os_file_t file); ulint xb_get_zip_size(fil_node_t* file);
/************************************************************************ /************************************************************************
Checks if a table specified as a name in the form "database/name" (InnoDB 5.6) Checks if a table specified as a name in the form "database/name" (InnoDB 5.6)
......
--innodb-encrypt-log=ON
--plugin-load-add=$FILE_KEY_MANAGEMENT_SO
--loose-file-key-management
--loose-file-key-management-filekey=FILE:$MTR_SUITE_DIR/filekeys-data.key
--loose-file-key-management-filename=$MTR_SUITE_DIR/filekeys-data.enc
--loose-file-key-management-encryption-algorithm=aes_cbc
call mtr.add_suppression("\\[ERROR\\] InnoDB: The page .* in file .* cannot be decrypted.");
CREATE TABLE t1(c VARCHAR(128)) ENGINE INNODB, encrypted=yes;
insert into t1 select repeat('a',100);
# Corrupt the table
# xtrabackup backup
FOUND /Database page corruption detected/ in backup.log
drop table t1;
--source include/have_file_key_management.inc
call mtr.add_suppression("\\[ERROR\\] InnoDB: The page .* in file .* cannot be decrypted.");
CREATE TABLE t1(c VARCHAR(128)) ENGINE INNODB, encrypted=yes;
insert into t1 select repeat('a',100);
let $MYSQLD_DATADIR=`select @@datadir`;
let t1_IBD = $MYSQLD_DATADIR/test/t1.ibd;
--source include/shutdown_mysqld.inc
--echo # Corrupt the table
perl;
use strict;
use warnings;
use Fcntl qw(:DEFAULT :seek);
my $ibd_file = $ENV{'t1_IBD'};
my $chunk;
my $len;
sysopen IBD_FILE, $ibd_file, O_RDWR || die "Unable to open $ibd_file";
sysseek IBD_FILE, 16384 * 3, SEEK_CUR;
$chunk = '\xAA\xAA\xAA\xAA';
syswrite IBD_FILE, $chunk, 4;
close IBD_FILE;
EOF
--source include/start_mysqld.inc
echo # xtrabackup backup;
let $targetdir=$MYSQLTEST_VARDIR/tmp/backup;
let $backuplog=$MYSQLTEST_VARDIR/tmp/backup.log;
--disable_result_log
--error 1
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$targetdir > $backuplog;
--enable_result_log
--let SEARCH_PATTERN=Database page corruption detected
--let SEARCH_FILE=$backuplog
--source include/search_pattern_in_file.inc
remove_file $backuplog;
drop table t1;
rmdir $targetdir;
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