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