Search in sources :

Example 1 with AuthException

use of com.sun.identity.authentication.service.AuthException in project OpenAM by OpenRock.

the class AuthXMLHandler method processAuthXMLRequest.

/*
     * Process the XMLRequest
     */
private AuthXMLResponse processAuthXMLRequest(String xml, PLLAuditor auditor, AuthXMLRequest authXMLRequest, HttpServletRequest servletRequest, HttpServletResponse servletResponse) {
    if (messageEnabled) {
        debug.message("authXMLRequest is : " + authXMLRequest);
    }
    int requestType = authXMLRequest.getRequestType();
    String sessionID = authXMLRequest.getAuthIdentifier();
    String orgName = authXMLRequest.getOrgName();
    AuthContextLocal authContext = authXMLRequest.getAuthContext();
    LoginState loginState = AuthUtils.getLoginState(authContext);
    auditor.setMethod(getMethodName(requestType));
    auditor.setUserId(getAuthenticationId(loginState));
    auditor.setTrackingId(getContextId(loginState));
    auditor.setRealm(orgName);
    auditor.auditAccessAttempt();
    String params = authXMLRequest.getParams();
    List envList = authXMLRequest.getEnvironment();
    Map envMap = toEnvMap(envList);
    AuthXMLResponse authResponse = new AuthXMLResponse(requestType);
    authResponse.setAuthContext(authContext);
    authResponse.setAuthIdentifier(sessionID);
    if (messageEnabled) {
        debug.message("authContext is : " + authContext);
        debug.message("requestType : " + requestType);
    }
    if (authXMLRequest.getValidSessionNoUpgrade()) {
        authResponse.setAuthXMLRequest(authXMLRequest);
        authResponse.setValidSessionNoUpgrade(true);
        return authResponse;
    }
    String securityEnabled = null;
    try {
        securityEnabled = AuthUtils.getRemoteSecurityEnabled();
    } catch (AuthException auExp) {
        debug.error("Got Exception", auExp);
        setErrorCode(authResponse, auExp);
        return authResponse;
    }
    if (debug.messageEnabled()) {
        debug.message("Security Enabled = " + securityEnabled);
    }
    if (requestType != 0) {
        if ((securityEnabled != null) && (securityEnabled.equals("true"))) {
            security = true;
            String indexNameLoc = authXMLRequest.getIndexName();
            AuthContext.IndexType indexTypeLoc = authXMLRequest.getIndexType();
            if (indexTypeLoc == null) {
                indexTypeLoc = AuthUtils.getIndexType(authContext);
                indexNameLoc = AuthUtils.getIndexName(authContext);
            }
            if (debug.messageEnabled()) {
                debug.message("Index Name Local : " + indexNameLoc);
                debug.message("Index Type Local : " + indexTypeLoc);
            }
            if (((indexTypeLoc == null) || (indexNameLoc == null)) || !((indexTypeLoc == AuthContext.IndexType.MODULE_INSTANCE) && indexNameLoc.equals("Application"))) {
                try {
                    String ssoTokenID = authXMLRequest.getAppSSOTokenID();
                    if (debug.messageEnabled()) {
                        debug.message("Session ID = : " + ssoTokenID);
                    }
                    SSOTokenManager manager = SSOTokenManager.getInstance();
                    SSOToken appSSOToken = manager.createSSOToken(ssoTokenID);
                    // retry
                    if (!manager.isValidToken(appSSOToken)) {
                        if (debug.messageEnabled()) {
                            debug.message("App SSOToken is not valid");
                        }
                        setErrorCode(authResponse, new AuthException(AMAuthErrorCode.REMOTE_AUTH_INVALID_SSO_TOKEN, null));
                        return authResponse;
                    } else {
                        debug.message("App SSOToken is VALID");
                    }
                } catch (SSOException ssoe) {
                    // can retry
                    if (debug.messageEnabled()) {
                        debug.message("App SSOToken is not valid: " + ssoe.getMessage());
                    }
                    setErrorCode(authResponse, new AuthException(AMAuthErrorCode.REMOTE_AUTH_INVALID_SSO_TOKEN, null));
                    return authResponse;
                } catch (Exception exp) {
                    debug.error("Got Exception", exp);
                    setErrorCode(authResponse, exp);
                    return authResponse;
                }
            }
        }
    } else {
        security = false;
    }
    // selected choice then start module based authentication.
    if ((AuthUtils.getIndexType(authContext) == AuthContext.IndexType.LEVEL) || (AuthUtils.getIndexType(authContext) == AuthContext.IndexType.COMPOSITE_ADVICE)) {
        Callback[] callbacks = authXMLRequest.getSubmittedCallbacks();
        if (messageEnabled) {
            debug.message("Callbacks are  : " + callbacks);
        }
        if (callbacks != null) {
            if (messageEnabled) {
                debug.message("Callback length is : " + callbacks.length);
            }
            if (callbacks[0] instanceof ChoiceCallback) {
                ChoiceCallback cc = (ChoiceCallback) callbacks[0];
                int[] selectedIndexes = cc.getSelectedIndexes();
                int selected = selectedIndexes[0];
                String[] choices = cc.getChoices();
                String indexName = choices[selected];
                if (messageEnabled) {
                    debug.message("Selected Index is : " + indexName);
                }
                authXMLRequest.setIndexType("moduleInstance");
                authXMLRequest.setIndexName(indexName);
                authXMLRequest.setRequestType(AuthXMLRequest.LoginIndex);
                requestType = AuthXMLRequest.LoginIndex;
                auditor.setMethod(getMethodName(requestType));
            }
        }
    }
    AuthContext.Status loginStatus = AuthContext.Status.IN_PROGRESS;
    HttpServletRequest clientRequest = authXMLRequest.getClientRequest();
    if (loginState != null) {
        loginState.setHttpServletRequest(clientRequest);
        loginState.setHttpServletResponse(authXMLRequest.getClientResponse());
        if (clientRequest != null) {
            loginState.setParamHash(AuthUtils.parseRequestParameters(clientRequest));
        }
    }
    switch(requestType) {
        case AuthXMLRequest.NewAuthContext:
            try {
                processNewRequest(servletRequest, servletResponse, authResponse, loginState, authContext);
                postProcess(loginState, authResponse);
            } catch (Exception ex) {
                debug.error("Error in NewAuthContext ", ex);
                setErrorCode(authResponse, ex);
            }
            break;
        case AuthXMLRequest.Login:
            try {
                if (sessionID != null && sessionID.equals("0")) {
                    processNewRequest(servletRequest, servletResponse, authResponse, loginState, authContext);
                }
                String clientHost = null;
                if (security) {
                    clientHost = authXMLRequest.getHostName();
                    if (messageEnabled) {
                        debug.message("Client Host from Request = " + clientHost);
                    }
                }
                if ((clientHost == null) && (servletRequest != null)) {
                    clientHost = ClientUtils.getClientIPAddress(servletRequest);
                }
                loginState.setClient(clientHost);
                authContext.login();
                //setServletRequest(servletRequest,authContext);
                processRequirements(xml, authContext, authResponse, params, servletRequest);
                loginStatus = authContext.getStatus();
                authResponse.setRemoteRequest(loginState.getHttpServletRequest());
                authResponse.setRemoteResponse(loginState.getHttpServletResponse());
                postProcess(loginState, authResponse);
                checkACException(authResponse, authContext);
            } catch (Exception ex) {
                debug.error("Error during login ", ex);
                setErrorCode(authResponse, ex);
                authResponse.setLoginStatus(authContext.getStatus());
            }
            break;
        case AuthXMLRequest.LoginIndex:
            try {
                AuthContext.IndexType indexType = authXMLRequest.getIndexType();
                String indexName = authXMLRequest.getIndexName();
                if (messageEnabled) {
                    debug.message("indexName is : " + indexName);
                    debug.message("indexType is : " + indexType);
                }
                if (sessionID != null && sessionID.equals("0")) {
                    processNewRequest(servletRequest, servletResponse, authResponse, loginState, authContext);
                }
                String clientHost = null;
                if (security) {
                    clientHost = authXMLRequest.getHostName();
                    if (messageEnabled) {
                        debug.message("Client Host from Request = " + clientHost);
                    }
                }
                if ((clientHost == null) && (servletRequest != null)) {
                    clientHost = ClientUtils.getClientIPAddress(servletRequest);
                }
                loginState.setClient(clientHost);
                String locale = authXMLRequest.getLocale();
                if (locale != null && locale.length() > 0) {
                    if (debug.messageEnabled()) {
                        debug.message("locale is : " + locale);
                    }
                    authContext.login(indexType, indexName, envMap, locale);
                } else {
                    authContext.login(indexType, indexName, envMap, null);
                }
                //setServletRequest(servletRequest,authContext);
                processRequirements(xml, authContext, authResponse, params, servletRequest);
                loginStatus = authContext.getStatus();
                authResponse.setRemoteRequest(loginState.getHttpServletRequest());
                authResponse.setRemoteResponse(loginState.getHttpServletResponse());
                postProcess(loginState, authResponse);
                checkACException(authResponse, authContext);
            } catch (Exception ex) {
                debug.error("Exception during LoginIndex", ex);
                setErrorCode(authResponse, ex);
            }
            break;
        case AuthXMLRequest.LoginSubject:
            try {
                Subject subject = authXMLRequest.getSubject();
                authContext.login(subject);
                //setServletRequest(servletRequest,authContext);
                processRequirements(xml, authContext, authResponse, params, servletRequest);
                postProcess(loginState, authResponse);
                loginStatus = authContext.getStatus();
                checkACException(authResponse, authContext);
            } catch (AuthLoginException ale) {
                debug.error("Exception during LoginSubject", ale);
                setErrorCode(authResponse, ale);
            }
            break;
        case AuthXMLRequest.SubmitRequirements:
            try {
                //setServletRequest(servletRequest,authContext);
                Callback[] submittedCallbacks = authXMLRequest.getSubmittedCallbacks();
                authContext.submitRequirements(submittedCallbacks);
                Callback[] reqdCallbacks = null;
                if (authContext.hasMoreRequirements()) {
                    reqdCallbacks = authContext.getRequirements();
                    authResponse.setReqdCallbacks(reqdCallbacks);
                }
                authResponse.setRemoteRequest(loginState.getHttpServletRequest());
                authResponse.setRemoteResponse(loginState.getHttpServletResponse());
                postProcess(loginState, authResponse);
                loginStatus = authContext.getStatus();
                authResponse.setLoginStatus(loginStatus);
                InternalSession oldSession = loginState.getOldSession();
                authResponse.setOldSession(oldSession);
                checkACException(authResponse, authContext);
            } catch (Exception ex) {
                debug.error("Error during submit requirements ", ex);
                setErrorCode(authResponse, ex);
            }
            break;
        case AuthXMLRequest.QueryInformation:
            try {
                if (sessionID != null && sessionID.equals("0")) {
                    processNewRequest(servletRequest, servletResponse, authResponse, loginState, authContext);
                }
                Set moduleNames = authContext.getModuleInstanceNames();
                authResponse.setModuleNames(moduleNames);
                authResponse.setAuthContext(authContext);
                postProcess(loginState, authResponse);
                checkACException(authResponse, authContext);
            } catch (Exception ex) {
                debug.error("Error during Query Information", ex);
                setErrorCode(authResponse, ex);
            }
            break;
        case AuthXMLRequest.Logout:
            //boolean logoutCalled = false;
            if (sessionID != null && !sessionID.equals("0")) {
                /*intSess = AuthD.getSession(sessionID);
                    try {
                        token = SSOTokenManager.getInstance().
                            createSSOToken(sessionID);
                        if (debug.messageEnabled()) {
                            debug.message("AuthXMLHandler."
                                + "processAuthXMLRequest: Created token " 
                                + "during logout = "+token);
                        }
	            } catch (com.iplanet.sso.SSOException ssoExp) {
                       if (debug.messageEnabled()) {
		           debug.message("AuthXMLHandler.processAuthXMLRequest:"
                           + "SSOException checking validity of SSO Token");
                       }
	            }*/
                try {
                    AuthUtils.logout(sessionID, servletRequest, servletResponse);
                } catch (com.iplanet.sso.SSOException ssoExp) {
                    if (debug.messageEnabled()) {
                        debug.message("AuthXMLHandler.processAuthXMLRequest:" + "SSOException checking validity of SSO Token");
                    }
                }
            }
            /*if (intSess != null) {
                    loginContext = intSess.getObject(ISAuthConstants.
                        LOGIN_CONTEXT);
                }
                try {
                    if (loginContext != null) {
                        if (loginContext instanceof 
                            javax.security.auth.login.LoginContext) {
                            javax.security.auth.login.LoginContext lc = 
                                (javax.security.auth.login.LoginContext) 
                                 loginContext;
                            lc.logout();
                        } else {
                            com.sun.identity.authentication.jaas.LoginContext 
                                jlc = (com.sun.identity.authentication.jaas.
                                LoginContext) loginContext;
                            jlc.logout();
                        }
                        logoutCalled = true;
                    }
                } catch (javax.security.auth.login.LoginException loginExp) {
                    debug.error("AuthXMLHandler.processAuthXMLRequest: "
                        + "Cannot Execute module Logout", loginExp);
                }
                Set postAuthSet = null;
                if (intSess != null) {
                    postAuthSet = (Set) intSess.getObject(ISAuthConstants.
                        POSTPROCESS_INSTANCE_SET);
                }
                if ((postAuthSet != null) && !(postAuthSet.isEmpty())) {
                    AMPostAuthProcessInterface postLoginInstance=null;
                    for(Iterator iter = postAuthSet.iterator();
                    iter.hasNext();) {
                        try {
	                    postLoginInstance =
	 	                (AMPostAuthProcessInterface) iter.next();
                             postLoginInstance.onLogout(servletRequest, 
                                 servletResponse, token);
                        } catch (Exception exp) {
                           debug.error("AuthXMLHandler.processAuthXMLRequest: "
                               + "Failed in post logout.", exp);
                        }
	            }
                } else {
                    String plis = null;
                    if (intSess != null) {
                        plis = intSess.getProperty(
                            ISAuthConstants.POST_AUTH_PROCESS_INSTANCE);
                    }
                    if (plis != null && plis.length() > 0) {
                        StringTokenizer st = new StringTokenizer(plis, "|");
                        if (token != null) {
                            while (st.hasMoreTokens()) {
                                String pli = (String)st.nextToken();
                                try {
                                    AMPostAuthProcessInterface postProcess = 
                                            (AMPostAuthProcessInterface)
                                            Thread.currentThread().
                                            getContextClassLoader().
                                            loadClass(pli).newInstance();
                                    postProcess.onLogout(servletRequest, 
                                        servletResponse, token);
                                } catch (Exception e) {
                                    debug.error("AuthXMLHandler."
                                        + "processAuthXMLRequest:" + pli, e);
                                }
                            }
                        }
                    }
                }
                try {
                    boolean isTokenValid = SSOTokenManager.getInstance().
                        isValidToken(token);
                    if ((token != null) && isTokenValid) {
                        AuthD.getAuth().logLogout(token);
                        Session session = Session.getSession(
                            new SessionID(sessionID));
                        session.logout();
                        debug.message("logout successful.");
                    }
	        } catch (com.iplanet.dpro.session.SessionException 
                    sessExp) {
                    if (debug.messageEnabled()) {
                        debug.message("AuthXMLHandler."
                            + "processAuthXMLRequest: SessionException"
                            + " checking validity of SSO Token");
                    }
	        } catch (com.iplanet.sso.SSOException ssoExp) {
                    if (debug.messageEnabled()) {
                        debug.message("AuthXMLHandler."
                            + "processAuthXMLRequest: SSOException "
                            + "checking validity of SSO Token");
                    }
                }*/
            authResponse.setLoginStatus(AuthContext.Status.COMPLETED);
            break;
        case AuthXMLRequest.Abort:
            try {
                authContext.abort();
                loginStatus = authContext.getStatus();
                authResponse.setLoginStatus(loginStatus);
                checkACException(authResponse, authContext);
            } catch (AuthLoginException ale) {
                debug.error("Error aborting ", ale);
                setErrorCode(authResponse, ale);
            }
            break;
    }
    if (messageEnabled) {
        debug.message("loginStatus: " + loginStatus);
        if (authContext != null) {
            debug.message("error Code: " + authContext.getErrorCode());
            debug.message("error Template: " + authContext.getErrorTemplate());
        }
    }
    if (loginStatus == AuthContext.Status.FAILED) {
        if ((authContext.getErrorMessage() != null) && (authContext.getErrorMessage().equals(AMResourceBundleCache.getInstance().getResBundle("amAuthLDAP", com.sun.identity.shared.locale.Locale.getLocale(loginState.getLocale())).getString(ISAuthConstants.EXCEED_RETRY_LIMIT)))) {
            loginState.setErrorCode(AMAuthErrorCode.AUTH_LOGIN_FAILED);
        }
        if ((authContext.getErrorCode() != null) && ((authContext.getErrorCode()).length() > 0)) {
            authResponse.setErrorCode(authContext.getErrorCode());
        }
        checkACException(authResponse, authContext);
        if ((authContext.getErrorTemplate() != null) && ((authContext.getErrorTemplate()).length() > 0)) {
            authResponse.setErrorTemplate(authContext.getErrorTemplate());
        }
        //Account Lockout Warning Check
        if ((authContext.getErrorCode() != null) && (authContext.getErrorCode().equals(AMAuthErrorCode.AUTH_INVALID_PASSWORD))) {
            String lockWarning = authContext.getLockoutMsg();
            if ((lockWarning != null) && (lockWarning.length() > 0)) {
                authResponse.setErrorMessage(lockWarning);
            }
        }
    }
    auditor.setUserId(getAuthenticationId(loginState));
    auditor.setTrackingId(getContextId(loginState));
    return authResponse;
}
Also used : SSOToken(com.iplanet.sso.SSOToken) Set(java.util.Set) ResponseSet(com.iplanet.services.comm.share.ResponseSet) HashSet(java.util.HashSet) RequestSet(com.iplanet.services.comm.share.RequestSet) AuthException(com.sun.identity.authentication.service.AuthException) AuthContext(com.sun.identity.authentication.AuthContext) SSOException(com.iplanet.sso.SSOException) HttpServletRequest(javax.servlet.http.HttpServletRequest) InternalSession(com.iplanet.dpro.session.service.InternalSession) List(java.util.List) ArrayList(java.util.ArrayList) SSOTokenManager(com.iplanet.sso.SSOTokenManager) AuthLoginException(com.sun.identity.authentication.spi.AuthLoginException) AuthLoginException(com.sun.identity.authentication.spi.AuthLoginException) SSOException(com.iplanet.sso.SSOException) AuthException(com.sun.identity.authentication.service.AuthException) Subject(javax.security.auth.Subject) ChoiceCallback(javax.security.auth.callback.ChoiceCallback) PasswordCallback(javax.security.auth.callback.PasswordCallback) Callback(javax.security.auth.callback.Callback) X509CertificateCallback(com.sun.identity.authentication.spi.X509CertificateCallback) ChoiceCallback(javax.security.auth.callback.ChoiceCallback) NameCallback(javax.security.auth.callback.NameCallback) LoginState(com.sun.identity.authentication.service.LoginState) SSOException(com.iplanet.sso.SSOException) Map(java.util.Map) HashMap(java.util.HashMap)

