src/java.base/share/classes/java/security/Permissions.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58242 94bb65cb37d3
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54472
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
54472
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    28
import java.io.InvalidObjectException;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    29
import java.io.IOException;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    30
import java.io.ObjectInputStream;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    31
import java.io.ObjectOutputStream;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    32
import java.io.ObjectStreamField;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    33
import java.io.Serializable;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.Enumeration;
54472
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    35
import java.util.HashMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.Iterator;
54472
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    38
import java.util.List;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    39
import java.util.Map;
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
    40
import java.util.NoSuchElementException;
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
    41
import java.util.concurrent.ConcurrentHashMap;
2
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
45434
4582657c7260 8181082: class-level since tag issues in java.base & java.datatransfer module
mli
parents: 31538
diff changeset
    77
 * @since 1.2
2
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
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
    89
    private transient ConcurrentHashMap<Class<?>, PermissionCollection> permsMap;
2
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() {
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   103
        permsMap = new ConcurrentHashMap<>(11);
2
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)
29492
a4bf9a570035 8028266: Tidy warnings cleanup for packages java.security/javax.security
avstepan
parents: 25859
diff changeset
   115
     * if an appropriate collection does not yet exist.
2
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
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57950
diff changeset
   119
     * @throws    SecurityException if this Permissions object is
2
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
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   124
    @Override
2
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
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   130
        PermissionCollection pc = getPermissionCollection(permission, true);
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   131
        pc.add(permission);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        // No sync; staleness -> optimizations delayed, which is OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        if (permission instanceof AllPermission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            allPermission = pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        if (permission instanceof UnresolvedPermission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            hasUnresolved = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Checks to see if this object's PermissionCollection for permissions of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * the specified permission's class implies the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * expressed in the <i>permission</i> object. Returns true if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * combination of permissions in the appropriate PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * (e.g., a FilePermissionCollection for a FilePermission) together
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * imply the specified permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * <p>For example, suppose there is a FilePermissionCollection in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * Permissions object, and it contains one FilePermission that specifies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * "read" access for  all files in all subdirectories of the "/tmp"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * directory, and another FilePermission that specifies "write" access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * 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
   155
     * Then if the {@code implies} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * 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
   157
     * to files in the "/tmp/scratch/foo" directory, {@code true} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * <p>Additionally, if this PermissionCollection contains the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * AllPermission, this method will always return true.
