JBoss.orgCommunity Documentation

Chapter 3. Teiid Security

3.1. Authentication
3.1.1. Pass-through Authentication
3.2. Authorization
3.3. Encryption
3.4. LoginModules
3.4.1. Built-in LoginModules
3.4.2. Kerberos support through GSSAPI
3.4.3. ODBC Client Configuration
3.4.4. Security at Data Source level
3.5. Configuring SSL
3.5.1. SSL Authentication Modes
3.5.2. Encryption Strength

The Teiid system provides a range of built-in and extensible security features to enable the secure access of data.

JDBC clients may use simple passwords to authenticate a user.

Typically a user name is required, however user names may be considered optional if the identity of the user can be discerned by the password credential alone. In any case it is up to the configured security domain to determine whether a user can be authenticated. If you need authentication, the administrator must configure a LoginModule to be used with Teiid. See below for more information on how configure the Login module in JBoss AS.

Authorization covers both administrative activities and data roles. A data role is a collection of permissions (also referred to as entitlements) and a collection of entitled principals or groups. With the deployment of a VDB the deployer can choose which principals and groups have which data roles.

At a transport level Teiid provides built-in support for JDBC over SSL or just sensitive message encryption when SSL is not in use.

Passwords in configuration files however are by default stored in plain text. If you need these values to be encrypted, please see encrypting passwords for instructions on encryption facilities provided by the container.

LoginModules are an essential part of the JAAS security framework and provide Teiid customizable user authentication and the ability to reuse existing LoginModules defined for JBossAS. See JBossAS Security for general information on configuring security in JBossAS.

Teiid can be configured with multiple named application policies that group together relevant LoginModules. Each of these application policy (or domain) names can be used to fully qualify user names to authenticate only against that domain. The format for a qualified name is username@domainname. The security-domain attribute under the transport/authentication element in the <jboss-install>/standalone/configuration/standalone-teiid.xml file should be used set the comma separated list of desired domains. The securityDomains property defaults to a single domain named teiid-security.

If a user name is not fully qualified, then the installed domains will be consulted in order until a domain successfully or unsuccessfully authenticates the user.

If no domain can authenticate the user, the login attempt will fail. Details of the failed attempt including invalid users, which domains were consulted, etc. will be in the server log with appropriate levels of severity.

Note

The security-domain defined for each transport type is can be different. The JDBC connection . The default name of JDBC connection's security-domain is "teiid-security". In existing installations an appropriate security domain may already be configured for use by administrative clients (typically "admin-console"). If the admin connections (CLI and adminshell) are not secured, it is recommended that you secure that that interface by executing one of scripts in the "bin/scripts" directory.

JBossAS provides several LoginModules for common authentication needs, such as authenticating from a Section 3.4.1.1, “Text Based LoginModule” or a Section 3.4.1.2, “LDAP Based LoginModule”.

You can install multiple login modules as part of single security domain configuration and configure them to part of login process. For example, for "teiid-security" domain, you can configure a file based and also LDAP based login modules, and have your user authenticated with either or both login modules. If you want to write your own custom login module, refer to the Developer's Guide for instructions.

The UsersRolesLoginModule utilizes simple text files to authenticate users and to define their groups. The below XML fragment under "security" subsystem shows a Text based login module. Also see standalone-teiid.xml configuration file contains an example of how to use UsersRolesLoginModule.

        
         <subsystem xmlns="urn:jboss:domain:security:1.1">
            <security-domains>
                <security-domain name="teiid-security" cache-type="default">
                    <authentication>
                        <login-module code="UsersRoles" flag="required">
                            <module-option name="usersProperties" value="teiid-security-users.properties"/>
                            <module-option name="rolesProperties" value="teiid-security-roles.properties"/>
                        </login-module>
                    </authentication>
                </security-domain>
            </security-domains>
        </subsystem>

User names and passwords are stored in the <jboss-as>/modules/org/jboss/teiid/main/conf/teiid-security-users.properties file. These files must be available on classpath


JAAS role assignments are stored in the <jboss-as>/modules/org/jboss/teiid/main/conf/teiid-security-roles.properties file.


User and role names are entirely up to the needs of the given deployment. For example each application team can set their own security constraints for their VDBs, by mapping their VDB data roles to application specific JAAS roles, e.g. app_role_1=user1,user2,user3.

