Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
MDEV-25343 add read secret size in file key plugin
- Loading branch information
1 parent
64d85c3
commit cee7175
Showing
5 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| call mtr.add_suppression("the secret file has incorrect length"); | ||
| call mtr.add_suppression("Plugin 'file_key_management' init function returned error"); | ||
| call mtr.add_suppression("Plugin 'file_key_management' registration.*failed"); | ||
| FOUND 1 /the secret file has incorrect length/ in mysqld.1.err | ||
| create table t1(c1 bigint not null, b char(200)) engine=innodb encrypted=yes encryption_key_id=1; | ||
| ERROR HY000: Can't create table `test`.`t1` (errno: 140 "Wrong create options") | ||
| select plugin_status from information_schema.plugins | ||
| where plugin_name = 'file_key_management'; | ||
| plugin_status | ||
| # Test checks if opening an too large secret does not crash the server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| secretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecret | ||
| secretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecret | ||
| secretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecretsecret | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| --loose-file-key-management-filekey=FILE:$MTR_SUITE_DIR/t/filekeys-data-too-long.key | ||
| --loose-file-key-management-filename=$MTR_SUITE_DIR/t/filekeys-data.enc | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| let SEARCH_PATTERN=the secret file has incorrect length; | ||
| source filekeys_badtest.inc; | ||
|
|
||
| --echo # Test checks if opening an too large secret does not crash the server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters