Package org.jboss.identity.federation.web.handlers.saml2

Source Code of org.jboss.identity.federation.web.handlers.saml2.SAML2IssuerTrustHandler$IDPTrustHandler

/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* 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.jboss.identity.federation.web.handlers.saml2;

import java.io.IOException;
import java.net.URL;
import java.util.StringTokenizer;

import org.apache.log4j.Logger;
import org.jboss.identity.federation.core.config.IDPType;
import org.jboss.identity.federation.core.config.SPType;
import org.jboss.identity.federation.core.config.TrustType;
import org.jboss.identity.federation.core.exceptions.ProcessingException;
import org.jboss.identity.federation.core.saml.v2.exceptions.IssuerNotTrustedException;
import org.jboss.identity.federation.core.saml.v2.interfaces.SAML2HandlerRequest;
import org.jboss.identity.federation.core.saml.v2.interfaces.SAML2HandlerResponse;
import org.jboss.identity.federation.web.constants.GeneralConstants;

/**
* Handles Issuer trust
* <p>Trust decisions are based on the url of the issuer of the
* saml request/response sent to the handler chain</p>
* @author Anil.Saldhana@redhat.com
* @since Oct 8, 2009
*/
public class SAML2IssuerTrustHandler extends BaseSAML2Handler
{
   private static Logger log = Logger.getLogger(SAML2IssuerTrustHandler.class);
   private boolean trace = log.isTraceEnabled();
   private IDPTrustHandler idp = new IDPTrustHandler();
   private SPTrustHandler sp = new SPTrustHandler();
  
   public void generateSAMLRequest(SAML2HandlerRequest request, SAML2HandlerResponse response)
         throws ProcessingException
   {
      //Nothing to do here 
   }

   public void handleRequestType(SAML2HandlerRequest request, SAML2HandlerResponse response) throws ProcessingException
  
      if(request.getType() == SAML2HandlerRequest.HANDLER_TYPE.IDP)
      {
         idp.handleRequestType(request, response);
      }
      else
      {
         sp.handleRequestType(request, response);
      }
   }

   public void handleStatusResponseType(SAML2HandlerRequest request, SAML2HandlerResponse response)
         throws ProcessingException
   {
      if(request.getType() == SAML2HandlerRequest.HANDLER_TYPE.IDP)
      {
         idp.handleStatusResponseType(request, response);
      }
      else
      {
         sp.handleStatusResponseType(request, response);
      }
   }

   public void reset() throws ProcessingException
   {
   }
  
   private class IDPTrustHandler
  
      public void handleRequestType(SAML2HandlerRequest request, SAML2HandlerResponse response) throws ProcessingException
      {
         IDPType idpConfiguration = (IDPType) request.getOptions().get(GeneralConstants.CONFIGURATION);
         String issuer = request.getIssuer().getValue();
        
         trustIssuer(idpConfiguration, issuer);  
      }


      public void handleStatusResponseType(SAML2HandlerRequest request, SAML2HandlerResponse response)
      throws ProcessingException
      {
         IDPType idpConfiguration = (IDPType) request.getOptions().get(GeneralConstants.CONFIGURATION);
         String issuer = request.getIssuer().getValue();
        
         trustIssuer(idpConfiguration, issuer);
      }
     
     
      private void trustIssuer(IDPType idpConfiguration, String issuer) throws ProcessingException
      {
         if(idpConfiguration == null)
            throw new IllegalStateException("IDP Configuration is null");
         try
         {
            String issuerDomain = getDomain(issuer);
            TrustType idpTrust =  idpConfiguration.getTrust();
            if(idpTrust != null)
            {
               String domainsTrusted = idpTrust.getDomains();
               if(trace)
                  log.trace("Domains that IDP trusts="+domainsTrusted + " and issuer domain="+issuerDomain);
               if(domainsTrusted.indexOf(issuerDomain) < 0)
               {
                  //Let us do string parts checking
                  StringTokenizer st = new StringTokenizer(domainsTrusted, ",");
                  while(st != null && st.hasMoreTokens())
                  {
                     String uriBit = st.nextToken();
                     if(trace)
                        log.trace("Matching uri bit="+ uriBit);
                     if(issuerDomain.indexOf(uriBit) > 0)
                     {
                        if(trace)
                           log.trace("Matched " + uriBit + " trust for " + issuerDomain );
                        return;
                     }
                  }
                  throw new IssuerNotTrustedException(issuer);
               }
            }
         }
         catch (Exception e)
         {  
            throw new ProcessingException(new IssuerNotTrustedException(e.getLocalizedMessage(),e));
         }
      }
   }
  
   private class SPTrustHandler
  
      public void handleRequestType(SAML2HandlerRequest request, SAML2HandlerResponse response) throws ProcessingException
      {
         SPType spConfiguration = (SPType) request.getOptions().get(GeneralConstants.CONFIGURATION);
         String issuer = request.getIssuer().getValue();
        
         trustIssuer(spConfiguration, issuer)
      }

      public void handleStatusResponseType(SAML2HandlerRequest request, SAML2HandlerResponse response)
      throws ProcessingException
      {
         SPType spConfiguration = (SPType) request.getOptions().get(GeneralConstants.CONFIGURATION);
         String issuer = request.getIssuer().getValue();
        
         trustIssuer(spConfiguration, issuer);
      }
     
      private void trustIssuer(SPType spConfiguration, String issuer) throws ProcessingException
      {
         if(spConfiguration == null)
            throw new IllegalStateException("SP Configuration is null");
         try
         {
            String issuerDomain = getDomain(issuer);
            TrustType spTrust =  spConfiguration.getTrust();
            if(spTrust != null)
            {
               String domainsTrusted = spTrust.getDomains();
               if(trace)
                  log.trace("Domains that SP trusts="+domainsTrusted + " and issuer domain="+issuerDomain);
               if(domainsTrusted.indexOf(issuerDomain) < 0)
               {
                  //Let us do string parts checking
                  StringTokenizer st = new StringTokenizer(domainsTrusted, ",");
                  while(st != null && st.hasMoreTokens())
                  {
                     String uriBit = st.nextToken();
                     if(trace)
                        log.trace("Matching uri bit="+ uriBit);
                     if(issuerDomain.indexOf(uriBit) > 0)
                     {
                        if(trace)
                           log.trace("Matched " + uriBit + " trust for " + issuerDomain );
                        return;
                     }
                  }
                  throw new IssuerNotTrustedException(issuer);
               }
            }
         }
         catch (Exception e)
         {  
            throw new ProcessingException(new IssuerNotTrustedException(e.getLocalizedMessage(),e));
         }
      }
   }

   /**
    * Given a SP or IDP issuer from the assertion, return the host
    * @param domainURL
    * @return
    * @throws IOException 
    */
   private static String getDomain(String domainURL) throws IOException 
   {
      URL url = new URL(domainURL);
      return url.getHost();
   }
}
TOP

Related Classes of org.jboss.identity.federation.web.handlers.saml2.SAML2IssuerTrustHandler$IDPTrustHandler

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.