1.0 Introduction
IBM Db2® is a family of hybrid data management products offering a complete suite of AI-empowered capabilities designed to help you manage both structured and unstructured data on-premises as well as in private and public cloud environments. Db2 is built on an intelligent common SQL engine designed for scalability and flexibility.
1.1 Why use Fortanix Data Security Manager (DSM) with IBM DB2
Db2® native encryption uses a two-tier approach to data encryption. Data is encrypted with a Data Encryption Key (DEK), which is in turn encrypted with a Master Key (MK). The encrypted DEK is stored with the data while the MK is stored in a keystore external to Db2.
Db2 native encryption ensures that the DEK is never exposed outside of the encrypted database, transaction log, or backup file. There are no interfaces provided to access the DEK in either its clear text or encrypted forms. As the MK is stored in a different location from the encrypted data, the chance of the encrypted DEK being concurrently exposed with the MK used to encrypt it is very unlikely. Since the risk of the DEK being exposed is extremely low, the need to rotate it is negligible. The rotation of the MK, which is used to protect the DEK, can be done efficiently without the need to decrypt and re-encrypt the data.
The Db2 database system supports SSL, which means that a Db2 client application that also supports SSL can connect to a Db2 database by using an SSL socket. CLI, CLP, and .Net Data Provider client applications and applications that use the IBM® Data Server Driver for JDBC and SQLJ (type 4 connections) support SSL.
2.0 Prerequisites
- Fortanix DSM
- IBM DB2
- Access to create a certificate for KMIP Server
3.0 Adding App in Fortanix Data Security Manager
There are two ways to create an app in Fortanix DSM:
3.1 Using Fortanix DSM On-Premises Deployments
- Add an app in Fortanix DSM in an appropriate group or a new group. For instructions on how to add a group or app, refer to the Fortanix DSM Getting Started Guide.
Figure 1: Create New App - Once you have added the application, note down its App ID by clicking the icon for “Copy UUID” to copy the App UUID as shown below. You will need this App ID for the certificate.
Figure 2: Copy app UUID -
If an App / Client needs to authenticate to Fortanix DSM using the only certificate, then the App ID needs to be embedded in the certificate in one of the following ways:
- Provided as the value of a custom OID in the certificate 1.3.6.1.4.1.49690.1.2.1
- Standard human-readable UUID encoding:
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx
provided as the value of CN.
CN example:
c2ba663a-4a09-4c9d-a32f-4608e4d8c20c
- Change the authentication method of the Fortanix DSM App created above to ‘Certificate’ and click SAVE.
- Continue to Section 4.1 for authentication using a client certificate.
- Click UPDATE to update the authentication method.
3.2 Using Fortanix DSM SaaS Deployment
To configure IBM DB2 wizard in Fortanix DSM SaaS:
- Sign up at https://smartkey.io/.
- Log in to the Fortanix DSM UI.
- Click the Integrations tab in the left panel.
- On the Integrations page, click ADD INSTANCE on the IBM DB2 wizard.
- Enter the details as shown in the screenshot below:
Figure 3: Add instance- Add Instance: This is the name to identify the instance created.
- Authentication method: Select the desired authentication method. There are two options to choose from:
- API key: This method is used to authenticate the application with the API Gateway.
- Client Certificate: This method is used to authenticate the application with Fortanix DSM using a Client Certificate. To upload the client certificate, click UPLOAD CERTIFICATE. Alternatively, the client certificate can be pasted in the field provided.
- Continue to Section 4.1 for authentication using client certificate.
- Click SAVE INSTANCE. With saving an instance a new Group, an App, and Keys are created within Fortanix DSM.
3.2.1 IBM DB2 Wizard Instance Detailed View
In the instance detailed view page, the created instances are listed as shown below.
In the instance details, you will notice the following:
- Credentials: This is the App authentication method used.
- Click CERTIFICATE to download the Client Certificate. This is applicable only if the App authentication method used is Client Certificate.
- Click COPY API KEY to copy the API key. This is applicable only if the App authentication method used is API Key.
- MANAGE: Click MANAGE to manage the keys created.
- Instance status: To disable the instance created, click the toggle Disabled.
- To delete the instance created click the
button. Note that deleting an instance will delete the App, Group, and all security objects belonging to the instance and all key material will become inaccessible.
Figure 4: Detailed view
4.0 Configuration on IBM DB2
4.1 Create Folders for Certificates and Config File
- Log in to the IBM DB2 machine and log in as the DB user as shown in the following screenshot.
Figure 5: Login to IBM DB2 as a DB user - Next, create folders so as to bifurcate the certificates and config file.
- KMIP (For config file)
- SDKMS_Certs (For all the certificates)
- Create a self-signed certificate and make sure that you should have the App-ID handy as we need to update the Common Name for the self-signed certificate.
- Change directory to
SDKMS_Certs
and run the following command:
openssl req -newkey rsa:2048 -nodes -keyout private.key -x509 -days 365 -out certificate.crt
Figure 6: Create self-signed certificate
Figure 7: Certificate generated - Change directory to
- Paste or upload the certificate that was generated in Step 3 above in the Upload Certificate text box in the Fortanix DSM UI for App authentication and save the details.
4.2 Updating the Certificate in Fortanix DSM
To update the certificate in the authentication method:
- Make sure you change the configuration to KMIP from the default, which is, REST API.
- Now import the private key and certificate into the SSL key store, you need to combine the private key and certificate into one.
- Verify the private key matches the Certificate and CSR.
openssl x509 -noout -modulus -in certificate.crt | openssl md5
4.3 Create the SDKMS-KMIP.P12 and Stashed File
Run the following command:
gsk8capicmd_64 -keydb -create -db "sdkms-kmip.p12" -pw "sdkms-kmip.pWd" -type pkcs12 -stash
In case you get an error that the gsk8capicmd_64
command is not found; you need to export the libraries for gsk8capicmd_64
from sqllib
.
Linux Environments:
export LD_LIBRARY_PATH=$HOME/sqllib/lib64/gskit:$LIBPATH
export PATH=$HOME/sqllib/gskit/bin:$PATH
Re-run the above command to create .p12
and stash file. In the following screenshot sdkms-kmip.p12
and sdkms-kmip.sth
file is created.
Figure 9: Create .p12 and stash file
4.4 Add Client Cert and Key to SSL Keystore
- Add client cert and key to the SSL keystore by running the following command:
gsk8capicmd_64 -cert -add -db "sdkms-kmip.p12" -stashed -label "sdkms_app_cert" -file "sdkms.pem"
- Find the CA certificate from your Fortanix DSM installation and copy it into a file
CA.pem
. Please note that if your CA certificate has a chain then the complete chain must be copied into this file. You can get the complete chain from your Fortanix DSM browser by going to your Fortanix DSM URL and then view certificates and download the certificate chain.
Since we are using "https://<fortanix_dsm_url>", let us get the CA Certificate from the UI. - In the IBM shell, create the CA.pem file using the following command.
touch CA.pem
- Perform
vi
onCA.pem
and then paste the certificate information to give the following output.CA.pem
will contain the intermediate+ root certificate.
Figure 10: Output of CA.pem
4.5 Import CA Certificate into SSL Keystore
Import CA Certificate into the SSL keystore by running the following command:
gsk8capicmd_64 -cert -add -db "sdkms-kmip.p12" -stashed -label "trustedCA" -file CA.pem
4.6 List Certificate in the Keystore
List certificate in your keystore to verify everything is fine by running the following command
gsk8capicmd_64 -cert -list -db sdkms-kmip.p12 -stashed
Figure 11: List certificates
Create a KMIP config file in the KMIP folder. In the following example, it is kmip.cfg
:
---------------------------
VERSION=1
PRODUCT_NAME=OTHER
ALLOW_KEY_INSERT_WITHOUT_KEYSTORE_BACKUP=true
SSL_KEYDB=/database/config/db2inst1/SDKMS_Certs/sdkms-kmip.p12
SSL_KEYDB_STASH=/database/config/db2inst1/SDKMS_Certs/sdkms-kmip.sth
SSL_KMIP_CLIENT_CERTIFICATE_LABEL=sdkms_app_cert
MASTER_SERVER_HOST=<fortanix_dsm_url>
MASTER_SERVER_KMIP_PORT=5696
------------------------------
Figure 12: Create a KMIP config file
4.7 Configure a DB2 Instance to Use a Keystore
- To configure a Db2 instance to use a keystore for native encryption, you need to set two database manager configuration parameters:
keystore_type
andkeystore_location
. - For a centralized keystore, where the key manager product uses the Key Management Interoperability Protocol (KMIP), set
keystore_type
to "KMIP
", and setkeystore_location
to the absolute path and file name of the centralized keystore configuration file. - To do this, run the following command:
db2 update dbm cfg using keystore_location /mnt/blumeta0/home/db2inst1/KMIP/kmip.cfg keystore_type kmip
Figure 13: Set keystore type and location - To get the keystore changes to take effect, we need to restart the DB2 again.
The command to stop the DB2:db2stop
- The command to start the DB2:
db2start
Figure 14: Stop and start the DB2 - Verify that the
dbm cfg
is set correctly by running the following command. Look at value of Keystore type and keystore location.
db2 get dbm cfg
Figure 15: Verify database manager configuration
4.8 Renewing Certificate
- To renew the certificate, run the following command using the existing private key.
openssl req -key private.key -new -x509 -days 700 -out renewcertificate.crt
Figure 16: Renew certificate
Figure 17: Certificate generated - Go to the Fortanix DSM UI and update the app certificate. Paste or upload the new certificate that was generated in the previous step.
Figure 18: Update application authentication to certificate - Import the private key and certificate into the SSL key store. You must combine the private key and certificate into one.
cat renewcertificate.crt private.key > sdkms.pem
- Verify that the private key matches the Certificate and CSR.
openssl x509 -noout -modulus -in certificate.crt | openssl md5
openssl x509 -noout -modulus -in renewcertificate.crt | openssl md5 - Remove the existing
sdkms.pem
entry from the current p12 file.gsk8capicmd_64 -cert -delete -db "sdkms-kmip.p12" -stashed -label "sdkms_app_cert"
- Add client certificate and key to SSL Keystore.
gsk8capicmd_64 -cert -add -db "sdkms-kmip.p12" -stashed -label "sdkms_app_cert" -file "sdkms.pem"
- Import the CA certificate into the SSL Keystore.
- Delete the existing
CA.pem
from the p12 file using the following command.gsk8capicmd_64 -cert -delete -db "sdkms-kmip.p12" -stashed -label "trustedCA" -file CA.pem
- Download the latest CA certificate from the Fortanix DSM URL as described from Step 2 to Step 4 in Section 4.4.
gsk8capicmd_64 -cert -add -db "sdkms-kmip.p12" -stashed -label "trustedCA" -file CA.pem
- Delete the existing
- List the certificate in your keystore to verify if everything is fine.
gsk8capicmd_64 -cert -list -db sdkms-kmip.p12 -stashed
4.9 Updating Certificate in IBM DB2 Keystore
- Verify the certificate in the IBM DB2 Keystore.
gsk8capicmd_64 -cert -list -db sdkms-kmip.p12 -stashed
db2inst1@2407b7a6943b SDKMS_Certs]$ gsk8capicmd_64 -cert - list -db sdkms-kmip.p12 -stashed Certificates found * default, - personal, ! trusted, # secret key ! CN=<fortanix_dsm_url> ! "CN=R3,O=Let's Encrypt,C=US" ! trustedCA - sdkms_app_cert [db2inst1@2407b7a6943b SDKMS_Certs]$
- Create a new signed certificate.
gsk8capicmd_64 -certreq -recreate -db sdkms-kmip.p12 -stashed -label "sdkms_app_cert" -target new_cert_request.arm
- Sign: Send the resulting
new_cert_request.arm
to be signed by the original Certificate Authority (CA). - Receive: After the signed certificate has been returned (assuming you got it back as
new_cert_signed.arm
) then receive it back into your server keystore.gsk8capicmd_64 -cert -receive -db sdkms-kmip.p12 -stashed -file new_cert_signed.arm
- Verify: Verify the new dates on the received certificate.
gsk8capicmd_64 -cert -details -label "sdkms_app_cert" -db sdkms- kmip.p12 -stashed
- Restart: For the new certificate to take effect, the Db2 server instance must be restarted.
db2stop
db2start
4.10 Create an Encrypted Database
- Create an encrypted database using the following command:
db2 create db mydb1 encrypt
Figure 19: Create encrypted database - Once you create the database you can find the Master key created in Fortanix DSM as shown below.
Figure 20: Master key created - You can find the Activity logs in the Application tab as below.
Figure 21: Activity logs
In case you are getting any error in your environment. Then you need to troubleshoot the certificate and network-related issue so that we can communicate to the Fortanix DSM.
5.0 Rotating Master Keys in Fortanix Data Security Manager with IBM DB2
Rotating your encryption keys is part of a complete security policy. And as with passwords, how often is a controversial topic. This article is intended to give you information to make an informed decision about how and when to rotate your encryption keys. The focus is the keys that protect your data at rest and do not discuss SSL certificates.
IBM Db2 native encryption uses a 2-tier approach to data encryption where the data is encrypted with a Data Encryption Key (DEK) and the DEK itself is encrypted with a Master Key (MK). The encrypted DEK is stored with the data while the MK is stored in a keystore external to Db2.
As the master key is stored outside of the database manager, the requirement and frequency to rotate the master key depend on the type of keystore in use and the protections provided by the keystore. A local keystore file is protected by a password and operating system file permissions, however, it is owned by the Db2 Instance Owner, which is often a shared service account. In such an environment policy to rotate the master key on a regular basis would be natural. On the other extreme, master keys protected by Hardware Security Modules (HSM) require much less rotation if at all. Master keys protected by an HSM never leave the secure confines of the hardware device and strong controls exist to prevent the key from being extracted. Master keys accessed from a KMIP server fall somewhere in the middle. Strong controls exist within the KMIP server to authorize who has access to the master keys and audit their usage. However, these servers are often deployed as software running on a traditional operating system and servers and are only as secure as the environment in which they are deployed. On the other hand, there are secure HSMs offering KMIP interfaces. A key rotation schedule would be suggested by the security hardening of the KMIP server and the environment in which it is deployed.
Db2 provides routine SYSPROC.ADMIN_ROTATE_MASTER_KEY() to rotate the database master key to a new value. This operation decrypts the database DEK and re-encrypts it with the new master key.
The 2-tier approach ensures that the key used to encrypt the data, the DEK, is never exposed outside of the encrypted database, transaction log, or backup and no interfaces exist within Db2 to access the DEK. Since the MK is stored in a different location from the encrypted data, this makes concurrent exposure of the encrypted data and the MK much less likely again reducing risk. Finally, since the DEK is not exposed, there is little reason to rotate it, and rotation of the MK used to protect the DEK, can be done efficiently without the need to decrypt and re-encrypt the data itself.
5.1 Steps for Rotating Keys in DB2
- List your DB directory.
db2 list db directory
Figure 22: List DB directory - Connect the DB to the same database.
db2 connect to MYDB1
Figure 23: Connect DB - Check the encryption info from the below command.
db2 “select * from table(sysproc.admin_get_encryption_info())”
Figure 24: Check encryption info - Now rotate the master key from DB2.
db2 “CALL SYSPROC.ADMIN_ROTATE_MASTER_KEY (NULL)”
Figure 25: Rotate master key - Once the key is rotated, check on Fortanix DSM end if the Master Key is rotated.
Figure 26: Check in Fortanix DSM
You will find a new key created in Fortanix-DSM.
6.0 Backup and Restore Encrypted Database
- To take backup of the database run the following command:
db2 backup database mydb1
mydb1
is the database that is encrypted with keys in Fortanix DSM. - Move the backup file generated to the destination server.
- On the destination server, configure Fortanix DSM integration for the new db2 instance as previously described in this document from Section: “Adding App in Fortanix Data Security Manager” until Section: “Configure a DB2 Instance to Use a Keystore”
- This will be a new configuration with a new app.
- Run the following command to restore the backup of the encrypted database
mydb1
.db2 restore db mydb1 encrypt
- Verify that you can query the encrypted data in the restored database.
db2 list db directory
db2 connect to mydb1
db2 "select * from <table_name>" - Run the following query to see the new master key used by the database.
db2 "select * from table(sysproc.admin_get_encryption_info())"
- Verify from the Fortanix DSM UI that the new db2 Key from the previous step is seen under the group’s security objects.
7.0 Migrating from a Local Keystore to a Centralized KMIP Keystore
If you want to migrate your Db2 local keystore to a centralized keystore that is configured for the Key Management Interoperability Protocol (KMIP), you can copy your master keys to the centralized keystore by issuing the db2p12tokmip
command.
7.1 Prerequisites
The following are the prerequisites:
- Create a KMIP keystore configuration file.
- Configure TLS between the DB2 instance and the centralized key manager.
7.2 Procedure
The following is the procedure to migrate from a local keystore to a centralized KMIP keystore:
- Set up the centralized KMIP keystore.
- Set the
allow_key_insert_without_keystore_backup
parameter to “TRUE” in the centralized KMIP keystore configuration file. - Copy all master keys from the local keystore to the centralized KMIP by issuing the
db2p12tokmip
command.
Figure 27: Copy all master keys
Example:
Here is an example:
db2p12tokmip -from /home/test/keystores/ne-keystore.p12 -to /database/config/db2inst1/KMIP/kmip.cfg
In the above example, /home/test/keystores/ne-keystore.p12
is the .p12 file for the local keystore and /database/config/db2inst1/KMIP/kmip.cfg
is the config file for the KMIP Keystore.
Comments
Please sign in to leave a comment.