This documentation is for WSO2 Application Server version 5.0.0. View documentation for the latest release.

WSO2 Carbon Secure Vault

WSO2 Carbon is shipped with a secure vault implementation which is a modified version of synapse secure vault. This guide describes how to secure the plain text password in carbon configuration files.

Secret Manger

The Secret Manager initializes the secret repository and the keystores. It uses secret repository to keep the secret values (encrypted values). These secrets can be accessed through aliases. The keystore is required to create the decryption crypto, which can be used to resolve encrypted secrets values. The keystore and secret repository are configurable nd the configuration can be done through the 'secret-conf.properties' file found in PRODUCT_HOME/repository/conf/security directory.

Secret Repository

This is used to store the secret values. Currently, there is only one secret repository implemented within secure vault and it is called the FileBaseSecretRepository. It uses cipher-text.properties which can be found in PRODUCT_HOME/repository/conf/security directory. It stores aliases vs. their actual secrets in encrypted format (encrypted via a key in keystore). Any secret repositories can be written by implementing the SecretRepository and SecretRepositoryProvider classes.

Secret Callback

This provides the actual password for a given alias. There is a SecretManagerSecretCallbackHandler, which is combined with secret manager to resolve the secret. Any callback can be written by implementing the SecretCallbackHandler class.

Secret Resolver

Any configuration builder, which uses secret information within its own configuration file, is needed to initialize the secret resolver when building its own configuration. The secret resolver keeps a list of secured elements which need to be defined in the configuration file with secret aliases. Secret resolver initializes the secret callback handler class, which is defined in the configuration file.

Use Secure Vault with Default Configuration

In default configuration,

  1. A file-base secret repository is used. The cipher-text.properties file can be found in PRODUCT_HOME/repository/conf/security directory.
  2. Carbon Server's primary keystore is used for encrypting and decrypting passwords, which can be found in PRODUCT_HOME/repository/resources/security folder.
  3. DefaultSecretCallbackHandler (org.wso2.carbon.securevault.DefaultSecretCallbackHandler) is used as the password resolver for the keystore and the private key passwords of the Carbon server's primary Keystore.
  4. SecretManagerSecretCallbackHandler (org.wso2.securevault.secret.handler.SecretManagerSecretCallbackHandler) is used as the password resolver for all the secret values which are defined in the carbon configuration files.

The secure vault configuration is made easier by the command-line tool called Ciphertool.

Cipher Tool

By default, the CipherTool can be used for creating encrypted values for given plaint text. There are two options for secure vault configuration as follows:

- Dconfigure (sh ciphertool.sh -Dconfigure)
  1. This option allows the user to secure plain text passwords in carbon configuration files.
  2. Read alias values and their corresponding plain text passwords from the cipher-text.properties file. Note that the CipherTool identifies plain text defined within square brackets as the plain text passwords. If a password is not specified in the cipher-text.properties file for a corresponding alias, the user needs to provide it through the command-line.
  3. Check whether the alias is a known password alias in Carbon configurations. If the tool modifies the configuration element and file, then replace the configuration element with the alias name. Define a secret callback in the configuration file and add proper name spaces for defining the secure vault.
  4. Encrypt the plain text value using the primary keystore of the carbon server (Details of the primary keytore is taken from the carbon.xml file, which can be found in PRODUCT_HOME/repository/conf directory.)
  5. Replace plain text values in the cipher-text.properties file with the encrypted passwords.
  6. Add the default configuration to secret-conf.properties file
-Dchange (sh ciphertool.sh -Dchange)
  1. This option allows the user to change a secured password.

The Default Secret CallbackHandler

This secret callback handler is used to resolve the keystore and private key passwords of the Carbon server's primary keystore. As these passwords are needed to initialize the secret manager decrypted the encrypted values in the secret repository, they act as the root passwords for the secure vault. Therefore, DefaultSecretCallbackHandler provides two options for reading this password when starting the carbon sever.

Enter Password in Command-Line

If option 2 is not configured, when the Carbon server is starting, it will propt to enter the private key and keystore passwords.
The admin starting the server must provide the private key and keystore passwords using the command-line. (Passwords are hidden from terminal and logs files.)
By default, the password provider assumes that both private key and keystore passwords are the same. If not, the following system propeties must be passed when the server is starting up.
export JAVA_OPTS=-Dkey.password=true (in UNIX)

This option is valid only when the Carbon server is started using sh wso2server.sh. When the server is started as a daemon, this option can not be used.

Store the Password in a Temporary Text File

