Package org.exoplatform.services.security.j2ee

Source Code of org.exoplatform.services.security.j2ee.DigestAuthenticationTomcatLoginModule

/*
* Copyright (C) 2009 eXo Platform SAS.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.exoplatform.services.security.j2ee;

import org.exoplatform.services.security.Authenticator;
import org.exoplatform.services.security.Credential;
import org.exoplatform.services.security.Identity;
import org.exoplatform.services.security.PasswordCredential;
import org.exoplatform.services.security.UsernameCredential;

import java.io.IOException;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

import javax.security.auth.callback.Callback;
import javax.security.auth.callback.NameCallback;
import javax.security.auth.callback.PasswordCallback;
import javax.security.auth.callback.TextInputCallback;
import javax.security.auth.callback.UnsupportedCallbackException;
import javax.security.auth.login.LoginException;

/**
* Created by The eXo Platform SAS .
*
* @author Dmitry Kuleshov
* @version $Id: $
*/

public class DigestAuthenticationTomcatLoginModule extends TomcatLoginModule
{
   /**
    * {@inheritDoc}
    */
   @SuppressWarnings("unchecked")
   @Override
   public boolean login() throws LoginException
   {
      if (log.isDebugEnabled())
      {
         log.debug("In login of ExtendedTomcatLoginModule.");
      }
      try
      {
         if (sharedState.containsKey("exo.security.identity"))
         {
            if (log.isDebugEnabled())
            {
               log.debug("Use Identity from previous LoginModule");
            }
            identity = (Identity)sharedState.get("exo.security.identity");
         }
         else
         {
            if (!digestAuthenticationIsUsed())
            {
               return super.login();
            }

            if (log.isDebugEnabled())
            {
               log.debug("Try create identity");
            }

            Authenticator authenticator = (Authenticator)getContainer().getComponentInstanceOfType(Authenticator.class);

            if (authenticator == null)
            {
               throw new LoginException("No Authenticator component found, check your configuration");
            }

            String userId = authenticator.validateUser(getCredentials());

            identity = authenticator.createIdentity(userId);
            sharedState.put("javax.security.auth.login.name", userId);
            subject.getPrivateCredentials().add(getPassword());
            subject.getPublicCredentials().add(getUsername());
         }
         return true;

      }
      catch (final Throwable e)
      {
         if (log.isDebugEnabled())
         {
            log.debug(e.getMessage(), e);
         }

         throw new LoginException(e.getMessage());
      }
   }

   /**
    * An utility class to get credentials. To retrieve password context we use TextInputCallback.
    * NameCallback and PasswordCallback are used to correspondingly retrieve username and password.
    * @return Credential
    * @throws IOException
    * @throws Exception
    */
   private Credential[] getCredentials() throws IOException
   {

      Map<String, String> passwordContext = new HashMap<String, String>();
      Set<String> contextElements = new HashSet<String>();
      Callback[] digestCallback = new Callback[1];
      String username = null;
      String password = null;

      contextElements.add("cnonce");
      contextElements.add("nc");
      contextElements.add("nonce");
      contextElements.add("qop");
      contextElements.add("realmName");
      contextElements.add("md5a2");

      Iterator<String> elementIterator = contextElements.iterator();

      String element;
      while (elementIterator.hasNext())
      {
         element = elementIterator.next();
         try
         {
            digestCallback[0] = new TextInputCallback(element);
            callbackHandler.handle(digestCallback);
            passwordContext.put(element, ((TextInputCallback)digestCallback[0]).getText());
         }
         catch (UnsupportedCallbackException e)
         {
            if (log.isDebugEnabled())
            {
               log.debug("Unsupported callback type.", e);
            }
         }

      }

      try
      {
         Callback[] nameCallback = {new NameCallback("Username")};
         callbackHandler.handle(nameCallback);
         username = ((NameCallback)nameCallback[0]).getName();
      }
      catch (UnsupportedCallbackException e)
      {
         if (log.isErrorEnabled())
         {
            log.error("Error on retrieving username from callback handler! ", e);
         }
      }

      try
      {
         Callback[] passwordCallback = {new PasswordCallback("Password", false)};
         callbackHandler.handle(passwordCallback);
         password = new String(((PasswordCallback)passwordCallback[0]).getPassword());
         ((PasswordCallback)passwordCallback[0]).clearPassword();
      }
      catch (UnsupportedCallbackException e)
      {
         if (log.isErrorEnabled())
         {
            log.error("Error on retrieving password from callback handler! ", e);
         }
      }

      if (username == null || password == null)
      {
         return null;
      }

      return new Credential[]{new UsernameCredential(username), new PasswordCredential(password, passwordContext)};
   }

   /**
    * An utility method to check if digest authentication is used.
    * @return true if digest authentication is used, otherwise - false
    * @throws IOException
    * @throws UnsupportedCallbackException
    */
   private boolean digestAuthenticationIsUsed() throws IOException, UnsupportedCallbackException
   {
      Callback[] authCallback = {new TextInputCallback("authMethod")};
      callbackHandler.handle(authCallback);
      String authMethod = (String)(((TextInputCallback)authCallback[0]).getText());

      return "DIGEST".equalsIgnoreCase(authMethod);
   }

   private UsernameCredential getUsername() throws IOException
   {
      String username = null;

      try
      {
         Callback[] nameCallback = {new NameCallback("Username")};
         callbackHandler.handle(nameCallback);
         username = ((NameCallback)nameCallback[0]).getName();
      }
      catch (UnsupportedCallbackException e)
      {
         if (log.isErrorEnabled())
         {
            log.error("Error on retrieving username from callback handler! ", e);
         }
      }

      return new UsernameCredential(username);
   }

   private String getPassword() throws IOException
   {
      String password = null;

      try
      {
         Callback[] passwordCallback = {new PasswordCallback("Password", false)};
         callbackHandler.handle(passwordCallback);
         password = new String(((PasswordCallback)passwordCallback[0]).getPassword());
         ((PasswordCallback)passwordCallback[0]).clearPassword();
      }
      catch (UnsupportedCallbackException e)
      {
         if (log.isErrorEnabled())
         {
            log.error("Error on retrieving password from callback handler! ", e);
         }
      }

      return password;
   }


}
TOP

Related Classes of org.exoplatform.services.security.j2ee.DigestAuthenticationTomcatLoginModule

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.