jdk/src/share/classes/java/security/Permissions.java
author juh
Fri, 28 Jun 2013 10:48:02 -0700
changeset 18579 b678846778ad
parent 10336 0bb1999251f8
permissions -rw-r--r--
8019360: Cleanup of the javadoc <code> tag in java.security.* Summary: Convert to {@code ...} tags. convert package.html to package-info.java. Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.NoSuchElementException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Collections;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.io.ObjectStreamField;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.io.ObjectOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.io.ObjectInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * This class represents a heterogeneous collection of Permissions. That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * it contains different types of Permission objects, organized into
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * PermissionCollections. For example, if any
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    47
 * {@code java.io.FilePermission} objects are added to an instance of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * this class, they are all stored in a single
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * PermissionCollection. It is the PermissionCollection returned by a call to
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    50
 * the {@code newPermissionCollection} method in the FilePermission class.
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    51
 * Similarly, any {@code java.lang.RuntimePermission} objects are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * stored in the PermissionCollection returned by a call to the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    53
 * {@code newPermissionCollection} method in the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * RuntimePermission class. Thus, this class represents a collection of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * PermissionCollections.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    57
 * <p>When the {@code add} method is called to add a Permission, the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * Permission is stored in the appropriate PermissionCollection. If no such
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * collection exists yet, the Permission object's class is determined and the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    60
 * {@code newPermissionCollection} method is called on that class to create
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * the PermissionCollection and add it to the Permissions object. If
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    62
 * {@code newPermissionCollection} returns null, then a default
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * PermissionCollection that uses a hashtable will be created and used. Each
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * hashtable entry stores a Permission object as both the key and the value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
    66
 * <p> Enumerations returned via the {@code elements} method are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * not <em>fail-fast</em>.  Modifications to a collection should not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * performed while enumerating over that collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * @see Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * @see PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * @see AllPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * @author Marianne Mueller
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * @author Roland Schemers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * @serial exclude
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
public final class Permissions extends PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
implements Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Key is permissions Class, value is PermissionCollection for that class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * Not serialized; see serialization section at end of class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private transient Map<Class<?>, PermissionCollection> permsMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    // optimization. keep track of whether unresolved permissions need to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    // checked
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private transient boolean hasUnresolved = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    // optimization. keep track of the AllPermission collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    // - package private for ProtectionDomain optimization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    PermissionCollection allPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * Creates a new Permissions object containing no PermissionCollections.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public Permissions() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        permsMap = new HashMap<Class<?>, PermissionCollection>(11);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        allPermission = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * Adds a permission object to the PermissionCollection for the class the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * permission belongs to. For example, if <i>permission</i> is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * FilePermission, it is added to the FilePermissionCollection stored
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * in this Permissions object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * This method creates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * a new PermissionCollection object (and adds the permission to it)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * if an appropriate collection does not yet exist. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @param permission the Permission object to add.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @exception SecurityException if this Permissions object is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * marked as readonly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @see PermissionCollection#isReadOnly()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    public void add(Permission permission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        if (isReadOnly())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            throw new SecurityException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
              "attempt to add a Permission to a readonly Permissions object");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        PermissionCollection pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            pc = getPermissionCollection(permission, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            pc.add(permission);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        // No sync; staleness -> optimizations delayed, which is OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        if (permission instanceof AllPermission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            allPermission = pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        if (permission instanceof UnresolvedPermission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            hasUnresolved = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * Checks to see if this object's PermissionCollection for permissions of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * the specified permission's class implies the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * expressed in the <i>permission</i> object. Returns true if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * combination of permissions in the appropriate PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * (e.g., a FilePermissionCollection for a FilePermission) together
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * imply the specified permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * <p>For example, suppose there is a FilePermissionCollection in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * Permissions object, and it contains one FilePermission that specifies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * "read" access for  all files in all subdirectories of the "/tmp"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * directory, and another FilePermission that specifies "write" access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * for all files in the "/tmp/scratch/foo" directory.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   158
     * Then if the {@code implies} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * is called with a permission specifying both "read" and "write" access
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   160
     * to files in the "/tmp/scratch/foo" directory, {@code true} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * <p>Additionally, if this PermissionCollection contains the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * AllPermission, this method will always return true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @param permission the Permission object to check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @return true if "permission" is implied by the permissions in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * PermissionCollection it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * belongs to, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public boolean implies(Permission permission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        // No sync; staleness -> skip optimization, which is OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        if (allPermission != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            return true; // AllPermission has already been added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                PermissionCollection pc = getPermissionCollection(permission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                    false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                if (pc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                    return pc.implies(permission);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                    // none found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Returns an enumeration of all the Permission objects in all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * PermissionCollections in this Permissions object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @return an enumeration of all the Permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    public Enumeration<Permission> elements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        // go through each Permissions in the hash table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        // and call their elements() function.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            return new PermissionsEnumerator(permsMap.values().iterator());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * Gets the PermissionCollection in this Permissions object for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * permissions whose type is the same as that of <i>p</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * For example, if <i>p</i> is a FilePermission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * the FilePermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * stored in this Permissions object will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * If createEmpty is true,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * this method creates a new PermissionCollection object for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * type of permission objects if one does not yet exist.
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   217
     * To do so, it first calls the {@code newPermissionCollection} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * on <i>p</i>.  Subclasses of class Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * override that method if they need to store their permissions in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * particular PermissionCollection object in order to provide the
18579
b678846778ad 8019360: Cleanup of the javadoc <code> tag in java.security.*
juh
parents: 10336
diff changeset
   221
     * correct semantics when the {@code PermissionCollection.implies}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * method is called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * If the call returns a PermissionCollection, that collection is stored
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * in this Permissions object. If the call returns null and createEmpty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * is true, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * this method instantiates and stores a default PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * that uses a hashtable to store its permission objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * createEmpty is ignored when creating empty PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * for unresolved permissions because of the overhead of determining the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * PermissionCollection to use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * createEmpty should be set to false when this method is invoked from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * implies() because it incurs the additional overhead of creating and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * adding an empty PermissionCollection that will just return false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * It should be set to true when invoked from add().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    private PermissionCollection getPermissionCollection(Permission p,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        boolean createEmpty) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   240
        Class<?> c = p.getClass();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        PermissionCollection pc = permsMap.get(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        if (!hasUnresolved && !createEmpty) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            return pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        } else if (pc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            // Check for unresolved permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            pc = (hasUnresolved ? getUnresolvedPermissions(p) : null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            // if still null, create a new collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            if (pc == null && createEmpty) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                pc = p.newPermissionCollection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                // still no PermissionCollection?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                // We'll give them a PermissionsHash.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                if (pc == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                    pc = new PermissionsHash();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            if (pc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                permsMap.put(c, pc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        return pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * Resolves any unresolved permissions of type p.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @param p the type of unresolved permission to resolve
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @return PermissionCollection containing the unresolved permissions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *  or null if there were no unresolved permissions of type p.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    private PermissionCollection getUnresolvedPermissions(Permission p)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        // Called from within synchronized method so permsMap doesn't need lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        UnresolvedPermissionCollection uc =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        (UnresolvedPermissionCollection) permsMap.get(UnresolvedPermission.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        // we have no unresolved permissions if uc is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        if (uc == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        List<UnresolvedPermission> unresolvedPerms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                                        uc.getUnresolvedPermissions(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        // we have no unresolved permissions of this type if unresolvedPerms is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        if (unresolvedPerms == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        java.security.cert.Certificate certs[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        Object signers[] = p.getClass().getSigners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        if (signers != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            for (int j=0; j < signers.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                if (signers[j] instanceof java.security.cert.Certificate) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                    n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            certs = new java.security.cert.Certificate[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
            for (int j=0; j < signers.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                if (signers[j] instanceof java.security.cert.Certificate) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                    certs[n++] = (java.security.cert.Certificate)signers[j];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        PermissionCollection pc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        synchronized (unresolvedPerms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            int len = unresolvedPerms.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                UnresolvedPermission up = unresolvedPerms.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                Permission perm = up.resolve(p, certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                if (perm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                    if (pc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                        pc = p.newPermissionCollection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                        if (pc == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                            pc = new PermissionsHash();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                    pc.add(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        return pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    private static final long serialVersionUID = 4858622370623524688L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    // Need to maintain serialization interoperability with earlier releases,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    // which had the serializable field:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    // private Hashtable perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @serialField perms java.util.Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *     A table of the Permission classes and PermissionCollections.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @serialField allPermission java.security.PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    private static final ObjectStreamField[] serialPersistentFields = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        new ObjectStreamField("perms", Hashtable.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        new ObjectStreamField("allPermission", PermissionCollection.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * @serialData Default fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * Writes the contents of the permsMap field out as a Hashtable for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * serialization compatibility with earlier releases. allPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * unchanged.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    private void writeObject(ObjectOutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        // Don't call out.defaultWriteObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        // Copy perms into a Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        Hashtable<Class<?>, PermissionCollection> perms =
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
   364
            new Hashtable<>(permsMap.size()*2); // no sync; estimate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            perms.putAll(permsMap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        // Write out serializable fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        ObjectOutputStream.PutField pfields = out.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        pfields.put("allPermission", allPermission); // no sync; staleness OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        pfields.put("perms", perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        out.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * Reads in a Hashtable of Class/PermissionCollections and saves them in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * permsMap field. Reads in allPermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    private void readObject(ObjectInputStream in) throws IOException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        // Don't call defaultReadObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        // Read in serialized fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        ObjectInputStream.GetField gfields = in.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        // Get allPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        allPermission = (PermissionCollection) gfields.get("allPermission", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        // Get permissions
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   392
        // writeObject writes a Hashtable<Class<?>, PermissionCollection> for
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   393
        // the perms key, so this cast is safe, unless the data is corrupt.
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   394
        @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        Hashtable<Class<?>, PermissionCollection> perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            (Hashtable<Class<?>, PermissionCollection>)gfields.get("perms", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        permsMap = new HashMap<Class<?>, PermissionCollection>(perms.size()*2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        permsMap.putAll(perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        // Set hasUnresolved
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        UnresolvedPermissionCollection uc =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        (UnresolvedPermissionCollection) permsMap.get(UnresolvedPermission.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        hasUnresolved = (uc != null && uc.elements().hasMoreElements());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
final class PermissionsEnumerator implements Enumeration<Permission> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    // all the perms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    private Iterator<PermissionCollection> perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    // the current set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    private Enumeration<Permission> permset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    PermissionsEnumerator(Iterator<PermissionCollection> e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        perms = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        permset = getNextEnumWithMore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    // No need to synchronize; caller should sync on object as required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        // if we enter with permissionimpl null, we know
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        // there are no more left.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        if (permset == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
            return  false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        // try to see if there are any left in the current one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        if (permset.hasMoreElements())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        // get the next one that has something in it...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        permset = getNextEnumWithMore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        // if it is null, we are done!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        return (permset != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    // No need to synchronize; caller should sync on object as required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    public Permission nextElement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        // hasMoreElements will update permset to the next permset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        // with something in it...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        if (hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            return permset.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            throw new NoSuchElementException("PermissionsEnumerator");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    private Enumeration<Permission> getNextEnumWithMore() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        while (perms.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
            PermissionCollection pc = perms.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            Enumeration<Permission> next =pc.elements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
            if (next.hasMoreElements())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    }
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
 * A PermissionsHash stores a homogeneous set of permissions in a hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
 * @see Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
 * @see Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
 * @author Roland Schemers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
 * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
final class PermissionsHash extends PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
implements Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * Key and value are (same) permissions objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * Not serialized; see serialization section at end of class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    private transient Map<Permission, Permission> permsMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * Create an empty PermissionsHash object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    PermissionsHash() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        permsMap = new HashMap<Permission, Permission>(11);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * Adds a permission to the PermissionsHash.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @param permission the Permission object to add.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    public void add(Permission permission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            permsMap.put(permission, permission);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * Check and see if this set of permissions implies the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * expressed in "permission".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * @param permission the Permission object to compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * @return true if "permission" is a proper subset of a permission in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * the set, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    public boolean implies(Permission permission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        // attempt a fast lookup and implies. If that fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        // then enumerate through all the permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            Permission p = permsMap.get(permission);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            // If permission is found, then p.equals(permission)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            if (p == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                for (Permission p_ : permsMap.values()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                    if (p_.implies(permission))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        }
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
     * Returns an enumeration of all the Permission objects in the container.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * @return an enumeration of all the Permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    public Enumeration<Permission> elements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        // Convert Iterator of Map values into an Enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            return Collections.enumeration(permsMap.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    private static final long serialVersionUID = -8491988220802933440L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    // Need to maintain serialization interoperability with earlier releases,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    // which had the serializable field:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    // private Hashtable perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @serialField perms java.util.Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *     A table of the Permissions (both key and value are same).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    private static final ObjectStreamField[] serialPersistentFields = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        new ObjectStreamField("perms", Hashtable.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @serialData Default fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * Writes the contents of the permsMap field out as a Hashtable for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * serialization compatibility with earlier releases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    private void writeObject(ObjectOutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        // Don't call out.defaultWriteObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        // Copy perms into a Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        Hashtable<Permission, Permission> perms =
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
   572
                new Hashtable<>(permsMap.size()*2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            perms.putAll(permsMap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        // Write out serializable fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        ObjectOutputStream.PutField pfields = out.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        pfields.put("perms", perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        out.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * Reads in a Hashtable of Permission/Permission and saves them in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * permsMap field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    private void readObject(ObjectInputStream in) throws IOException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        // Don't call defaultReadObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        // Read in serialized fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        ObjectInputStream.GetField gfields = in.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        // Get permissions
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   595
        // writeObject writes a Hashtable<Class<?>, PermissionCollection> for
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   596
        // the perms key, so this cast is safe, unless the data is corrupt.
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   597
        @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        Hashtable<Permission, Permission> perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                (Hashtable<Permission, Permission>)gfields.get("perms", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        permsMap = new HashMap<Permission, Permission>(perms.size()*2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        permsMap.putAll(perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
}