When Carbon Server is starting, it first checks for the text file called "password" in <PRODUCT_HOME> and reads the private key and keystore password. The text file is deleted automatically after it is read. The admin who starts the Carbon Server must create a text file called "password" in PRODUCT_HOME and enter the keyStore password in the first line of the file. Steps are as follows:

  1. Shut down the server if it is already started.
  2. Create a text file named "password" in <PRODUCT_HOME>.
  3. Enter your primary keystore password in the 1st line of the text file and save it.
  4. Start the Carbon Server using command, daemon. sh wso2server.sh -start
  5. By default, the password provider assumes that both private key and keystore passwords are the same. If not, the private key password must be entered in the second line of the file.

    Important

    If the carbon server is deployed in any other app server (eg:- weblogic) or key password of https transport (password in catalina-server.xml), it is not secured. Then the file name of the text file must be 'password-tmp', not 'password'.

    Note

    At every restart, the Admin has to create a text file.

Use Secure Vault with your own Configurations

You can use your own configurations by changing the following according to your choice.

  • Secret repository.
  • Secret Callback Hander.
  • Using a keystore other than the primary keystore of the carbon server.

Let's see how we can write a new Secret Callback Hander class to secure the user management database connection password. In this sample, you do not need to configure a secret repository or keyStore (cipher-text.properties) as you are not going to store the secret or encrypted values.

Write a secret callback class. You need to implement the SecretCallbackHandler interface or extend the AbstractSecretCallbackHandler abstract class. For example,

public class HardCodedSecretCallbackHandler extends AbstractSecretCallbackHandler {
     protected void handleSingleSecretCallback(SingleSecretCallback singleSecretCallback) {
            singleSecretCallback.setSecret("password");
     }
}

We can set multiple password-based as follows,

public class HardCodedSecretCallbackHandler extends AbstractSecretCallbackHandler {
    protected void handleSingleSecretCallback(SingleSecretCallback singleSecretCallback) {
         if("foo".equals(singleSecretCallback.getId())){
            singleSecretCallback.setSecret("foo_password");
         } else if("bar".equals(singleSecretCallback.getId())){
            singleSecretCallback.setSecret("bar_password");
           }
   }
}

Create a jar or an OSGI bundle. Copy the jar file to <PRODUCT_HOME>/repository/component/lib directory or the OSGI bundle to <PRODUCT_HOME>/repository/component/dropins. Configure the user-mgt.xml file with an alias name and your secret callback handler class name. For example,

<UserManagerxmlns:svns="http://org.wso2.securevault/configuration" >
    <svns:SecureVault provider="org.wso2.securevault.secret.handler.HardCodedSecretCallbackHandler">
    <Realm>
    <Configuration>
       <AdminRole>admin</AdminRole>
       <AdminUser>
           <UserName>admin</UserName>
           <Password>admin</Password>
       </AdminUser>
       <EveryOneRoleName>everyone</EveryOneRoleName>
       <Property name="url">jdbc:h2:repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE</Property>
       <Property name="userName">wso2carbon</Property>
       <Property name="password" svns:secretAlias="UserManager.Configuration.Property.password">password</Property>
       <Property name="driverName">org.h2.Driver</Property>
       <Property name="maxActive">50</Property>
       <Property name="maxWait">60000</Property>
       <Property name="minIdle">5</Property>
    </Configuration>

Restart the server.

Secrets and Alias list in Carbon Configurations

Following are the alias names and secrets of carbon configuration files which are supported by secure vault.

transports.https.keystorePass -> SSL key and keystore password in catalina-server.xml
Carbon.Security.KeyStore.Password- > Keystore password of Carbon server in carbon.xml
Carbon.Security.KeyStore.KeyPassword -> Private key password of Carbon server in carbon.xml
Carbon.Security.TrustStore.Password -> Trust store password of Carbon server in carbon.xml
UserManager.AdminUser.Password -> Admin User password in user-mgt.xml
UserManager.Configuration.Property.password -> User Manager database connection password in user-mgt.xml
UserStoreManager.Property.ConnectionPassword -> User store connection password in user-mgt .xml
wso2registry.[Registry Name].password -> Registry database connection password in registry.xml
Axis2.Https.Listener.TrustStore.Password -> NIO Listener SSL trust store password in axis2.xml
Axis2.Https.Listener.KeyStore.Password -> NIO Listener SSL keystore store password in axis2.xml
Axis2.Https.Listener.KeyStore.KeyPassword -> NIO Listener SSL key password in axis2.xml
Axis2.Https.Sender.TrustStore.Password -> NIO Sender SSL trust store password in axis2.xml
Axis2.Https.Sender.KeyStore.Password -> NIO Sender SSL key store password in axis2.xml
Axis2.Https.Sender.KeyStore.KeyPassword -> NIO Sender SSL key password in axis2.xml
Axis2.Mailto.Parameter.Password -> Email sender password in axis2.xml