mirror of
https://github.com/MariaDB/server.git
synced 2025-12-01 17:39:21 +03:00
Write only one encryption key to the checkpoint page. Use 4 bytes of nonce. Encrypt more of each redo log block, only skipping the 4-byte field LOG_BLOCK_HDR_NO which the initialization vector is derived from. Issue notes, not warning messages for rewriting the redo log files. recv_recovery_from_checkpoint_finish(): Do not generate any redo log, because we must avoid that before rewriting the redo log files, or otherwise a crash during a redo log rewrite (removing or adding encryption) may end up making the database unrecoverable. Instead, do these tasks in innobase_start_or_create_for_mysql(). Issue a firm "Missing MLOG_CHECKPOINT" error message. Remove some unreachable code and duplicated error messages for log corruption. LOG_HEADER_FORMAT_ENCRYPTED: A flag for identifying an encrypted redo log format. log_group_t::is_encrypted(), log_t::is_encrypted(): Determine if the redo log is in encrypted format. recv_find_max_checkpoint(): Interpret LOG_HEADER_FORMAT_ENCRYPTED. srv_prepare_to_delete_redo_log_files(): Display NOTE messages about adding or removing encryption. Do not issue warnings for redo log resizing any more. innobase_start_or_create_for_mysql(): Rebuild the redo logs also when the encryption changes. innodb_log_checksums_func_update(): Always use the CRC-32C checksum if innodb_encrypt_log. If needed, issue a warning that innodb_encrypt_log implies innodb_log_checksums. log_group_write_buf(): Compute the checksum on the encrypted block contents, so that transmission errors or incomplete blocks can be detected without decrypting. Rewrite most of the redo log encryption code. Only remember one encryption key at a time (but remember up to 5 when upgrading from the MariaDB 10.1 format.)
46 lines
1.5 KiB
PHP
46 lines
1.5 KiB
PHP
###########################################
|
|
#
|
|
# This is a template of the include file define_engine.inc which
|
|
# should be placed in storage/<engine>/mysql-test/storage_engine folder.
|
|
#
|
|
################################
|
|
#
|
|
# The name of the engine under test must be defined in $ENGINE variable.
|
|
# You can set it either here (uncomment and edit) or in your environment.
|
|
#
|
|
let $ENGINE = InnoDB;
|
|
#
|
|
################################
|
|
#
|
|
# The following three variables define specific options for columns and tables.
|
|
# Normally there should be none needed, but for some engines it can be different.
|
|
# If the engine requires specific column option for all or indexed columns,
|
|
# set them inside the comment, e.g. /*!NOT NULL*/.
|
|
# Do the same for table options if needed, e.g. /*!INSERT_METHOD=LAST*/
|
|
|
|
let $default_col_opts = /*!*/;
|
|
let $default_col_indexed_opts = /*!*/;
|
|
let $default_tbl_opts = /*!*/;
|
|
|
|
# INDEX, UNIQUE INDEX, PRIMARY KEY, special index type - choose the fist that the engine allows,
|
|
# or set it to /*!*/ if none is supported
|
|
|
|
let $default_index = /*!INDEX*/;
|
|
|
|
# If the engine does not support the following types, replace them with the closest possible
|
|
|
|
let $default_int_type = INT(11);
|
|
let $default_char_type = CHAR(8);
|
|
|
|
################################
|
|
|
|
--disable_query_log
|
|
--disable_result_log
|
|
|
|
# Here you can place your custom MTR code which needs to be executed before each test,
|
|
# e.g. creation of an additional schema or table, etc.
|
|
# The cleanup part should be defined in cleanup_engine.inc
|
|
|
|
--enable_query_log
|
|
--enable_result_log
|