Example 2 with AuthException

use of com.sun.identity.authentication.service.AuthException in project OpenAM by OpenRock.

the class AuthXMLHandler method processNewRequest.

/*
     * Process the new http request
     */
private void processNewRequest(HttpServletRequest servletRequest, HttpServletResponse servletResponse, AuthXMLResponse authResponse, LoginState loginState, AuthContextLocal authContext) throws AuthException {
    if (authContext == null) {
        throw new AuthException(AMAuthErrorCode.AUTH_INVALID_DOMAIN, null);
    }
    InternalSession oldSession = loginState.getOldSession();
    authResponse.setOldSession(oldSession);
    authResponse.setLoginStatus(AuthContext.Status.IN_PROGRESS);
    AuthUtils.setlbCookie(authContext, servletRequest, servletResponse);
}
Also used : InternalSession(com.iplanet.dpro.session.service.InternalSession) AuthException(com.sun.identity.authentication.service.AuthException)

Example 3 with AuthException

use of com.sun.identity.authentication.service.AuthException in project OpenAM by OpenRock.

the class AuthContext method login.

private void login(IndexType indexType, String indexName, String[] params, Map envMap, String locale, HttpServletRequest request, HttpServletResponse response) throws AuthLoginException {
    if (ssoToken != null) {
        try {
            organizationName = ssoToken.getProperty(ISAuthConstants.ORGANIZATION);
            ssoTokenID = ssoToken.getTokenID().toString();
            authURL = sessionCache.getSession(new SessionID(ssoTokenID)).getSessionServiceURL();
        } catch (Exception e) {
            throw new AuthLoginException(e);
        }
    }
    if (authURL != null) {
        authServiceURL = getAuthServiceURL(authURL.getProtocol(), authURL.getHost(), Integer.toString(authURL.getPort()), authURL.getPath());
    }
    AuthLoginException authException = null;
    try {
        if (authServiceURL == null) {
            authServiceURL = getAuthServiceURL(server_proto, server_host, server_port, server_uri);
        }
        if (authServiceURL != null) {
            if (authDebug.messageEnabled()) {
                authDebug.message("AuthContext.login : runLogin against " + authServiceURL);
            }
            runLogin(indexType, indexName, params, envMap, locale, request, response);
            return;
        }
    } catch (AuthLoginException e) {
        authException = e;
        authDebug.error("Failed to login to " + authServiceURL);
    } catch (Exception e) {
        authDebug.error("Failed to login to " + authServiceURL + ": " + e.getMessage(), e);
    }
    if (authURL == null) {
        // failover when authURL is not specified
        Vector serviceURLs = null;
        try {
            serviceURLs = WebtopNaming.getServiceAllURLs(AuthXMLTags.AUTH_SERVICE);
        } catch (Exception e) {
            throw new AuthLoginException(amAuthContext, "loginError", new Object[] { e.getMessage() });
        }
        if (authDebug.messageEnabled()) {
            authDebug.message("Org Name : " + organizationName);
            authDebug.message("ssoTokenID: " + ssoTokenID);
            authDebug.message("serviceURLs: " + serviceURLs);
        }
        if (serviceURLs != null) {
            serviceURLs.remove(authServiceURL);
            for (Enumeration e = serviceURLs.elements(); e.hasMoreElements(); ) {
                authServiceURL = (URL) e.nextElement();
                try {
                    runLogin(indexType, indexName, params, envMap, locale, request, response);
                    return;
                } catch (AuthLoginException ex) {
                    authException = ex;
                    authDebug.error("Failed to login in failover with " + authServiceURL + ": " + ex.getMessage());
                }
            }
        }
    }
    authDebug.error("Authentication failed.");
    if (authException != null) {
        throw authException;
    } else {
        throw new AuthLoginException(amAuthContext, "loginError", null);
    }
}
Also used : Enumeration(java.util.Enumeration) AuthLoginException(com.sun.identity.authentication.spi.AuthLoginException) SessionID(com.iplanet.dpro.session.SessionID) Vector(java.util.Vector) AuthLoginException(com.sun.identity.authentication.spi.AuthLoginException) SSOException(com.iplanet.sso.SSOException) AMSecurityPropertiesException(com.sun.identity.security.AMSecurityPropertiesException) IOException(java.io.IOException) AuthException(com.sun.identity.authentication.service.AuthException)

