blob: 252b4e75046118ae8438b559daaa14860b19462a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jsecurity.web.filter.authc;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jsecurity.authc.AuthenticationException;
import org.jsecurity.authc.AuthenticationToken;
import org.jsecurity.authc.UsernamePasswordToken;
import org.jsecurity.codec.Base64;
import org.jsecurity.subject.Subject;
import org.jsecurity.web.WebUtils;
import static org.jsecurity.web.WebUtils.toHttp;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.net.InetAddress;
/**
* Requires the requesting user to be {@link org.jsecurity.subject.Subject#isAuthenticated() authenticated} for the
* request to continue, and if they're not, forces the user to login via the HTTP Basic protocol-specific challenge.
* Upon successful login, they're allowed to continue on to the requested resource/url.
*
* <p>This implementation supports Basic HTTP Authentication as specified in
* <a href="ftp://ftp.isi.edu/in-notes/rfc2617.txt">RFC 2617</a>.</p>
*
* <p>Basic authentication works as follows:</p>
*
* <ol>
* <li>A request comes in for a resource that requires authentication.</li>
* <li>The server replies with a 401 response code, a <code>WWW-Authenticate</code> header, and the contents of a
* page informing the user that the incoming resource requires authentication.</li>
* <li>Upon receiving this <code>WWW-Authenticate</code> challenge from the server, the client then takes a
* username and a password and puts them in the following format:
* <p><code>username:password</code></p></li>
* <li>This token is then base 64 encoded.</li>
* <li>The client then sends another request for the same resource with the following header:<p/>
* <p><code>Authorization: Basic <em>Base64_encoded_username_and_password</em></code></p></li>
* </ol>
*
* <p>The {@link #onAccessDenied(javax.servlet.ServletRequest, javax.servlet.ServletResponse)} method will
* only be called if the subject making the request is not
* {@link org.jsecurity.subject.Subject#isAuthenticated() authenticated} </p>
*
* @author Allan Ditzel
* @author Les Hazlewood
* @see <a href="ftp://ftp.isi.edu/in-notes/rfc2617.txt">RFC 2617</a>
* @since 0.9
*/
public class BasicHttpAuthenticationFilter extends AuthenticationFilter {
private static final Log log = LogFactory.getLog(BasicHttpAuthenticationFilter.class);
protected static final String AUTHORIZATION_HEADER = "Authorization";
protected static final String AUTHENTICATE_HEADER = "WWW-Authenticate";
/**
* The name that is displayed during the challenge process of authentication.
*/
private String applicationName = "application";
private String authcHeaderScheme = HttpServletRequest.BASIC_AUTH;
private String authzHeaderScheme = HttpServletRequest.BASIC_AUTH;
/**
* Returns the name to use in the ServletResponse's <b><code>WWW-Authenticate</code></b> header.
* <p/>
* Per RFC 2617, this name name is displayed to the end user when they are asked to authenticate. Unless overridden
* by the {@link #setApplicationName(String) setApplicationName(String)} method, the default value is 'application'.
* <p/>
* Please see {@link #setApplicationName(String) setApplicationName(String)} for an example of how this functions.
*
* @return the name to use in the ServletResponse's 'WWW-Authenticate' header.
*/
public String getApplicationName() {
return applicationName;
}
/**
* Sets the name to use in the ServletResponse's 'WWW-Authenticate' header.
* <p/>
* Per RFC 2617, this name name is displayed to the end user when they are asked to authenticate. Unless overridden
* by this method, the default value is 'application'.
* <p/>
* For example, setting this property to <b><code>Awesome Webapp</code></b> will result in the following header:
* <pre>WWW-Authenticate: Basic realm=&quot;<b>Awesome Webapp</b>&quot;</pre>
* <p/>
* Side note: As you can see from the header text, the HTTP Basic specification calls
* this the authentication 'realm', but we call this the 'applicationName' instead to avoid confusion with
* JSecurity's Realm constructs.
*
* @param applicationName the name to use in the ServletResponse's 'WWW-Authenticate' header.
*/
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
/**
* Returns the HTTP 'Authorization' header value that this filter will respond to as indicating a login request.
* <p/>
* Unless overridden by the {@link #setAuthzHeaderScheme(String) setAuthzHeaderScheme(String)} method, the
* default value is {@link HttpServletRequest#BASIC_AUTH HttpServletRequest.BASIC_AUTH}, i.e. &quot;BASIC&quot;
*
* @return the Http 'Authorization' header value that this filter will respond to as indicating a login request
*/
public String getAuthzHeaderScheme() {
return authzHeaderScheme;
}
/**
* Sets the HTTP 'Authorization' header value that this filter will respond to as indicating a login request.
* <p/>
* Unless overridden by this method, the default value is
* {@link HttpServletRequest#BASIC_AUTH HttpServletRequest.BASIC_AUTH}, i.e. &quot;BASIC&quot;
*
* @param authzHeaderScheme the HTTP 'Authorization' header value that this filter will respond to as indicating
* a login request.
*/
public void setAuthzHeaderScheme(String authzHeaderScheme) {
this.authzHeaderScheme = authzHeaderScheme;
}
/**
* Returns the HTTP 'WWW-Authenticate' header scheme that this filter will use when sending the Http Basic
* challenge response. The default value is <code>BASIC</code>.
*
* @return the HTTP 'WWW-Authenticate' header scheme that this filter will use when sending the Http Basic
* challenge response.
* @see #sendChallenge
*/
public String getAuthcHeaderScheme() {
return authcHeaderScheme;
}
/**
* Sets the HTTP 'WWW-Authenticate' header scheme that this filter will use when sending the Http Basic
* challenge response. The default value is <code>BASIC</code>.
*
* @param authcHeaderScheme the HTTP 'WWW-Authenticate' header scheme that this filter will use when sending the
* Http Basic challenge response.
* @see #sendChallenge
*/
public void setAuthcHeaderScheme(String authcHeaderScheme) {
this.authcHeaderScheme = authcHeaderScheme;
}
/**
* Processes unauthenticated requests. It handles the two-stage request/challenge authentication request.
*
* @param request incoming ServletRequest
* @param response outgoing ServletResponse
* @return true if the request should be processed; false if the request should not continue to be processed
*/
protected boolean onAccessDenied(ServletRequest request, ServletResponse response) {
boolean loggedIn = false; //false by default or we wouldn't be in this method
if (isLoginAttempt(request, response)) {
loggedIn = executeLogin(request, response);
}
if (!loggedIn) {
sendChallenge(request, response);
}
return loggedIn;
}
/**
* Determines whether the incoming request is an attempt to log in.
* <p/>
* The default implementation obtains the value of the request's
* {@link #AUTHORIZATION_HEADER AUTHORIZATION_HEADER}, and if it is not <code>null</code>, delegates
* to {@link #isLoginAttempt(String) isLoginAttempt(authzHeaderValue)}. If the header is <code>null</code>,
* <code>false</code> is returned.
*
* @param request incoming ServletRequest
* @param response outgoing ServletResponse
* @return true if the incoming request is an attempt to log in based, false otherwise
*/
protected boolean isLoginAttempt(ServletRequest request, ServletResponse response) {
String authzHeader = getAuthzHeader(request);
return authzHeader != null && isLoginAttempt(authzHeader);
}
protected String getAuthzHeader( ServletRequest request ) {
HttpServletRequest httpRequest = toHttp(request);
return httpRequest.getHeader(AUTHORIZATION_HEADER);
}
/**
* Default implementation that returns <code>true</code> if the specified <code>authzHeader</code>
* starts with the same (case-insensitive) characters specified by the
* {@link #getAuthzHeaderScheme() authzHeaderScheme}, <code>false</code> otherwise.
* <p/>
* That is:
* <pre> String authzHeaderScheme = getAuthzHeaderScheme().toLowerCase();
* return authzHeader.toLowerCase().startsWith(authzHeaderScheme);</pre>
*
* @param authzHeader the 'Authorization' header value (guaranteed to be non-null if the
* {@link #isLoginAttempt(javax.servlet.ServletRequest, javax.servlet.ServletResponse)} method is not overriden).
* @return <code>true</code> if the authzHeader value matches that configured as defined by
* the {@link #getAuthzHeaderScheme() authzHeaderScheme}.
*/
protected boolean isLoginAttempt(String authzHeader) {
String authzHeaderScheme = getAuthzHeaderScheme().toLowerCase();
return authzHeader.toLowerCase().startsWith(authzHeaderScheme);
}
/**
* Builds the challenge for authorization.
* <p>
* The header constructed is equal to:
* <pre>{@link #getAuthcHeaderScheme() getAuthcHeaderScheme()} + " realm=\"" + {@link #getApplicationName() getApplicationName()} + "\"";</pre>
*
* @param request incoming ServletRequest
* @param response outgoing ServletResponse
* @return false - this sends the challenge to be sent back
*/
protected boolean sendChallenge(ServletRequest request, ServletResponse response) {
if (log.isDebugEnabled()) {
log.debug("Authentication required: sending 401 Authentication challenge response.");
}
HttpServletResponse httpResponse = toHttp(response);
httpResponse.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
String authcHeader = getAuthcHeaderScheme() + " realm=\"" + getApplicationName() + "\"";
httpResponse.setHeader(AUTHENTICATE_HEADER, authcHeader);
return false;
}
/**
* Executes a login attempt with the provided credentials in the http header and returns <code>true</code>
* if the login attempt is successful and <code>false</code> otherwise.
* <p/>
* This implementation:
* <ol><li>acquires the username and password based on the request's
* {@link #getAuthzHeader(javax.servlet.ServletRequest) authorization header} via the
* {@link #getPrincipalsAndCredentials(String, javax.servlet.ServletRequest) getPrincipalsAndCredentials} method</li>
* <li>The return value of that method is converted to an <code>AuthenticationToken</code> via the
* {@link #createToken(String, String, javax.servlet.ServletRequest) createToken} method</li>
* <li>Finally, the login attempt is executed using that token by calling
* {@link #executeLogin(org.jsecurity.authc.AuthenticationToken, javax.servlet.ServletRequest, javax.servlet.ServletResponse)}</li>
* </ol>
*
* @param request incoming ServletRequest
* @param response outgoing ServletResponse
* @return true if the subject was successfully logged in, false otherwise
*/
protected boolean executeLogin(ServletRequest request, ServletResponse response) {
if (log.isDebugEnabled()) {
log.debug("Attempting to authenticate Subject based on Http BASIC Authentication request...");
}
String authorizationHeader = getAuthzHeader(request);
if (authorizationHeader == null || authorizationHeader.length() == 0 ) {
return false;
}
if (log.isDebugEnabled()) {
log.debug("Attempting to execute login with headers [" + authorizationHeader + "]");
}
String[] prinCred = getPrincipalsAndCredentials(authorizationHeader, request);
if ( prinCred == null || prinCred.length < 2 ) {
return false;
}
String username = prinCred[0];
String password = prinCred[1];
if (log.isDebugEnabled()) {
log.debug("Processing login request for username [" + username + "]");
}
AuthenticationToken token = createToken(username, password, request );
if ( token != null ) {
return executeLogin(token, request, response );
}
//always default to false. If we've made it to this point in the code, that
//means the authentication attempt either never occured, or wasn't successful:
return false;
}
/**
* Executes a login attmept for the
* {@link #getSubject(javax.servlet.ServletRequest, javax.servlet.ServletResponse) currently executing}
* <code>Subject</code> using the specified authentication <code>token</code>.
* <p/>
* The login attempt constitutes calling {@link Subject#login currentSubject.login(token)}. If the method
* call returns successfully, <code>true</code> is returned, <code>false</code> otherwise.
*
* @param token the <code>AuthenticationToken</code> representing the submitted username and password.
* @param request the incoming ServletRequest
* @param response the outgoing ServletResponse
* @return <code>true</code> if the authentication attempt is successful, <code>false</code> otherwise.
*/
protected boolean executeLogin( AuthenticationToken token, ServletRequest request, ServletResponse response ) {
Subject subject = getSubject(request, response);
if ( token != null && subject != null ) {
try {
subject.login(token);
if (log.isDebugEnabled()) {
log.debug("Successfully logged in user [" + token.getPrincipal() + "]");
}
return true;
} catch (AuthenticationException ae) {
if (log.isDebugEnabled()) {
log.debug("Unable to log in user [" + token.getPrincipal()+ "]", ae);
}
}
}
//always default to false - authentication attempt never occurred or wasn't successful:
return false;
}
/**
* Returns the username (at String[] index 0) and password (at String[] index 1) obtained from the
* {@link #getAuthzHeader(javax.servlet.ServletRequest) authorizationHeader}.
* @param authorizationHeader the authorization header obtained from the request.
* @param request the incoming ServletRequest
* @return the username/password pair submitted by the user for the given header value and request.
* @see #getAuthzHeader(javax.servlet.ServletRequest)
*/
protected String[] getPrincipalsAndCredentials( String authorizationHeader, ServletRequest request ) {
if ( authorizationHeader == null ) {
return null;
}
String[] authTokens = authorizationHeader.split(" ");
String scheme = getAuthcHeaderScheme();
if ( authTokens == null || authTokens.length < 2 || !authTokens[0].equalsIgnoreCase(scheme) ) {
return null;
}
String encodedCredentials = authTokens[1];
String decodedCredentials = Base64.decodeToString(encodedCredentials);
return decodedCredentials.split(":");
}
/**
* Creates an AuthenticationToken based on the username and password and incoming request to be submitted to
* the {@link Subject#login Subject.login} method for authentication.
* <p/>
* The default implementation acquires the request's associated
* {@link #getInetAddress(javax.servlet.ServletRequest) inetAddress} as well as a potential
* {@link #isRememberMeEnabled(javax.servlet.ServletRequest) rememberMe} status, and with the given
* <code>username</code> and <code>password</code>, returns a
* <code>new {@link org.jsecurity.authc.UsernamePasswordToken UsernamePasswordToken}</code>. That is:
* <br/><br/>
* <pre> InetAddress addr = getInetAddress(request);
* boolean rememberMe = isRememberMeEnabled(request);
* return new UsernamePasswordToken(username, password, rememberMe, addr );</pre>
* <p/>
* It should be noted that Basic HTTP Authentication does not support any concept of <code>rememberMe</code, but
* we still allow subclasses to enable this feature for any given request via the
* {@link #isRememberMeEnabled(javax.servlet.ServletRequest) isRememberMeEnabled} method if subclasses wish to
* override that method in custom environments.
*
* @param username the username obtained from the request's 'Authorization' header.
* @param password the password obtained from the request's 'Authorization' header.
* @param request the incoming ServletRequest.
* @return a constructed <code>AuthenticationToken</code> that will be used to execute a login attempt for the
* current <code>Subject</code>.
*/
protected AuthenticationToken createToken( String username, String password, ServletRequest request ) {
InetAddress addr = getInetAddress(request);
boolean rememberMe = isRememberMeEnabled(request);
return new UsernamePasswordToken(username, password, rememberMe, addr );
}
/**
* Returns the InetAddress associated with the current subject. This method is primarily provided for use
* during construction of an <code>AuthenticationToken</code>.
* <p/>
* The default implementation merely returns
* {@link WebUtils#getInetAddress(javax.servlet.ServletRequest) WebUtils.getInetAddress(request)}.
*
* @param request the incoming ServletRequest
* @return the <code>InetAddress</code> to associate with the login attempt.
*/
protected InetAddress getInetAddress( ServletRequest request ) {
return WebUtils.getInetAddress(request);
}
/**
* Returns <code>true</code> if &quot;rememberMe&quot; should be enabled for the login attempt associated with the
* current <code>request</code>, <code>false</code> otherwise.
* <p/>
* This implementation always returns <code>false</code> in all cases because Basic HTTP Authentication does not
* support the concept of <code>rememberMe</code>. However, this method is provided as a template hook to
* subclasses that might wish to determine <code>rememberMe</code> in a custom mannner based on the current
* <code>request</code>.
* @param request the incoming ServletRequest
* @return <code>true</code> if &quot;rememberMe&quot; should be enabled for the login attempt associated with the
* current <code>request</code>, <code>false</code> otherwise.
*/
protected boolean isRememberMeEnabled( ServletRequest request ) {
return false;
}
}