WL#9289: InnoDB: Support Transparent Data Encryption for Undo Tablespaces

Affects: Server-8.0   —   Status: Complete

This work will provide encryption support for undo tablespaces.

Basically, for encryption, undo log tablespace has no difference with regular 
tablespace. The special thing is how to en/disable undo log encryption.

1:We added a new global variable innodb_undo_log_encrypt=ON/OFF for en/disable 
undo log encryption.

And after user enable undo log encryption, the undo log pages will be encrypted 
when they're writing into disk. the previous undo log pages which is already on
disk will be left as not encrypted status.
On the other hand, after it's disable, the old undo log pages will be leave as
encrypted status, and the new undo log pages will not be encrypted.

If innodb_undo_log_encrypt is enabled in bootstrap, we use a default master key
for encrypting undo log tablespace key and iv. It's because there's no necessary
information like server uuid in bootstrap. And in the next master key rotation, 
the default master key will be thrown away.

2:In this worklog, we only support encryption of independent undo tablespaces.
Since currently, we don't support encryption of shared tablespaces, so,
we will not support encrypting undo log pages in system tablespace.
This feature will be provided in the coming worklog.

3:Same as regular tablespace, the encryption metadata will be stored in the first
page of data file.

And in the future work undo tablespace metadata is stored in the Global Data
Dictionary dd::Tablespace object, and loaded on server startup. Then, the
encryption metadata can be stored in dd::Tablespace::options or
dd::Tablespace::se_private_data. The main thing that is missing is the SQL
interface to specify encryption when 
creating a tablespace.

4:Performance impact of undo log encryption will be less than 10%.