Class AbstractPreAuthenticatedProcessingFilter
- java.lang.Object
-
- org.springframework.web.filter.GenericFilterBean
-
- org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter
-
- All Implemented Interfaces:
javax.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationEventPublisherAware,org.springframework.context.EnvironmentAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
- Direct Known Subclasses:
J2eePreAuthenticatedProcessingFilter,RequestAttributeAuthenticationFilter,RequestHeaderAuthenticationFilter,WebSpherePreAuthenticatedProcessingFilter,X509AuthenticationFilter
public abstract class AbstractPreAuthenticatedProcessingFilter extends org.springframework.web.filter.GenericFilterBean implements org.springframework.context.ApplicationEventPublisherAwareBase class for processing filters that handle pre-authenticated authentication requests, where it is assumed that the principal has already been authenticated by an external system.The purpose is then only to extract the necessary information on the principal from the incoming request, rather than to authenticate them. External authentication systems may provide this information via request data such as headers or cookies which the pre-authentication system can extract. It is assumed that the external system is responsible for the accuracy of the data and preventing the submission of forged values. Subclasses must implement the
getPreAuthenticatedPrincipal()andgetPreAuthenticatedCredentials()methods. Subclasses of this filter are typically used in combination with aPreAuthenticatedAuthenticationProvider, which is used to load additional data for the user. This provider will reject null credentials, so thegetPreAuthenticatedCredentials(javax.servlet.http.HttpServletRequest)method should not return null for a valid principal.If the security context already contains an
Authenticationobject (either from a invocation of the filter or because of some other authentication mechanism), the filter will do nothing by default. You can force it to check for a change in the principal by setting thecheckForPrincipalChangesproperty.By default, the filter chain will proceed when an authentication attempt fails in order to allow other authentication mechanisms to process the request. To reject the credentials immediately, set the continueFilterChainOnUnsuccessfulAuthentication flag to false. The exception raised by the AuthenticationManager will the be re-thrown. Note that this will not affect cases where the principal returned by
getPreAuthenticatedPrincipal(javax.servlet.http.HttpServletRequest)is null, when the chain will still proceed as normal.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description AbstractPreAuthenticatedProcessingFilter()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()Check whether all required properties have been set.voiddoFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain)Try to authenticate a pre-authenticated user with Spring Security if the user has not yet been authenticated.protected org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?>getAuthenticationDetailsSource()protected abstract java.lang.ObjectgetPreAuthenticatedCredentials(javax.servlet.http.HttpServletRequest request)Override to extract the credentials (if applicable) from the current request.protected abstract java.lang.ObjectgetPreAuthenticatedPrincipal(javax.servlet.http.HttpServletRequest request)Override to extract the principal information from the current requestprotected booleanprincipalChanged(javax.servlet.http.HttpServletRequest request, org.springframework.security.core.Authentication currentAuthentication)Determines if the current principal has changed.voidsetApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher anApplicationEventPublisher)voidsetAuthenticationDetailsSource(org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource)voidsetAuthenticationFailureHandler(AuthenticationFailureHandler authenticationFailureHandler)Sets the strategy used to handle a failed authentication.voidsetAuthenticationManager(org.springframework.security.authentication.AuthenticationManager authenticationManager)voidsetAuthenticationSuccessHandler(AuthenticationSuccessHandler authenticationSuccessHandler)Sets the strategy used to handle a successful authentication.voidsetCheckForPrincipalChanges(boolean checkForPrincipalChanges)If set, the pre-authenticated principal will be checked on each request and compared against the name of the current Authentication object.voidsetContinueFilterChainOnUnsuccessfulAuthentication(boolean shouldContinue)If set totrue(the default), anyAuthenticationExceptionraised by theAuthenticationManagerwill be swallowed, and the request will be allowed to proceed, potentially using alternative authentication mechanisms.voidsetInvalidateSessionOnPrincipalChange(boolean invalidateSessionOnPrincipalChange)If checkForPrincipalChanges is set, and a change of principal is detected, determines whether any existing session should be invalidated before proceeding to authenticate the new principal.voidsetRequiresAuthenticationRequestMatcher(RequestMatcher requiresAuthenticationRequestMatcher)Sets the request matcher to check whether to proceed the request further.voidsetSecurityContextRepository(SecurityContextRepository securityContextRepository)Sets theSecurityContextRepositoryto save theSecurityContexton authentication success.protected voidsuccessfulAuthentication(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.springframework.security.core.Authentication authResult)Puts theAuthenticationinstance returned by the authentication manager into the secure context.protected voidunsuccessfulAuthentication(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.springframework.security.core.AuthenticationException failed)Ensures the authentication object in the secure context is set to null when authentication fails.
-
-
-
Method Detail
-
afterPropertiesSet
public void afterPropertiesSet()
Check whether all required properties have been set.- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Overrides:
afterPropertiesSetin classorg.springframework.web.filter.GenericFilterBean
-
doFilter
public void doFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain) throws java.io.IOException, javax.servlet.ServletExceptionTry to authenticate a pre-authenticated user with Spring Security if the user has not yet been authenticated.- Specified by:
doFilterin interfacejavax.servlet.Filter- Throws:
java.io.IOExceptionjavax.servlet.ServletException
-
principalChanged
protected boolean principalChanged(javax.servlet.http.HttpServletRequest request, org.springframework.security.core.Authentication currentAuthentication)Determines if the current principal has changed. The default implementation tries- If the
getPreAuthenticatedPrincipal(HttpServletRequest)is a String, thePrincipal.getName()is compared against the pre authenticated principal - Otherwise, the
getPreAuthenticatedPrincipal(HttpServletRequest)is compared against theAuthentication.getPrincipal()
Subclasses can override this method to determine when a principal has changed.
- Parameters:
request-currentAuthentication-- Returns:
- true if the principal has changed, else false
- If the
-
successfulAuthentication
protected void successfulAuthentication(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.springframework.security.core.Authentication authResult) throws java.io.IOException, javax.servlet.ServletExceptionPuts theAuthenticationinstance returned by the authentication manager into the secure context.- Throws:
java.io.IOExceptionjavax.servlet.ServletException
-
unsuccessfulAuthentication
protected void unsuccessfulAuthentication(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.springframework.security.core.AuthenticationException failed) throws java.io.IOException, javax.servlet.ServletExceptionEnsures the authentication object in the secure context is set to null when authentication fails.Caches the failure exception as a request attribute
- Throws:
java.io.IOExceptionjavax.servlet.ServletException
-
setApplicationEventPublisher
public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher anApplicationEventPublisher)
- Specified by:
setApplicationEventPublisherin interfaceorg.springframework.context.ApplicationEventPublisherAware- Parameters:
anApplicationEventPublisher- The ApplicationEventPublisher to use
-
setSecurityContextRepository
public void setSecurityContextRepository(SecurityContextRepository securityContextRepository)
Sets theSecurityContextRepositoryto save theSecurityContexton authentication success. The default action is not to save theSecurityContext.- Parameters:
securityContextRepository- theSecurityContextRepositoryto use. Cannot be null.
-
setAuthenticationDetailsSource
public void setAuthenticationDetailsSource(org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> authenticationDetailsSource)
- Parameters:
authenticationDetailsSource- The AuthenticationDetailsSource to use
-
getAuthenticationDetailsSource
protected org.springframework.security.authentication.AuthenticationDetailsSource<javax.servlet.http.HttpServletRequest,?> getAuthenticationDetailsSource()
-
setAuthenticationManager
public void setAuthenticationManager(org.springframework.security.authentication.AuthenticationManager authenticationManager)
- Parameters:
authenticationManager- The AuthenticationManager to use
-
setContinueFilterChainOnUnsuccessfulAuthentication
public void setContinueFilterChainOnUnsuccessfulAuthentication(boolean shouldContinue)
If set totrue(the default), anyAuthenticationExceptionraised by theAuthenticationManagerwill be swallowed, and the request will be allowed to proceed, potentially using alternative authentication mechanisms. Iffalse, authentication failure will result in an immediate exception.- Parameters:
shouldContinue- set totrueto allow the request to proceed after a failed authentication.
-
setCheckForPrincipalChanges
public void setCheckForPrincipalChanges(boolean checkForPrincipalChanges)
If set, the pre-authenticated principal will be checked on each request and compared against the name of the current Authentication object. A check to determine ifAuthentication.getPrincipal()is equal to the principal will also be performed. If a change is detected, the user will be reauthenticated.- Parameters:
checkForPrincipalChanges-
-
setInvalidateSessionOnPrincipalChange
public void setInvalidateSessionOnPrincipalChange(boolean invalidateSessionOnPrincipalChange)
If checkForPrincipalChanges is set, and a change of principal is detected, determines whether any existing session should be invalidated before proceeding to authenticate the new principal.- Parameters:
invalidateSessionOnPrincipalChange- false to retain the existing session. Defaults to true.
-
setAuthenticationSuccessHandler
public void setAuthenticationSuccessHandler(AuthenticationSuccessHandler authenticationSuccessHandler)
Sets the strategy used to handle a successful authentication.
-
setAuthenticationFailureHandler
public void setAuthenticationFailureHandler(AuthenticationFailureHandler authenticationFailureHandler)
Sets the strategy used to handle a failed authentication.
-
setRequiresAuthenticationRequestMatcher
public void setRequiresAuthenticationRequestMatcher(RequestMatcher requiresAuthenticationRequestMatcher)
Sets the request matcher to check whether to proceed the request further.
-
getPreAuthenticatedPrincipal
protected abstract java.lang.Object getPreAuthenticatedPrincipal(javax.servlet.http.HttpServletRequest request)
Override to extract the principal information from the current request
-
getPreAuthenticatedCredentials
protected abstract java.lang.Object getPreAuthenticatedCredentials(javax.servlet.http.HttpServletRequest request)
Override to extract the credentials (if applicable) from the current request. Should not return null for a valid principal, though some implementations may return a dummy value.
-
-