jdk/src/java.base/share/classes/java/security/AccessController.java
author coleenp
Wed, 30 Aug 2017 19:18:22 -0400
changeset 47098 e704f55561c3
parent 45434 4582657c7260
permissions -rw-r--r--
8164207: Checking missing load-acquire in relation to _pd_set in dictionary.cpp Summary: Use load_acquire for accessing DictionaryEntry::_pd_set since it's accessed outside the SystemDictionary_lock Reviewed-by: zgu, twisti, dholmes, adinn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2589
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import sun.security.util.Debug;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 30033
diff changeset
    29
import jdk.internal.reflect.CallerSensitive;
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 30033
diff changeset
    30
import jdk.internal.reflect.Reflection;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * <p> The AccessController class is used for access control operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * and decisions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <p> More specifically, the AccessController class is used for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * three purposes:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <li> to decide whether an access to a critical system
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * resource is to be allowed or denied, based on the security policy
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 21321
diff changeset
    42
 * currently in effect,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * <li>to mark code as being "privileged", thus affecting subsequent
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 21321
diff changeset
    44
 * access determinations, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <li>to obtain a "snapshot" of the current calling context so
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * access-control decisions from a different context can be made with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * respect to the saved context. </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p> The {@link #checkPermission(Permission) checkPermission} method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * determines whether the access request indicated by a specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * permission should be granted or denied. A sample call appears
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
    52
 * below. In this example, {@code checkPermission} will determine
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * whether or not to grant "read" access to the file named "testFile" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * the "/temp" directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * FilePermission perm = new FilePermission("/temp/testFile", "read");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * AccessController.checkPermission(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p> If a requested access is allowed,
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
    64
 * {@code checkPermission} returns quietly. If denied, an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * AccessControlException is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * thrown. AccessControlException can also be thrown if the requested
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * permission is of an incorrect type or contains an invalid value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * Such information is given whenever possible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * Suppose the current thread traversed m callers, in the order of caller 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * to caller 2 to caller m. Then caller m invoked the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
    72
 * {@code checkPermission} method.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
    73
 * The {@code checkPermission} method determines whether access
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * is granted or denied based on the following algorithm:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * for (int i = m; i > 0; i--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *     if (caller i's domain does not have the permission)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *         throw AccessControlException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *     else if (caller i is marked as privileged) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *         if (a context was specified in the call to doPrivileged)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *             context.checkPermission(permission)
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    85
 *         if (limited permissions were specified in the call to doPrivileged) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    86
 *             for (each limited permission) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    87
 *                 if (the limited permission implies the requested permission)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    88
 *                     return;
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    89
 *             }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    90
 *         } else
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    91
 *             return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *     }
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
    93
 * }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * // Next, check the context inherited when the thread was created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * // Whenever a new thread is created, the AccessControlContext at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * // that time is stored and associated with the new thread, as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * // "inherited" context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * inheritedContext.checkPermission(permission);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * }</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * <p> A caller can be marked as being "privileged"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * (see {@link #doPrivileged(PrivilegedAction) doPrivileged} and below).
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   105
 * When making access control decisions, the {@code checkPermission}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * method stops checking if it reaches a caller that
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   107
 * was marked as "privileged" via a {@code doPrivileged}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * call without a context argument (see below for information about a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * context argument). If that caller's domain has the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   110
 * specified permission and at least one limiting permission argument (if any)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   111
 * implies the requested permission, no further checking is done and
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   112
 * {@code checkPermission}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * returns quietly, indicating that the requested access is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * If that domain does not have the specified permission, an exception
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   115
 * is thrown, as usual. If the caller's domain had the specified permission
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   116
 * but it was not implied by any limiting permission arguments given in the call
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   117
 * to {@code doPrivileged} then the permission checking continues
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   118
 * until there are no more callers or another {@code doPrivileged}
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   119
 * call matches the requested permission and returns normally.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * <p> The normal use of the "privileged" feature is as follows. If you
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * don't need to return a value from within the "privileged" block, do
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * somemethod() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *     AccessController.doPrivileged(new PrivilegedAction<Void>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *         public Void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 *             // privileged code goes here, for example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 *             System.loadLibrary("awt");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *             return null; // nothing to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *     });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * }}</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * PrivilegedAction is an interface with a single method, named
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   140
 * {@code run}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * The above example shows creation of an implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * of that interface; a concrete implementation of the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   143
 * {@code run} method is supplied.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   144
 * When the call to {@code doPrivileged} is made, an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * instance of the PrivilegedAction implementation is passed
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   146
 * to it. The {@code doPrivileged} method calls the
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   147
 * {@code run} method from the PrivilegedAction
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * implementation after enabling privileges, and returns the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   149
 * {@code run} method's return value as the
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   150
 * {@code doPrivileged} return value (which is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * ignored in this example).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * <p> If you need to return a value, you can do something like the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * somemethod() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 *     String user = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 *         new PrivilegedAction<String>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 *         public String run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 *             return System.getProperty("user.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 *         });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * }}</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   167
 * <p>If the action performed in your {@code run} method could
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   168
 * throw a "checked" exception (those listed in the {@code throws} clause
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 * of a method), then you need to use the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   170
 * {@code PrivilegedExceptionAction} interface instead of the
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   171
 * {@code PrivilegedAction} interface:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * somemethod() throws FileNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 *     try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 *         FileInputStream fis = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 *         new PrivilegedExceptionAction<FileInputStream>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 *             public FileInputStream run() throws FileNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 *                 return new FileInputStream("someFile");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 *             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 *         });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 *     } catch (PrivilegedActionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 *         // e.getException() should be an instance of FileNotFoundException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 *         // as only "checked" exceptions will be "wrapped" in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 *         // PrivilegedActionException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 *         throw (FileNotFoundException) e.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 *     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 *  }}</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 * <p> Be *very* careful in your use of the "privileged" construct, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 * always remember to make the privileged code section as small as possible.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   194
 * You can pass {@code Permission} arguments to further limit the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   195
 * scope of the "privilege" (see below).
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   196
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   198
 * <p> Note that {@code checkPermission} always performs security checks
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 * within the context of the currently executing thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 * Sometimes a security check that should be made within a given context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 * will actually need to be done from within a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 * <i>different</i> context (for example, from within a worker thread).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 * The {@link #getContext() getContext} method and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 * AccessControlContext class are provided
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   205
 * for this situation. The {@code getContext} method takes a "snapshot"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 * of the current calling context, and places
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 * it in an AccessControlContext object, which it returns. A sample call is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 * the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 * AccessControlContext acc = AccessController.getContext()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 * <p>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   217
 * AccessControlContext itself has a {@code checkPermission} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
 * that makes access decisions based on the context <i>it</i> encapsulates,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
 * rather than that of the current execution thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
 * Code within a different context can thus call that method on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
 * previously-saved AccessControlContext object. A sample call is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 * following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 * acc.checkPermission(permission)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
 * <p> There are also times where you don't know a priori which permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 * to check the context against. In these cases you can use the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   232
 * doPrivileged method that takes a context. You can also limit the scope
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   233
 * of the privileged code by passing additional {@code Permission}
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   234
 * parameters.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 * somemethod() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
 *     AccessController.doPrivileged(new PrivilegedAction<Object>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
 *         public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
 *             // Code goes here. Any permission checks within this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
 *             // run method will require that the intersection of the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   242
 *             // caller's protection domain and the snapshot's
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   243
 *             // context have the desired permission. If a requested
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   244
 *             // permission is not implied by the limiting FilePermission
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   245
 *             // argument then checking of the thread continues beyond the
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   246
 *             // caller of doPrivileged.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 *         }
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   248
 *     }, acc, new FilePermission("/temp/*", read));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
 *     ...normal code here...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
 * }}</pre>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   251
 * <p> Passing a limiting {@code Permission} argument of an instance of
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   252
 * {@code AllPermission} is equivalent to calling the equivalent
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   253
 * {@code doPrivileged} method without limiting {@code Permission}
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   254
 * arguments. Passing a zero length array of {@code Permission} disables
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   255
 * the code privileges so that checking always continues beyond the caller of
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   256
 * that {@code doPrivileged} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
 * @see AccessControlContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 * @author Li Gong
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 * @author Roland Schemers
45434
4582657c7260 8181082: class-level since tag issues in java.base & java.datatransfer module
mli
parents: 37363
diff changeset
   262
 * @since 1.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
