/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. * * * This file incorporates work covered by the following copyright and * permission notice: * * Copyright 2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jasper.runtime; import java.util.HashMap; import java.security.AccessController; import java.security.PrivilegedAction; import java.security.PrivilegedExceptionAction; import java.security.PrivilegedActionException; import java.lang.reflect.Method; import javax.el.FunctionMapper; import org.apache.jasper.security.SecurityUtil; /** * Maps EL functions to their Java method counterparts. Keeps the * actual Method objects protected so that JSP pages can't indirectly * do reflection. * * @author Mark Roth * @author Kin-man Chung */ public final class ProtectedFunctionMapper extends FunctionMapper { /** * Maps "prefix:name" to java.lang.Method objects. */ private HashMap<String, Method> fnmap = null; /** * If there is only one function in the map, this is the Method for it. */ private Method theMethod = null; /** * Constructor has protected access. */ private ProtectedFunctionMapper() { } /** * Generated Servlet and Tag Handler implementations call this * method to retrieve an instance of the ProtectedFunctionMapper. * This is necessary since generated code does not have access to * create instances of classes in this package. * * @return A new protected function mapper. */ public static ProtectedFunctionMapper getInstance() { ProtectedFunctionMapper funcMapper; if (SecurityUtil.isPackageProtectionEnabled()) { funcMapper = AccessController.doPrivileged( new PrivilegedAction<ProtectedFunctionMapper>() { public ProtectedFunctionMapper run() { return new ProtectedFunctionMapper(); } } ); } else { funcMapper = new ProtectedFunctionMapper(); } funcMapper.fnmap = new java.util.HashMap<String, Method>(); return funcMapper; } /** * Stores a mapping from the given EL function prefix and name to * the given Java method. * * @param fnQName The EL function qualified name (including prefix) * @param c The class containing the Java method * @param methodName The name of the Java method * @param args The arguments of the Java method * @throws RuntimeException if no method with the given signature * could be found. */ public void mapFunction(String fnQName, final Class<?> c, final String methodName, final Class<?>[] args ) { java.lang.reflect.Method method; if (SecurityUtil.isPackageProtectionEnabled()){ try{ method = AccessController.doPrivileged( new PrivilegedExceptionAction<Method>(){ public Method run() throws Exception{ return c.getDeclaredMethod(methodName, args); } }); } catch (PrivilegedActionException ex){ throw new RuntimeException( "Invalid function mapping - no such method: " + ex.getException().getMessage()); } } else { try { method = c.getDeclaredMethod(methodName, args); } catch( NoSuchMethodException e ) { throw new RuntimeException( "Invalid function mapping - no such method: " + e.getMessage()); } } this.fnmap.put(fnQName, method ); } /** * Creates an instance for this class, and stores the Method for * the given EL function prefix and name. This method is used for * the case when there is only one function in the EL expression. * * @param fnQName The EL function qualified name (including prefix) * @param c The class containing the Java method * @param methodName The name of the Java method * @param args The arguments of the Java method * @throws RuntimeException if no method with the given signature * could be found. */ public static ProtectedFunctionMapper getMapForFunction( String fnQName, final Class<?> c, final String methodName, final Class<?>[] args ) { java.lang.reflect.Method method; ProtectedFunctionMapper funcMapper; if (SecurityUtil.isPackageProtectionEnabled()){ funcMapper = AccessController.doPrivileged( new PrivilegedAction<ProtectedFunctionMapper>(){ public ProtectedFunctionMapper run() { return new ProtectedFunctionMapper(); } }); try{ method = AccessController.doPrivileged( new PrivilegedExceptionAction<Method>(){ public Method run() throws Exception{ return c.getDeclaredMethod(methodName, args); } }); } catch (PrivilegedActionException ex){ throw new RuntimeException( "Invalid function mapping - no such method: " + ex.getException().getMessage()); } } else { funcMapper = new ProtectedFunctionMapper(); try { method = c.getDeclaredMethod(methodName, args); } catch( NoSuchMethodException e ) { throw new RuntimeException( "Invalid function mapping - no such method: " + e.getMessage()); } } funcMapper.theMethod = method; return funcMapper; } /** * Resolves the specified local name and prefix into a Java.lang.Method. * Returns null if the prefix and local name are not found. * * @param prefix the prefix of the function * @param localName the short name of the function * @return the result of the method mapping. Null means no entry found. **/ public Method resolveFunction(String prefix, String localName) { if (this.fnmap != null) { return this.fnmap.get(prefix + ":" + localName); } return theMethod; } }