Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Enterprise. Switch to the latest stable version.
ScyllaDB Enterprise
Added in version 2019.1.1.
Changed in version 2019.1.3.
ScyllaDB Enterprise protects your sensitive data with data-at-rest encryption. It protects the privacy of your user’s data, reduces the risk of data breaches, and helps meet regulatory requirements. In particular, it provides an additional level of protection for your data persisted in storage or its backups.
When ScyllaDB Enterprise Encryption at Rest is used together with Encryption in Transit (Node to Node and Client to Node), you benefit from end to end data encryption.
Note
KMS support is available since ScyllaDB Enterprise 2023.1.1.
The following can be encrypted:
ScyllaDB persistent tables (SSTables)
System level data, such as:
Commit logs
Batches
hints logs
KMIP Password (part of scylla.yaml)
Encryption at Rest works at table level granularity, so you can choose to encrypt only sensitive tables. For both system and table data, you can use different algorithms that are supported by OpenSSL in a file block encryption scheme.
Note
SSTables of a particular table can have different encryption keys, use different encryption algorithms, or not be encrypted at all - at the same time.
As SSTables are immutable, tables are encrypted only once, as a result of memtable flush, compaction, or upgrade (with Nodetool upgradesstables).
Once a table is encrypted, all resulting SSTables are encrypted using the most current key and algorithm. When you encrypt an existing table, the new SSTables are encrypted. The old SSTables which existed before the encryption are not updated. These tables are encrypted according to the same actions as described previously.
When ScyllaDB reads an encrypted SSTable from disk, it fetches the encryption key’s ID from the SSTable and uses it to extract the key and decrypt the data. When ScyllaDB reads an encrypted system table, it fetches the system table encryption key location from the scylla.yaml file. It locates the key and uses it to extract the key and decrypt the data.
Two types of encryption keys are available: System Keys and Table Keys.
System keys are used for encrypting system data, such as commit logs, hints, and/or other user table keys. When a Replicated Key Provider is used for encrypting SSTables, the table keys are stored in the encrypted_keys table, and the system key is used to encrypt the encrypted_keys table. The system key is stored as the contents of a local file and is encrypted with a single key that you provide. The default location of system keys is /etc/scylla/resources/system_keys/
and can be changed with the system_key_directory
option in scylla.yaml file. When a Local Key Provider is used for encrypting system info, you can provide your own key, or ScyllaDB can make one for you.
Table keys are used for encrypting SSTables. Depending on your key provider, this key is stored in different locations:
Replicated Key Provider - encrypted_keys table
KMIP Key Provider - KMIP server
KMS Key Provider - AWS
Local Key Provider - in a local file with multiple keys. You can provide your own key or ScyllaDB can make one for you.
When encrypting the system tables or SSTables, you need to state which provider is holding your keys. You can use the following options:
Key Provider Name |
key_provider Name |
Description |
---|---|---|
Local Key Provider |
LocalFileSystemKeyProviderFactory (default) |
Stores the key on the same machine as the data. |
Replicated Key Provider |
ReplicatedKeyProviderFactory |
Stores table keys in a ScyllaDB table where the table itself is encrypted using the system key (available from 2019.1.3) |
KMIP Key Provider |
KmipKeyProviderFactory |
External key management server (available from 2019.1.3) |
KMS Key Provider |
KmsKeyProviderFactory |
Uses key(s) provided by the AWS KMS service. |
Local keys are used for encrypting user data, such as SSTables. Currently, this is the only option available for user data and, as such, is the default key storage manager. With local key storage, keys are stored locally on disk in a text file. The location of this file is specified in the scylla.yaml.
Caution
Care should be taken so that no unauthorized person can access the key data from the file system. Make sure that the owner of this file is the scylla
user and that the file is not readable by other users, not accessible by other roles.
You should also consider keeping the key directory on a network drive (using TLS for the file sharing) to avoid having keys and data on the same storage media, in case your storage is stolen or discarded.
The following cipher_algorithims are available for use with ScyllaDB using OpenSSL. Note that the default algorithm (AES/CBC/PKCS5Padding with key strength 128 ) is recommended.
cipher_algorithm |
secret_key_strength |
---|---|
AES/CBC/PKCS5Padding (default) |
128 (default), 192, or 256 |
AES/ECB/PKCS5Padding |
128, 192, or 256 |
Blowfish/CBC/PKCS5Padding |
32-448 |
Depending on your key provider, you will either have the option of allowing ScyllaDB to generate an encryption key, or you will have to provide one:
KMIP Key Provider - you don’t need to generate any key yourself
KMS Key Provider - you must generate a key yourself in AWS
Replicated Key Provider - you must generate a system key yourself
Local Key Provider - If you do not generate your own secret key, ScyllaDB will create one for you
When encrypting ScyllaDB config by configuration_encryptor
, you also need to generate a secret key and upload the key to all nodes.
The Key Generator script generates a key in the directory of your choice.
Procedure
Create (if it doesn’t exist) a local directory for storing the key. Make sure that the owner of the directory is scylla
and not another user. Make sure that the scylla
user can read, write, and execute over the parent directory. Following this procedure makes /etc/scylla/encryption_keys/
the parent directory of your keys.
For example:
sudo mkdir -p /etc/scylla/encryption_keys/system_keys
sudo chown -R scylla:scylla /etc/scylla/encryption_keys
sudo chmod -R 700 /etc/scylla/encryption_keys
Create a key using the local file key generator script making sure that the keyfile owner is scylla
and not another user. Run the command:
sudo -u scylla /bin/local_file_key_generator [options] [key-path]
Where:
-a,--alg <arg>
- the encryption algorithm (e.g., AES) you want to use to encrypt the key
-c,--append
- appends the output to the key file (default is to overwrite)
-h,--help
- displays the help menu
-l,--length <arg>
- the length of the encryption key in bits (i.e. 128, 256)
-m,--block-mode <arg>
- the encryption algorithm block mode (i.e. CBC, EBC)
-p,--padding <arg>
- the encryption algorithm padding method (i.e. PKCS5)
key-path
- is the directory you want to place the key into (/etc/scylla/encryption_keys, for example)
For Example:
To create a secret key and a system key using other encryption settings in a different location:
sudo -u scylla /bin/local_file_key_generator -a AES -m ECB -p PKCS5 -l 192 /etc/scylla/encryption_keys/secret_key
sudo -u scylla /bin/local_file_key_generator -a AES -m CBC -p PKCS5 -l 128 /etc/scylla/encryption_keys/system_keys/system_key
To display the secret key parameters:
sudo cat /etc/scylla/encryption_keys/secret_key
Returns:
AES/ECB/PKCS5Padding:192:8stVxW5ypYhNxsnRVS1A6suKhk0sG4Tj
To display the system key parameters:
sudo cat /etc/scylla/encryption_keys/system_keys/system_key
Returns:
AES/CBC/PKCS5Padding:128:GGpOSxTGhtPRPLrNPYvVMQ==
Once you have created a key, copy the key to each node, using the procedure described in Copy keys to nodes.
Every key you generate needs to be copied to the nodes for use in local key providers.
Procedure
Securely copy the key file, using scp
or similar, to the same path on all nodes in the cluster. Make sure the key on each target node is moved to the same location as the source directory and that the target directory has the same permissions as the source directory.
Repeat for all nodes in the cluster.
If you are using KMIP to encrypt tables or system information, add the KMIP server information to the scylla.yaml
configuration file.
Edit the scylla.yaml
file located in /etc/scylla/
and add the following in KMIP host(s) section:
#
# kmip_hosts:
# <name>:
# hosts: <address1[:port]> [, <address2[:port]>...]
# certificate: <identifying certificate> (optional)
# keyfile: <identifying key> (optional; it is required if "certificate" is set)
# truststore: <truststore for SSL connection> (optional)
# certficate_revocation_list: <CRL file> (optional)
# priority_string: <kmip tls priority string>
# username: <login> (optional>
# password: <password> (optional)
# max_command_retries: <int> (optional; default 3)
# <name>:
Where:
<name>
- The cluster name.
hosts
- The list of hosts specified by IP and port for the KMIP server. The KMIP connection management only supports failover, so all requests go through a single KMIP server. There is no load balancing, as currently no KMIP servers support read replication or other strategies for availability. Hosts are tried in the order they appear, and the next one in the list is tried if the previous one fails. The default number of retries is three, but you can customize it with “max_command_retries”.
certificate
- The name of the certificate and path used to identify yourself to the KMIP server.
keyfile
- The name of the key used to identify yourself to the KMIP server. It is generated together with the certificate.
truststore
- The location and key for the truststore to present to the KMIP server.
certficate_revocation_list
- The path to a PEM-encoded certificate revocation list (CRL) - a list of issued certificates that have been revoked before their expiration date.
priority_string
- The KMIP TLS priority string.
username
- The KMIP server user name.
password
- The KMIP server password.
max_command_retries
- The number of attempts to connect to the KMIP server before trying the next host in the list.
Save the file.
Drain the node with nodetool drain
Restart the scylla-server service.
sudo systemctl restart scylla-server
docker exec -it some-scylla supervisorctl restart scylla
(without restarting some-scylla container)
Note
KMS support is available since ScyllaDB Enterprise 2023.1.1.
If you are using AWS KMS to encrypt tables or system information, add the KMS information to the scylla.yaml
configuration file.
Edit the scylla.yaml
file located in /etc/scylla/
to add the following in KMS host(s) section:
kms_hosts:
<name>:
endpoint: http(s)://<host>(:port) (optional if `aws_region` is specified)
aws_region: <aws region> (optional if `endpoint` is specified)
aws_access_key_id: <aws access key id> (optional)
aws_secret_access_key: <aws secret access key> (optional)
aws_profile: <aws credentials profile to use> (optional)
aws_use_ec2_credentials: (bool : default false)
aws_use_ec2_region: (bool : default false)
aws_assume_role_arn: <arn of aws role to assume before call> (optional)
master_key: <named KMS key for encrypting data keys> (required)
certificate: <identifying certificate> (optional)
keyfile: <identifying key> (optional)
truststore: <truststore for SSL connection> (optional)
priority_string: <KMS TLS priority string> (optional)
# <name>:
Where:
<name>
- The name to identify the KMS host. You have to provide this name to encrypt a new or existing table.
endpoint
- The explicit KMS host endpoint. If not provided, aws_region
is used for connection.
aws_region
- An AWS region. If not provided, endpoint
is used for connection.
aws_access_key_id
- AWS access key used for authentication. If not specified, the provider reads it from your AWS credentials.
aws_secret_access_key
- AWS secret access key used for authentication. If not specified, the provider reads it from your AWS credentials.
aws_profile
- AWS profile to use if reading credentials from file
aws_use_ec2_credentials
- If true, KMS queries will use the credentials provided by ec2 instance role metadata as initial access key.
aws_use_ec2_region
- If true, KMS queries will use the AWS region indicated by ec2 instance metadata.
aws_assume_role_arn
- If set, any KMS query will first attempt to assume this role.
master_key
- The ID or alias of your AWS KMS key. The key must be generated with an appropriate access policy so that the AWS user has permissions to read the key and encrypt data using that key. This parameter is required.
certificate
- The name of the certificate and the path used to identify yourself to the KMS server.
keyfile
- The name of the key for the certificate. It is generated together with the certificate.
truststore
- The location and key for the truststore to present to the KMS server.
priority_string
- The KMS TLS priority string.
Note
Not that either endpoint
, aws_region
or aws_use_ec2_region
must be set (one of them is required for connection).
Example:
kms_hosts:
my-kms1:
aws_use_ec2_credentials: true
aws_use_ec2_region: true
master_key: myorg/MyKey
Save the file.
Drain the node with nodetool drain
Restart the scylla-server service.
sudo systemctl restart scylla-server
docker exec -it some-scylla supervisorctl restart scylla
(without restarting some-scylla container)
Note
This feature is available since ScyllaDB Enterprise 2023.1.2.
ScyllaDB allows you to enable or disable default encryption of tables.
When enabled, tables will be encrypted by default using the configuration
provided for the user_info_encryption
option in the scylla.yaml
file.
You can override the default configuration when you CREATE TABLE or ALTER TABLE
with scylla_encryption_options
. See Encrypt a Single Table
for details.
Before you Begin
Ensure you have an encryption key available:
If you are using AWS KMS, set the KMS Host.
If you are using KMIP, set the KMIP Host.
If you want to create your own key, follow the procedure in Create Encryption Keys.
If you do not create your own key, use the following procedure for ScyllaDB
to create a key for you (the default location /etc/scylla/data_encryption_keys
may cause
permission issues; the following example creates a key in the directory /etc/scylla/encryption_keys
):
sudo mkdir -p /etc/scylla/encryption_keys sudo chown -R scylla:scylla /etc/scylla/encryption_keys sudo chmod -R 700 /etc/scylla/encryption_keys
Procedure
Edit the scylla.yaml
file located in /etc/scylla/
and configure
the user_info_encryption
option:
user_info_encryption:
enabled: <true|false>
cipher_algorithm: <hashing algorithm to create the key>
secret_key_strength: <length of the key>
key_provider: <your key provider>
secret_key_file: <key file>
kmip_host: <your kmip_host>
kms_host: <your kms_host>
Where:
enabled
- Enables or disables default table encryption. Required.
cipher_algorithm
- One of the cipher algorithms.
If not provided, the default will be used.
secret_key_strength
- The length of the key in bytes ( determined by
the cipher algorithms you choose).
If not provided, the default will be used.
key_provider
- The name of the key provider. See Key Providers.
Required.
secret_key_file
- The location of the key created by ScyllaDB (by default /etc/scylla/data_encryption_keys
).
Required if you use a ScyllaDB-generated key.
kmip_host
- The name of your kmip_host group.
Required if you use KMIP.
kms_host
- The name of your kms_host group.
Required if you use KMS.
Example
user_info_encryption:
enabled: true
cipher_algorithm: AES
secret_key_strength: 128
key_provider: LocalFileSystemKeyProviderFactory
secret_key_file: scylla /etc/scylla/encryption_keys
Examples for KMS:
In the following example, the master_key
configured for kms_host will be used.
user_info_encryption:
enabled: true
key_provider: KmsKeyProviderFactory
kms_host: my-kms1
You can specify a different master_key
than the one configured for kms_host:
user_info_encryption: enabled: true key_provider: KmsKeyProviderFactory kms_host: my-kms1 master_key: myorg/SomeOtherKey
This procedure demonstrates how to encrypt a new table.
Before you Begin
Make sure to Set the KMIP Host if you are using KMIP, or the the KMS Host if you are using AWS KMS.
If you want to make your own key, use the procedure in Create Encryption Keys and skip to step 3. If you do not create your own key, ScyllaDB will create one for you in the secret_key_file
path. If you are not creating your own key, start with step 1.
Procedure
By default, the encryption key is located in the /etc/scylla/
directory, and the file is named data_encryption_keys
. If you want to save the key in a different directory, create one. This example will create encryption keys in a different directory (/etc/scylla/encryption_keys
, for example), which ensures that the owner of this directory is scylla
and not another user.
Note
Using the default location results in a known permission issue (scylladb/scylla-tools-java#94), so it is recommended to use another location as described in the example.
sudo mkdir -p /etc/scylla/encryption_keys
sudo chown -R scylla:scylla /etc/scylla/encryption_keys
sudo chmod -R 700 /etc/scylla/encryption_keys
Create the keyspace if it doesn’t exist.
Create the table using the CREATE TABLE
CQL statement, adding any additional options. To encrypt the table, use the options for encryption below, remembering to set the secret_key_file <path>
to the same directory you created in step 1.
CREATE TABLE <keyspace>.<table_name> (...<columns>...) WITH
scylla_encryption_options = {
'cipher_algorithm' : <hash>,
'secret_key_strength' : <len>,
'key_provider': <provider>,
'secret_key_file': <path>
}
;
Where:
cipher_algorithm
- The hashing algorithm which is to be used to create the key. See Cipher Algorithms for more information.
secret_key_strength
- The length of the key in bytes. This is determined by the cipher you choose. See Cipher Algorithms for more information.
key_provider
is the name or type of key provider. Refer to Key Providers for more information.
secret_key_file
- the location that ScyllaDB will store the key it creates (if one does not exist in this location) or the location of the key. By default the location is /etc/scylla/data_encryption_keys
.
Example:
Continuing the example from above, this command will instruct ScyllaDB to encrypt the table and will save the key in the location created in step 1.
CREATE TABLE data.atrest (pk text primary key, c0 int) WITH
scylla_encryption_options = {
'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
'secret_key_strength' : 128,
'key_provider': 'LocalFileSystemKeyProviderFactory',
'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
}
;
Example for KMS:
CREATE TABLE myks.mytable (...<columns>...) WITH
scylla_encryption_options = {
'cipher_algorithm' : 'AES/CBC/PKCS5Padding',
'secret_key_strength' : 128,
'key_provider': 'KmsKeyProviderFactory',
'kms_host': 'my-kms1'
}
;
You can skip cipher_algorithm
and secret_key_strength
(the defaults will be used):
CREATE TABLE myks.mytable (...<columns>...) WITH
scylla_encryption_options = {
'key_provider': 'KmsKeyProviderFactory',
'kms_host': 'my-kms1'
}
;
You can specify a different master key than the one configured for kms_host
in the scylla.yaml
file:
CREATE TABLE myks.mytable (...<columns>...) WITH
scylla_encryption_options = {
'key_provider': 'KmsKeyProviderFactory',
'kms_host': 'my-kms1',
'master_key':'myorg/SomeOtherKey'
}
;
From this point, every new SSTable created for the atrest
table is encrypted, using the data_encryption_keys
key located in /etc/scylla/encryption_keys/
. This table will remain encrypted with this key until you either change the key, change the key properties, or disable encryption.
To ensure all SSTables for this table on every node are encrypted, run the Nodetool upgradesstables command. If not, the SSTables remain unencrypted until they are compacted or flushed from MemTables.
For Example:
nodetool upgradesstables data atrest
Your SSTables are encrypted. If you want to change the key at any point, use the Update Encryption Properties of Existing Tables procedure. Always keep your key in a safe location known to you. Do not lose it. See When a Key is Lost.
You can encrypt any existing table or use this procedure to change the cipher algorithm, key location or key strength or even disable encryption on a table.
Procedure
Edit the table properties to enable encryption of one table of your choosing. Use the properties explained in Encrypt a Single Table if needed.
ALTER TABLE <keyspace>.<table_name> (...<columns>...) WITH
scylla_encryption_options = {
'cipher_algorithm' : <hash>,
'secret_key_strength' : <len>,
'key_provider': <provider>,
'secret_key_file': <path>
}
;
Example:
Continuing the example from above, this command will instruct ScyllaDB to encrypt the table and will save the key in the location created in step 1.
ALTER TABLE data.atrest (pk text primary key, c0 int) WITH
scylla_encryption_options = {
'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
'secret_key_strength' : 192,
'key_provider': 'LocalFileSystemKeyProviderFactory',
'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
}
;
Example for KMS:
ALTER TABLE myks.mytable (...<columns>...) WITH
scylla_encryption_options = {
'cipher_algorithm' : 'AES/CBC/PKCS5Padding',
'secret_key_strength' : 128,
'key_provider': 'KmsKeyProviderFactory',
'kms_host': 'my-kms1'
}
;
If you want to make sure that SSTables that existed before this change are also encrypted, you can either upgrade them using the nodetool upgradesstables
command or wait until the next compaction. If you decide to wait, ScyllaDB will still be able to read the old unencrypted tables. If you change the key or remove encryption, ScyllaDB will still continue to read the old tables as long as you still have the key. If your data is encrypted and you do not have the key, your data is unreadable.
If you decide to upgrade all of your old SSTables run the nodetool upgradesstables command.
nodetool upgradesstables <keyspace> <table>
For example:
nodetool upgradesstables ks test
Repeat this command on all nodes as nodetool runs locally.
If you want to change the key or disable encryption, repeat the Update Encryption Properties of Existing Tables procedure using the examples below as reference.
Examples
To encrypt an existing table named test in keyspace ks:
ALTER TABLE ks.test WITH
scylla_encryption_options = {
'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
'secret_key_strength' : 128,
'key_provider': 'LocalFileSystemKeyProviderFactory',
'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
}
;
To change the cipher algorithm from AES/ECB/PKCS5Padding to AES/ECB/PKCS5Padding and to change the key strength from 128 to 192 on an existing table:
ALTER TABLE ks.test WITH
scylla_encryption_options = {
'cipher_algorithm' : 'AES/ECB/PKCS5Padding',
'secret_key_strength' : 192,
'key_provider': 'LocalFileSystemKeyProviderFactory',
'secret_key_file': '/etc/scylla/encryption_keys/data_encryption_keys'
}
;
To disable encryption on an encrypted table named test in keyspace ks:
ALTER TABLE ks.test WITH
scylla_encryption_options = { 'key_provider' : 'none’ };
System encryption is applied to semi-transient on-disk data, such as commit logs, batch logs, and hinted handoff data. This ensures that all temporarily stored data is encrypted until fully persisted to final SSTable on disk. Once this encryption is enabled, it is used for all system data.
Procedure
Edit the scylla.yaml file - located in /etc/scylla/scylla.yaml and add the following:
system_info_encryption:
enabled: <true|false>
key_provider: (optional) <key provider type>
system_key_directory: <path to location of system key>
Where:
enabled
can be true or false. True is enabled; false is disabled.
key_provider
is the name or type of key provider. Refer to Key Providers for more information.
cipher_algorithm
is one of the supported Cipher Algorithms.
secret_key_file
is the name of the key file containing the secret key (key.pem, for example)
Example:
system_info_encryption:
enabled: True
cipher_algorithm: AES
secret_key_strength: 128
key_provider: LocalFileSystemKeyProviderFactory
secret_key_file: /path/to/systemKey.pem
Example for KMIP:
system_info_encryption:
enabled: True
cipher_algorithm: AES
secret_key_strength: 128
key_provider: KmipKeyProviderFactory
kmip_host: yourkmipServerIP.com
Where kmip_host
is the address for your KMIP server.
Example for KMS:
system_info_encryption:
enabled: True
cipher_algorithm: AES/CBC/PKCS5Padding
secret_key_strength: 128
key_provider: KmsKeyProviderFactory
kms_host: myScylla
Where kms_host
is the unique name of the KMS host specified in the scylla.yaml file.
Do not close the yaml file. Change the system key directory location according to your settings.
system_key_directory
is the location of the system key you created in Create Encryption Keys.
system_key_directory: /etc/scylla/encryption_keys/system_keys
Save the file.
Drain the node with nodetool drain
Restart the scylla-server service.
sudo systemctl restart scylla-server
docker exec -it some-scylla supervisorctl restart scylla
(without restarting some-scylla container)
It is crucial to back up all of your encryption keys in a secure way. Keep a copy of all keys in a secure location. In the event that you do lose a key, your data encrypted with that key will be unreadable.
Was this page helpful?