author | darcy |
Thu, 29 Aug 2019 10:52:21 -0700 | |
changeset 57950 | 4612a3cfb927 |
parent 53018 | 8bf9268df0e2 |
child 58242 | 94bb65cb37d3 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
57950
4612a3cfb927
8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents:
53018
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
||
27 |
package java.security; |
|
28 |
||
29 |
import java.util.Enumeration; |
|
30 |
import java.util.WeakHashMap; |
|
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
31 |
import java.util.Objects; |
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
32 |
import sun.security.jca.GetInstance; |
2 | 33 |
import sun.security.util.Debug; |
34 |
import sun.security.util.SecurityConstants; |
|
35 |
||
36 |
||
37 |
/** |
|
38 |
* A Policy object is responsible for determining whether code executing |
|
39 |
* in the Java runtime environment has permission to perform a |
|
40 |
* security-sensitive operation. |
|
41 |
* |
|
42 |
* <p> There is only one Policy object installed in the runtime at any |
|
43 |
* given time. A Policy object can be installed by calling the |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
44 |
* {@code setPolicy} method. The installed Policy object can be |
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
45 |
* obtained by calling the {@code getPolicy} method. |
2 | 46 |
* |
47 |
* <p> If no Policy object has been installed in the runtime, a call to |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
48 |
* {@code getPolicy} installs an instance of the default Policy |
2 | 49 |
* implementation (a default subclass implementation of this abstract class). |
50 |
* The default Policy implementation can be changed by setting the value |
|
14775
2ed01c760aea
8004064: Downgrade normative references to ${java.home}/lib/security/java.security
mullan
parents:
11034
diff
changeset
|
51 |
* of the {@code policy.provider} security property to the fully qualified |
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
52 |
* name of the desired Policy subclass implementation. The system class loader |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
53 |
* is used to load this class. |
2 | 54 |
* |
55 |
* <p> Application code can directly subclass Policy to provide a custom |
|
56 |
* implementation. In addition, an instance of a Policy object can be |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
57 |
* constructed by invoking one of the {@code getInstance} factory methods |
2 | 58 |
* with a standard type. The default policy type is "JavaPolicy". |
59 |
* |
|
60 |
* <p> Once a Policy instance has been installed (either by default, or by |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
61 |
* calling {@code setPolicy}), the Java runtime invokes its |
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
62 |
* {@code implies} method when it needs to |
2 | 63 |
* determine whether executing code (encapsulated in a ProtectionDomain) |
64 |
* can perform SecurityManager-protected operations. How a Policy object |
|
65 |
* retrieves its policy data is up to the Policy implementation itself. |
|
66 |
* The policy data may be stored, for example, in a flat ASCII file, |
|
67 |
* in a serialized binary file of the Policy class, or in a database. |
|
68 |
* |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
69 |
* <p> The {@code refresh} method causes the policy object to |
2 | 70 |
* refresh/reload its data. This operation is implementation-dependent. |
71 |
* For example, if the policy object stores its data in configuration files, |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
72 |
* calling {@code refresh} will cause it to re-read the configuration |
2 | 73 |
* policy files. If a refresh operation is not supported, this method does |
74 |
* nothing. Note that refreshed policy may not have an effect on classes |
|
75 |
* in a particular ProtectionDomain. This is dependent on the Policy |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
76 |
* provider's implementation of the {@code implies} |
2 | 77 |
* method and its PermissionCollection caching strategy. |
78 |
* |
|
79 |
* @author Roland Schemers |
|
80 |
* @author Gary Ellison |
|
45434
4582657c7260
8181082: class-level since tag issues in java.base & java.datatransfer module
mli
parents:
45118
diff
changeset
|
81 |
* @since 1.2 |
2 | 82 |
* @see java.security.Provider |
83 |
* @see java.security.ProtectionDomain |
|
84 |
* @see java.security.Permission |
|
14775
2ed01c760aea
8004064: Downgrade normative references to ${java.home}/lib/security/java.security
mullan
parents:
11034
diff
changeset
|
85 |
* @see java.security.Security security properties |
2 | 86 |
*/ |
87 |
||
88 |
public abstract class Policy { |
|
89 |
||
90 |
/** |
|
91 |
* A read-only empty PermissionCollection instance. |
|
92 |
* @since 1.6 |
|
93 |
*/ |
|
94 |
public static final PermissionCollection UNSUPPORTED_EMPTY_COLLECTION = |
|
95 |
new UnsupportedEmptyCollection(); |
|
96 |
||
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
97 |
// Information about the system-wide policy. |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
98 |
private static class PolicyInfo { |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
99 |
// the system-wide policy |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
100 |
final Policy policy; |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
101 |
// a flag indicating if the system-wide policy has been initialized |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
102 |
final boolean initialized; |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
103 |
|
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
104 |
PolicyInfo(Policy policy, boolean initialized) { |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
105 |
this.policy = policy; |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
106 |
this.initialized = initialized; |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
107 |
} |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
108 |
} |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
109 |
|
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
110 |
// PolicyInfo is volatile since we apply DCL during initialization. |
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
111 |
// For correctness, care must be taken to read the field only once and only |
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
112 |
// write to it after any other initialization action has taken place. |
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
113 |
private static volatile PolicyInfo policyInfo = new PolicyInfo(null, false); |
2 | 114 |
|
115 |
private static final Debug debug = Debug.getInstance("policy"); |
|
116 |
||
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
117 |
// Default policy provider |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
118 |
private static final String DEFAULT_POLICY = |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
119 |
"sun.security.provider.PolicyFile"; |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
120 |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
121 |
// Cache mapping ProtectionDomain.Key to PermissionCollection |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
122 |
private WeakHashMap<ProtectionDomain.Key, PermissionCollection> pdMapping; |
2 | 123 |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
124 |
/** package private for AccessControlContext and ProtectionDomain */ |
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
125 |
static boolean isSet() { |
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
126 |
PolicyInfo pi = policyInfo; |
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
127 |
return pi.policy != null && pi.initialized == true; |
2 | 128 |
} |
129 |
||
130 |
private static void checkPermission(String type) { |
|
131 |
SecurityManager sm = System.getSecurityManager(); |
|
132 |
if (sm != null) { |
|
133 |
sm.checkPermission(new SecurityPermission("createPolicy." + type)); |
|
134 |
} |
|
135 |
} |
|
136 |
||
137 |
/** |
|
138 |
* Returns the installed Policy object. This value should not be cached, |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
139 |
* as it may be changed by a call to {@code setPolicy}. |
2 | 140 |
* This method first calls |
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
141 |
* {@code SecurityManager.checkPermission} with a |
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
142 |
* {@code SecurityPermission("getPolicy")} permission |
8152
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
143 |
* to ensure it's ok to get the Policy object. |
2 | 144 |
* |
145 |
* @return the installed Policy. |
|
146 |
* |
|
147 |
* @throws SecurityException |
|
148 |
* if a security manager exists and its |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
149 |
* {@code checkPermission} method doesn't allow |
2 | 150 |
* getting the Policy object. |
151 |
* |
|
152 |
* @see SecurityManager#checkPermission(Permission) |
|
153 |
* @see #setPolicy(java.security.Policy) |
|
154 |
*/ |
|
155 |
public static Policy getPolicy() |
|
156 |
{ |
|
157 |
SecurityManager sm = System.getSecurityManager(); |
|
158 |
if (sm != null) |
|
159 |
sm.checkPermission(SecurityConstants.GET_POLICY_PERMISSION); |
|
160 |
return getPolicyNoCheck(); |
|
161 |
} |
|
162 |
||
163 |
/** |
|
164 |
* Returns the installed Policy object, skipping the security check. |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
165 |
* Used by ProtectionDomain and getPolicy. |
2 | 166 |
* |
167 |
* @return the installed Policy. |
|
168 |
*/ |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
169 |
static Policy getPolicyNoCheck() |
2 | 170 |
{ |
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
171 |
PolicyInfo pi = policyInfo; |
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
172 |
// Use double-check idiom to avoid locking if system-wide policy is |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
173 |
// already initialized |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
174 |
if (pi.initialized == false || pi.policy == null) { |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
175 |
synchronized (Policy.class) { |
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
176 |
pi = policyInfo; |
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
177 |
if (pi.policy == null) { |
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
178 |
return loadPolicyProvider(); |
2 | 179 |
} |
180 |
} |
|
181 |
} |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
182 |
return pi.policy; |
2 | 183 |
} |
184 |
||
185 |
/** |
|
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
186 |
* Loads and instantiates a Policy implementation specified by the |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
187 |
* policy.provider security property. Note that this method should only |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
188 |
* be called by getPolicyNoCheck and from within a synchronized block with |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
189 |
* an intrinsic lock on the Policy.class. |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
190 |
*/ |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
191 |
private static Policy loadPolicyProvider() { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
192 |
String policyProvider = |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
193 |
AccessController.doPrivileged(new PrivilegedAction<>() { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
194 |
@Override |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
195 |
public String run() { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
196 |
return Security.getProperty("policy.provider"); |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
197 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
198 |
}); |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
199 |
|
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
200 |
/* |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
201 |
* If policy.provider is not set or is set to the default provider, |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
202 |
* simply instantiate it and return. |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
203 |
*/ |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
204 |
if (policyProvider == null || policyProvider.isEmpty() || |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
205 |
policyProvider.equals(DEFAULT_POLICY)) |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
206 |
{ |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
207 |
Policy polFile = new sun.security.provider.PolicyFile(); |
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
208 |
policyInfo = new PolicyInfo(polFile, true); |
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
209 |
return polFile; |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
210 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
211 |
|
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
212 |
/* |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
213 |
* Locate, load, and instantiate the policy.provider impl using |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
214 |
* the system class loader. While doing so, install the bootstrap |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
215 |
* provider to avoid potential recursion. |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
216 |
*/ |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
217 |
Policy polFile = new sun.security.provider.PolicyFile(); |
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
218 |
policyInfo = new PolicyInfo(polFile, false); |
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
219 |
|
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
220 |
Policy pol = AccessController.doPrivileged(new PrivilegedAction<>() { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
221 |
@Override |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
222 |
public Policy run() { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
223 |
try { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
224 |
ClassLoader scl = ClassLoader.getSystemClassLoader(); |
37782
ad8fe7507ecc
6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents:
37348
diff
changeset
|
225 |
@SuppressWarnings("deprecation") |
ad8fe7507ecc
6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents:
37348
diff
changeset
|
226 |
Object o = Class.forName(policyProvider, true, scl).newInstance(); |
ad8fe7507ecc
6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents:
37348
diff
changeset
|
227 |
return (Policy)o; |
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
228 |
} catch (Exception e) { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
229 |
if (debug != null) { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
230 |
debug.println("policy provider " + policyProvider + |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
231 |
" not available"); |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
232 |
e.printStackTrace(); |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
233 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
234 |
return null; |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
235 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
236 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
237 |
}); |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
238 |
|
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
239 |
if (pol == null) { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
240 |
// Fallback and use the system default implementation |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
241 |
if (debug != null) { |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
242 |
debug.println("using " + DEFAULT_POLICY); |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
243 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
244 |
pol = polFile; |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
245 |
} |
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
246 |
policyInfo = new PolicyInfo(pol, true); |
30444
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
247 |
return pol; |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
248 |
} |
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
249 |
|
054604aed79c
8075706: Policy implementation does not allow policy.provider to be on the class path
mullan
parents:
30033
diff
changeset
|
250 |
/** |
2 | 251 |
* Sets the system-wide Policy object. This method first calls |
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
252 |
* {@code SecurityManager.checkPermission} with a |
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
253 |
* {@code SecurityPermission("setPolicy")} |
2 | 254 |
* permission to ensure it's ok to set the Policy. |
255 |
* |
|
256 |
* @param p the new system Policy object. |
|
257 |
* |
|
258 |
* @throws SecurityException |
|
259 |
* if a security manager exists and its |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
260 |
* {@code checkPermission} method doesn't allow |
2 | 261 |
* setting the Policy. |
262 |
* |
|
263 |
* @see SecurityManager#checkPermission(Permission) |
|
264 |
* @see #getPolicy() |
|
265 |
* |
|
266 |
*/ |
|
267 |
public static void setPolicy(Policy p) |
|
268 |
{ |
|
269 |
SecurityManager sm = System.getSecurityManager(); |
|
270 |
if (sm != null) sm.checkPermission( |
|
271 |
new SecurityPermission("setPolicy")); |
|
272 |
if (p != null) { |
|
273 |
initPolicy(p); |
|
274 |
} |
|
275 |
synchronized (Policy.class) { |
|
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
276 |
policyInfo = new PolicyInfo(p, p != null); |
2 | 277 |
} |
278 |
} |
|
279 |
||
280 |
/** |
|
281 |
* Initialize superclass state such that a legacy provider can |
|
282 |
* handle queries for itself. |
|
283 |
* |
|
284 |
* @since 1.4 |
|
285 |
*/ |
|
286 |
private static void initPolicy (final Policy p) { |
|
287 |
/* |
|
288 |
* A policy provider not on the bootclasspath could trigger |
|
289 |
* security checks fulfilling a call to either Policy.implies |
|
290 |
* or Policy.getPermissions. If this does occur the provider |
|
291 |
* must be able to answer for it's own ProtectionDomain |
|
292 |
* without triggering additional security checks, otherwise |
|
293 |
* the policy implementation will end up in an infinite |
|
294 |
* recursion. |
|
295 |
* |
|
296 |
* To mitigate this, the provider can collect it's own |
|
297 |
* ProtectionDomain and associate a PermissionCollection while |
|
298 |
* it is being installed. The currently installed policy |
|
299 |
* provider (if there is one) will handle calls to |
|
300 |
* Policy.implies or Policy.getPermissions during this |
|
301 |
* process. |
|
302 |
* |
|
303 |
* This Policy superclass caches away the ProtectionDomain and |
|
304 |
* statically binds permissions so that legacy Policy |
|
305 |
* implementations will continue to function. |
|
306 |
*/ |
|
307 |
||
308 |
ProtectionDomain policyDomain = |
|
30033
b9c86c17164a
8078468: Update security libraries to use diamond with anonymous classes
darcy
parents:
25859
diff
changeset
|
309 |
AccessController.doPrivileged(new PrivilegedAction<>() { |
2 | 310 |
public ProtectionDomain run() { |
311 |
return p.getClass().getProtectionDomain(); |
|
312 |
} |
|
313 |
}); |
|
314 |
||
315 |
/* |
|
316 |
* Collect the permissions granted to this protection domain |
|
317 |
* so that the provider can be security checked while processing |
|
318 |
* calls to Policy.implies or Policy.getPermissions. |
|
319 |
*/ |
|
320 |
PermissionCollection policyPerms = null; |
|
321 |
synchronized (p) { |
|
322 |
if (p.pdMapping == null) { |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
323 |
p.pdMapping = new WeakHashMap<>(); |
2 | 324 |
} |
325 |
} |
|
326 |
||
327 |
if (policyDomain.getCodeSource() != null) { |
|
42951
fb59ca170643
8172048: Re-examine use of AtomicReference in java.security.Policy
redestad
parents:
41826
diff
changeset
|
328 |
Policy pol = policyInfo.policy; |
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
329 |
if (pol != null) { |
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
330 |
policyPerms = pol.getPermissions(policyDomain); |
2 | 331 |
} |
332 |
||
333 |
if (policyPerms == null) { // assume it has all |
|
334 |
policyPerms = new Permissions(); |
|
335 |
policyPerms.add(SecurityConstants.ALL_PERMISSION); |
|
336 |
} |
|
337 |
||
338 |
synchronized (p.pdMapping) { |
|
339 |
// cache of pd to permissions |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
340 |
p.pdMapping.put(policyDomain.key, policyPerms); |
2 | 341 |
} |
342 |
} |
|
343 |
return; |
|
344 |
} |
|
345 |
||
346 |
||
347 |
/** |
|
348 |
* Returns a Policy object of the specified type. |
|
349 |
* |
|
350 |
* <p> This method traverses the list of registered security providers, |
|
351 |
* starting with the most preferred Provider. |
|
352 |
* A new Policy object encapsulating the |
|
353 |
* PolicySpi implementation from the first |
|
354 |
* Provider that supports the specified type is returned. |
|
355 |
* |
|
356 |
* <p> Note that the list of registered providers may be retrieved via |
|
357 |
* the {@link Security#getProviders() Security.getProviders()} method. |
|
358 |
* |
|
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
30444
diff
changeset
|
359 |
* @implNote |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
30444
diff
changeset
|
360 |
* The JDK Reference Implementation additionally uses the |
37348
9ccec3170d5e
8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents:
33241
diff
changeset
|
361 |
* {@code jdk.security.provider.preferred} |
9ccec3170d5e
8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents:
33241
diff
changeset
|
362 |
* {@link Security#getProperty(String) Security} property to determine |
33241
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
30444
diff
changeset
|
363 |
* the preferred provider order for the specified algorithm. This |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
30444
diff
changeset
|
364 |
* may be different than the order of providers returned by |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
30444
diff
changeset
|
365 |
* {@link Security#getProviders() Security.getProviders()}. |
27eb2d6abda9
8133151: Preferred provider configuration for JCE
ascarpino
parents:
30444
diff
changeset
|
366 |
* |
8152
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
367 |
* @param type the specified Policy type. See the Policy section in the |
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
368 |
* <a href= |
45118
e4258d800b54
8178278: Move Standard Algorithm Names document to specs directory
ihse
parents:
42951
diff
changeset
|
369 |
* "{@docRoot}/../specs/security/standard-names.html#policy-types"> |
e4258d800b54
8178278: Move Standard Algorithm Names document to specs directory
ihse
parents:
42951
diff
changeset
|
370 |
* Java Security Standard Algorithm Names Specification</a> |
2 | 371 |
* for a list of standard Policy types. |
372 |
* |
|
373 |
* @param params parameters for the Policy, which may be null. |
|
374 |
* |
|
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
375 |
* @return the new {@code Policy} object |
2 | 376 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
377 |
* @throws IllegalArgumentException if the specified parameters |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
378 |
* are not understood by the {@code PolicySpi} implementation |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
379 |
* from the selected {@code Provider} |
2 | 380 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
381 |
* @throws NoSuchAlgorithmException if no {@code Provider} supports |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
382 |
* a {@code PolicySpi} implementation for the specified type |
2 | 383 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
384 |
* @throws NullPointerException if {@code type} is {@code null} |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
385 |
* |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
386 |
* @throws SecurityException if the caller does not have permission |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
387 |
* to get a {@code Policy} instance for the specified type. |
2 | 388 |
* |
389 |
* @see Provider |
|
390 |
* @since 1.6 |
|
391 |
*/ |
|
392 |
public static Policy getInstance(String type, Policy.Parameters params) |
|
393 |
throws NoSuchAlgorithmException { |
|
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
394 |
Objects.requireNonNull(type, "null type name"); |
2 | 395 |
checkPermission(type); |
396 |
try { |
|
397 |
GetInstance.Instance instance = GetInstance.getInstance("Policy", |
|
398 |
PolicySpi.class, |
|
399 |
type, |
|
400 |
params); |
|
401 |
return new PolicyDelegate((PolicySpi)instance.impl, |
|
402 |
instance.provider, |
|
403 |
type, |
|
404 |
params); |
|
405 |
} catch (NoSuchAlgorithmException nsae) { |
|
406 |
return handleException(nsae); |
|
407 |
} |
|
408 |
} |
|
409 |
||
410 |
/** |
|
411 |
* Returns a Policy object of the specified type. |
|
412 |
* |
|
413 |
* <p> A new Policy object encapsulating the |
|
414 |
* PolicySpi implementation from the specified provider |
|
415 |
* is returned. The specified provider must be registered |
|
416 |
* in the provider list. |
|
417 |
* |
|
418 |
* <p> Note that the list of registered providers may be retrieved via |
|
419 |
* the {@link Security#getProviders() Security.getProviders()} method. |
|
420 |
* |
|
8152
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
421 |
* @param type the specified Policy type. See the Policy section in the |
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
422 |
* <a href= |
45118
e4258d800b54
8178278: Move Standard Algorithm Names document to specs directory
ihse
parents:
42951
diff
changeset
|
423 |
* "{@docRoot}/../specs/security/standard-names.html#policy-types"> |
e4258d800b54
8178278: Move Standard Algorithm Names document to specs directory
ihse
parents:
42951
diff
changeset
|
424 |
* Java Security Standard Algorithm Names Specification</a> |
2 | 425 |
* for a list of standard Policy types. |
426 |
* |
|
427 |
* @param params parameters for the Policy, which may be null. |
|
428 |
* |
|
429 |
* @param provider the provider. |
|
430 |
* |
|
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
431 |
* @return the new {@code Policy} object |
2 | 432 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
433 |
* @throws IllegalArgumentException if the specified provider |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
434 |
* is {@code null} or empty, or if the specified parameters are |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
435 |
* not understood by the {@code PolicySpi} implementation from |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
436 |
* the specified provider |
2 | 437 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
438 |
* @throws NoSuchAlgorithmException if the specified provider does not |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
439 |
* support a {@code PolicySpi} implementation for the specified |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
440 |
* type |
2 | 441 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
442 |
* @throws NoSuchProviderException if the specified provider is not |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
443 |
* registered in the security provider list |
2 | 444 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
445 |
* @throws NullPointerException if {@code type} is {@code null} |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
446 |
* |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
447 |
* @throws SecurityException if the caller does not have permission |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
448 |
* to get a {@code Policy} instance for the specified type |
2 | 449 |
* |
450 |
* @see Provider |
|
451 |
* @since 1.6 |
|
452 |
*/ |
|
453 |
public static Policy getInstance(String type, |
|
454 |
Policy.Parameters params, |
|
455 |
String provider) |
|
456 |
throws NoSuchProviderException, NoSuchAlgorithmException { |
|
457 |
||
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
458 |
Objects.requireNonNull(type, "null type name"); |
53018
8bf9268df0e2
8215281: Use String.isEmpty() when applicable in java.base
redestad
parents:
47216
diff
changeset
|
459 |
if (provider == null || provider.isEmpty()) { |
2 | 460 |
throw new IllegalArgumentException("missing provider"); |
461 |
} |
|
462 |
||
463 |
checkPermission(type); |
|
464 |
try { |
|
465 |
GetInstance.Instance instance = GetInstance.getInstance("Policy", |
|
466 |
PolicySpi.class, |
|
467 |
type, |
|
468 |
params, |
|
469 |
provider); |
|
470 |
return new PolicyDelegate((PolicySpi)instance.impl, |
|
471 |
instance.provider, |
|
472 |
type, |
|
473 |
params); |
|
474 |
} catch (NoSuchAlgorithmException nsae) { |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
475 |
return handleException(nsae); |
2 | 476 |
} |
477 |
} |
|
478 |
||
479 |
/** |
|
480 |
* Returns a Policy object of the specified type. |
|
481 |
* |
|
482 |
* <p> A new Policy object encapsulating the |
|
483 |
* PolicySpi implementation from the specified Provider |
|
484 |
* object is returned. Note that the specified Provider object |
|
485 |
* does not have to be registered in the provider list. |
|
486 |
* |
|
8152
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
487 |
* @param type the specified Policy type. See the Policy section in the |
94e5966bdf22
5001004: Required Security Algorithms need to be defined
mullan
parents:
5506
diff
changeset
|
488 |
* <a href= |
45118
e4258d800b54
8178278: Move Standard Algorithm Names document to specs directory
ihse
parents:
42951
diff
changeset
|
489 |
* "{@docRoot}/../specs/security/standard-names.html#policy-types"> |
e4258d800b54
8178278: Move Standard Algorithm Names document to specs directory
ihse
parents:
42951
diff
changeset
|
490 |
* Java Security Standard Algorithm Names Specification</a> |
2 | 491 |
* for a list of standard Policy types. |
492 |
* |
|
493 |
* @param params parameters for the Policy, which may be null. |
|
494 |
* |
|
495 |
* @param provider the Provider. |
|
496 |
* |
|
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
497 |
* @return the new {@code Policy} object |
2 | 498 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
499 |
* @throws IllegalArgumentException if the specified {@code Provider} |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
500 |
* is {@code null}, or if the specified parameters are not |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
501 |
* understood by the {@code PolicySpi} implementation from the |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
502 |
* specified {@code Provider} |
2 | 503 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
504 |
* @throws NoSuchAlgorithmException if the specified {@code Provider} |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
505 |
* does not support a {@code PolicySpi} implementation for |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
506 |
* the specified type |
2 | 507 |
* |
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
508 |
* @throws NullPointerException if {@code type} is {@code null} |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
509 |
* |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
510 |
* @throws SecurityException if the caller does not have permission |
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
511 |
* to get a {@code Policy} instance for the specified type |
2 | 512 |
* |
513 |
* @see Provider |
|
514 |
* @since 1.6 |
|
515 |
*/ |
|
516 |
public static Policy getInstance(String type, |
|
517 |
Policy.Parameters params, |
|
518 |
Provider provider) |
|
519 |
throws NoSuchAlgorithmException { |
|
520 |
||
41826
b35ee9b35b09
4985694: Incomplete spec for most of the getInstances
wetmore
parents:
37782
diff
changeset
|
521 |
Objects.requireNonNull(type, "null type name"); |
2 | 522 |
if (provider == null) { |
523 |
throw new IllegalArgumentException("missing provider"); |
|
524 |
} |
|
525 |
||
526 |
checkPermission(type); |
|
527 |
try { |
|
528 |
GetInstance.Instance instance = GetInstance.getInstance("Policy", |
|
529 |
PolicySpi.class, |
|
530 |
type, |
|
531 |
params, |
|
532 |
provider); |
|
533 |
return new PolicyDelegate((PolicySpi)instance.impl, |
|
534 |
instance.provider, |
|
535 |
type, |
|
536 |
params); |
|
537 |
} catch (NoSuchAlgorithmException nsae) { |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
538 |
return handleException(nsae); |
2 | 539 |
} |
540 |
} |
|
541 |
||
542 |
private static Policy handleException(NoSuchAlgorithmException nsae) |
|
543 |
throws NoSuchAlgorithmException { |
|
544 |
Throwable cause = nsae.getCause(); |
|
545 |
if (cause instanceof IllegalArgumentException) { |
|
546 |
throw (IllegalArgumentException)cause; |
|
547 |
} |
|
548 |
throw nsae; |
|
549 |
} |
|
550 |
||
551 |
/** |
|
552 |
* Return the Provider of this Policy. |
|
553 |
* |
|
554 |
* <p> This Policy instance will only have a Provider if it |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
555 |
* was obtained via a call to {@code Policy.getInstance}. |
2 | 556 |
* Otherwise this method returns null. |
557 |
* |
|
558 |
* @return the Provider of this Policy, or null. |
|
559 |
* |
|
560 |
* @since 1.6 |
|
561 |
*/ |
|
562 |
public Provider getProvider() { |
|
563 |
return null; |
|
564 |
} |
|
565 |
||
566 |
/** |
|
567 |
* Return the type of this Policy. |
|
568 |
* |
|
569 |
* <p> This Policy instance will only have a type if it |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
570 |
* was obtained via a call to {@code Policy.getInstance}. |
2 | 571 |
* Otherwise this method returns null. |
572 |
* |
|
573 |
* @return the type of this Policy, or null. |
|
574 |
* |
|
575 |
* @since 1.6 |
|
576 |
*/ |
|
577 |
public String getType() { |
|
578 |
return null; |
|
579 |
} |
|
580 |
||
581 |
/** |
|
582 |
* Return Policy parameters. |
|
583 |
* |
|
584 |
* <p> This Policy instance will only have parameters if it |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
585 |
* was obtained via a call to {@code Policy.getInstance}. |
2 | 586 |
* Otherwise this method returns null. |
587 |
* |
|
588 |
* @return Policy parameters, or null. |
|
589 |
* |
|
590 |
* @since 1.6 |
|
591 |
*/ |
|
592 |
public Policy.Parameters getParameters() { |
|
593 |
return null; |
|
594 |
} |
|
595 |
||
596 |
/** |
|
597 |
* Return a PermissionCollection object containing the set of |
|
598 |
* permissions granted to the specified CodeSource. |
|
599 |
* |
|
600 |
* <p> Applications are discouraged from calling this method |
|
601 |
* since this operation may not be supported by all policy implementations. |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
602 |
* Applications should solely rely on the {@code implies} method |
2 | 603 |
* to perform policy checks. If an application absolutely must call |
604 |
* a getPermissions method, it should call |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
605 |
* {@code getPermissions(ProtectionDomain)}. |
2 | 606 |
* |
607 |
* <p> The default implementation of this method returns |
|
608 |
* Policy.UNSUPPORTED_EMPTY_COLLECTION. This method can be |
|
609 |
* overridden if the policy implementation can return a set of |
|
610 |
* permissions granted to a CodeSource. |
|
611 |
* |
|
612 |
* @param codesource the CodeSource to which the returned |
|
613 |
* PermissionCollection has been granted. |
|
614 |
* |
|
615 |
* @return a set of permissions granted to the specified CodeSource. |
|
616 |
* If this operation is supported, the returned |
|
617 |
* set of permissions must be a new mutable instance |
|
618 |
* and it must support heterogeneous Permission types. |
|
619 |
* If this operation is not supported, |
|
620 |
* Policy.UNSUPPORTED_EMPTY_COLLECTION is returned. |
|
621 |
*/ |
|
622 |
public PermissionCollection getPermissions(CodeSource codesource) { |
|
623 |
return Policy.UNSUPPORTED_EMPTY_COLLECTION; |
|
624 |
} |
|
625 |
||
626 |
/** |
|
627 |
* Return a PermissionCollection object containing the set of |
|
628 |
* permissions granted to the specified ProtectionDomain. |
|
629 |
* |
|
630 |
* <p> Applications are discouraged from calling this method |
|
631 |
* since this operation may not be supported by all policy implementations. |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
632 |
* Applications should rely on the {@code implies} method |
2 | 633 |
* to perform policy checks. |
634 |
* |
|
635 |
* <p> The default implementation of this method first retrieves |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
636 |
* the permissions returned via {@code getPermissions(CodeSource)} |
2 | 637 |
* (the CodeSource is taken from the specified ProtectionDomain), |
638 |
* as well as the permissions located inside the specified ProtectionDomain. |
|
639 |
* All of these permissions are then combined and returned in a new |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
640 |
* PermissionCollection object. If {@code getPermissions(CodeSource)} |
2 | 641 |
* returns Policy.UNSUPPORTED_EMPTY_COLLECTION, then this method |
642 |
* returns the permissions contained inside the specified ProtectionDomain |
|
643 |
* in a new PermissionCollection object. |
|
644 |
* |
|
645 |
* <p> This method can be overridden if the policy implementation |
|
646 |
* supports returning a set of permissions granted to a ProtectionDomain. |
|
647 |
* |
|
648 |
* @param domain the ProtectionDomain to which the returned |
|
649 |
* PermissionCollection has been granted. |
|
650 |
* |
|
651 |
* @return a set of permissions granted to the specified ProtectionDomain. |
|
652 |
* If this operation is supported, the returned |
|
653 |
* set of permissions must be a new mutable instance |
|
654 |
* and it must support heterogeneous Permission types. |
|
655 |
* If this operation is not supported, |
|
656 |
* Policy.UNSUPPORTED_EMPTY_COLLECTION is returned. |
|
657 |
* |
|
658 |
* @since 1.4 |
|
659 |
*/ |
|
660 |
public PermissionCollection getPermissions(ProtectionDomain domain) { |
|
661 |
PermissionCollection pc = null; |
|
662 |
||
663 |
if (domain == null) |
|
664 |
return new Permissions(); |
|
665 |
||
666 |
if (pdMapping == null) { |
|
667 |
initPolicy(this); |
|
668 |
} |
|
669 |
||
670 |
synchronized (pdMapping) { |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
671 |
pc = pdMapping.get(domain.key); |
2 | 672 |
} |
673 |
||
674 |
if (pc != null) { |
|
675 |
Permissions perms = new Permissions(); |
|
676 |
synchronized (pc) { |
|
677 |
for (Enumeration<Permission> e = pc.elements() ; e.hasMoreElements() ;) { |
|
678 |
perms.add(e.nextElement()); |
|
679 |
} |
|
680 |
} |
|
681 |
return perms; |
|
682 |
} |
|
683 |
||
684 |
pc = getPermissions(domain.getCodeSource()); |
|
685 |
if (pc == null || pc == UNSUPPORTED_EMPTY_COLLECTION) { |
|
686 |
pc = new Permissions(); |
|
687 |
} |
|
688 |
||
689 |
addStaticPerms(pc, domain.getPermissions()); |
|
690 |
return pc; |
|
691 |
} |
|
692 |
||
693 |
/** |
|
694 |
* add static permissions to provided permission collection |
|
695 |
*/ |
|
696 |
private void addStaticPerms(PermissionCollection perms, |
|
697 |
PermissionCollection statics) { |
|
698 |
if (statics != null) { |
|
699 |
synchronized (statics) { |
|
700 |
Enumeration<Permission> e = statics.elements(); |
|
701 |
while (e.hasMoreElements()) { |
|
702 |
perms.add(e.nextElement()); |
|
703 |
} |
|
704 |
} |
|
705 |
} |
|
706 |
} |
|
707 |
||
708 |
/** |
|
709 |
* Evaluates the global policy for the permissions granted to |
|
710 |
* the ProtectionDomain and tests whether the permission is |
|
711 |
* granted. |
|
712 |
* |
|
713 |
* @param domain the ProtectionDomain to test |
|
714 |
* @param permission the Permission object to be tested for implication. |
|
715 |
* |
|
716 |
* @return true if "permission" is a proper subset of a permission |
|
717 |
* granted to this ProtectionDomain. |
|
718 |
* |
|
719 |
* @see java.security.ProtectionDomain |
|
720 |
* @since 1.4 |
|
721 |
*/ |
|
722 |
public boolean implies(ProtectionDomain domain, Permission permission) { |
|
723 |
PermissionCollection pc; |
|
724 |
||
725 |
if (pdMapping == null) { |
|
726 |
initPolicy(this); |
|
727 |
} |
|
728 |
||
729 |
synchronized (pdMapping) { |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
730 |
pc = pdMapping.get(domain.key); |
2 | 731 |
} |
732 |
||
733 |
if (pc != null) { |
|
734 |
return pc.implies(permission); |
|
735 |
} |
|
736 |
||
737 |
pc = getPermissions(domain); |
|
738 |
if (pc == null) { |
|
739 |
return false; |
|
740 |
} |
|
741 |
||
742 |
synchronized (pdMapping) { |
|
743 |
// cache it |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
744 |
pdMapping.put(domain.key, pc); |
2 | 745 |
} |
746 |
||
747 |
return pc.implies(permission); |
|
748 |
} |
|
749 |
||
750 |
/** |
|
751 |
* Refreshes/reloads the policy configuration. The behavior of this method |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
752 |
* depends on the implementation. For example, calling {@code refresh} |
2 | 753 |
* on a file-based policy will cause the file to be re-read. |
754 |
* |
|
755 |
* <p> The default implementation of this method does nothing. |
|
756 |
* This method should be overridden if a refresh operation is supported |
|
757 |
* by the policy implementation. |
|
758 |
*/ |
|
759 |
public void refresh() { } |
|
760 |
||
761 |
/** |
|
762 |
* This subclass is returned by the getInstance calls. All Policy calls |
|
763 |
* are delegated to the underlying PolicySpi. |
|
764 |
*/ |
|
765 |
private static class PolicyDelegate extends Policy { |
|
766 |
||
767 |
private PolicySpi spi; |
|
768 |
private Provider p; |
|
769 |
private String type; |
|
770 |
private Policy.Parameters params; |
|
771 |
||
772 |
private PolicyDelegate(PolicySpi spi, Provider p, |
|
773 |
String type, Policy.Parameters params) { |
|
774 |
this.spi = spi; |
|
775 |
this.p = p; |
|
776 |
this.type = type; |
|
777 |
this.params = params; |
|
778 |
} |
|
779 |
||
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
780 |
@Override public String getType() { return type; } |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
781 |
|
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
782 |
@Override public Policy.Parameters getParameters() { return params; } |
2 | 783 |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
784 |
@Override public Provider getProvider() { return p; } |
2 | 785 |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
786 |
@Override |
2 | 787 |
public PermissionCollection getPermissions(CodeSource codesource) { |
788 |
return spi.engineGetPermissions(codesource); |
|
789 |
} |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
790 |
@Override |
2 | 791 |
public PermissionCollection getPermissions(ProtectionDomain domain) { |
792 |
return spi.engineGetPermissions(domain); |
|
793 |
} |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
794 |
@Override |
2 | 795 |
public boolean implies(ProtectionDomain domain, Permission perm) { |
796 |
return spi.engineImplies(domain, perm); |
|
797 |
} |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
798 |
@Override |
2 | 799 |
public void refresh() { |
800 |
spi.engineRefresh(); |
|
801 |
} |
|
802 |
} |
|
803 |
||
804 |
/** |
|
805 |
* This represents a marker interface for Policy parameters. |
|
806 |
* |
|
807 |
* @since 1.6 |
|
808 |
*/ |
|
809 |
public static interface Parameters { } |
|
810 |
||
811 |
/** |
|
812 |
* This class represents a read-only empty PermissionCollection object that |
|
18579
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
813 |
* is returned from the {@code getPermissions(CodeSource)} and |
b678846778ad
8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents:
14775
diff
changeset
|
814 |
* {@code getPermissions(ProtectionDomain)} |
2 | 815 |
* methods in the Policy class when those operations are not |
816 |
* supported by the Policy implementation. |
|
817 |
*/ |
|
818 |
private static class UnsupportedEmptyCollection |
|
819 |
extends PermissionCollection { |
|
820 |
||
57950
4612a3cfb927
8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents:
53018
diff
changeset
|
821 |
@java.io.Serial |
10336
0bb1999251f8
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
9035
diff
changeset
|
822 |
private static final long serialVersionUID = -8492269157353014774L; |
0bb1999251f8
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents:
9035
diff
changeset
|
823 |
|
2 | 824 |
private Permissions perms; |
825 |
||
826 |
/** |
|
827 |
* Create a read-only empty PermissionCollection object. |
|
828 |
*/ |
|
829 |
public UnsupportedEmptyCollection() { |
|
830 |
this.perms = new Permissions(); |
|
831 |
perms.setReadOnly(); |
|
832 |
} |
|
833 |
||
834 |
/** |
|
835 |
* Adds a permission object to the current collection of permission |
|
836 |
* objects. |
|
837 |
* |
|
838 |
* @param permission the Permission object to add. |
|
839 |
* |
|
840 |
* @exception SecurityException - if this PermissionCollection object |
|
841 |
* has been marked readonly |
|
842 |
*/ |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
843 |
@Override public void add(Permission permission) { |
2 | 844 |
perms.add(permission); |
845 |
} |
|
846 |
||
847 |
/** |
|
848 |
* Checks to see if the specified permission is implied by the |
|
849 |
* collection of Permission objects held in this PermissionCollection. |
|
850 |
* |
|
851 |
* @param permission the Permission object to compare. |
|
852 |
* |
|
11034
6ec8b7a32dbc
7093090: Reduce synchronization in java.security.Policy.getPolicyNoCheck
mullan
parents:
10336
diff
changeset
|
853 |
* @return true if "permission" is implied by the permissions in |
2 | 854 |
* the collection, false if not. |
855 |
*/ |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
856 |
@Override public boolean implies(Permission permission) { |
2 | 857 |
return perms.implies(permission); |
858 |
} |
|
859 |
||
860 |
/** |
|
861 |
* Returns an enumeration of all the Permission objects in the |
|
862 |
* collection. |
|
863 |
* |
|
864 |
* @return an enumeration of all the Permissions. |
|
865 |
*/ |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
866 |
@Override public Enumeration<Permission> elements() { |
2 | 867 |
return perms.elements(); |
868 |
} |
|
869 |
} |
|
870 |
} |