/* * 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.web.tomcat.security.jaspi.modules; import java.security.Principal; import java.util.Map; import javax.security.auth.Subject; import javax.security.auth.callback.CallbackHandler; import javax.security.auth.message.AuthException; import javax.security.auth.message.AuthStatus; import javax.security.auth.message.MessageInfo; import javax.security.auth.message.MessagePolicy; import javax.security.auth.message.callback.CallerPrincipalCallback; import javax.security.auth.message.callback.PasswordValidationCallback; import javax.security.auth.message.module.ServerAuthModule; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.catalina.connector.Request; import org.apache.catalina.connector.Response; import org.jboss.web.tomcat.security.jaspi.TomcatJASPICallbackHandler; /** * Base class for Tomcat JSR-196 server auth modules * @author Anil.Saldhana@redhat.com * @since Oct 7, 2008 */ public abstract class TomcatServerAuthModule implements ServerAuthModule { protected CallbackHandler callbackHandler; @SuppressWarnings("unchecked") protected Map options; @SuppressWarnings("unchecked") public Class[] getSupportedMessageTypes() { return new Class[]{Request.class, Response.class, HttpServletRequest.class,HttpServletResponse.class}; } @SuppressWarnings("unchecked") public void initialize(MessagePolicy requestPolicy, MessagePolicy responsePolicy, CallbackHandler handler, Map options) throws AuthException { this.callbackHandler = handler; this.options = options; } public void cleanSubject(MessageInfo messageInfo, Subject subject) throws AuthException { Request request = (Request) messageInfo.getRequestMessage(); Principal principal = request.getUserPrincipal(); if(subject != null) subject.getPrincipals().remove(principal); } public abstract AuthStatus secureResponse(MessageInfo messageInfo, Subject serviceSubject) throws AuthException; public abstract AuthStatus validateRequest(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject) throws AuthException; /** * Register with the CallbackHandler * @param userPrincipal * @param username * @param password */ protected void registerWithCallbackHandler(Principal userPrincipal, String username, String password) { if(this.callbackHandler instanceof TomcatJASPICallbackHandler) { TomcatJASPICallbackHandler cbh = (TomcatJASPICallbackHandler) callbackHandler; PasswordValidationCallback passwordValidationCallback = new PasswordValidationCallback(null,username,password.toCharArray()); cbh.setPasswordValidationCallback(passwordValidationCallback); cbh.setCallerPrincipalCallback(new CallerPrincipalCallback(null,userPrincipal)); } else throw new RuntimeException(" Unsupported Callback handler " + this.callbackHandler.getClass().getCanonicalName()); } }