Example 4 with AuthException

use of com.sun.identity.authentication.service.AuthException in project OpenAM by OpenRock.

the class AuthContext method runLogin.

private void runLogin(IndexType indexType, String indexName, String[] params, Map envMap, String locale, HttpServletRequest request, HttpServletResponse response) throws AuthLoginException {
    if (!localFlag) {
        setLocalFlag(authServiceURL);
    }
    if (appSSOToken == null) {
        if (!((indexType == IndexType.MODULE_INSTANCE) && (indexName.equals("Application")))) {
            appSSOToken = getAppSSOToken(false);
        }
    }
    if (localFlag) {
        try {
            if (ssoTokenID == null) {
                acLocal = com.sun.identity.authentication.service.AuthUtils.getAuthContext(organizationName);
            } else {
                if (authDebug.messageEnabled()) {
                    authDebug.message("AuthContext.runLogin: " + "ForceAuth = " + forceAuth);
                }
                acLocal = com.sun.identity.authentication.service.AuthUtils.getAuthContext(organizationName, ssoTokenID, false, null, null, null, forceAuth);
            }
            LoginState loginState = acLocal.getLoginState();
            /*
                 * Set both the HttpRequest and HttpResponse on the login state so they are accessible by the Auth
                 * Modules.
                 */
            if (request != null) {
                loginState.setHttpServletRequest(request);
                Hashtable hashtable = AuthClientUtils.parseRequestParameters(request);
                loginState.setParamHash(hashtable);
            }
            if (response != null) {
                loginState.setHttpServletResponse(response);
            }
            if (hostName != null) {
                acLocal.getLoginState().setClient(hostName);
            }
            acLocal.login(indexType, indexName, envMap, locale);
        } catch (AuthException e) {
            throw new AuthLoginException(e);
        }
        if (acLocal.getStatus().equals(Status.SUCCESS)) {
            onSuccessLocal();
        }
        return;
    }
    // This will setup NewAuthContext and authHandles
    if (useOldStyleRemoteAuthentication) {
        runRemoteOldAuthContext();
        if (loginException != null) {
            throw loginException;
        }
    }
    // Run Login
    runRemoteLogin(indexType, indexName, params, envMap, locale, request, response);
    // reset the retry count
    retryRunLogin = DEFAULT_RETRY_COUNT;
    if (authDebug.messageEnabled()) {
        authDebug.message("useNewStyleRemoteAuthentication : " + useNewStyleRemoteAuthentication);
        authDebug.message("useOldStyleRemoteAuthentication : " + useOldStyleRemoteAuthentication);
        authDebug.message("receivedDocument : " + receivedDocument);
        authDebug.message("loginException : " + loginException);
    }
    // and then "Login"
    if (!useNewStyleRemoteAuthentication && !useOldStyleRemoteAuthentication && (receivedDocument == null || (getAuthenticationHandle(receivedDocument)).equals("null")) && loginException != null) {
        if (authDebug.messageEnabled()) {
            authDebug.message("AuthContext: trying 6.3 style remote " + "AuthN and setting the flag to use 6.3 style");
        }
        useOldStyleRemoteAuthentication = true;
        // Server could be either 6.3 or 7.0 RR, try old style
        // Construct the Request XML with New AuthContext parameters
        // Reset loginException
        loginException = null;
        runRemoteOldAuthContext();
        if (loginException != null) {
            throw loginException;
        }
        // Re-try login process with AuthIdentifier
        runRemoteLogin(indexType, indexName, params, envMap, locale, request, response);
        // reset the retry count
        retryRunLogin = DEFAULT_RETRY_COUNT;
    } else if (!useNewStyleRemoteAuthentication) {
        useNewStyleRemoteAuthentication = true;
    }
    if (loginException != null) {
        throw loginException;
    }
}
Also used : LoginState(com.sun.identity.authentication.service.LoginState) Hashtable(java.util.Hashtable) AuthException(com.sun.identity.authentication.service.AuthException) AuthLoginException(com.sun.identity.authentication.spi.AuthLoginException)

