The authn/RemoteUser login flow relies on whatever container-based mechanism you have available (HTTP BASIC auth, LDAP, Kerberos, other SSO systems, etc.). By default, this flow is configured without support for advanced authentication controls like passive or forced authentication. In most cases, implementing support for those features in conjunction with other SSO systems should be done with the External flow.
This flow is actually implemented as a special case of the External flow that happens to use a supplied servlet to implement the External contract that supports extraction of the identity from the request. Rather than customizing this flow, use the External flow itself if you need to do other things instead of or in addition to this behavior.
General Configuration
Use authn/authn.properties to configure this flow.
Note for Upgraded Systems
Previous versions of the software relied on settings in web.xml to enable the required servlet and adjust its behavior, but this has been supplanted by an automatic registration process that allows the servlet to be registered at runtime and the settings controlled with Spring, allowing use of properties to control behavior.
Upgraded systems will continue to function as before, but new installs will depend solely on a single <context-param> defined in web.xml to enable the servlet that supports this feature, as discussed below.
Related, the old file conf/authn/remoteuser-authn-config.xml is now supported only for compatibility and generally not installed or needed going forward.
The servlet that implements the authentication for this flow can be configured to support arbitrary headers or request attributes instead of or in addition to the REMOTE_USER reserved CGI variable (the identity of the requester as established by the web server / container, which Java exposes in the Servlet API with the getRemoteUser method). By default, it supports only the "real" REMOTE_USER value exposed via that API (this does not include headers named to emulate it, a very poor practice due to the potential for confusion).
The following properties are supported (these are all new in V5):
idp.authn.RemoteUser.checkRemoteUser (true or false)
whether to look for a principal name in REMOTE_USER
idp.authn.RemoteUser.checkAttributes (comma-delimited list of request attribute names)
servlet request attribute(s) to search for a principal name, instead of or in addition to REMOTE_USER
idp.authn.RemoteUser.checkHeaders (comma-delimited list of request header names)
servlet request header(s) to search for a principal name, instead of or in addition to REMOTE_USER
idp.authn.RemoteUser.subjectAttribute (name of request attribute)
single request attribute to check for a Java Subject to use for the authentication result
idp.authn.RemoteUser.authnMethodHeader (name of request header)
request header(s) to check for "method" strings to attach to Java subject as custom principals
idp.authn.RemoteUser.authnAuthorityHeader (name of request header)
request header(s) to check for URIs to attach to Java subject as proxied authenticating authorities
The algorithm of the servlet is roughly:
If idp.authn.RemoteUser.subjectAttribute is set, check it for a Java Subject to use. If found, it will be returned through the External Authentication interface and all the other settings are ignored.
Otherwise, check for a principal name as directed by the settings, in REMOTE_USER, attributes, and headers (in that order). If not found, authentication fails.
If idp.authn.RemoteUser.authnMethodHeader is set, check each value to see if the associated login flow supports a custom Principal matching the value in the header, and if so, attach that Principal to the Subject returned through the External Authentication interface. Note that if the header contains a value not supported by the associated login flow, it will be logged, but otherwise not impact the success of this flow. By the time this feature is executing, it's already a given that the result was successful.
If you need something different from this, your best option is to use the External login flow and possibly adapt the existing servlet as an example to copy from for your own purposes. In all respects, this flow is simply a more concrete use of the External flow.
The idp.authn.RemoteUser.externalAuthnPath property defines the flow redirection path to the resource that's used to pick up the container-established identity, by default a context-relative location. It can be modified if needed but should generally be left alone.
Reference
The following beans are not generally needed, but may be defined in global.xml if desired.
Comma-delimited list of protocol-specific Principal strings associated with flow
idp.authn.RemoteUser.addDefaultPrincipals
true
Whether to auto-attach the preceding set of Principal objects to each Subject produced by this flow
Most of the flows, including this one, default to describing themselves in terms of "password"-based authentication, so the supportedPrincipals property defaults to the following XML:
In older versions and upgraded systems, this list is defined in conf/authn/general-authn.xml. In V5, no default version of the list is provided and it may simply be placed in conf/global.xml if needed.
Notes
This flow is configured by default without support for non-browser profiles (namely ECP) because the RemoteUserInternal flow is a better choice for container-based authentication when a browser isn't required. It eliminates the extra redirects used by this flow. If your clients can handle the redirects and you prefer to use this flow, you can set the idp.authn.RemoteUser.nonBrowserSupported property in authn/authn.properties.
Note that upgraded systems will have alternate, legacy approaches to configuring this feature, as noted above.