29492
a4bf9a570035 8028266: Tidy warnings cleanup for packages java.security/javax.security
avstepan
parents: 25859
diff changeset
   162
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @param permission the Permission object to check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @return true if "permission" is implied by the permissions in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * PermissionCollection it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * belongs to, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   169
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    public boolean implies(Permission permission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        // No sync; staleness -> skip optimization, which is OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        if (allPermission != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            return true; // AllPermission has already been added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        } else {
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   175
            PermissionCollection pc = getPermissionCollection(permission,
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   176
                false);
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   177
            if (pc != null) {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   178
                return pc.implies(permission);
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   179
            } else {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   180
                // none found
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   181
                return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Returns an enumeration of all the Permission objects in all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * PermissionCollections in this Permissions object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @return an enumeration of all the Permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   192
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public Enumeration<Permission> elements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        // go through each Permissions in the hash table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        // and call their elements() function.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   197
        return new PermissionsEnumerator(permsMap.values().iterator());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Gets the PermissionCollection in this Permissions object for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * permissions whose type is the same as that of <i>p</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * For example, if <i>p</i> is a FilePermission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * the FilePermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * stored in this Permissions object will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * If createEmpty is true,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * this method creates a new PermissionCollection object for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * 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
   210
     * To do so, it first calls the {@code newPermissionCollection} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * on <i>p</i>.  Subclasses of class Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * override that method if they need to store their permissions in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * 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
   214
     * correct semantics when the {@code PermissionCollection.implies}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * method is called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * If the call returns a PermissionCollection, that collection is stored
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * in this Permissions object. If the call returns null and createEmpty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * is true, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * this method instantiates and stores a default PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * that uses a hashtable to store its permission objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * createEmpty is ignored when creating empty PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * for unresolved permissions because of the overhead of determining the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * PermissionCollection to use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * createEmpty should be set to false when this method is invoked from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * implies() because it incurs the additional overhead of creating and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * adding an empty PermissionCollection that will just return false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * It should be set to true when invoked from add().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    private PermissionCollection getPermissionCollection(Permission p,
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   232
                                                         boolean createEmpty) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   233
        Class<?> c = p.getClass();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        if (!hasUnresolved && !createEmpty) {
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   236
            return permsMap.get(c);
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   237
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   239
        // Create and add permission collection to map if it is absent.
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   240
        // NOTE: cannot use lambda for mappingFunction parameter until
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   241
        // JDK-8076596 is fixed.
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   242
        return permsMap.computeIfAbsent(c,
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   243
            new java.util.function.Function<>() {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   244
                @Override
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   245
                public PermissionCollection apply(Class<?> k) {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   246
                    // Check for unresolved permissions
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   247
                    PermissionCollection pc =
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   248
                        (hasUnresolved ? getUnresolvedPermissions(p) : null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   250
                    // if still null, create a new collection
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   251
                    if (pc == null && createEmpty) {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   252
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   253
                        pc = p.newPermissionCollection();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   255
                        // still no PermissionCollection?
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   256
                        // We'll give them a PermissionsHash.
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   257
                        if (pc == null) {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   258
                            pc = new PermissionsHash();
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   259
                        }
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   260
                    }
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   261
                    return pc;
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   262
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            }
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   264
        );
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * Resolves any unresolved permissions of type p.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @param p the type of unresolved permission to resolve
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @return PermissionCollection containing the unresolved permissions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *  or null if there were no unresolved permissions of type p.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    private PermissionCollection getUnresolvedPermissions(Permission p)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        UnresolvedPermissionCollection uc =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        (UnresolvedPermissionCollection) permsMap.get(UnresolvedPermission.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        // we have no unresolved permissions if uc is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        if (uc == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        List<UnresolvedPermission> unresolvedPerms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                                        uc.getUnresolvedPermissions(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        // we have no unresolved permissions of this type if unresolvedPerms is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        if (unresolvedPerms == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 31080
diff changeset
   292
        java.security.cert.Certificate[] certs = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 31080
diff changeset
   294
        Object[] signers = p.getClass().getSigners();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        if (signers != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            for (int j=0; j < signers.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                if (signers[j] instanceof java.security.cert.Certificate) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                    n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            certs = new java.security.cert.Certificate[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            for (int j=0; j < signers.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                if (signers[j] instanceof java.security.cert.Certificate) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                    certs[n++] = (java.security.cert.Certificate)signers[j];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        PermissionCollection pc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        synchronized (unresolvedPerms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            int len = unresolvedPerms.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            for (int i = 0; i < len; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                UnresolvedPermission up = unresolvedPerms.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                Permission perm = up.resolve(p, certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                if (perm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                    if (pc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                        pc = p.newPermissionCollection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                        if (pc == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                            pc = new PermissionsHash();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                    pc.add(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        return pc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   331
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    private static final long serialVersionUID = 4858622370623524688L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    // Need to maintain serialization interoperability with earlier releases,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    // which had the serializable field:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    // private Hashtable perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @serialField perms java.util.Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *     A table of the Permission classes and PermissionCollections.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * @serialField allPermission java.security.PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   343
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    private static final ObjectStreamField[] serialPersistentFields = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        new ObjectStreamField("perms", Hashtable.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        new ObjectStreamField("allPermission", PermissionCollection.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @serialData Default fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * Writes the contents of the permsMap field out as a Hashtable for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * serialization compatibility with earlier releases. allPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * unchanged.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   357
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    private void writeObject(ObjectOutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        // Don't call out.defaultWriteObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        // Copy perms into a Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        Hashtable<Class<?>, PermissionCollection> perms =
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
   363
            new Hashtable<>(permsMap.size()*2); // no sync; estimate
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   364
        perms.putAll(permsMap);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        // Write out serializable fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        ObjectOutputStream.PutField pfields = out.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        pfields.put("allPermission", allPermission); // no sync; staleness OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        pfields.put("perms", perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        out.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * Reads in a Hashtable of Class/PermissionCollections and saves them in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * permsMap field. Reads in allPermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   378
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    private void readObject(ObjectInputStream in) throws IOException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        // Don't call defaultReadObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        // Read in serialized fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        ObjectInputStream.GetField gfields = in.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        // Get allPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        allPermission = (PermissionCollection) gfields.get("allPermission", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        // Get permissions
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   390
        // 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
   391
        // 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
   392
        @SuppressWarnings("unchecked")
2
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);
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   395
        permsMap = new ConcurrentHashMap<>(perms.size()*2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        permsMap.putAll(perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
54472
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   398
        // Check that Class is mapped to PermissionCollection containing
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   399
        // Permissions of the same class
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   400
        for (Map.Entry<Class<?>, PermissionCollection> e : perms.entrySet()) {
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   401
            Class<?> k = e.getKey();
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   402
            PermissionCollection v = e.getValue();
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   403
            Enumeration<Permission> en = v.elements();
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   404
            while (en.hasMoreElements()) {
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   405
                Permission p = en.nextElement();
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   406
                if (!k.equals(p.getClass())) {
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   407
                    throw new InvalidObjectException("Permission with class " +
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   408
                        k + " incorrectly mapped to PermissionCollection " +
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   409
                        "containing Permission with " + p.getClass());
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   410
                }
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   411
            }
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   412
        }
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   413
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        // Set hasUnresolved
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        UnresolvedPermissionCollection uc =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        (UnresolvedPermissionCollection) permsMap.get(UnresolvedPermission.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        hasUnresolved = (uc != null && uc.elements().hasMoreElements());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
final class PermissionsEnumerator implements Enumeration<Permission> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    // all the perms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    private Iterator<PermissionCollection> perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    // the current set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    private Enumeration<Permission> permset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    PermissionsEnumerator(Iterator<PermissionCollection> e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        perms = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        permset = getNextEnumWithMore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    // No need to synchronize; caller should sync on object as required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        // if we enter with permissionimpl null, we know
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        // there are no more left.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        if (permset == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            return  false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        // try to see if there are any left in the current one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        if (permset.hasMoreElements())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        // get the next one that has something in it...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        permset = getNextEnumWithMore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        // if it is null, we are done!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        return (permset != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    // No need to synchronize; caller should sync on object as required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    public Permission nextElement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        // hasMoreElements will update permset to the next permset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        // with something in it...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        if (hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
            return permset.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
            throw new NoSuchElementException("PermissionsEnumerator");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    private Enumeration<Permission> getNextEnumWithMore() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        while (perms.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            PermissionCollection pc = perms.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            Enumeration<Permission> next =pc.elements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            if (next.hasMoreElements())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
 * A PermissionsHash stores a homogeneous set of permissions in a hashtable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
 * @see Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
 * @see Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
 * @author Roland Schemers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
 * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
final class PermissionsHash extends PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
implements Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * Key and value are (same) permissions objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * Not serialized; see serialization section at end of class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   498
    private transient ConcurrentHashMap<Permission, Permission> permsMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * Create an empty PermissionsHash object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    PermissionsHash() {
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   504
        permsMap = new ConcurrentHashMap<>(11);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * Adds a permission to the PermissionsHash.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * @param permission the Permission object to add.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   512
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    public void add(Permission permission) {
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   514
        permsMap.put(permission, permission);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * Check and see if this set of permissions implies the permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * expressed in "permission".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @param permission the Permission object to compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @return true if "permission" is a proper subset of a permission in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * the set, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   526
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    public boolean implies(Permission permission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        // attempt a fast lookup and implies. If that fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        // then enumerate through all the permissions.
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   530
        Permission p = permsMap.get(permission);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   532
        // If permission is found, then p.equals(permission)
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   533
        if (p == null) {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   534
            for (Permission p_ : permsMap.values()) {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   535
                if (p_.implies(permission))
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   536
                    return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            }
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   538
            return false;
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   539
        } else {
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   540
            return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * Returns an enumeration of all the Permission objects in the container.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * @return an enumeration of all the Permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     */
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   549
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    public Enumeration<Permission> elements() {
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   551
        return permsMap.elements();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   554
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    private static final long serialVersionUID = -8491988220802933440L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    // Need to maintain serialization interoperability with earlier releases,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    // which had the serializable field:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    // private Hashtable perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * @serialField perms java.util.Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     *     A table of the Permissions (both key and value are same).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   563
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    private static final ObjectStreamField[] serialPersistentFields = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        new ObjectStreamField("perms", Hashtable.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * @serialData Default fields.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * Writes the contents of the permsMap field out as a Hashtable for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * serialization compatibility with earlier releases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   575
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    private void writeObject(ObjectOutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        // Don't call out.defaultWriteObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        // Copy perms into a Hashtable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        Hashtable<Permission, Permission> perms =
7970
af1579474d16 7008728: diamond conversion of basic security, permissions, authentication
smarks
parents: 5506
diff changeset
   581
                new Hashtable<>(permsMap.size()*2);
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   582
        perms.putAll(permsMap);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        // Write out serializable fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        ObjectOutputStream.PutField pfields = out.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        pfields.put("perms", perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        out.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * Reads in a Hashtable of Permission/Permission and saves them in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * permsMap field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 54472
diff changeset
   594
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    private void readObject(ObjectInputStream in) throws IOException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        // Don't call defaultReadObject()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        // Read in serialized fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        ObjectInputStream.GetField gfields = in.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        // Get permissions
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   603
        // 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
   604
        // 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
   605
        @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        Hashtable<Permission, Permission> perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                (Hashtable<Permission, Permission>)gfields.get("perms", null);
31080
00a25f4c4d44 8056179: Store permissions in concurrent collections in PermissionCollection subclasses
mullan
parents: 30033
diff changeset
   608
        permsMap = new ConcurrentHashMap<>(perms.size()*2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        permsMap.putAll(perms);
54472
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   610
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   611
        // check that the Permission key and value are the same object
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   612
        for (Map.Entry<Permission, Permission> e : perms.entrySet()) {
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   613
            Permission k = e.getKey();
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   614
            Permission v = e.getValue();
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   615
            if (k != v) {
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   616
                throw new InvalidObjectException("Permission (" + k +
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   617
                    ") incorrectly mapped to Permission (" + v + ")");
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   618
            }
89295131e353 8020637: Permissions.readObject doesn't enforce proper Class to PermissionCollection mappings
mullan
parents: 47216
diff changeset
   619
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
}