nashorn/src/jdk/internal/dynalink/beans/SafeUnreflector.java
author sundar
Sat, 09 Mar 2013 21:49:32 +0530
changeset 16277 fd698c5ee684
permissions -rw-r--r--
8009559: clean up method handle lookup code. Reviewed-by: ahgross, jlaskey, attila, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16277
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     1
/*
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     4
 *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    10
 *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    15
 * accompanied this code).
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    16
 *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    20
 *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    23
 * questions.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    24
 */
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    25
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    26
/*
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    27
 * This file is available under and governed by the GNU General Public
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    28
 * License version 2 only, as published by the Free Software Foundation.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    29
 * However, the following notice accompanied the original version of this
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    30
 * file, and Oracle licenses the original version of this file under the BSD
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    31
 * license:
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    32
 */
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    33
/*
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    34
   Copyright 2009-2013 Attila Szegedi
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    35
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    36
   Licensed under both the Apache License, Version 2.0 (the "Apache License")
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    37
   and the BSD License (the "BSD License"), with licensee being free to
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    38
   choose either of the two at their discretion.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    39
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    40
   You may not use this file except in compliance with either the Apache
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    41
   License or the BSD License.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    42
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    43
   If you choose to use this file in compliance with the Apache License, the
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    44
   following notice applies to you:
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    45
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    46
       You may obtain a copy of the Apache License at
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    47
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    48
           http://www.apache.org/licenses/LICENSE-2.0
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    49
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    50
       Unless required by applicable law or agreed to in writing, software
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    51
       distributed under the License is distributed on an "AS IS" BASIS,
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    52
       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    53
       implied. See the License for the specific language governing
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    54
       permissions and limitations under the License.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    55
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    56
   If you choose to use this file in compliance with the BSD License, the
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    57
   following notice applies to you:
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    58
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    59
       Redistribution and use in source and binary forms, with or without
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    60
       modification, are permitted provided that the following conditions are
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    61
       met:
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    62
       * Redistributions of source code must retain the above copyright
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    63
         notice, this list of conditions and the following disclaimer.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    64
       * Redistributions in binary form must reproduce the above copyright
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    65
         notice, this list of conditions and the following disclaimer in the
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    66
         documentation and/or other materials provided with the distribution.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    67
       * Neither the name of the copyright holder nor the names of
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    68
         contributors may be used to endorse or promote products derived from
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    69
         this software without specific prior written permission.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    70
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    71
       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    72
       IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    73
       TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    74
       PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    75
       BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    76
       CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    77
       SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    78
       BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    79
       WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    80
       OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    81
       ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    82
*/
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    83
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    84
package jdk.internal.dynalink.beans;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    85
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    86
import java.lang.invoke.MethodHandle;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    87
import java.lang.reflect.Constructor;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    88
import java.lang.reflect.Field;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    89
import java.lang.reflect.Method;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    90
import java.security.AccessController;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    91
import java.security.PrivilegedAction;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    92
import jdk.internal.dynalink.beans.sandbox.Unreflector;
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    93
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    94
/**
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    95
 * Provides lookup of unreflected method handles through delegation to an instance of {@link SafeUnreflectorImpl}. If
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    96
 * Dynalink is run as trusted code, the delegate class is loaded into an isolated zero-permissions protection domain,
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    97
 * serving as a firebreak against an accidental privilege escalation downstream.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    98
 */
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
    99
final class SafeUnreflector {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   100
    private static final String UNREFLECTOR_IMPL_CLASS_NAME = "jdk.internal.dynalink.beans.SafeUnreflectorImpl";
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   101
    private static final Unreflector impl = createImpl();
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   102
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   103
    private SafeUnreflector() {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   104
    }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   105
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   106
    /**
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   107
     * Performs a {@link java.lang.invoke.MethodHandles.Lookup#unreflect(Method)}, converting any encountered
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   108
     * {@link IllegalAccessException} into an {@link IllegalAccessError}.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   109
     *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   110
     * @param m the method to unreflect
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   111
     * @return the unreflected method handle.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   112
     */
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   113
    static MethodHandle unreflect(Method m) {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   114
        return impl.unreflect(m);
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   115
    }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   116
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   117
    /**
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   118
     * Performs a {@link java.lang.invoke.MethodHandles.Lookup#unreflectGetter(Field)}, converting any encountered
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   119
     * {@link IllegalAccessException} into an {@link IllegalAccessError}.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   120
     *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   121
     * @param f the field for which a getter is unreflected
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   122
     * @return the unreflected field getter handle.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   123
     */
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   124
    static MethodHandle unreflectGetter(Field f) {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   125
        return impl.unreflectGetter(f);
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   126
    }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   127
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   128
    /**
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   129
     * Performs a {@link java.lang.invoke.MethodHandles.Lookup#unreflectSetter(Field)}, converting any encountered
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   130
     * {@link IllegalAccessException} into an {@link IllegalAccessError}.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   131
     *
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   132
     * @param f the field for which a setter is unreflected
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   133
     * @return the unreflected field setter handle.
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   134
     */
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   135
    static MethodHandle unreflectSetter(Field f) {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   136
        return impl.unreflectSetter(f);
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   137
    }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   138
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   139
    static MethodHandle unreflectConstructor(Constructor<?> c) {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   140
        return impl.unreflectConstructor(c);
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   141
    }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   142
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   143
    private static Unreflector createImpl() {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   144
        final Class<?> unreflectorImplClass = AccessController.doPrivileged(new PrivilegedAction<Class<?>>() {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   145
            @Override
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   146
            public Class<?> run() {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   147
                return SandboxClassLoader.loadClass(UNREFLECTOR_IMPL_CLASS_NAME);
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   148
            }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   149
        });
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   150
        try {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   151
            return (Unreflector)unreflectorImplClass.newInstance();
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   152
        } catch(InstantiationException | IllegalAccessException e) {
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   153
            throw new RuntimeException(e.getMessage(), e);
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   154
        }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   155
    }
fd698c5ee684 8009559: clean up method handle lookup code.
sundar
parents:
diff changeset
   156
}