jdk/src/share/classes/javax/security/auth/Subject.java
author juh
Tue, 16 Jul 2013 12:19:41 -0700
changeset 18830 90956ead732f
parent 18771 9dadb0719cea
child 20831 96cf18811858
child 19855 bfe130545fe0
permissions -rw-r--r--
8020557: javadoc cleanup in javax.security Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
     2
 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4331
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: 4331
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: 4331
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4331
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4331
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 javax.security.auth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.text.MessageFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.AccessControlContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.DomainCombiner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.Permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.PermissionCollection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.security.PrivilegedExceptionAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.security.PrivilegedActionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.security.ProtectionDomain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import sun.security.util.ResourcesMgr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
/**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    45
 * <p> A {@code Subject} represents a grouping of related information
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * for a single entity, such as a person.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Such information includes the Subject's identities as well as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * its security-related attributes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * (passwords and cryptographic keys, for example).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <p> Subjects may potentially have multiple identities.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    52
 * Each identity is represented as a {@code Principal}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    53
 * within the {@code Subject}.  Principals simply bind names to a
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    54
 * {@code Subject}.  For example, a {@code Subject} that happens
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * to be a person, Alice, might have two Principals:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * one which binds "Alice Bar", the name on her driver license,
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    57
 * to the {@code Subject}, and another which binds,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * "999-99-9999", the number on her student identification card,
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    59
 * to the {@code Subject}.  Both Principals refer to the same
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    60
 * {@code Subject} even though each has a different name.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    62
 * <p> A {@code Subject} may also own security-related attributes,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * which are referred to as credentials.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * Sensitive credentials that require special protection, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * private cryptographic keys, are stored within a private credential
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    66
 * {@code Set}.  Credentials intended to be shared, such as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * public key certificates or Kerberos server tickets are stored
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    68
 * within a public credential {@code Set}.  Different permissions
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * are required to access and modify the different credential Sets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    71
 * <p> To retrieve all the Principals associated with a {@code Subject},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    72
 * invoke the {@code getPrincipals} method.  To retrieve
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    73
 * all the public or private credentials belonging to a {@code Subject},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    74
 * invoke the {@code getPublicCredentials} method or
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    75
 * {@code getPrivateCredentials} method, respectively.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    76
 * To modify the returned {@code Set} of Principals and credentials,
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    77
 * use the methods defined in the {@code Set} class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *      Subject subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *      Principal principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *      Object credential;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *      // add a Principal and credential to the Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *      subject.getPrincipals().add(principal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *      subject.getPublicCredentials().add(credential);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    89
 * <p> This {@code Subject} class implements {@code Serializable}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    90
 * While the Principals associated with the {@code Subject} are serialized,
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    91
 * the credentials associated with the {@code Subject} are not.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    92
 * Note that the {@code java.security.Principal} class
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    93
 * does not implement {@code Serializable}.  Therefore all concrete
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    94
 * {@code Principal} implementations associated with Subjects
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
    95
 * must implement {@code Serializable}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * @see java.security.Principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * @see java.security.DomainCombiner
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
public final class Subject implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    private static final long serialVersionUID = -8308522755600156056L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   105
     * A {@code Set} that provides a view of all of this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * Subject's Principals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @serial Each element in this set is a
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   111
     *          {@code java.security.Principal}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   112
     *          The set is a {@code Subject.SecureSet}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    Set<Principal> principals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * Sets that provide a view of all of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Subject's Credentials
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    transient Set<Object> pubCredentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    transient Set<Object> privCredentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Whether this Subject is read-only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    private volatile boolean readOnly = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    private static final int PRINCIPAL_SET = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    private static final int PUB_CREDENTIAL_SET = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    private static final int PRIV_CREDENTIAL_SET = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    private static final ProtectionDomain[] NULL_PD_ARRAY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        = new ProtectionDomain[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   138
     * Create an instance of a {@code Subject}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   139
     * with an empty {@code Set} of Principals and empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Sets of public and private credentials.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   142
     * <p> The newly constructed Sets check whether this {@code Subject}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * has been set read-only before permitting subsequent modifications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * The newly created Sets also prevent illegal modifications
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * by ensuring that callers have sufficient permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * <p> To modify the Principals Set, the caller must have
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   148
     * {@code AuthPermission("modifyPrincipals")}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * To modify the public credential Set, the caller must have
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   150
     * {@code AuthPermission("modifyPublicCredentials")}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * To modify the private credential Set, the caller must have
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   152
     * {@code AuthPermission("modifyPrivateCredentials")}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public Subject() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        this.principals = Collections.synchronizedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                        (new SecureSet<Principal>(this, PRINCIPAL_SET));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        this.pubCredentials = Collections.synchronizedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                        (new SecureSet<Object>(this, PUB_CREDENTIAL_SET));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        this.privCredentials = Collections.synchronizedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                        (new SecureSet<Object>(this, PRIV_CREDENTIAL_SET));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   165
     * Create an instance of a {@code Subject} with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * Principals and credentials.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * <p> The Principals and credentials from the specified Sets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * are copied into newly constructed Sets.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   170
     * These newly created Sets check whether this {@code Subject}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * has been set read-only before permitting subsequent modifications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * The newly created Sets also prevent illegal modifications
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * by ensuring that callers have sufficient permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * <p> To modify the Principals Set, the caller must have
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   176
     * {@code AuthPermission("modifyPrincipals")}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * To modify the public credential Set, the caller must have
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   178
     * {@code AuthPermission("modifyPublicCredentials")}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * To modify the private credential Set, the caller must have
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   180
     * {@code AuthPermission("modifyPrivateCredentials")}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   183
     * @param readOnly true if the {@code Subject} is to be read-only,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *          and false otherwise. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   186
     * @param principals the {@code Set} of Principals
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   187
     *          to be associated with this {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   189
     * @param pubCredentials the {@code Set} of public credentials
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   190
     *          to be associated with this {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   192
     * @param privCredentials the {@code Set} of private credentials
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   193
     *          to be associated with this {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @exception NullPointerException if the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   196
     *          {@code principals}, {@code pubCredentials},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   197
     *          or {@code privCredentials} are {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    public Subject(boolean readOnly, Set<? extends Principal> principals,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
                   Set<?> pubCredentials, Set<?> privCredentials)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        if (principals == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            pubCredentials == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            privCredentials == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   207
                (ResourcesMgr.getString("invalid.null.input.s."));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        this.principals = Collections.synchronizedSet(new SecureSet<Principal>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                                (this, PRINCIPAL_SET, principals));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        this.pubCredentials = Collections.synchronizedSet(new SecureSet<Object>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                                (this, PUB_CREDENTIAL_SET, pubCredentials));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        this.privCredentials = Collections.synchronizedSet(new SecureSet<Object>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                                (this, PRIV_CREDENTIAL_SET, privCredentials));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        this.readOnly = readOnly;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   219
     * Set this {@code Subject} to be read-only.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * <p> Modifications (additions and removals) to this Subject's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   222
     * {@code Principal} {@code Set} and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * credential Sets will be disallowed.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   224
     * The {@code destroy} operation on this Subject's credentials will
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * still be permitted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   227
     * <p> Subsequent attempts to modify the Subject's {@code Principal}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * and credential Sets will result in an
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   229
     * {@code IllegalStateException} being thrown.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   230
     * Also, once a {@code Subject} is read-only,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * it can not be reset to being writable again.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @exception SecurityException if the caller does not have permission
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   236
     *          to set this {@code Subject} to be read-only.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public void setReadOnly() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if (sm != null) {
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
   241
            sm.checkPermission(AuthPermissionHolder.SET_READ_ONLY_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        this.readOnly = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   248
     * Query whether this {@code Subject} is read-only.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   252
     * @return true if this {@code Subject} is read-only, false otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    public boolean isReadOnly() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        return this.readOnly;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   259
     * Get the {@code Subject} associated with the provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   260
     * {@code AccessControlContext}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   262
     * <p> The {@code AccessControlContext} may contain many
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   263
     * Subjects (from nested {@code doAs} calls).
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   264
     * In this situation, the most recent {@code Subject} associated
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   265
     * with the {@code AccessControlContext} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   269
     * @param  acc the {@code AccessControlContext} from which to retrieve
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   270
     *          the {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   272
     * @return  the {@code Subject} associated with the provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   273
     *          {@code AccessControlContext}, or {@code null}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   274
     *          if no {@code Subject} is associated
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   275
     *          with the provided {@code AccessControlContext}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @exception SecurityException if the caller does not have permission
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   278
     *          to get the {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * @exception NullPointerException if the provided
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   281
     *          {@code AccessControlContext} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    public static Subject getSubject(final AccessControlContext acc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        if (sm != null) {
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
   287
            sm.checkPermission(AuthPermissionHolder.GET_SUBJECT_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        if (acc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            throw new NullPointerException(ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   292
                ("invalid.null.AccessControlContext.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        // return the Subject from the DomainCombiner of the provided context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        return AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            (new java.security.PrivilegedAction<Subject>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            public Subject run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                DomainCombiner dc = acc.getDomainCombiner();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                if (!(dc instanceof SubjectDomainCombiner))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                SubjectDomainCombiner sdc = (SubjectDomainCombiner)dc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                return sdc.getSubject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   309
     * Perform work as a particular {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * <p> This method first retrieves the current Thread's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   312
     * {@code AccessControlContext} via
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   313
     * {@code AccessController.getContext},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   314
     * and then instantiates a new {@code AccessControlContext}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * using the retrieved context along with a new
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   316
     * {@code SubjectDomainCombiner} (constructed using
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   317
     * the provided {@code Subject}).
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   318
     * Finally, this method invokes {@code AccessController.doPrivileged},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   319
     * passing it the provided {@code PrivilegedAction},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   320
     * as well as the newly constructed {@code AccessControlContext}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   324
     * @param subject the {@code Subject} that the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   325
     *                  {@code action} will run as.  This parameter
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   326
     *                  may be {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   328
     * @param <T> the type of the value returned by the PrivilegedAction's
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   329
     *                  {@code run} method.
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   330
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param action the code to be run as the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   332
     *                  {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @return the value returned by the PrivilegedAction's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   335
     *                  {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   337
     * @exception NullPointerException if the {@code PrivilegedAction}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   338
     *                  is {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * @exception SecurityException if the caller does not have permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *                  to invoke this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    public static <T> T doAs(final Subject subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                        final java.security.PrivilegedAction<T> action) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        if (sm != null) {
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
   348
            sm.checkPermission(AuthPermissionHolder.DO_AS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        if (action == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   352
                (ResourcesMgr.getString("invalid.null.action.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        // set up the new Subject-based AccessControlContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        // for doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        final AccessControlContext currentAcc = AccessController.getContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        // call doPrivileged and push this new context on the stack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        return java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                                        (action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                                        createContext(subject, currentAcc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   365
     * Perform work as a particular {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * <p> This method first retrieves the current Thread's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   368
     * {@code AccessControlContext} via
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   369
     * {@code AccessController.getContext},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   370
     * and then instantiates a new {@code AccessControlContext}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * using the retrieved context along with a new
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   372
     * {@code SubjectDomainCombiner} (constructed using
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   373
     * the provided {@code Subject}).
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   374
     * Finally, this method invokes {@code AccessController.doPrivileged},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   375
     * passing it the provided {@code PrivilegedExceptionAction},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   376
     * as well as the newly constructed {@code AccessControlContext}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   380
     * @param subject the {@code Subject} that the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   381
     *                  {@code action} will run as.  This parameter
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   382
     *                  may be {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   384
     * @param <T> the type of the value returned by the
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   385
     *                  PrivilegedExceptionAction's {@code run} method.
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   386
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * @param action the code to be run as the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   388
     *                  {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @return the value returned by the
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   391
     *                  PrivilegedExceptionAction's {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @exception PrivilegedActionException if the
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   394
     *                  {@code PrivilegedExceptionAction.run}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *                  method throws a checked exception. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @exception NullPointerException if the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   398
     *                  {@code PrivilegedExceptionAction} is
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   399
     *                  {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * @exception SecurityException if the caller does not have permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *                  to invoke this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    public static <T> T doAs(final Subject subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                        final java.security.PrivilegedExceptionAction<T> action)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                        throws java.security.PrivilegedActionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        if (sm != null) {
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
   410
            sm.checkPermission(AuthPermissionHolder.DO_AS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        if (action == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   415
                (ResourcesMgr.getString("invalid.null.action.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        // set up the new Subject-based AccessControlContext for doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        final AccessControlContext currentAcc = AccessController.getContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        // call doPrivileged and push this new context on the stack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        return java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                                        (action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                                        createContext(subject, currentAcc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   427
     * Perform privileged work as a particular {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   429
     * <p> This method behaves exactly as {@code Subject.doAs},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * except that instead of retrieving the current Thread's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   431
     * {@code AccessControlContext}, it uses the provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   432
     * {@code AccessControlContext}.  If the provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   433
     * {@code AccessControlContext} is {@code null},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   434
     * this method instantiates a new {@code AccessControlContext}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * with an empty collection of ProtectionDomains.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   439
     * @param subject the {@code Subject} that the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   440
     *                  {@code action} will run as.  This parameter
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   441
     *                  may be {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   443
     * @param <T> the type of the value returned by the PrivilegedAction's
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   444
     *                  {@code run} method.
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   445
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * @param action the code to be run as the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   447
     *                  {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   449
     * @param acc the {@code AccessControlContext} to be tied to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     *                  specified <i>subject</i> and <i>action</i>. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * @return the value returned by the PrivilegedAction's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   453
     *                  {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   455
     * @exception NullPointerException if the {@code PrivilegedAction}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   456
     *                  is {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * @exception SecurityException if the caller does not have permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     *                  to invoke this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    public static <T> T doAsPrivileged(final Subject subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                        final java.security.PrivilegedAction<T> action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                        final java.security.AccessControlContext acc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        if (sm != null) {
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
   467
            sm.checkPermission(AuthPermissionHolder.DO_AS_PRIVILEGED_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        if (action == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   472
                (ResourcesMgr.getString("invalid.null.action.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        // set up the new Subject-based AccessControlContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        // for doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        final AccessControlContext callerAcc =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
                (acc == null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                new AccessControlContext(NULL_PD_ARRAY) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        // call doPrivileged and push this new context on the stack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        return java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                                        (action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                                        createContext(subject, callerAcc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   488
     * Perform privileged work as a particular {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   490
     * <p> This method behaves exactly as {@code Subject.doAs},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * except that instead of retrieving the current Thread's
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   492
     * {@code AccessControlContext}, it uses the provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   493
     * {@code AccessControlContext}.  If the provided
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   494
     * {@code AccessControlContext} is {@code null},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   495
     * this method instantiates a new {@code AccessControlContext}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * with an empty collection of ProtectionDomains.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   500
     * @param subject the {@code Subject} that the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   501
     *                  {@code action} will run as.  This parameter
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   502
     *                  may be {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   504
     * @param <T> the type of the value returned by the
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   505
     *                  PrivilegedExceptionAction's {@code run} method.
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   506
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * @param action the code to be run as the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   508
     *                  {@code Subject}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   510
     * @param acc the {@code AccessControlContext} to be tied to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     *                  specified <i>subject</i> and <i>action</i>. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * @return the value returned by the
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   514
     *                  PrivilegedExceptionAction's {@code run} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * @exception PrivilegedActionException if the
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   517
     *                  {@code PrivilegedExceptionAction.run}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     *                  method throws a checked exception. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @exception NullPointerException if the specified
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   521
     *                  {@code PrivilegedExceptionAction} is
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   522
     *                  {@code null}. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * @exception SecurityException if the caller does not have permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *                  to invoke this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    public static <T> T doAsPrivileged(final Subject subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                        final java.security.PrivilegedExceptionAction<T> action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                        final java.security.AccessControlContext acc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                        throws java.security.PrivilegedActionException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        if (sm != null) {
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
   534
            sm.checkPermission(AuthPermissionHolder.DO_AS_PRIVILEGED_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        if (action == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   539
                (ResourcesMgr.getString("invalid.null.action.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        // set up the new Subject-based AccessControlContext for doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        final AccessControlContext callerAcc =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                (acc == null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                new AccessControlContext(NULL_PD_ARRAY) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        // call doPrivileged and push this new context on the stack
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        return java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                                        (action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                                        createContext(subject, callerAcc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    private static AccessControlContext createContext(final Subject subject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                                        final AccessControlContext acc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        return java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            (new java.security.PrivilegedAction<AccessControlContext>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            public AccessControlContext run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                if (subject == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                    return new AccessControlContext(acc, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                    return new AccessControlContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                                        (acc,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                                        new SubjectDomainCombiner(subject));
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   571
     * Return the {@code Set} of Principals associated with this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   572
     * {@code Subject}.  Each {@code Principal} represents
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   573
     * an identity for this {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   575
     * <p> The returned {@code Set} is backed by this Subject's
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   576
     * internal {@code Principal} {@code Set}.  Any modification
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   577
     * to the returned {@code Set} affects the internal
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   578
     * {@code Principal} {@code Set} as well.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   582
     * @return  The {@code Set} of Principals associated with this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   583
     *          {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    public Set<Principal> getPrincipals() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        // always return an empty Set instead of null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        // so LoginModules can add to the Set if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        return principals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   593
     * Return a {@code Set} of Principals associated with this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   594
     * {@code Subject} that are instances or subclasses of the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   595
     * {@code Class}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   597
     * <p> The returned {@code Set} is not backed by this Subject's
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   598
     * internal {@code Principal} {@code Set}.  A new
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   599
     * {@code Set} is created and returned for each method invocation.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   600
     * Modifications to the returned {@code Set}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   601
     * will not affect the internal {@code Principal} {@code Set}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   605
     * @param <T> the type of the class modeled by {@code c}
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   606
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   607
     * @param c the returned {@code Set} of Principals will all be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     *          instances of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   610
     * @return a {@code Set} of Principals that are instances of the
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   611
     *          specified {@code Class}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   613
     * @exception NullPointerException if the specified {@code Class}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   614
     *                  is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    public <T extends Principal> Set<T> getPrincipals(Class<T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        if (c == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   620
                (ResourcesMgr.getString("invalid.null.Class.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        // always return an empty Set instead of null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        // so LoginModules can add to the Set if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        return new ClassSet<T>(PRINCIPAL_SET, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   628
     * Return the {@code Set} of public credentials held by this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   629
     * {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   631
     * <p> The returned {@code Set} is backed by this Subject's
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   632
     * internal public Credential {@code Set}.  Any modification
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   633
     * to the returned {@code Set} affects the internal public
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   634
     * Credential {@code Set} as well.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   638
     * @return  A {@code Set} of public credentials held by this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   639
     *          {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    public Set<Object> getPublicCredentials() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        // always return an empty Set instead of null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        // so LoginModules can add to the Set if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        return pubCredentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   649
     * Return the {@code Set} of private credentials held by this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   650
     * {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   652
     * <p> The returned {@code Set} is backed by this Subject's
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   653
     * internal private Credential {@code Set}.  Any modification
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   654
     * to the returned {@code Set} affects the internal private
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   655
     * Credential {@code Set} as well.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * <p> A caller requires permissions to access the Credentials
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   658
     * in the returned {@code Set}, or to modify the
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   659
     * {@code Set} itself.  A {@code SecurityException}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * is thrown if the caller does not have the proper permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   662
     * <p> While iterating through the {@code Set},
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   663
     * a {@code SecurityException} is thrown
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * if the caller does not have permission to access a
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   665
     * particular Credential.  The {@code Iterator}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   666
     * is nevertheless advanced to next element in the {@code Set}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   670
     * @return  A {@code Set} of private credentials held by this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   671
     *          {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public Set<Object> getPrivateCredentials() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        // XXX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        // we do not need a security check for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        // AuthPermission(getPrivateCredentials)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        // because we already restrict access to private credentials
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        // via the PrivateCredentialPermission.  all the extra AuthPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        // would do is protect the set operations themselves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        // (like size()), which don't seem security-sensitive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        // always return an empty Set instead of null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        // so LoginModules can add to the Set if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        return privCredentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   689
     * Return a {@code Set} of public credentials associated with this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   690
     * {@code Subject} that are instances or subclasses of the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   691
     * {@code Class}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   693
     * <p> The returned {@code Set} is not backed by this Subject's
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   694
     * internal public Credential {@code Set}.  A new
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   695
     * {@code Set} is created and returned for each method invocation.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   696
     * Modifications to the returned {@code Set}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   697
     * will not affect the internal public Credential {@code Set}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   701
     * @param <T> the type of the class modeled by {@code c}
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   702
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   703
     * @param c the returned {@code Set} of public credentials will all be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     *          instances of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   706
     * @return a {@code Set} of public credentials that are instances
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   707
     *          of the  specified {@code Class}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   709
     * @exception NullPointerException if the specified {@code Class}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   710
     *          is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    public <T> Set<T> getPublicCredentials(Class<T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        if (c == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   716
                (ResourcesMgr.getString("invalid.null.Class.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        // always return an empty Set instead of null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        // so LoginModules can add to the Set if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        return new ClassSet<T>(PUB_CREDENTIAL_SET, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   724
     * Return a {@code Set} of private credentials associated with this
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   725
     * {@code Subject} that are instances or subclasses of the specified
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   726
     * {@code Class}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * <p> The caller must have permission to access all of the
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   729
     * requested Credentials, or a {@code SecurityException}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   732
     * <p> The returned {@code Set} is not backed by this Subject's
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   733
     * internal private Credential {@code Set}.  A new
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   734
     * {@code Set} is created and returned for each method invocation.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   735
     * Modifications to the returned {@code Set}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   736
     * will not affect the internal private Credential {@code Set}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     *
18771
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   740
     * @param <T> the type of the class modeled by {@code c}
9dadb0719cea 8019772: Fix doclint issues in javax.crypto and javax.security subpackages
juh
parents: 14342
diff changeset
   741
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   742
     * @param c the returned {@code Set} of private credentials will all be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     *          instances of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   745
     * @return a {@code Set} of private credentials that are instances
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   746
     *          of the  specified {@code Class}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   748
     * @exception NullPointerException if the specified {@code Class}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   749
     *          is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    public <T> Set<T> getPrivateCredentials(Class<T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        // XXX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        // we do not need a security check for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        // AuthPermission(getPrivateCredentials)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        // because we already restrict access to private credentials
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        // via the PrivateCredentialPermission.  all the extra AuthPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        // would do is protect the set operations themselves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        // (like size()), which don't seem security-sensitive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        if (c == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   763
                (ResourcesMgr.getString("invalid.null.Class.provided"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        // always return an empty Set instead of null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        // so LoginModules can add to the Set if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        return new ClassSet<T>(PRIV_CREDENTIAL_SET, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   771
     * Compares the specified Object with this {@code Subject}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * for equality.  Returns true if the given object is also a Subject
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   773
     * and the two {@code Subject} instances are equivalent.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   774
     * More formally, two {@code Subject} instances are
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   775
     * equal if their {@code Principal} and {@code Credential}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * Sets are equal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * @param o Object to be compared for equality with this
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   781
     *          {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     * @return true if the specified Object is equal to this
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   784
     *          {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * @exception SecurityException if the caller does not have permission
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   787
     *          to access the private credentials for this {@code Subject},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     *          or if the caller does not have permission to access the
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   789
     *          private credentials for the provided {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        if (o == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        if (this == o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        if (o instanceof Subject) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            final Subject that = (Subject)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
            // check the principal and credential sets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            Set<Principal> thatPrincipals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            synchronized(that.principals) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                // avoid deadlock from dual locks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                thatPrincipals = new HashSet<Principal>(that.principals);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            if (!principals.equals(thatPrincipals)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
            Set<Object> thatPubCredentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
            synchronized(that.pubCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                // avoid deadlock from dual locks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                thatPubCredentials = new HashSet<Object>(that.pubCredentials);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            if (!pubCredentials.equals(thatPubCredentials)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
            Set<Object> thatPrivCredentials;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            synchronized(that.privCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                // avoid deadlock from dual locks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
                thatPrivCredentials = new HashSet<Object>(that.privCredentials);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            if (!privCredentials.equals(thatPrivCredentials)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   836
     * Return the String representation of this {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   840
     * @return the String representation of this {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        return toString(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * package private convenience method to print out the Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * without firing off a security check when trying to access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * the Private Credentials
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
    String toString(boolean includePrivateCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   853
        String s = ResourcesMgr.getString("Subject.");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        String suffix = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        synchronized(principals) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
            Iterator<Principal> pI = principals.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            while (pI.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                Principal p = pI.next();
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   860
                suffix = suffix + ResourcesMgr.getString(".Principal.") +
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   861
                        p.toString() + ResourcesMgr.getString("NEWLINE");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        synchronized(pubCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            Iterator<Object> pI = pubCredentials.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
            while (pI.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                Object o = pI.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                suffix = suffix +
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   870
                        ResourcesMgr.getString(".Public.Credential.") +
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   871
                        o.toString() + ResourcesMgr.getString("NEWLINE");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
        if (includePrivateCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
            synchronized(privCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                Iterator<Object> pI = privCredentials.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                while (pI.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
                        Object o = pI.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
                        suffix += ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   882
                                        (".Private.Credential.") +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
                                        o.toString() +
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   884
                                        ResourcesMgr.getString("NEWLINE");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
                    } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
                        suffix += ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   887
                                (".Private.Credential.inaccessible.");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
        return s + suffix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   897
     * Returns a hashcode for this {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   901
     * @return a hashcode for this {@code Subject}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     * @exception SecurityException if the caller does not have permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     *          to access this Subject's private credentials.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
         * The hashcode is derived exclusive or-ing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
         * hashcodes of this Subject's Principals and credentials.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
         * If a particular credential was destroyed
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   913
         * ({@code credential.hashCode()} throws an
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   914
         * {@code IllegalStateException}),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
         * the hashcode for that credential is derived via:
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   916
         * {@code credential.getClass().toString().hashCode()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
        int hashCode = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        synchronized(principals) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            Iterator<Principal> pIterator = principals.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
            while (pIterator.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
                Principal p = pIterator.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                hashCode ^= p.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
        synchronized(pubCredentials) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
            Iterator<Object> pubCIterator = pubCredentials.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            while (pubCIterator.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
                hashCode ^= getCredHashCode(pubCIterator.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        return hashCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     * get a credential's hashcode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    private int getCredHashCode(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            return o.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        } catch (IllegalStateException ise) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
            return o.getClass().toString().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * Writes this object out to a stream (i.e., serializes it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    private void writeObject(java.io.ObjectOutputStream oos)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        synchronized(principals) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
            oos.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     * Reads this object from a stream (i.e., deserializes it)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
                throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
   967
        // The Credential {@code Set} is not serialized, but we do not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        // want the default deserialization routine to set it to null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        this.pubCredentials = Collections.synchronizedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
                        (new SecureSet<Object>(this, PUB_CREDENTIAL_SET));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        this.privCredentials = Collections.synchronizedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
                        (new SecureSet<Object>(this, PRIV_CREDENTIAL_SET));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * Prevent modifications unless caller has permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    private static class SecureSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        extends AbstractSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        private static final long serialVersionUID = 7911754171111800359L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
         * @serialField this$0 Subject The outer Subject instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
         * @serialField elements LinkedList The elements in this set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        private static final ObjectStreamField[] serialPersistentFields = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
            new ObjectStreamField("this$0", Subject.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
            new ObjectStreamField("elements", LinkedList.class),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
            new ObjectStreamField("which", int.class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        Subject subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        LinkedList<E> elements;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
         * @serial An integer identifying the type of objects contained
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1001
         *      in this set.  If {@code which == 1},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
         *      this is a Principal set and all the elements are
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1003
         *      of type {@code java.security.Principal}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1004
         *      If {@code which == 2}, this is a public credential
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1005
         *      set and all the elements are of type {@code Object}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1006
         *      If {@code which == 3}, this is a private credential
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1007
         *      set and all the elements are of type {@code Object}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        private int which;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        SecureSet(Subject subject, int which) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
            this.subject = subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            this.which = which;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
            this.elements = new LinkedList<E>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        SecureSet(Subject subject, int which, Set<? extends E> set) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
            this.subject = subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            this.which = which;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            this.elements = new LinkedList<E>(set);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
            return elements.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            final LinkedList<E> list = elements;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
            return new Iterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
                ListIterator<E> i = list.listIterator(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
                public boolean hasNext() {return i.hasNext();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
                public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
                    if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
                        return i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                    SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
                    if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
                            sm.checkPermission(new PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
                                (list.get(i.nextIndex()).getClass().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
                                subject.getPrincipals()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
                        } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
                            i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
                            throw (se);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
                    return i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
                public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
                    if (subject.isReadOnly()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
                        throw new IllegalStateException(ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1057
                                ("Subject.is.read.only"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
                    java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
                    if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
                        switch (which) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
                        case Subject.PRINCIPAL_SET:
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1064
                            sm.checkPermission(AuthPermissionHolder.MODIFY_PRINCIPALS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
                        case Subject.PUB_CREDENTIAL_SET:
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1067
                            sm.checkPermission(AuthPermissionHolder.MODIFY_PUBLIC_CREDENTIALS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
                        default:
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1070
                            sm.checkPermission(AuthPermissionHolder.MODIFY_PRIVATE_CREDENTIALS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
                    i.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        public boolean add(E o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
            if (subject.isReadOnly()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                throw new IllegalStateException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1083
                        (ResourcesMgr.getString("Subject.is.read.only"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
            java.lang.SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
                switch (which) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                case Subject.PRINCIPAL_SET:
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1090
                    sm.checkPermission(AuthPermissionHolder.MODIFY_PRINCIPALS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
                case Subject.PUB_CREDENTIAL_SET:
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1093
                    sm.checkPermission(AuthPermissionHolder.MODIFY_PUBLIC_CREDENTIALS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
                default:
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1096
                    sm.checkPermission(AuthPermissionHolder.MODIFY_PRIVATE_CREDENTIALS_PERMISSION);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
            switch (which) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
            case Subject.PRINCIPAL_SET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
                if (!(o instanceof Principal)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
                    throw new SecurityException(ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1105
                        ("attempting.to.add.an.object.which.is.not.an.instance.of.java.security.Principal.to.a.Subject.s.Principal.Set"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
                // ok to add Objects of any kind to credential sets
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
            // check for duplicates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
            if (!elements.contains(o))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
                return elements.add(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
            final Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
                E next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
                if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
                    next = e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
                    next = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
                        (new java.security.PrivilegedAction<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
                        public E run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
                            return e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
                if (next == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
                    if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
                        e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
                } else if (next.equals(o)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
                    e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
            final Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
                E next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
                if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
                    next = e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
                    // For private credentials:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
                    // If the caller does not have read permission for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                    // for o.getClass(), we throw a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
                    // Otherwise we check the private cred set to see whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
                    // it contains the Object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
                    SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
                    if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
                        sm.checkPermission(new PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
                                                (o.getClass().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
                                                subject.getPrincipals()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
                    next = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
                        (new java.security.PrivilegedAction<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
                        public E run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
                            return e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
                if (next == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
                    if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
                } else if (next.equals(o)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        public boolean removeAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
            boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
            final Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
                E next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
                if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
                    next = e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
                    next = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
                        (new java.security.PrivilegedAction<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
                        public E run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
                            return e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
                Iterator<?> ce = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
                while (ce.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
                    Object o = ce.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
                    if (next == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
                        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
                            e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
                            modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
                    } else if (next.equals(o)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
                        e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
                        modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
            return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
        public boolean retainAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
            boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
            boolean retain = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
            final Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
                retain = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
                E next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
                if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
                    next = e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
                    next = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
                        (new java.security.PrivilegedAction<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
                        public E run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
                            return e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
                Iterator<?> ce = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
                while (ce.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
                    Object o = ce.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
                    if (next == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
                        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
                            retain = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
                    } else if (next.equals(o)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
                        retain = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
                if (!retain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
                    e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
                    retain = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
                    modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
            return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
            final Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
                E next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
                if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
                    next = e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
                    next = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
                        (new java.security.PrivilegedAction<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
                        public E run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
                            return e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
                e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
         * Writes this object out to a stream (i.e., serializes it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
         * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
         * @serialData If this is a private credential set,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
         *      a security check is performed to ensure that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
         *      the caller has permission to access each credential
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
         *      in the set.  If the security check passes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
         *      the set is serialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
        private void writeObject(java.io.ObjectOutputStream oos)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
                throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
            if (which == Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
                // check permissions before serializing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
                Iterator<E> i = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
                while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
                    i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
            ObjectOutputStream.PutField fields = oos.putFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
            fields.put("this$0", subject);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
            fields.put("elements", elements);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
            fields.put("which", which);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
            oos.writeFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
10709
d865c9f21240 7092375: Security Libraries don't build with javac -Werror
xuelei
parents: 7179
diff changeset
  1312
        @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
        private void readObject(ObjectInputStream ois)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
            throws IOException, ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
            ObjectInputStream.GetField fields = ois.readFields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
            subject = (Subject) fields.get("this$0", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
            elements = (LinkedList<E>) fields.get("elements", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
            which = fields.get("which", 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18771
diff changeset
  1324
     * This class implements a {@code Set} which returns only
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
     * members that are an instance of a specified Class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
    private class ClassSet<T> extends AbstractSet<T> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
        private int which;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        private Class<T> c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        private Set<T> set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
        ClassSet(int which, Class<T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
            this.which = which;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
            this.c = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
            set = new HashSet<T>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
            switch (which) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
            case Subject.PRINCIPAL_SET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
                synchronized(principals) { populateSet(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
            case Subject.PUB_CREDENTIAL_SET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
                synchronized(pubCredentials) { populateSet(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
                synchronized(privCredentials) { populateSet(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
10709
d865c9f21240 7092375: Security Libraries don't build with javac -Werror
xuelei
parents: 7179
diff changeset
  1351
        @SuppressWarnings("unchecked")     /*To suppress warning from line 1374*/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
        private void populateSet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
            final Iterator<?> iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
            switch(which) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
            case Subject.PRINCIPAL_SET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
                iterator = Subject.this.principals.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
            case Subject.PUB_CREDENTIAL_SET:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
                iterator = Subject.this.pubCredentials.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
                iterator = Subject.this.privCredentials.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
            // Check whether the caller has permisson to get
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
            // credentials of Class c
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
            while (iterator.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
                Object next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
                if (which == Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
                    next = java.security.AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
                        (new java.security.PrivilegedAction<Object>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
                        public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
                            return iterator.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
                    next = iterator.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
                if (c.isAssignableFrom(next.getClass())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
                    if (which != Subject.PRIV_CREDENTIAL_SET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
                        set.add((T)next);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
                        // Check permission for private creds
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
                        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
                        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
                            sm.checkPermission(new PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
                                                (next.getClass().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
                                                Subject.this.getPrincipals()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
                        set.add((T)next);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
            return set.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        public Iterator<T> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
            return set.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
        public boolean add(T o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
            if (!o.getClass().isAssignableFrom(c)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
                MessageFormat form = new MessageFormat(ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1410
                        ("attempting.to.add.an.object.which.is.not.an.instance.of.class"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
                Object[] source = {c.toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
                throw new SecurityException(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
            return set.add(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
    }
4331
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1418
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1419
    static class AuthPermissionHolder {
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1420
        static final AuthPermission DO_AS_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1421
            new AuthPermission("doAs");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1422
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1423
        static final AuthPermission DO_AS_PRIVILEGED_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1424
            new AuthPermission("doAsPrivileged");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1425
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1426
        static final AuthPermission SET_READ_ONLY_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1427
            new AuthPermission("setReadOnly");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1428
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1429
        static final AuthPermission GET_SUBJECT_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1430
            new AuthPermission("getSubject");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1431
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1432
        static final AuthPermission MODIFY_PRINCIPALS_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1433
            new AuthPermission("modifyPrincipals");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1434
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1435
        static final AuthPermission MODIFY_PUBLIC_CREDENTIALS_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1436
            new AuthPermission("modifyPublicCredentials");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1437
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1438
        static final AuthPermission MODIFY_PRIVATE_CREDENTIALS_PERMISSION =
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1439
            new AuthPermission("modifyPrivateCredentials");
ba7050c934f2 6903638: Remove dependency on AuthPermission from SecurityConstants
mchung
parents: 2
diff changeset
  1440
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
}