public final class AccessController {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * Don't allow anyone to instantiate an AccessController
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    private AccessController() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   273
     * Performs the specified {@code PrivilegedAction} with privileges
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * enabled. The action is performed with <i>all</i> of the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * possessed by the caller's protection domain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   277
     * <p> If the action's {@code run} method throws an (unchecked)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * exception, it will propagate through this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * <p> Note that any DomainCombiner associated with the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * AccessControlContext will be ignored while the action is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   283
     * @param <T> the type of the value returned by the PrivilegedAction's
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   284
     *                  {@code run} method.
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   285
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @param action the action to be performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   288
     * @return the value returned by the action's {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   290
     * @exception NullPointerException if the action is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * @see #doPrivileged(PrivilegedAction,AccessControlContext)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * @see #doPrivileged(PrivilegedExceptionAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @see #doPrivilegedWithCombiner(PrivilegedAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @see java.security.DomainCombiner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   298
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    public static native <T> T doPrivileged(PrivilegedAction<T> action);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   302
     * Performs the specified {@code PrivilegedAction} with privileges
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * enabled. The action is performed with <i>all</i> of the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * possessed by the caller's protection domain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   306
     * <p> If the action's {@code run} method throws an (unchecked)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * exception, it will propagate through this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * <p> This method preserves the current AccessControlContext's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * DomainCombiner (which may be null) while the action is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   312
     * @param <T> the type of the value returned by the PrivilegedAction's
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   313
     *                  {@code run} method.
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   314
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * @param action the action to be performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   317
     * @return the value returned by the action's {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   319
     * @exception NullPointerException if the action is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @see #doPrivileged(PrivilegedAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @see java.security.DomainCombiner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   326
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    public static <T> T doPrivilegedWithCombiner(PrivilegedAction<T> action) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        AccessControlContext acc = getStackAccessControlContext();
14213
91ba926457c6 7189490: More improvements to DomainCombiner checking
mullan
parents: 14208
diff changeset
   329
        if (acc == null) {
91ba926457c6 7189490: More improvements to DomainCombiner checking
mullan
parents: 14208
diff changeset
   330
            return AccessController.doPrivileged(action);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        }
14213
91ba926457c6 7189490: More improvements to DomainCombiner checking
mullan
parents: 14208
diff changeset
   332
        DomainCombiner dc = acc.getAssignedCombiner();
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   333
        return AccessController.doPrivileged(action,
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   334
                                             preserveCombiner(dc, Reflection.getCallerClass()));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /**
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   339
     * Performs the specified {@code PrivilegedAction} with privileges
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   340
     * enabled and restricted by the specified {@code AccessControlContext}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * The action is performed with the intersection of the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * possessed by the caller's protection domain, and those possessed
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   343
     * by the domains represented by the specified {@code AccessControlContext}.
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   344
     * <p>
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   345
     * If the action's {@code run} method throws an (unchecked) exception,
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   346
     * it will propagate through this method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * <p>
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   348
     * If a security manager is installed and the specified
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   349
     * {@code AccessControlContext} was not created by system code and the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   350
     * caller's {@code ProtectionDomain} has not been granted the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   351
     * {@literal "createAccessControlContext"}
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   352
     * {@link java.security.SecurityPermission}, then the action is performed
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   353
     * with no permissions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   355
     * @param <T> the type of the value returned by the PrivilegedAction's
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   356
     *                  {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @param action the action to be performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @param context an <i>access control context</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *                representing the restriction to be applied to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *                caller's domain's privileges before performing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     *                the specified action.  If the context is
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   362
     *                {@code null}, then no additional restriction is applied.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   364
     * @return the value returned by the action's {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   366
     * @exception NullPointerException if the action is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * @see #doPrivileged(PrivilegedAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * @see #doPrivileged(PrivilegedExceptionAction,AccessControlContext)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   371
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    public static native <T> T doPrivileged(PrivilegedAction<T> action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                                            AccessControlContext context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   375
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   376
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   377
     * Performs the specified {@code PrivilegedAction} with privileges
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   378
     * enabled and restricted by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   379
     * {@code AccessControlContext} and with a privilege scope limited
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   380
     * by specified {@code Permission} arguments.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   381
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   382
     * The action is performed with the intersection of the permissions
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   383
     * possessed by the caller's protection domain, and those possessed
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   384
     * by the domains represented by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   385
     * {@code AccessControlContext}.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   386
     * <p>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   387
     * If the action's {@code run} method throws an (unchecked) exception,
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   388
     * it will propagate through this method.
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   389
     * <p>
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   390
     * If a security manager is installed and the specified
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   391
     * {@code AccessControlContext} was not created by system code and the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   392
     * caller's {@code ProtectionDomain} has not been granted the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   393
     * {@literal "createAccessControlContext"}
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   394
     * {@link java.security.SecurityPermission}, then the action is performed
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   395
     * with no permissions.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   396
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   397
     * @param <T> the type of the value returned by the PrivilegedAction's
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   398
     *                  {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   399
     * @param action the action to be performed.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   400
     * @param context an <i>access control context</i>
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   401
     *                representing the restriction to be applied to the
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   402
     *                caller's domain's privileges before performing
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   403
     *                the specified action.  If the context is
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   404
     *                {@code null},
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   405
     *                then no additional restriction is applied.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   406
     * @param perms the {@code Permission} arguments which limit the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   407
     *              scope of the caller's privileges. The number of arguments
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   408
     *              is variable.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   409
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   410
     * @return the value returned by the action's {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   411
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   412
     * @throws NullPointerException if action or perms or any element of
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   413
     *         perms is {@code null}
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   414
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   415
     * @see #doPrivileged(PrivilegedAction)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   416
     * @see #doPrivileged(PrivilegedExceptionAction,AccessControlContext)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   417
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   418
     * @since 1.8
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   419
     */
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   420
    @CallerSensitive
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   421
    public static <T> T doPrivileged(PrivilegedAction<T> action,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   422
        AccessControlContext context, Permission... perms) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   423
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   424
        AccessControlContext parent = getContext();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   425
        if (perms == null) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   426
            throw new NullPointerException("null permissions parameter");
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   427
        }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   428
        Class <?> caller = Reflection.getCallerClass();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   429
        return AccessController.doPrivileged(action, createWrapper(null,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   430
            caller, parent, context, perms));
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   431
    }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   432
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   433
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   434
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   435
     * Performs the specified {@code PrivilegedAction} with privileges
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   436
     * enabled and restricted by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   437
     * {@code AccessControlContext} and with a privilege scope limited
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   438
     * by specified {@code Permission} arguments.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   439
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   440
     * The action is performed with the intersection of the permissions
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   441
     * possessed by the caller's protection domain, and those possessed
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   442
     * by the domains represented by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   443
     * {@code AccessControlContext}.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   444
     * <p>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   445
     * If the action's {@code run} method throws an (unchecked) exception,
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   446
     * it will propagate through this method.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   447
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   448
     * <p> This method preserves the current AccessControlContext's
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   449
     * DomainCombiner (which may be null) while the action is performed.
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   450
     * <p>
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   451
     * If a security manager is installed and the specified
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   452
     * {@code AccessControlContext} was not created by system code and the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   453
     * caller's {@code ProtectionDomain} has not been granted the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   454
     * {@literal "createAccessControlContext"}
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   455
     * {@link java.security.SecurityPermission}, then the action is performed
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   456
     * with no permissions.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   457
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   458
     * @param <T> the type of the value returned by the PrivilegedAction's
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   459
     *                  {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   460
     * @param action the action to be performed.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   461
     * @param context an <i>access control context</i>
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   462
     *                representing the restriction to be applied to the
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   463
     *                caller's domain's privileges before performing
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   464
     *                the specified action.  If the context is
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   465
     *                {@code null},
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   466
     *                then no additional restriction is applied.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   467
     * @param perms the {@code Permission} arguments which limit the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   468
     *              scope of the caller's privileges. The number of arguments
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   469
     *              is variable.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   470
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   471
     * @return the value returned by the action's {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   472
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   473
     * @throws NullPointerException if action or perms or any element of
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   474
     *         perms is {@code null}
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   475
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   476
     * @see #doPrivileged(PrivilegedAction)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   477
     * @see #doPrivileged(PrivilegedExceptionAction,AccessControlContext)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   478
     * @see java.security.DomainCombiner
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   479
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   480
     * @since 1.8
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   481
     */
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   482
    @CallerSensitive
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   483
    public static <T> T doPrivilegedWithCombiner(PrivilegedAction<T> action,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   484
        AccessControlContext context, Permission... perms) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   485
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   486
        AccessControlContext parent = getContext();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   487
        DomainCombiner dc = parent.getCombiner();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   488
        if (dc == null && context != null) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   489
            dc = context.getCombiner();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   490
        }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   491
        if (perms == null) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   492
            throw new NullPointerException("null permissions parameter");
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   493
        }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   494
        Class <?> caller = Reflection.getCallerClass();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   495
        return AccessController.doPrivileged(action, createWrapper(dc, caller,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   496
            parent, context, perms));
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   497
    }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   498
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   500
     * Performs the specified {@code PrivilegedExceptionAction} with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * privileges enabled.  The action is performed with <i>all</i> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * permissions possessed by the caller's protection domain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   504
     * <p> If the action's {@code run} method throws an <i>unchecked</i>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * exception, it will propagate through this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * <p> Note that any DomainCombiner associated with the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * AccessControlContext will be ignored while the action is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   510
     * @param <T> the type of the value returned by the
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   511
     *                  PrivilegedExceptionAction's {@code run} method.
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   512
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * @param action the action to be performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   515
     * @return the value returned by the action's {@code run} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * @exception PrivilegedActionException if the specified action's
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   518
     *         {@code run} method threw a <i>checked</i> exception
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   519
     * @exception NullPointerException if the action is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @see #doPrivileged(PrivilegedAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * @see #doPrivileged(PrivilegedExceptionAction,AccessControlContext)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @see #doPrivilegedWithCombiner(PrivilegedExceptionAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * @see java.security.DomainCombiner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   526
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    public static native <T> T
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        doPrivileged(PrivilegedExceptionAction<T> action)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        throws PrivilegedActionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   533
     * Performs the specified {@code PrivilegedExceptionAction} with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * privileges enabled.  The action is performed with <i>all</i> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * permissions possessed by the caller's protection domain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   537
     * <p> If the action's {@code run} method throws an <i>unchecked</i>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * exception, it will propagate through this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * <p> This method preserves the current AccessControlContext's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * DomainCombiner (which may be null) while the action is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   543
     * @param <T> the type of the value returned by the
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   544
     *                  PrivilegedExceptionAction's {@code run} method.
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   545
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * @param action the action to be performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   548
     * @return the value returned by the action's {@code run} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * @exception PrivilegedActionException if the specified action's
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   551
     *         {@code run} method threw a <i>checked</i> exception
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   552
     * @exception NullPointerException if the action is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * @see #doPrivileged(PrivilegedAction)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * @see #doPrivileged(PrivilegedExceptionAction,AccessControlContext)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * @see java.security.DomainCombiner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   560
    @CallerSensitive
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   561
    public static <T> T doPrivilegedWithCombiner(PrivilegedExceptionAction<T> action)
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   562
        throws PrivilegedActionException
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   563
    {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        AccessControlContext acc = getStackAccessControlContext();
14213
91ba926457c6 7189490: More improvements to DomainCombiner checking
mullan
parents: 14208
diff changeset
   565
        if (acc == null) {
91ba926457c6 7189490: More improvements to DomainCombiner checking
mullan
parents: 14208
diff changeset
   566
            return AccessController.doPrivileged(action);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        }
14213
91ba926457c6 7189490: More improvements to DomainCombiner checking
mullan
parents: 14208
diff changeset
   568
        DomainCombiner dc = acc.getAssignedCombiner();
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   569
        return AccessController.doPrivileged(action,
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   570
                                             preserveCombiner(dc, Reflection.getCallerClass()));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * preserve the combiner across the doPrivileged call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   576
    private static AccessControlContext preserveCombiner(DomainCombiner combiner,
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   577
                                                         Class<?> caller)
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   578
    {
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   579
        return createWrapper(combiner, caller, null, null, null);
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   580
    }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   581
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   582
    /**
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   583
     * Create a wrapper to contain the limited privilege scope data.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   584
     */
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   585
    private static AccessControlContext
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   586
        createWrapper(DomainCombiner combiner, Class<?> caller,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   587
                      AccessControlContext parent, AccessControlContext context,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   588
                      Permission[] perms)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   589
    {
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   590
        ProtectionDomain callerPD = getCallerPD(caller);
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   591
        // check if caller is authorized to create context
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   592
        if (context != null && !context.isAuthorized() &&
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   593
            System.getSecurityManager() != null &&
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   594
            !callerPD.impliesCreateAccessControlContext())
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   595
        {
24697
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   596
            return getInnocuousAcc();
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   597
        } else {
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   598
            return new AccessControlContext(callerPD, combiner, parent,
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   599
                                            context, perms);
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   600
        }
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   601
    }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   602
24697
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   603
    private static class AccHolder {
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   604
        // An AccessControlContext with no granted permissions.
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   605
        // Only initialized on demand when getInnocuousAcc() is called.
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   606
        static final AccessControlContext innocuousAcc =
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   607
            new AccessControlContext(new ProtectionDomain[] {
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   608
                                     new ProtectionDomain(null, null) });
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   609
    }
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   610
    private static AccessControlContext getInnocuousAcc() {
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   611
        return AccHolder.innocuousAcc;
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   612
    }
f2fbe6256751 8036841: Reuse no-perms AccessControlContext object when performing isAuthorized check
mullan
parents: 21334
diff changeset
   613
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   614
    private static ProtectionDomain getCallerPD(final Class <?> caller) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        ProtectionDomain callerPd = doPrivileged
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
   616
            (new PrivilegedAction<>() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            public ProtectionDomain run() {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   618
                return caller.getProtectionDomain();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   622
        return callerPd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    /**
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   626
     * Performs the specified {@code PrivilegedExceptionAction} with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * privileges enabled and restricted by the specified
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   628
     * {@code AccessControlContext}.  The action is performed with the
2589
af4853bc7e87 6827153: Miscellaneous typos in javadoc
martin
parents: 2
diff changeset
   629
     * intersection of the permissions possessed by the caller's
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * protection domain, and those possessed by the domains represented by the
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   631
     * specified {@code AccessControlContext}.
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   632
     * <p>
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   633
     * If the action's {@code run} method throws an <i>unchecked</i>
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   634
     * exception, it will propagate through this method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * <p>
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   636
     * If a security manager is installed and the specified
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   637
     * {@code AccessControlContext} was not created by system code and the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   638
     * caller's {@code ProtectionDomain} has not been granted the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   639
     * {@literal "createAccessControlContext"}
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   640
     * {@link java.security.SecurityPermission}, then the action is performed
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   641
     * with no permissions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   643
     * @param <T> the type of the value returned by the
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   644
     *                  PrivilegedExceptionAction's {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * @param action the action to be performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * @param context an <i>access control context</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     *                representing the restriction to be applied to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     *                caller's domain's privileges before performing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     *                the specified action.  If the context is
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   650
     *                {@code null}, then no additional restriction is applied.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     *
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   652
     * @return the value returned by the action's {@code run} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * @exception PrivilegedActionException if the specified action's
18222
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   655
     *         {@code run} method threw a <i>checked</i> exception
2b50015e08db 8001330: Improve on checking order
mullan
parents: 16906
diff changeset
   656
     * @exception NullPointerException if the action is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * @see #doPrivileged(PrivilegedAction)
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   659
     * @see #doPrivileged(PrivilegedAction,AccessControlContext)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 14213
diff changeset
   661
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    public static native <T> T
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        doPrivileged(PrivilegedExceptionAction<T> action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                     AccessControlContext context)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        throws PrivilegedActionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   667
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   668
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   669
     * Performs the specified {@code PrivilegedExceptionAction} with
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   670
     * privileges enabled and restricted by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   671
     * {@code AccessControlContext} and with a privilege scope limited by
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   672
     * specified {@code Permission} arguments.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   673
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   674
     * The action is performed with the intersection of the permissions
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   675
     * possessed by the caller's protection domain, and those possessed
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   676
     * by the domains represented by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   677
     * {@code AccessControlContext}.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   678
     * <p>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   679
     * If the action's {@code run} method throws an (unchecked) exception,
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   680
     * it will propagate through this method.
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   681
     * <p>
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   682
     * If a security manager is installed and the specified
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   683
     * {@code AccessControlContext} was not created by system code and the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   684
     * caller's {@code ProtectionDomain} has not been granted the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   685
     * {@literal "createAccessControlContext"}
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   686
     * {@link java.security.SecurityPermission}, then the action is performed
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   687
     * with no permissions.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   688
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   689
     * @param <T> the type of the value returned by the
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   690
     *                  PrivilegedExceptionAction's {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   691
     * @param action the action to be performed.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   692
     * @param context an <i>access control context</i>
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   693
     *                representing the restriction to be applied to the
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   694
     *                caller's domain's privileges before performing
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   695
     *                the specified action.  If the context is
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   696
     *                {@code null},
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   697
     *                then no additional restriction is applied.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   698
     * @param perms the {@code Permission} arguments which limit the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   699
     *              scope of the caller's privileges. The number of arguments
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   700
     *              is variable.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   701
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   702
     * @return the value returned by the action's {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   703
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   704
     * @throws PrivilegedActionException if the specified action's
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   705
     *         {@code run} method threw a <i>checked</i> exception
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   706
     * @throws NullPointerException if action or perms or any element of
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   707
     *         perms is {@code null}
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   708
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   709
     * @see #doPrivileged(PrivilegedAction)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   710
     * @see #doPrivileged(PrivilegedAction,AccessControlContext)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   711
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   712
     * @since 1.8
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   713
     */
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   714
    @CallerSensitive
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   715
    public static <T> T doPrivileged(PrivilegedExceptionAction<T> action,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   716
                                     AccessControlContext context, Permission... perms)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   717
        throws PrivilegedActionException
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   718
    {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   719
        AccessControlContext parent = getContext();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   720
        if (perms == null) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   721
            throw new NullPointerException("null permissions parameter");
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   722
        }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   723
        Class <?> caller = Reflection.getCallerClass();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   724
        return AccessController.doPrivileged(action, createWrapper(null, caller, parent, context, perms));
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   725
    }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   726
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   727
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   728
    /**
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   729
     * Performs the specified {@code PrivilegedExceptionAction} with
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   730
     * privileges enabled and restricted by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   731
     * {@code AccessControlContext} and with a privilege scope limited by
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   732
     * specified {@code Permission} arguments.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   733
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   734
     * The action is performed with the intersection of the permissions
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   735
     * possessed by the caller's protection domain, and those possessed
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   736
     * by the domains represented by the specified
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   737
     * {@code AccessControlContext}.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   738
     * <p>
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   739
     * If the action's {@code run} method throws an (unchecked) exception,
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   740
     * it will propagate through this method.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   741
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   742
     * <p> This method preserves the current AccessControlContext's
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   743
     * DomainCombiner (which may be null) while the action is performed.
21321
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   744
     * <p>
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   745
     * If a security manager is installed and the specified
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   746
     * {@code AccessControlContext} was not created by system code and the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   747
     * caller's {@code ProtectionDomain} has not been granted the
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   748
     * {@literal "createAccessControlContext"}
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   749
     * {@link java.security.SecurityPermission}, then the action is performed
923ca53e6572 8021191: Add isAuthorized check to limited doPrivileged methods
mullan
parents: 19828
diff changeset
   750
     * with no permissions.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   751
     *
19828
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   752
     * @param <T> the type of the value returned by the
b4f91bc595fe 8024432: Fix doclint issues in java.security
juh
parents: 18579
diff changeset
   753
     *                  PrivilegedExceptionAction's {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   754
     * @param action the action to be performed.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   755
     * @param context an <i>access control context</i>
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   756
     *                representing the restriction to be applied to the
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   757
     *                caller's domain's privileges before performing
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   758
     *                the specified action.  If the context is
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   759
     *                {@code null},
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   760
     *                then no additional restriction is applied.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   761
     * @param perms the {@code Permission} arguments which limit the
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   762
     *              scope of the caller's privileges. The number of arguments
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   763
     *              is variable.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   764
     *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   765
     * @return the value returned by the action's {@code run} method.
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   766
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   767
     * @throws PrivilegedActionException if the specified action's
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   768
     *         {@code run} method threw a <i>checked</i> exception
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   769
     * @throws NullPointerException if action or perms or any element of
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   770
     *         perms is {@code null}
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   771
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   772
     * @see #doPrivileged(PrivilegedAction)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   773
     * @see #doPrivileged(PrivilegedAction,AccessControlContext)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   774
     * @see java.security.DomainCombiner
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   775
     *
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   776
     * @since 1.8
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   777
     */
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   778
    @CallerSensitive
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   779
    public static <T> T doPrivilegedWithCombiner(PrivilegedExceptionAction<T> action,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   780
                                                 AccessControlContext context,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   781
                                                 Permission... perms)
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   782
        throws PrivilegedActionException
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   783
    {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   784
        AccessControlContext parent = getContext();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   785
        DomainCombiner dc = parent.getCombiner();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   786
        if (dc == null && context != null) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   787
            dc = context.getCombiner();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   788
        }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   789
        if (perms == null) {
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   790
            throw new NullPointerException("null permissions parameter");
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   791
        }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   792
        Class <?> caller = Reflection.getCallerClass();
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   793
        return AccessController.doPrivileged(action, createWrapper(dc, caller,
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   794
            parent, context, perms));
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   795
    }
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   796
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * Returns the AccessControl context. i.e., it gets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * the protection domains of all the callers on the stack,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     * starting at the first class with a non-null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * ProtectionDomain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * @return the access control context based on the current stack or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     *         null if there was only privileged system code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    private static native AccessControlContext getStackAccessControlContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   809
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * Returns the "inherited" AccessControl context. This is the context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * that existed when the thread was created. Package private so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * AccessControlContext can use it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    static native AccessControlContext getInheritedAccessControlContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     * This method takes a "snapshot" of the current calling context, which
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   820
     * includes the current Thread's inherited AccessControlContext and any
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   821
     * limited privilege scope, and places it in an AccessControlContext object.
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   822
     * This context may then be checked at a later point, possibly in another thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * @see AccessControlContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     * @return the AccessControlContext based on the current context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    public static AccessControlContext getContext()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        AccessControlContext acc = getStackAccessControlContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        if (acc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
            // all we had was privileged system code. We don't want
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            // to return null though, so we construct a real ACC.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            return new AccessControlContext(null, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            return acc.optimize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     * Determines whether the access request indicated by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
     * specified permission should be allowed or denied, based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * the current AccessControlContext and security policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * This method quietly returns if the access request
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     * is permitted, or throws an AccessControlException otherwise. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * getPermission method of the AccessControlException returns the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   848
     * {@code perm} Permission object instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     * @param perm the requested permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     * @exception AccessControlException if the specified permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     *            is not permitted, based on the current security policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * @exception NullPointerException if the specified permission
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 18253
diff changeset
   855
     *            is {@code null} and is checked based on the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     *            security policy currently in effect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    public static void checkPermission(Permission perm)
17946
7791613dcbfd 8014097: add doPrivileged methods with limited privilege scope
jdn
parents: 16906
diff changeset
   860
        throws AccessControlException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
        //System.err.println("checkPermission "+perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        //Thread.currentThread().dumpStack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        if (perm == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            throw new NullPointerException("permission can't be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
        AccessControlContext stack = getStackAccessControlContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
        // if context is null, we had privileged system code on the stack.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        if (stack == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            Debug debug = AccessControlContext.getDebug();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
            boolean dumpDebug = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                dumpDebug = !Debug.isOn("codebase=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                dumpDebug &= !Debug.isOn("permission=") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                    Debug.isOn("permission=" + perm.getClass().getCanonicalName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            if (dumpDebug && Debug.isOn("stack")) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   881
                Thread.dumpStack();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
            if (dumpDebug && Debug.isOn("domain")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
                debug.println("domain (context is null)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
            if (dumpDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                debug.println("access allowed "+perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        AccessControlContext acc = stack.optimize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        acc.checkPermission(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
}