[jboss-cvs] JBossAS SVN: r61326 - in branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/security: login and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 14 12:08:22 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-03-14 12:08:22 -0400 (Wed, 14 Mar 2007)
New Revision: 61326

Added:
   branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/security/login/
   branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/security/login/WebAuthentication.java
Log:
JBAS-4077: web programmatic authentication

Added: branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/security/login/WebAuthentication.java
===================================================================
--- branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/security/login/WebAuthentication.java	                        (rev 0)
+++ branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/security/login/WebAuthentication.java	2007-03-14 16:08:22 UTC (rev 61326)
@@ -0,0 +1,174 @@
+/*
+  * JBoss, Home of Professional Open Source
+  * Copyright 2007, JBoss Inc., and individual contributors as indicated
+  * by the @authors tag. See the copyright.txt 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.web.tomcat.security.login;
+ 
+import java.security.Principal;
+import java.security.cert.X509Certificate;
+
+import javax.naming.NamingException;
+
+import org.apache.catalina.Session;
+import org.apache.catalina.authenticator.Constants;
+import org.apache.catalina.connector.Request;
+import org.jboss.web.tomcat.security.SecurityAssociationValve;
+
+//$Id$
+
+/**
+ *  JBAS-4077: Programmatic Web Login
+ *  @author Anil.Saldhana at redhat.com
+ *  @since  Mar 12, 2007 
+ *  @version $Revision$
+ */
+public class WebAuthentication
+{  
+   private static final String AUTH_TYPE = "PROGRAMMATIC_WEB_LOGIN";
+   public WebAuthentication()
+   {  
+   }
+   
+   /**
+    * Login an user via the CLIENT-CERT method
+    * @param certs X509 certificates
+    * @return Authenticated User Principal
+    */
+   public boolean login(X509Certificate[] certs)
+   {
+      //Get the active request
+      Request request = (Request) SecurityAssociationValve.activeRequest.get();
+      if(request == null)
+         throw new IllegalStateException("request is null");
+      Principal p = request.getContext().getRealm().authenticate(certs);
+      if(p != null)
+      {
+         register(request,p, null, null);
+      }
+      return p!= null; 
+   }
+   
+   /**
+    * Login an user via the BASIC, FORM, DIGEST methods
+    * @param username
+    * @param credential
+    * @return
+    * @throws NamingException
+    */
+   public boolean login(String username, Object credential) 
+   { 
+      //Get the active request
+      Request request = (Request) SecurityAssociationValve.activeRequest.get();
+      if(request == null)
+         throw new IllegalStateException("request is null");
+      
+      Principal p = null;
+      if(credential instanceof String)
+      {
+         p = request.getContext().getRealm().authenticate(username, (String)credential); 
+      } 
+      else if (credential instanceof byte[])
+      {
+         p = request.getContext().getRealm().authenticate(username, (byte[])credential); 
+      } 
+      if(p != null)
+      {
+         register(request,p, username, credential);
+      }
+      return p != null;
+   } 
+   
+   /**
+    * Log the user out
+    *
+    */
+   public void logout()
+   {
+      //Get the active request
+      Request request = (Request) SecurityAssociationValve.activeRequest.get();
+      if(request == null)
+         throw new IllegalStateException("request is null");
+      unregister(request);
+   }
+   
+   /**
+    * Register the principal with the request, session etc just the way AuthenticatorBase does
+    * @param request Catalina Request
+    * @param principal User Principal generated via authentication
+    * @param username username passed by the user (null for client-cert)
+    * @param credential Password (null for client-cert and digest)
+    */
+   protected void register(Request request, Principal principal, String username, Object password)
+   {
+      request.setAuthType(AUTH_TYPE);
+      request.setUserPrincipal(principal); 
+      
+      //Cache the authentication principal in the session
+      Session session = request.getSessionInternal(false);
+      if(session != null)
+      {
+         session.setAuthType(AUTH_TYPE);
+         session.setPrincipal(principal);
+         if (username != null)
+             session.setNote(Constants.SESS_USERNAME_NOTE, username);
+         else
+             session.removeNote(Constants.SESS_USERNAME_NOTE);
+         if (password != null)
+             session.setNote(Constants.SESS_PASSWORD_NOTE, getPasswordAsString(password));
+         else
+             session.removeNote(Constants.SESS_PASSWORD_NOTE);
+      }
+   }
+   
+   /**
+    * Log the user out
+    * @param request
+    */
+   protected void unregister(Request request)
+   {
+      request.setAuthType(null);
+      request.setUserPrincipal(null); 
+      
+      //Cache the authentication principal in the session
+      Session session = request.getSessionInternal(false);
+      if(session != null)
+      {
+         session.setAuthType(null);
+         session.setPrincipal(null);
+         session.removeNote(Constants.SESS_USERNAME_NOTE);
+         session.removeNote(Constants.SESS_PASSWORD_NOTE);
+      }
+   }
+   
+   private String getPasswordAsString(Object cred)
+   {
+      String p = null;
+      
+      if(cred instanceof String)
+      {
+         p = (String)cred;
+      }
+      else if(cred instanceof byte[])
+      {
+         p = new String((byte[])cred);
+      }
+      return p;
+   }
+}




More information about the jboss-cvs-commits mailing list