See LDAP LoginModule configuration for the AS community guide. The following are streamlined installation instruction.

  1. If using SSL to the LDAP server, ensure that the Corporate CA Certificate is added to the JRE trust store.

  2. Include LDAP LoginModule in the JAAS Configuration

    Configure LDAP authentication by editing standalone-teiid.xml under security subdomain. If you wish to configure specifically for teiid, then the security domain teiid-security will need to be created/altered. You could do one of the following for Teiid:

    • Reuse the admin-console (or whatever name you choose) security domain for Teiid by changing the teiid configuration <jboss-install>/standalone/configuration/standalone-teiid.xml to point to admin-console.

    • Follow the same steps to configure an LDAP security domain named teiid-security.

  3. Obscure the LDAP Password

    Finally, protect the password following these instructions. Note that the salt must be 8 chars and see also http://community.jboss.org/message/137756#137756 for more on securing passwords.

Teiid supports kerberos authentication using GSSAPI, to be used with single sign-on applications. This service ticket negotiation based authentication is supported through remote JDBC and ODBC drivers and LocalConnections. Client configuration is different for based on connection you are using

Set the JDBC URL property PassthroughAuthentication as true and use JBoss Negotiation for authentication of your web-application with kerberos. When the web application authenticates with the provided kerberos token, the same subject authenticated will be used in Teiid. For details about configuration, check the JBoss Negotiation documentation.

On the server, edit the <jboss-install>/standalone/configuration/standalone-teiid.xml under teiid subsystem on "transport" definition, add follows:

<transport name="jdbc" protocol="teiid" socket-binding="teiid-jdbc"/>
        <authentication security-domain="teiid-security" krb5-domain="krb5-domain"/>
</transport>

Now we need to define a security domain context for kerberos with the name mentioned (kbr5-domain)in above. Since kerberos authorization cannot define authorization roles, we'll define them using another login context. Given below is a sample configuration to define roles using a UserRolesLoginModule.

<!--login module that negotiates the login conext for kerberos --> 
         <subsystem xmlns="urn:jboss:domain:security:1.1">
            <security-domains>
                <security-domain name="krb5-domain" cache-type="default">
                    <authentication>
                        <login-module code="Kerberos" flag="required">
                            <module-option name="storeKey">true</module-option>
                            <module-option name="useKeyTab">true</module-option>
                            <module-option  name="principal">demo@EXAMPLE.COM</module-option>
                            <module-option  name="keyTab">path/to/krb5.keytab</module-option>
                            <module-option name="doNotPrompt">true</module-option>
                            <module-option name="debug">false</module-option>
                        </login-module>         
                    </authentication>        
                </security-domain>
                <!-- teiid's default security domain, replace this with your own if needs to be any other JAAS domain  -->
                <security-domain name="teiid-security" cache-type="default">
                    <authentication>
                        <login-module code="UsersRoles" flag="required">
                            <module-option name="usersProperties" value="teiid-security-users.properties"/>
                            <module-option name="rolesProperties" value="teiid-security-roles.properties"/>
                        </login-module>
                    </authentication>
                </security-domain>
            </security-domains>
        </subsystem>

Edit the "standalone.conf" file in the "${jboss-as}/bin" directory and add the following JVM options (changing the realm and KDC settings according to your environment)

JAVA_OPTS = "$JAVA_OPTS -Djava.security.krb5.realm=EXAMPLE.COM -Djava.security.krb5.kdc=kerberos.example.com -Djavax.security.auth.useSubjectCredsOnly=false"

This finishes the configuration on the server side, restart the server and make sure that there were no errors during startup.

In some use cases, the user might need to pass-in different credentials to their data sources based on the logged in user rather than using the shared credentials for all the logged users. To support this feature, JBoss AS and Teiid provide multiple different login modules to be used in conjunction with Teiid's main security domain. See this document for details on configuration. Note that the below directions need to be used in conjunction with this document.

If client wants to pass in simple text password or a certificate or a custom serialized object as token credential to the data source, user can configure "CallerIdentity" login module. Using this login module, user can pass-in same credential that user logged into Teiid security domain to the data source. Here is a sample configuration, this needs to be configured in "standalone-teiid.xml" file.

