8.4.4.9 Using the keyring_aws Amazon Web Services Keyring Plugin (original) (raw)

8.4.4.9 Using the keyring_aws Amazon Web Services Keyring Plugin

Note

The keyring_aws plugin is an extension included in MySQL Enterprise Edition, a commercial product. To learn more about commercial products, see https://www.mysql.com/products/.

The keyring_aws keyring plugin communicates with the Amazon Web Services Key Management Service (AWS KMS) as a back end for key generation and uses a local file for key storage. All keyring material is generated exclusively by the AWS server, not by keyring_aws.

MySQL Enterprise Edition can work with keyring_aws on Red Hat Enterprise Linux, SUSE Linux Enterprise Server, Debian, Ubuntu, macOS, and Windows. MySQL Enterprise Edition does not support the use ofkeyring_aws on these platforms:

The discussion here assumes that you are familiar with AWS in general and KMS in particular. Some pertinent information sources:

The following sections provide configuration and usage information for the keyring_aws keyring plugin:

keyring_aws Configuration

To install keyring_aws, use the general instructions found inSection 8.4.4.3, “Keyring Plugin Installation”, together with the plugin-specific configuration information found here.

The plugin library file contains thekeyring_aws plugin and two loadable functions,keyring_aws_rotate_cmk() andkeyring_aws_rotate_keys().

To configure keyring_aws, you must obtain a secret access key that provides credentials for communicating with AWS KMS and write it to a configuration file:

  1. Create an AWS KMS account.
  2. Use AWS KMS to create a secret access key ID and secret access key. The access key serves to verify your identity and that of your applications.
  3. Use the AWS KMS account to create a KMS key ID. At MySQL startup, set thekeyring_aws_cmk_id system variable to the CMK ID value. This variable is mandatory and there is no default. (Its value can be changed at runtime if desired usingSET GLOBAL.)
  4. If necessary, create the directory in which the configuration file should be located. The directory should have a restrictive mode and be accessible only to the account used to run the MySQL server. For example, on Unix and Unix-like systems, to use/usr/local/mysql/mysql-keyring/keyring_aws_conf as the file name, the following commands (executed asroot) create its parent directory and set the directory mode and ownership:
$> cd /usr/local/mysql  
$> mkdir mysql-keyring  
$> chmod 750 mysql-keyring  
$> chown mysql mysql-keyring  
$> chgrp mysql mysql-keyring  

At MySQL startup, set thekeyring_aws_conf_file system variable to/usr/local/mysql/mysql-keyring/keyring_aws_conf to indicate the configuration file location to the server. 5. Prepare the keyring_aws configuration file, which should contain two lines:

wwwwwwwwwwwwwEXAMPLE  
xxxxxxxxxxxxx/yyyyyyy/zzzzzzzzEXAMPLEKEY  

To be usable during the server startup process,keyring_aws must be loaded using the--early-plugin-load option. Thekeyring_aws_cmk_id system variable is mandatory and configures the KMS key ID obtained from the AWS KMS server. Thekeyring_aws_conf_file andkeyring_aws_data_file system variables optionally configure the locations of the files used by the keyring_aws plugin for configuration information and data storage. The file location variable default values are platform specific. To configure the locations explicitly, set the variable values at startup. For example, use these lines in the servermy.cnf file, adjusting the.so suffix and file locations for your platform as necessary:

[mysqld]
early-plugin-load=keyring_aws.so
keyring_aws_cmk_id='arn:aws:kms:us-west-2:111122223333:key/abcd1234-ef56-ab12-cd34-ef56abcd1234'
keyring_aws_conf_file=/usr/local/mysql/mysql-keyring/keyring_aws_conf
keyring_aws_data_file=/usr/local/mysql/mysql-keyring/keyring_aws_data

For the keyring_aws plugin to start successfully, the configuration file must exist and contain valid secret access key information, initialized as described previously. The storage file need not exist. If it does not,keyring_aws attempts to create it (as well as its parent directory, if necessary).

For additional information about the system variables used to configure the keyring_aws plugin, seeSection 8.4.4.19, “Keyring System Variables”.

Start the MySQL server and install the functions associated with the keyring_aws plugin. This is a one-time operation, performed by executing the following statements, adjusting the .so suffix for your platform as necessary:

CREATE FUNCTION keyring_aws_rotate_cmk RETURNS INTEGER
  SONAME 'keyring_aws.so';
CREATE FUNCTION keyring_aws_rotate_keys RETURNS INTEGER
  SONAME 'keyring_aws.so';

For additional information about thekeyring_aws functions, seeSection 8.4.4.16, “Plugin-Specific Keyring Key-Management Functions”.

keyring_aws Operation

At plugin startup, the keyring_aws plugin reads the AWS secret access key ID and key from its configuration file. It also reads any encrypted keys contained in its storage file into its in-memory cache.

During operation, keyring_aws maintains encrypted keys in the in-memory cache and uses the storage file as local persistent storage. Each keyring operation is transactional: keyring_aws either successfully changes both the in-memory key cache and the keyring storage file, or the operation fails and the keyring state remains unchanged.

To ensure that keys are flushed only when the correct keyring storage file exists, keyring_aws stores a SHA-256 checksum of the keyring in the file. Before updating the file, the plugin verifies that it contains the expected checksum.

The keyring_aws plugin supports the functions that comprise the standard MySQL Keyring service interface. Keyring operations performed by these functions are accessible at two levels:

Example (using the SQL interface):

SELECT keyring_key_generate('MyKey', 'AES', 32);
SELECT keyring_key_remove('MyKey');

In addition, thekeyring_aws_rotate_cmk() andkeyring_aws_rotate_keys() functions “extend” the keyring plugin interface to provide AWS-related capabilities not covered by the standard keyring service interface. These capabilities are accessible only by calling these functions using SQL. There are no corresponding C-language key service functions.

For information about the characteristics of key values permitted by keyring_aws, seeSection 8.4.4.13, “Supported Keyring Key Types and Lengths”.

keyring_aws Credential Changes

Assuming that the keyring_aws plugin has initialized properly at server startup, it is possible to change the credentials used for communicating with AWS KMS:

  1. Use AWS KMS to create a new secret access key ID and secret access key.
  2. Store the new credentials in the configuration file (the file named by thekeyring_aws_conf_file system variable). The file format is as described previously.
  3. Reinitialize the keyring_aws plugin so that it re-reads the configuration file. Assuming that the new credentials are valid, the plugin should initialize successfully.
    There are two ways to reinitialize the plugin:
    • Restart the server. This is simpler and has no side effects, but is not suitable for installations that require minimal server downtime with as few restarts as possible.
    • Reinitialize the plugin without restarting the server by executing the following statements, adjusting the.so suffix for your platform as necessary:
    UNINSTALL PLUGIN keyring_aws;  
    INSTALL PLUGIN keyring_aws SONAME 'keyring_aws.so';  

    Note
    In addition to loading a plugin at runtime,INSTALL PLUGIN has the side effect of registering the plugin it in themysql.plugin system table. Because of this, if you decide to stop usingkeyring_aws, it is not sufficient to remove the--early-plugin-load option from the set of options used to start the server. That stops the plugin from loading early, but the server still attempts to load it when it gets to the point in the startup sequence where it loads the plugins registered inmysql.plugin.
    Consequently, if you execute theUNINSTALL PLUGIN plusINSTALL PLUGIN sequence just described to change the AWS KMS credentials, then to stop usingkeyring_aws, it is necessary to execute UNINSTALL PLUGIN again to unregister the plugin in addition to removing the--early-plugin-load option.