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