Example 5 with AuthException

use of com.sun.identity.authentication.service.AuthException in project OpenAM by OpenRock.

the class AuthClientUtils method createlbCookie.

public static Cookie createlbCookie(String cookieDomain) throws AuthException {
    Cookie lbCookie = null;
    try {
        if (utilDebug.messageEnabled()) {
            utilDebug.message("cookieDomain : " + cookieDomain);
        }
        String cookieName = getlbCookieName();
        String cookieValue = getlbCookieValue();
        lbCookie = createCookie(cookieName, cookieValue, -1, cookieDomain);
        return (lbCookie);
    } catch (Exception e) {
        utilDebug.message("Unable to create Load Balance Cookie");
        throw new AuthException(AMAuthErrorCode.AUTH_ERROR, null);
    }
}
Also used : Cookie(javax.servlet.http.Cookie) AuthException(com.sun.identity.authentication.service.AuthException) PolicyException(com.sun.identity.policy.PolicyException) SSOException(com.iplanet.sso.SSOException) UnsupportedEncodingException(java.io.UnsupportedEncodingException) ServerEntryNotFoundException(com.iplanet.services.naming.ServerEntryNotFoundException) SMSException(com.sun.identity.sm.SMSException) MalformedURLException(java.net.MalformedURLException) IOException(java.io.IOException) AuthException(com.sun.identity.authentication.service.AuthException) SessionException(com.iplanet.dpro.session.SessionException)

Aggregations

AuthException (com.sun.identity.authentication.service.AuthException)8 AuthLoginException (com.sun.identity.authentication.spi.AuthLoginException)5 SSOException (com.iplanet.sso.SSOException)4 LoginState (com.sun.identity.authentication.service.LoginState)3 HttpServletRequest (javax.servlet.http.HttpServletRequest)3 HttpServletResponse (javax.servlet.http.HttpServletResponse)3 SessionID (com.iplanet.dpro.session.SessionID)2 InternalSession (com.iplanet.dpro.session.service.InternalSession)2 RequestSet (com.iplanet.services.comm.share.RequestSet)2 AuthContext (com.sun.identity.authentication.AuthContext)2 IOException (java.io.IOException)2 ArrayList (java.util.ArrayList)2 Enumeration (java.util.Enumeration)2 HashMap (java.util.HashMap)2 List (java.util.List)2 Map (java.util.Map)2 Set (java.util.Set)2 Vector (java.util.Vector)2 Callback (javax.security.auth.callback.Callback)2 SessionException (com.iplanet.dpro.session.SessionException)1