<subsystem xmlns="urn:jboss:domain:security:1.1">
            <security-domains>
                <security-domain name="my-security-domain" cache-type="default">
                    <authentication>
                        <login-module code="UsersRoles" flag="required">
                            <module-option name = "password-stacking">useFirstPass</module-option>
                            <module-option name="usersProperties">props/teiid-security-users.properties</module-option>
                            <module-option name="rolesProperties">props/teiid-security-roles.properties</module-option>
                        </login-module>
                        
                        <login-module code="org.jboss.resource.security.CallerIdentityLoginModule" flag="required">
                            <module-option name = "password-stacking">useFirstPass</module-option>
                            <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=DefaultDS</module-option>
                        </login-module>
                    
                    </authentication>
                </security-domain>
                </security-domains>
                

In the datasource defined as the "managedConnectionFactoryName" in the above configuration, you need to add the following element

<security-domain>teiid-security</security-domain>

In the above configuration example, in the primary login module "UsersRoles" is setup to hold the passwords in the file, and when user logs in with password, the same password will be also set on the logged in Subject after authentication. These credentials can be extracted by the data source by asking for Subject's private credentials.

To use a certificate or serialized object instead of plain password as the token, replace the simple text password with Base64 encoded contents of the serialized object. Please note that encoding and decoding of this object is strictly up to the user as JBoss AS and Teiid will only act as a carrier of the information from login module to connection factory. Using this CallerIdentity module, the connection pool for data source is segmented by Subject.

In some use cases, the users are divided by their functionality and they have varied levels of security access to data sources. These types of users are identified by their roles as to what they have access to. In the above "CallerIdentity" login scenario, that may be too fine-grained security at data sources, that can lead resource exhaustion as every user has their own separate connection. Using Role based security gives a balance, where the users with same role are treated equally for authentication purposes at the data source. Teiid provides a login module called "RoleBasedCredentialMap" for this purposes, where administrator can define a role-based authentication module, where given the role of the user from the primary login module, this module will hold a credential to that role. So, it is the container of credentials that maps to different roles. If a user has multiple roles, the first role that has the credential will be chosen. Below find the sample configuration.

<subsystem xmlns="urn:jboss:domain:security:1.1">
            <security-domains>
                <security-domain name="my-security-domain" cache-type="default">
                    <authentication>
        
                        <login-module code="UsersRoles" flag="required">
                            <module-option name = "password-stacking">useFirstPass</module-option>
                            <module-option name="usersProperties">teiid-security-users.properties</module-option>
                            <module-option name="rolesProperties">teiid-security-roles.properties</module-option>
                        </login-module>
                        
                        <login-module code="org.teiid.jboss.RoleBasedCredentialMapIdentityLoginModule" flag="required">
                            <module-option name = "password-stacking">useFirstPass</module-option>
                            <module-option name="credentialMap">teiid-credentialmap.properties</module-option>
                            <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=DefaultDS</module-option>
                        </login-module>            
                    
                    </authentication>
                </security-domain>
             </security-domains>

In the datasource that is defined as the "managedConnectionFactoryName" in the above configuration, you need to add the following element

<security-domain>teiid-security</security-domain>

In the above configuration example, in the primary login module "UsersRolesLoginModule" is set up for logging in the primary user and assign some roles. The "RoleBasedCredentialMap" login module is configured to hold role to password information in the file defined by "credentialMap" property. When user logs in, the role information from the primary login module is taken, and extracts the role's passsword and attaches as a private credential to the Subject. If you want use this for role based trusted token, you can configure the Base64 based endcoding/decoded object as defined above.

You can also encrypt the password instead of plain text password using this module. Just include the encrypted password in the file defined by the "credentialMap" property, and define following properties in the "RoleBasedCredentialMap" login module.

<login-module code="org.teiid.jboss.RoleBasedCredentialMapIdentityLoginModule" flag="required">
    <module-option name = "password-stacking">useFirstPass</module-option>
    <module-option name="credentialMap">props/teiid-credentialmap.properties</module-option>
    <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=DefaultDS</module-option>
    
   <!-- below properties are only required when passwords are encrypted -->
   <module-option name = "pbealgo">PBEWithMD5AndDES</module-option>
   <module-option name = "pbepass">testPBEIdentityLoginModule</module-option>
   <module-option name = "salt">abcdefgh</module-option>
   <module-option name = "iterationCount">19</module-option>
</login-module>

For full details about encryption of the password, please follow this document's "A KeyStore based login module for encrypting a datasource password" section. Be sure to give the same configuration elements in the above configuration, as they are used to encrypt the password.

The Teiid's configuration file(s) standalone-teiid.xml/domain-teiid.xml, contain transports defined for access to Teiid, and transport contain the properties to configure SSL for socket per transport.


Properties