blob: 10fc5c93384cb8fc83427a96cdefe663d8acb980 [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.apache.ki.authc.pam;
import java.util.Collection;
import org.apache.ki.authc.AuthenticationException;
import org.apache.ki.authc.AuthenticationInfo;
import org.apache.ki.authc.AuthenticationToken;
import org.apache.ki.realm.Realm;
/**
* A <tt>AuthenticationStrategy</tt> implementation assists the {@link ModularRealmAuthenticator} during the
* log-in process in a pluggable realm (PAM) environment.
*
* <p>The <tt>ModularRealmAuthenticator</tt> will consult implementations of this interface on what to do during each
* interaction with the configured Realms. This allows a pluggable strategy of whether or not an authentication
* attempt must be successful for all realms, only 1 or more realms, no realms, etc.
*
* @author Les Hazlewood
* @see AllSuccessfulStrategy AllSuccessfulAuthenticationStrategy
* @see AtLeastOneSuccessfulStrategy AtLeastOneSuccessfulAuthenticationStrategy
* @see FirstSuccessfulStrategy FirstSuccessfulAuthenticationStrategy
* @since 0.2
*/
public interface AuthenticationStrategy {
/**
* Method invoked by the ModularAuthenticator signifying that the authentication process is about to begin for the
* specified <tt>token</tt> - called before any <tt>Realm</tt> is actually invoked.
*
* <p>The <code>AuthenticationInfo</code> object returned from this method is essentially an empty place holder for
* aggregating account data across multiple realms. It should be populated by the strategy implementation over the
* course of authentication attempts across the multiple realms. It will be passed into the
* {@link #beforeAttempt} calls, allowing inspection of the aggregated account data up to that point in the
* multi-realm authentication, allowing any logic to be executed accordingly.
*
* @param realms the Realms that will be consulted during the authentication process for the specified token.
* @param token the Principal/Credential representation to be used during authentication for a corresponding subject.
* @return an empty AuthenticationInfo object that will populated with data from multiple realms.
* @throws AuthenticationException if the strategy implementation does not wish the Authentication attempt to execute.
*/
AuthenticationInfo beforeAllAttempts(Collection<? extends Realm> realms, AuthenticationToken token) throws AuthenticationException;
/**
* Method invoked by the ModularAuthenticator just prior to the realm being consulted for account data,
* allowing pre-authentication-attempt logic for that realm only.
*
* <p>This method returns an <code>AuthenticationInfo</code> object that will be used for further interaction with realms. Most
* implementations will merely return the <code>aggregate</code> method argument if they don't have a need to
* manipulate it.
*
* @param realm the realm that will be consulted for <tt>AuthenticationInfo</tt> for the specified <tt>token</tt>.
* @param token the <tt>AuthenticationToken</tt> submitted for the subject attempting system log-in.
* @param aggregate the aggregated AuthenticationInfo object being used across the multi-realm authentication attempt
* @return the AuthenticationInfo object that will be presented to further realms in the authentication process - returning
* the <code>aggregate</code> method argument is the normal case if no special action needs to be taken.
* @throws org.apache.ki.authc.AuthenticationException an exception thrown by the Strategy implementation if it wishes the login
* process for the associated subject (user) to stop immediately.
*/
AuthenticationInfo beforeAttempt(Realm realm, AuthenticationToken token, AuthenticationInfo aggregate) throws AuthenticationException;
/**
* Method invoked by the ModularAuthenticator just after the given realm has been consulted for authentication,
* allowing post-authentication-attempt logic for that realm only.
*
* <p>This method returns an <code>AuthenticationInfo</code> object that will be used for further interaction with realms. Most
* implementations will merge the <code>singleRealmInfo</code> into the <code>aggregateInfo</code> and
* just return the <code>aggregateInfo</code> for continued use throughout the authentication process.</p>
*
* @param realm the realm that was just consulted for <tt>AuthenticationInfo</tt> for the given <tt>token</tt>.
* @param token the <tt>AuthenticationToken</tt> submitted for the subject attempting system log-in.
* @param singleRealmInfo the info returned from a single realm.
* @param aggregateInfo the aggregate info representing all realms in a multi-realm environment.
* @param t the Throwable thrown by the Realm during the attempt, or <tt>null</tt> if the method returned normally.
* @return the AuthenticationInfo object that will be presented to further realms in the authentication process - returning
* the <code>aggregateAccount</code> method argument is the normal case if no special action needs to be taken.
* @throws AuthenticationException an exception thrown by the Strategy implementation if it wishes the login process
* for the associated subject (user) to stop immediately.
*/
AuthenticationInfo afterAttempt(Realm realm, AuthenticationToken token, AuthenticationInfo singleRealmInfo, AuthenticationInfo aggregateInfo, Throwable t)
throws AuthenticationException;
/**
* Method invoked by the ModularAuthenticator signifying that all of its configured Realms have been consulted
* for account data, allowing post-proccessing after all realms have completed.
*
* <p>Returns the final AuthenticationInfo object that will be returned from the Authenticator to the authenticate() caller.
* This is most likely the aggregate AuthenticationInfo object that has been populated by many realms, but the actual return value is
* always up to the implementation.
*
* @param token the <tt>AuthenticationToken</tt> submitted for the subject attempting system log-in.
* @param aggregate the aggregate <tt>AuthenticationInfo</tt> instance populated by all realms during the log-in attempt.
* @return the final <code>AuthenticationInfo</code> object to return to the Authenticator.authenticate() caller.
* @throws AuthenticationException if the Strategy implementation wishes to fail the authentication attempt.
*/
AuthenticationInfo afterAllAttempts(AuthenticationToken token, AuthenticationInfo aggregate) throws AuthenticationException;
}