Current File(s): conf/authn/spnego-authn-config.xml, views/spnego-unavailable.vm, views/user-prefs.vm, conf/authn/authn.properties(V4.1+)
Format: Properties, Native Spring, Properties (V4.1+)
Table of Contents |
---|
Overview
...
This login flow differs from the password-based Kerberos authentication provided by the authn/Password login flow. Where the authn/ Password login flow relies on the password submitted to the IdP, the authn/ SPNEGO login flow consumes a Kerberos ticket provided by the client, and the IdP never sees the password.
...
To use the authn/SPNEGO login flow, you need to install and configure Kerberos on your IdP server first. This includes the creation of a service principal in the Kerberos realm for your service, and usually includes obtaining a keytab file for that principal. A service password may also be used. See "Kerberos Infrastructure" below for more information.
General configuration of Kerberos is outside the scope of the IdP, and not described in detail here, but no native Kerberos libraries beyond Oracle's Java Java’s implementation are required or used.
Enabling Module
...
Configuring and using this feature requires that you first enable the "idp.authn.SPNEGO" module if it isn't already enabled. Systems upgraded from older releases generally come pre-enabled due to the prior state of the configuration tree.
...
The clients' browsers need to be configured to support SPNEGO. See Single sign-on Browser configuration for details.
General Configuration
...
title | V4.0 |
---|
...
A few simple settings are controlled with conf/authn/authn.properties. The others, including the realms to use, are controlled with conf/authn/spnego-authn-config.xml
...
.
The idp.authn.SPNEGO.
...
title | V4.1+ |
---|
A few simple settings are controlled with conf/authn/authn.properties. The others, including the realms to use, are controlled with conf/authn/spnego-authn-config.xml.
...
enforceRun property controls the opt-in/enforcing mode (defaults to opt-in, false).
You need to configure the Kerberos service principal(s) you want to use in the shibboleth.authn.SPNEGO.Krb5.Realms bean. A usual configuration involves a single realm and service principal. If your environment contains multiple realms, you may need to configure more than one service principal. They will be tried in sequence when attempting to accept a ticket from the client.
...
Code Block | ||
---|---|---|
| ||
<util:list id="shibboleth.authn.SPNEGO.Krb5.Realms"> <bean parent="shibboleth.KerberosRealmSettings" p:servicePrincipal="HTTP/idp.example.org@DOMAIN_A.COM" p:keytab="%{idp.home}/credentials/http_domainA.keytab" /> <bean parent="shibboleth.KerberosRealmSettings" p:servicePrincipal="HTTP/idp.example.org@DOMAIN_B.COM" p:password="ihavennokeytab" /> </util:list> |
The shibboleth.authn.SPNEGO.ClassifiedMessageMap bean is a map of error messages to classified error conditions. The default mapping supplied allows a couple of errors raised by the external SPNEGO implementation to be passed through so that meaningful error messages specific to SPNEGO can be shown (e.g., on the login form of the Password login flow in a fall-through scenario). Usually, you won't need to change this mapping, but if you want other errors to cause the IdP to "fall through" to other login flows, you would need to map them to the "ReselectFlow" key.
Finally, note that a common deployment model is to enable the SPNEGO and the Password login flows together, requiring that both be enabled:
Code Block |
---|
idp.authn.flows=SPNEGO|Password |
Kerberos System Configuration
The actual Kerberos configuration is managed in a krb5.conf or krb5.ini file that can be placed in a Finally, note that a common deployment model is to enable the SPNEGO and the Password login flows together, requiring that both be enabled:
Code Block |
---|
idp.authn.flows=SPNEGO|Password |
Kerberos System Configuration
The actual Kerberos configuration is managed in a krb5.conf or krb5.ini file that can be placed in a number of different locations. On non-Windows servers, using a system-wide configuration in /etc/krb5.conf is generally advised. It's possible to have Java-specific configurations and/or provide the path to a configuration using the system property java.security.krb5.conf
, as discussed here. If you want to set the system property java.security.krb5.conf
, you should set it using the startup configuration of your Servlet container.
...
The IdP provides a flexible mechanism to help avoid some of these situations, the use of an activation condition bean attached to the login flow's descriptor bean in conf/authn/general-authn.xml (V4.0) or identified with the idp.authn.SPNEGO.activationCondition property (V4.1+).
The SPNEGO protocol itself doesn't provide any way for the IdP to reliably decide whether the browser supports a Kerberos login or not. You need to specify the conditions under which a Kerberos login will be available in your environment, typically based on the client's IP address or some text appearing in the user agent's identifier string. It's possible to implement such a condition in Java, but using a script is usually simpler.
Note |
---|
Note: If the activation condition disables the SPNEGO login flow, SPNEGO won't be available during the current login conversation (not even as "extended login flow" on the Password login page). Make sure that your activation condition disabled SPNEGO only if you are sure that the current client doesn't support SPNEGO at all. |
...
The following examples assume that the condition property customObject
is set to the bean shibboleth.HttpServletRequest.In 4.3 and later you should use shibboleth.HttpServletRequestSupplier and adjust the javascript as described in this link.
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Expand | |||||
---|---|---|---|---|---|
| |||||
|
...
The following example shows a full-featured script including logging. To see the log lines in the IdP's log file, you need to configure a logger with name "shibboleth.authn.SPNEGO.ActivationCondition" and log level "DEBUG" in your log configuration file conf/logback.xml.
...
Expand | |||||
---|---|---|---|---|---|
|
...
Expand | |||||
---|---|---|---|---|---|
|
The following boilerplate code might be helpful for you to test your scripts outside of the IdP. (The script creates a mock custom object that can be used to test various functionality.)
...
The IdP doesn't start because of a syntax error in the JavaScript code. You won't find any error messages in the IdP's log file (i.e. logs/idp-process.log). In this case, consult the log files of your Java container. There, you should find a javax.should find a javax.script.ScriptException exception telling you more about the problem in one of the logs available.
The script produces a runtime error while it is executed. In this case, you will find an error message in the IdP's log telling more about the error. The log line will look similar to this:
2015-11-13 11:44:13,408 - ERROR [net.shibboleth.idp.profile.logic.ScriptedPredicate:119] - Anonymous Scripted Predicate : Error while executing Predicate script
<Exception>The script runs successfully, but evaluates to false. This means that the authn/SPNEGO flow won't be available.
If you added logging to your script and adapted your logging configuration accordingly, as described above, you will find appropriate log messages in the IdP's log.
...
Users can enable or disable the auto-login cookie by visiting a URL at the path "/idp/profile/user/prefs". You can customize the page displayed by modifying the view template in views/user-prefs.vm.
An alternative is to include the authn/SPNEGO login flow as an "extended" login flow within the authn/Password login flow and allow the users to enable auto-login on the Password login page. This is described below.
Extending the Password Login Flow
Note |
---|
While this approach remains supported, it relies on a feature likely to be removed in a future version. Using the MFA flow is the preferred approach, but no explicit example of this exists. |
If you use the SPNEGO flow in "opt-in" mode, you may want to allow users to login with SPNEGO as an alternative to a Password login. You can make the SPNEGO login option available on the Password login page, and optionally allow users to enable auto-login with SPNEGO at the same time.
Note that SPNEGO as an alternative login method to the Password login is available only if the relying party doesn't request a specific authentication context class that is incompatible with the use of SPNEGO (which would typically be a sign of a poor SP configuration as well). If SPNEGO is not compatible with the requested authentication context class, SPNEGO won't be available on the Password login page. This is checked for you by the default login form template as part of the extended flow feature.
The Extended Flow feature of the Password flow is not specific to the use of SPNEGO and is described more generally in the PasswordAuthnConfiguration / Extended Flow Calling topic. SPNEGO-specific examples are included below.
First, you need to configure SPNEGO as an extended login flow in conf/authn/password-authn-config.xml. Add "SPNEGO" to the bean called shibboleth.authn.Password.ExtendedFlows, and add the auto-login signaling parameter to the bean called shibboleth.authn.Password.ExtendedFlowParameters:
Enabling Extended Flow in conf/authn/password-authn-config.xml
...
language | xml |
---|
...
SPNEGO User Interface
The SPNEGO authentication process isn't visible to the user. The communication takes place between the IdP and the browser, without requiring user intervention. If an error occurs, an error page is shown to the user explaining the problem and allowing to return control to the IdP to continue. The default implementation of the view rendering this page uses JavaScript to automatically return to the IdP so that the user doesn't need to do anything.
If Internet Explorer is used and Kerberos is not available, and no activation condition (see above) is configured or doesn't prevent this from happening, the browser may show a login dialog box to the user instead of an error page. Users may be confused and may not be able to recover from this situation, so this case should be avoided by configuring an appropriate activation condition if possible.
The view rendering the error page is named views/spnego-unavailable.vm and can be adapted to your needs.
Attribute Resolution Implications
As the SPNEGO authentication doesn't result in a simple username (e.g. "jdoe") but in a Kerberos Principal name that includes the Kerberos realm (e.g. "jdoe@EXAMPLE.ORG"), your current configuration of the attribute resolution might not work, because it expects a simple username to look up the user in the user directory.
You basically have two options to extend your configuration:
Configure subject c14n to transform the Kerberos Principal name into a simple username. This method works if the username that is contained in the Kerberos Principal name more or less identical to the username you want to normalize to. Then, you don't need to adapt the existing attribute resolution configuration.
Adapt the configuration of the attribute resolution to additionally support Kerberos Principal names besides simple usernames. Choose this approach if the subject canonicalization doesn't lead to unique usernames (e.g. because you have multiple realms and the usernames are not unique over all realms; or because this canonicalization may affect e-mail addresses used as usernames, too).
The following two subsections describe both approaches.
Configuring Subject Canonicalization
This approach requires that each Kerberos Principal name can be transformed to a unique simple username.
You can configure a transformation in the file conf/c14n/simple-subject-c14n-config.xml. See that feature's documentation for further information about the available options.
For example, the following transformation rule removes the realm "@EXAMPLE.ORG":
subject-c14n-config.xml example removing the realm @EXAMPLE.ORG
Code Block | ||
---|---|---|
| ||
... <!-- Apply any regular expression replacement pairs after authentication. --> <util:list id="shibboleth.authnc14n.Passwordsimple.ExtendedFlowParameters"> <value>_shib_idp_SPNEGO_enable_autologin</value>Transforms"> <bean parent="shibboleth.Pair" p:first="^(.+)@EXAMPLE\.ORG$" p:second="$1" /> </util:list> |
Then, you (usually) will want to adapt the view template view/login.vm. The default view template creates a login button for each extended flow, but doesn't include on option to enable "auto-login". You may adapt the default view by replacing the existing "#foreach" loop by the following code, or you may want to replace it more fully to provide a more appropriate presentation model for the use of SPNEGO in your environment.
Velocity markup to add auto-login checkbox to views/login.vm
Expand | |
---|---|
Code Block |
... |
Note: In case you allow your users to use the e-mail address for username/password login, this rule may also apply to such an e-mail address in case the user entered the address in upper case. If this may affect you, please have a look at the next approach.
Adapting the Attribute Resolver Configuration
In this approach, the username is kept as is, but the attribute resolver defines additional attributes from the Kerberos Principal name that can be used in the user directory lookup filter template.
The following example defines the attributes krbPrincipalname
and krbDomain that are used in the user directory lookup filter template:
Extract the username and realm from the Kerberos Principal name
Expand | |||||
---|---|---|---|---|---|
|
The sequence of behavior during the login process is normally as follows:
First, the SPNEGO login flow will be tried. If the user hasn't enabled auto-login, SPNEGO authentication won't run. If the user has enabled auto-login, SPNEGO authentication is run. If it succeeds, the authentication step has finished. If it fails, the Password login flow will be run next (if it's configured as available flow).
If SPNEGO didn't successfully run before, the Password login flow will be run and the login page will be shown.
The user can choose to login with SPNEGO. Optionally, the user can enable the "auto-login" option (if enabled in the view template). If the user has chosen SPNEGO, the SPNEGO login flow will run. This time, the flow ignores the auto-login setting and SPNEGO authentication is run. If it succeeds, the authentication process is typically finished. The "auto-login" cookie is set if the user enabled that option on the Password login page. If SPNEGO fails, the user will be returned to the Password login page.
SPNEGO User Interface
The SPNEGO authentication process isn't visible to the user. The communication takes place between the IdP and the browser, without requiring user intervention. If an error occurs, an error page is shown to the user explaining the problem and allowing to return control to the IdP to continue. The default implementation of the view rendering this page uses JavaScript to automatically return to the IdP so that the user doesn't need to do anything.
If Internet Explorer is used and Kerberos is not available, and no activation condition (see above) is configured or doesn't prevent this from happening, the browser may show a login dialog box to the user instead of an error page. Users may be confused and may not be able to recover from this situation, so this case should be avoided by configuring an appropriate activation condition if possible.
The view rendering the error page is named views/spnego-unavailable.vm and can be adapted to your needs.
Attribute Resolution
As the SPNEGO authentication doesn't result in a simple username (e.g. "jdoe") but in a Kerberos Principal name that includes the Kerberos realm (e.g. "jdoe@EXAMPLE.ORG"), your current configuration of the attribute resolution might not work, because it expects a simple username to look up the user in the user directory.
You basically have two options to extend your configuration:
Configure subject c14n to transform the Kerberos Principal name into a simple username. This method works if the username that is contained in the Kerberos Principal name more or less identical to the username you want to normalize to. Then, you don't need to adapt the existing attribute resolution configuration.
Adapt the configuration of the attribute resolution to additionally support Kerberos Principal names besides simple usernames. Choose this approach if the subject canonicalization doesn't lead to unique usernames (e.g. because you have multiple realms and the usernames are not unique over all realms; or because this canonicalization may affect e-mail addresses used as usernames, too).
The following two subsections describe both approaches.
Configuring Subject Canonicalization
This approach requires that each Kerberos Principal name can be transformed to a unique simple username.
You can configure a transformation in the file conf/c14n/simple-subject-c14n-config.xml. See that feature's documentation for further information about the available options.
For example, the following transformation rule removes the realm "@EXAMPLE.ORG":
simple-subject-c14n-config.xml example removing the realm @EXAMPLE.ORG
Code Block | ||
---|---|---|
| ||
...
<!-- Apply any regular expression replacement pairs after authentication. -->
<util:list id="shibboleth.c14n.simple.Transforms">
<bean parent="shibboleth.Pair" p:first="^(.+)@EXAMPLE\.ORG$" p:second="$1" />
</util:list>
... |
Note: In case you allow your users to use the e-mail address for username/password login, this rule may also apply to such an e-mail address in case the user entered the address in upper case. If this may affect you, please have a look at the next approach.
Adapting the Attribute Resolver Configuration
In this approach, the username is kept as is, but the attribute resolver defines additional attributes from the Kerberos Principal name that can be used in the user directory lookup filter template.
The following example defines the attributes krbPrincipalname
and krbDomain that are used in the user directory lookup filter template:
Extract the username and realm from the Kerberos Principal name
Expand | |||||
---|---|---|---|---|---|
|
Then, the user directory lookup filter template needs to be adapted to use the attributes defined above:
Example LDAP DataConnector
Code Block | ||
---|---|---|
| ||
<DataConnector id="myLDAP" xsi:type="LDAPDirectory"
...>
<InputAttributeDefinition ref="krbPrincipalname" />
<InputAttributeDefinition ref="krbDomain" />
<FilterTemplate>
<![CDATA[
(&(|(sAMAccountName=$resolutionContext.principal)(mail=$resolutionContext.principal)(&(sAMAccountName=$krbPrincipalname.get(0))(msSFU30NisDomain=$krbDomain.get(0))))(objectClass=user))
]]>
</FilterTemplate>
...
</DataConnector> |
See the documentation for a detailed description of attribute resolution configuration.
Testing the Availability of SPNEGO in the Browser
If you extend the Password login flow to include SPNEGO as an alternative login method, you may further optimize the password login page to show the SPNEGO login only if it's really available in the browser by using AJAX technology. Although this is fully optional, it may lead to a better user experience.
This section doesn't explain in detail how to do this. The real implementation is left to you as part of the customization of the login page template. But we provide an example of a JSP script that checks whether the browser is capable of providing a Kerberos ticket.
You need to install this script to edit-webapp/spnego-test.jsp and rebuild the WAR file and restart the application container to make it available. This example script initiates a SPNEGO login and returns a status in JSON. You can adapt this scripts to your needs.
JSP script to check whether SPNEGO works
Expand | |||||
---|---|---|---|---|---|
|
The login page can send an AJAX query to the URL path /idp/spnego-test.jsp and then evaluate the result:
AJAX example to detect SPENGO using JSP above
Expand | |||||
---|---|---|---|---|---|
|
Then, the user directory lookup filter template needs to be adapted to use the attributes defined above:
Example LDAP data connector
Code Block | ||
---|---|---|
| ||
<DataConnector id="myLDAP" xsi:type="LDAPDirectory"
...>
<InputAttributeDefinition ref="krbPrincipalname" />
<InputAttributeDefinition ref="krbDomain" />
<FilterTemplate>
<![CDATA[
(&(|(sAMAccountName=$resolutionContext.principal)(mail=$resolutionContext.principal)(&(sAMAccountName=$krbPrincipalname.get(0))(msSFU30NisDomain=$krbDomain.get(0))))(objectClass=user))
]]>
</FilterTemplate>
...
</DataConnector> |
See the documentation for a detailed description of attribute resolution configuration.
Testing the Availability of SPNEGO in the Browser
If you have extended the Password login flow to include SPNEGO as an alternative login method, as described above, you may further optimize the password login page to show the SPNEGO login only if it's really available in the browser by using AJAX technology. Although this is fully optional, it may lead to a better user experience.
This section doesn't explain in detail how to do this. The real implementation is left to you as part of the customization of the login page template. But we provide an example of a JSP script that checks whether the browser is capable of providing a Kerberos ticket.
You need to install this script to edit-webapp/spnego-test.jsp and rebuild the WAR file and restart the application container to make it available. This example script initiates a SPNEGO login and returns a status in JSON. You can adapt this scripts to your needs.
JSP script to check whether SPNEGO works
Expand | |||||
---|---|---|---|---|---|
|
The login page can send an AJAX query to the URL path /idp/spnego-test.jsp and then evaluate the result:
AJAX example to detect SPENGO using JSP above
Expand | |||||
---|---|---|---|---|---|
|
Note: This example is not part of the main IdP distribution and is provided without warranty.
Reference
Expand | ||
---|---|---|
| ||
Bean ID / Type | Default | Description |
shibboleth.authn.SPNEGO.externalAuthnPath | /Auth/SPNEGO | Servlet-relative path to the SPNEGO external authentication implementation | shibboleth.authn.SPNEGO.externalAuthnPathStrategy | Optional function that returns the redirection expression to use for the protected resource |
shibboleth.authn.SPNEGO.EnforceRun | false | Whether to always try to run SPNEGO, independent of the user's auto-login setting (i.e., try to run for all users) |
shibboleth.authn.SPNEGO.Krb5.RefreshConfig | false | Whether to reload the underlying Kerberos configuration (generally in /etc/krb5.conf) on every login attempt | shibboleth.authn.SPNEGO.Krb5.Realms | List of service principal names and credentials. At least one is required. | shibboleth.KerberosRealmSettings | Parent bean used to define beans of this type | shibboleth.authn.SPNEGO.matchExpression | Regular expression to match username against |
shibboleth.authn.SPNEGO.ClassifiedMessageMap | (see file) | A map between defined error/warning conditions and events and implementation-specific message fragments to map to them |
Expand | ||
| ||
The beans defined
|
Note: This example is not part of the main IdP distribution and is provided without warranty.
Reference
Expand | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||
Beans definable in in conf/authn/spnego-authn-config.xml follow include:
|
Expand | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The flow-specific properties usable via authn/authn.properties are:
The general properties configuring this flow via authn/authn.properties are:
As a non-password based flow, the
In property form, this is expressed as (note the trailing commas):
|
Expand | |||||
---|---|---|---|---|---|
| |||||
To replace the internally defined flow descriptor bean, the following XML is required:
In older versions and upgraded systems, this list is defined in conf/authn/general-authn.xml. In V4.1+V5, no default version of the list is provided and it may simply be placed in conf/global.xml if needed. |
...