Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3.14
-
None
Description
A data import (using SQLines as import tool) into encrypted tables failed with:
SHOW WARNINGS: LOAD DATA LOCAL INFILE 'filename' IGNORE INTO
|
TABLE db_name.table:name
|
Level: Warning; Code: 192; Message: Table
|
db_name.table_name is encrypted but encryption service or used
|
key_id is not available. Can't continue reading table.
|
Level: Warning; Code: 192; Message: Table
|
db_name.table_name is encrypted but encryption service or used
|
key_id is not available. Can't continue reading table.
|
Level: Error; Code: 1296; Message: Got error 192 'Table encrypted but
|
decryption failed. This could be because correct encryption management
|
plugin is not loaded, used encryption key is not available or encryption
|
method does not match.' from InnoDB
|
Simple file_key_management is used to manage encryption keys,
all tables use the same key id, and there has only been a single
key version.
Still just this one table reports encryption key errors, while other
encrypted tables using the same key id and version still work fine.
E.g. when checing tablespace encryption information for the table "table_name" triggering the error, and another table "other_table" that works fine, there are no visible differences apart from the space number and table name:
SELECT * FROM
|
INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION
|
WHERE NAME in
|
('db_name/table_name', 'db_name/other_table')\G
|
*************************** 1. row ***************************
|
SPACE: 3406
|
NAME: db_name/other_table
|
ENCRYPTION_SCHEME: 1
|
KEYSERVER_REQUESTS: 1
|
MIN_KEY_VERSION: 1
|
CURRENT_KEY_VERSION: 1
|
KEY_ROTATION_PAGE_NUMBER: NULL
|
KEY_ROTATION_MAX_PAGE_NUMBER: NULL
|
CURRENT_KEY_ID: 1
|
ROTATING_OR_FLUSHING: 0
|
*************************** 2. row ***************************
|
SPACE: 3449
|
NAME: db_name/table_name
|
ENCRYPTION_SCHEME: 1
|
KEYSERVER_REQUESTS: 1
|
MIN_KEY_VERSION: 1
|
CURRENT_KEY_VERSION: 1
|
KEY_ROTATION_PAGE_NUMBER: NULL
|
KEY_ROTATION_MAX_PAGE_NUMBER: NULL
|
CURRENT_KEY_ID: 1
|
ROTATING_OR_FLUSHING: 0
|
Error log repeatedly contains:
[ERROR] InnoDB: Failed to read file
|
'./db_name/table_name.ibd' at offset 1162674: Table is
|
encrypted but decrypt failed.
|
[ERROR] InnoDB: The page [page id: space=3449, page
|
number=1162674] in file './db_name/table_name.ibd' cannot be
|
decrypted.
|
[Note] InnoDB: However key management plugin or used key_version
|
1 is not found or used encryption algorithm or method does not match.
|
[Note] InnoDB: Marking tablespace as missing. You may drop this
|
table or install correct key management plugin and key file.
|
Attachments
Issue Links
- relates to
-
MDEV-12699 Improve crash recovery of corrupted data pages
-
- Closed
-
The following mtr test case can repeat the user case scenario:
-- source include/have_innodb.inc
-- source include/have_file_key_management_plugin.inc
--disable_query_log
let $encrypt_tables = `SELECT @@innodb_encrypt_tables`;
let $threads = `SELECT @@innodb_encryption_threads`;
let $key_id = `SELECT @@innodb_default_encryption_key_id`;
--enable_query_log
SET GLOBAL innodb_encryption_threads = 4;
CREATE TABLE t1 (pk INT PRIMARY KEY AUTO_INCREMENT, c VARCHAR(256)) ENGINE=INNODB ENCRYPTED=YES;
--disable_warnings
--disable_query_log
begin;
let $i = 10;
while ($i)
{
INSERT INTO t1 values(NULL, substring(MD5(RAND()), -128));
dec $i;
}
commit;
--enable_warnings
--enable_query_log
let INNODB_PAGE_SIZE=`select @@innodb_page_size`;
let MYSQLD_DATADIR=`select @@datadir`;
eval select * into outfile "$MYSQLTEST_VARDIR/tmp/t1.outfile" from t1;
select count(*) from t1;
CREATE TABLE t2 (pk INT, c CHAR(255)) ENGINE=INNODB ENCRYPTED=YES;
insert into t2 values(999, "sql"), (2000, "server"), (100, "mariadb"),
(101, "mariadb"), (102, "test1"), (103, "test2"), (104, "test3");
insert into t2 select * from t2;
insert into t2 select * from t2;
insert into t2 select * from t2;
insert into t2 select * from t2;
insert into t2 select * from t2;
insert into t2 select * from t2;
select count(*) from t2;
--source include/shutdown_mysqld.inc
--echo # Corrupt the pages
perl;
my $ps = $ENV{INNODB_PAGE_SIZE};
my $file = "$ENV{MYSQLD_DATADIR}/test/t2.ibd";
open(FILE, "+<$file") || die "Unable to open $file";
binmode FILE;
seek (FILE, $ENV{INNODB_PAGE_SIZE} * 4, SEEK_SET) or die "seek";
print FILE "junk";
close FILE or die "close";
EOF
--source include/start_mysqld.inc
eval load data infile '$MYSQLTEST_VARDIR/tmp/t1.outfile' into table t2;
failed: 1296: Got error 192 'Table encrypted but decryption failed. This could be because correct encryption management plugin is not loaded, used encryption key is not available or encryption method does not match.' from InnoDB
show warnings;
Level Code Message
Warning 192 Table t2 in file ./test/t2.ibd is encrypted but encryption service or used key_id 1 is not available. Can't continue reading table.
Error 1296 Got error 192 'Table encrypted but decryption failed. This could be because correct encryption management plugin is not loaded, used encryption key is not available or encryption method does not match.' from InnoDB
The following error in the log file:
2019-05-02 23:32:57 1 [ERROR] InnoDB: The page [page id: space=6, page number=4] in file './test/t2.ibd' cannot be decrypted.
2019-05-02 23:32:57 1 [Note] InnoDB: However key management plugin or used key_version 1 is not found or used encryption algorithm or method does not match.
2019-05-02 23:32:57 1 [Note] InnoDB: Marking tablespace as missing. You may drop this table or install correct key management plugin and key file.
2019-05-02 23:32:57 1 [ERROR] InnoDB: The page [page id: space=6, page number=4] in file './test/t2.ibd' cannot be decrypted.
2019-05-02 23:32:57 1 [Note] InnoDB: However key management plugin or used key_version 1 is not found or used encryption algorithm or method does not match.
2019-05-02 23:32:57 1 [Note] InnoDB: Marking tablespace as missing. You may drop this table or install correct key management plugin and key file.
2019-05-02 23:32:57 1 [ERROR] InnoDB: The page [page id: space=6, page number=4] in file './test/t2.ibd' cannot be decrypted.