SAMLModule
Required when operating under SAML context as SP or IDP.
Introduction
Responsible for
loading, maintaining & generating metadata.
generating outbound SAML messages (assertions, authentication & logout requests )
consuming and validating incoming SAML requests.
When deployed the module opens http port 8080 to enable saml meta data generation.
Configuration
Module name: SAML
Name | Description | Default value | Mandatory |
---|---|---|---|
| Optional location to where remote metadata loaded, using HTTP, should be cached. The target directory folder must exist. | <server_root> | |
| Should metadata be available using HTTP. |
| |
| Id of the internal HTTP module to handle HTTP-based metadata loading. |
| |
| Disabled signature validation on incoming AuthnRequest & LogoutOutRequest. |
| |
| How often in milliseconds a reload should occur. |
| |
| How long after startup reloading of metadata should start reloading. |
|
Metadata template
Metadata to be consumed by remote party is generated based of a template file. It is referenced using the parameter "config.metadata_template.metadata_file_path". Administration of this file is handled outside the system and must include the necessary information such as entity id, binding location etc.
Signing of meta data, injecting certificates used and adding of SLO url is handled by the module.
Name | Description | Default value | Mandatory |
---|---|---|---|
| Id to be used in URL when getting meta data. Id is used to reference the meta data. | N/A | |
Location of the template used. | N/A | ||
Object for signing the meta data when exposed to clients. |
Sign meta data key store
A single object used for signing the meta data
Name | Description | Default value | Mandatory |
---|---|---|---|
Location of the p12 key store | N/A | ||
password of the key store | N/A | ||
alias used to reference in the store. | N/A - Mandatory if multiple entries are located in the store. | ||
Password to the private key. | N/A |
Sign ref - key store
Configuration, array, for key pairs used to sign SAML messages. Multiple key stores is supported. Each entity is placed in the sign_ref
array. Key store must be in PKCS#12 format.
Name | Description | Default value | Mandatory |
---|---|---|---|
Location of the p12 key store | N/A | ||
password of the key store | N/A | ||
alias used to reference in the store. | N/A - Mandatory if multiple entries are located in the store. | ||
Password to the private key. | N/A |
Encryption ref - key store
Same as sign ref, sign_ref
, but for encryption.
See sign ref properties.
Meta data consumption
Setting up trust with an external party is done by consuming it's meta data. This can be done by either a file or using an url.
Name | Description | Default value | Mandatory |
---|---|---|---|
| File path to the meta data | N/A | Either path or url. |
| HTTP url to the metadata. | N/A | Either path or url. |
Generating metadata
In order to get metadata generated by the system point your browser to:
http://<host>:<port_if_any>/saml/metadata/<config.metaDataTemplate.id>
Integrating with a HSM
Integrity can use a HSM to sign and encrypt messages . It is done through JAVA PKCS#11 standard interface.
Configuration elements are to be located at same level as "keystore" property.
Name | Description | Defalut value | Mandatory |
---|---|---|---|
| File path to the HSM provider implementation file. | N/A | |
| HSM pin. | N/A | |
| Alias handle. | N/A | |
| Private key password. Use same value as pin if missing. | N/A | |
| If present Integrity will read the certificate from file. Must be in PEM format. If missing, certificate is read from HSM. | N/A |
Thales Luna HSM
It is possible integrating with Thales Luna HSM in using the JSP provider from Thales. This can be an option if for some reason generic PKCS#11 fails.
For more info see Thales doc:
https://thalesdocs.com/gphsm/luna/7/docs/network/Content/sdk/java/jsp_overview_install.htm
Ensure adding LunaProvider.jar to java class path. Add knowledge to libLunaAPI.so/LunaAPI.dll "java.library.path". Typically setting -Djava.library.path pointing to directory where the file is located.
Name | Description | Defalut value | Mandatory |
---|---|---|---|
| HSM slot | N/A | |
| HSM pin. | N/A | |
| Alias handle. | N/A |
Tested and verified with Thales Luna A7x series
Loading of remote meta data
Failing to get meta data for the first time will result in retries every 20 seconds until meta data is loaded.
Meta data target is checked on set intervall (every 20 minutes by default) for information update. Meta data is reloaded based on valid until, if present. Otherwise every four hours.
Using expansion in meta data template
XML meta data template has some understanding of "expansion". It knows the concept of globals. By using globals it will allow for conffiguration like "<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" entityID="${globals.idp1.idp_entityid}"".
Note that only globals namespace is supported.
Last updated