jdk/src/share/classes/sun/security/provider/PolicyFile.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 7973 dffe8439eb20
child 9771 0e8006984450
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 7973
diff changeset
     2
 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5194
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: 5194
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: 5194
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5194
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5194
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 sun.security.provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.RuntimePermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.ref.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.MalformedURLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.net.URI;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.StringTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.PropertyPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.util.ListIterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.util.WeakHashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.text.MessageFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import com.sun.security.auth.PrincipalComparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.security.cert.Certificate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.security.cert.X509Certificate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import javax.security.auth.PrivateCredentialPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import javax.security.auth.Subject;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import javax.security.auth.x500.X500Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.io.FilePermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import java.net.SocketPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import java.net.NetPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import java.util.PropertyPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import java.util.concurrent.atomic.AtomicReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import javax.security.auth.AuthPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import javax.security.auth.kerberos.ServicePermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
import javax.security.auth.kerberos.DelegationPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
import java.io.SerializablePermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
import java.util.logging.LoggingPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
import java.sql.SQLPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
import java.lang.reflect.ReflectPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
import javax.sound.sampled.AudioPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
import javax.net.ssl.SSLPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
*/
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
    68
import sun.misc.JavaSecurityProtectionDomainAccess;
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
    69
import static sun.misc.JavaSecurityProtectionDomainAccess.ProtectionDomainCache;
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
    70
import sun.misc.SharedSecrets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
import sun.security.util.Password;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
import sun.security.util.PolicyUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
import sun.security.util.PropertyExpander;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
import sun.security.util.Debug;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
import sun.security.util.ResourcesMgr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
import sun.net.www.ParseUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * This class represents a default implementation for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <code>java.security.Policy</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * Note:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * For backward compatibility with JAAS 1.0 it loads
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * both java.auth.policy and java.policy. However it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * is recommended that java.auth.policy be not used
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * and the java.policy contain all grant entries including
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * that contain principal-based entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * <p> This object stores the policy for entire Java runtime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * and is the amalgamation of multiple static policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * configurations that resides in files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * The algorithm for locating the policy file(s) and reading their
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * information into this <code>Policy</code> object is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * <li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *   Loop through the <code>java.security.Security</code> properties,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 *   <i>policy.url.1</i>, <i>policy.url.2</i>, ...,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *   <i>policy.url.X</i>" and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *   <i>auth.policy.url.1</i>, <i>auth.policy.url.2</i>, ...,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *   <i>auth.policy.url.X</i>".  These properties are set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *   in the Java security properties file, which is located in the file named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *   &lt;JAVA_HOME&gt;/lib/security/java.security.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *   &lt;JAVA_HOME&gt; refers to the value of the java.home system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 *   and specifies the directory where the JRE is installed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *   Each property value specifies a <code>URL</code> pointing to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *   policy file to be loaded.  Read in and load each policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *   <i>auth.policy.url</i> is supported only for backward compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * <li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *   The <code>java.lang.System</code> property <i>java.security.policy</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *   may also be set to a <code>URL</code> pointing to another policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *   (which is the case when a user uses the -D switch at runtime).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *   If this property is defined, and its use is allowed by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *   security property file (the Security property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *   <i>policy.allowSystemProperty</i> is set to <i>true</i>),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *   also load that policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * <li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 *   The <code>java.lang.System</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 *   <i>java.security.auth.policy</i> may also be set to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *   <code>URL</code> pointing to another policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *   (which is the case when a user uses the -D switch at runtime).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *   If this property is defined, and its use is allowed by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *   security property file (the Security property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *   <i>policy.allowSystemProperty</i> is set to <i>true</i>),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 *   also load that policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *   <i>java.security.auth.policy</i> is supported only for backward
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *   compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *   If the  <i>java.security.policy</i> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 *   <i>java.security.auth.policy</i> property is defined using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *   "==" (rather than "="), then ignore all other specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 *   policies and only load this policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * Each policy file consists of one or more grant entries, each of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * which consists of a number of permission entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 *   grant signedBy "<b>alias</b>", codeBase "<b>URL</b>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 *         principal <b>principalClass</b> "<b>principalName</b>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 *         principal <b>principalClass</b> "<b>principalName</b>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 *         ... {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 *     permission <b>Type</b> "<b>name</b> "<b>action</b>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 *         signedBy "<b>alias</b>";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 *     permission <b>Type</b> "<b>name</b> "<b>action</b>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 *         signedBy "<b>alias</b>";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 *     ....
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *   };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * All non-bold items above must appear as is (although case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * doesn't matter and some are optional, as noted below).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * principal entries are optional and need not be present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * Italicized items represent variable values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * <p> A grant entry must begin with the word <code>grant</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * The <code>signedBy</code>,<code>codeBase</code> and <code>principal</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * name/value pairs are optional.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * If they are not present, then any signer (including unsigned code)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * will match, and any codeBase will match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * Note that the <i>principalClass</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 * may be set to the wildcard value, *, which allows it to match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 * any <code>Principal</code> class.  In addition, the <i>principalName</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 * may also be set to the wildcard value, *, allowing it to match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * any <code>Principal</code> name.  When setting the <i>principalName</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * to the *, do not surround the * with quotes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * <p> A permission entry must begin with the word <code>permission</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 * The word <code><i>Type</i></code> in the template above is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * a specific permission type, such as <code>java.io.FilePermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * or <code>java.lang.RuntimePermission</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 * <p> The "<i>action</i>" is required for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 * many permission types, such as <code>java.io.FilePermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 * (where it specifies what type of file access that is permitted).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * It is not required for categories such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 * <code>java.lang.RuntimePermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 * where it is not necessary - you either have the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 * permission specified by the <code>"<i>name</i>"</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 * value following the type name or you don't.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 * <p> The <code>signedBy</code> name/value pair for a permission entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 * is optional. If present, it indicates a signed permission. That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 * the permission class itself must be signed by the given alias in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 * order for it to be granted. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 * suppose you have the following grant entry:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
 *   grant principal foo.com.Principal "Duke" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 *     permission Foo "foobar", signedBy "FooSoft";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 *   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 * <p> Then this permission of type <i>Foo</i> is granted if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 * <code>Foo.class</code> permission has been signed by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 * "FooSoft" alias, or if XXX <code>Foo.class</code> is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 * system class (i.e., is found on the CLASSPATH).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 * <p> Items that appear in an entry must appear in the specified order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 * (<code>permission</code>, <i>Type</i>, "<i>name</i>", and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 * "<i>action</i>"). An entry is terminated with a semicolon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * <p> Case is unimportant for the identifiers (<code>permission</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 * <code>signedBy</code>, <code>codeBase</code>, etc.) but is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
 * significant for the <i>Type</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 * or for any string that is passed in as a value. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 * <p> An example of two entries in a policy configuration file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
 *   // if the code is comes from "foo.com" and is running as "Duke",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
 *   // grant it read/write to all files in /tmp.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
 *   grant codeBase "foo.com", principal foo.com.Principal "Duke" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 *              permission java.io.FilePermission "/tmp/*", "read,write";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 *   };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
 *   // grant any code running as "Duke" permission to read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 *   // the "java.vendor" Property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 *   grant principal foo.com.Principal "Duke" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
 *         permission java.util.PropertyPermission "java.vendor";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
 *  This Policy implementation supports special handling of any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
 *  permission that contains the string, "<b>${{self}}</b>", as part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 *  its target name.  When such a permission is evaluated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 *  (such as during a security check), <b>${{self}}</b> is replaced
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 *  with one or more Principal class/name pairs.  The exact
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
 *  replacement performed depends upon the contents of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
 *  grant clause to which the permission belongs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
 *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
 *  If the grant clause does not contain any principal information,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
 *  the permission will be ignored (permissions containing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
 *  <b>${{self}}</b> in their target names are only valid in the context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
 *  of a principal-based grant clause).  For example, BarPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
 *  will always be ignored in the following grant clause:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
 *<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
 *    grant codebase "www.foo.com", signedby "duke" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
 *      permission BarPermission "... ${{self}} ...";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
 *    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
 *</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
 *  If the grant clause contains principal information, <b>${{self}}</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
 *  will be replaced with that same principal information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
 *  For example, <b>${{self}}</b> in BarPermission will be replaced by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
 *  <b>javax.security.auth.x500.X500Principal "cn=Duke"</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
 *  in the following grant clause:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 *  <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 *    grant principal javax.security.auth.x500.X500Principal "cn=Duke" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
 *      permission BarPermission "... ${{self}} ...";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 *    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
 *  </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
 *  If there is a comma-separated list of principals in the grant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
 *  clause, then <b>${{self}}</b> will be replaced by the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
 *  comma-separated list or principals.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
 *  In the case where both the principal class and name are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
 *  wildcarded in the grant clause, <b>${{self}}</b> is replaced
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
 *  with all the principals associated with the <code>Subject</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
 *  in the current <code>AccessControlContext</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
 * <p> For PrivateCredentialPermissions, you can also use "<b>self</b>"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
 * instead of "<b>${{self}}</b>". However the use of "<b>self</b>" is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
 * deprecated in favour of "<b>${{self}}</b>".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
 * @see java.security.CodeSource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
 * @see java.security.Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
 * @see java.security.ProtectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
public class PolicyFile extends java.security.Policy {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    private static final Debug debug = Debug.getInstance("policy");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    private static final String NONE = "NONE";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    private static final String P11KEYSTORE = "PKCS11";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    private static final String SELF = "${{self}}";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    private static final String X500PRINCIPAL =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                        "javax.security.auth.x500.X500Principal";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    private static final String POLICY = "java.security.policy";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    private static final String SECURITY_MANAGER = "java.security.manager";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    private static final String POLICY_URL = "policy.url.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    private static final String AUTH_POLICY = "java.security.auth.policy";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    private static final String AUTH_POLICY_URL = "auth.policy.url.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    private static final int DEFAULT_CACHE_SIZE = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    // contains the policy grant entries, PD cache, and alias mapping
7973
dffe8439eb20 7005608: diamond conversion of JCA and crypto providers
smarks
parents: 7179
diff changeset
   302
    private AtomicReference<PolicyInfo> policyInfo = new AtomicReference<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    private boolean constructed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    private boolean expandProperties = true;
4350
2a593a20d962 6876158: Remove dependencies on Signer, Certificate, Identity, IdentityScope classes from java.security pkg
vinnie
parents: 4053
diff changeset
   306
    private boolean ignoreIdentityScope = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    private boolean allowSystemProperties = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    private boolean notUtf8 = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    private URL url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    // for use with the reflection API
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    private static final Class[] PARAMS0 = { };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    private static final Class[] PARAMS1 = { String.class };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    private static final Class[] PARAMS2 = { String.class, String.class };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * Initializes the Policy object and reads the default policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * configuration file(s) into the Policy object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    public PolicyFile() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        init((URL)null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * Initializes the Policy object and reads the default policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * from the specified URL only.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    public PolicyFile(URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        this.url = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        init(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * Initializes the Policy object and reads the default policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * configuration file(s) into the Policy object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * The algorithm for locating the policy file(s) and reading their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * information into the Policy object is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *   loop through the Security Properties named "policy.url.1",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *  ""policy.url.2", "auth.policy.url.1",  "auth.policy.url.2" etc, until
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *   you don't find one. Each of these specify a policy file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *   if none of these could be loaded, use a builtin static policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     *      equivalent to the default lib/security/java.policy file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *   if the system property "java.policy" or "java.auth.policy" is defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * (which is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *      case when the user uses the -D switch at runtime), and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *     its use is allowed by the security property file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *     also load it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * Each policy file consists of one or more grant entries, each of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * which consists of a number of permission entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *   grant signedBy "<i>alias</i>", codeBase "<i>URL</i>" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *     permission <i>Type</i> "<i>name</i>", "<i>action</i>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *         signedBy "<i>alias</i>";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     *     ....
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *     permission <i>Type</i> "<i>name</i>", "<i>action</i>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *         signedBy "<i>alias</i>";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     *   };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * All non-italicized items above must appear as is (although case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * doesn't matter and some are optional, as noted below).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * Italicized items represent variable values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * <p> A grant entry must begin with the word <code>grant</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * The <code>signedBy</code> and <code>codeBase</code> name/value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * pairs are optional.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * If they are not present, then any signer (including unsigned code)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * will match, and any codeBase will match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * <p> A permission entry must begin with the word <code>permission</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * The word <code><i>Type</i></code> in the template above would actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * be a specific permission type, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * <code>java.io.FilePermission</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * <code>java.lang.RuntimePermission</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * <p>The "<i>action</i>" is required for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * many permission types, such as <code>java.io.FilePermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * (where it specifies what type of file access is permitted).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * It is not required for categories such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * <code>java.lang.RuntimePermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * where it is not necessary - you either have the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * permission specified by the <code>"<i>name</i>"</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * value following the type name or you don't.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * <p>The <code>signedBy</code> name/value pair for a permission entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * is optional. If present, it indicates a signed permission. That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * the permission class itself must be signed by the given alias in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * order for it to be granted. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * suppose you have the following grant entry:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *   grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *     permission Foo "foobar", signedBy "FooSoft";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * <p>Then this permission of type <i>Foo</i> is granted if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * <code>Foo.class</code> permission has been signed by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * "FooSoft" alias, or if <code>Foo.class</code> is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * system class (i.e., is found on the CLASSPATH).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * <p>Items that appear in an entry must appear in the specified order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * (<code>permission</code>, <i>Type</i>, "<i>name</i>", and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * "<i>action</i>"). An entry is terminated with a semicolon.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * <p>Case is unimportant for the identifiers (<code>permission</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * <code>signedBy</code>, <code>codeBase</code>, etc.) but is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * significant for the <i>Type</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * or for any string that is passed in as a value. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * <p>An example of two entries in a policy configuration file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     *   //  if the code is signed by "Duke", grant it read/write to all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     *   // files in /tmp.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     *   grant signedBy "Duke" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     *          permission java.io.FilePermission "/tmp/*", "read,write";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     *   };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     *   // grant everyone the following permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *   grant {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     *     permission java.util.PropertyPermission "java.vendor";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *   };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     *  </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    private void init(URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        // Properties are set once for each init(); ignore changes between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        // between diff invocations of initPolicyFile(policy, url, info).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        String numCacheStr =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
          AccessController.doPrivileged(new PrivilegedAction<String>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            public String run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                expandProperties = "true".equalsIgnoreCase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                    (Security.getProperty("policy.expandProperties"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
                ignoreIdentityScope = "true".equalsIgnoreCase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                    (Security.getProperty("policy.ignoreIdentityScope"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                allowSystemProperties = "true".equalsIgnoreCase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                    (Security.getProperty("policy.allowSystemProperty"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
                notUtf8 = "false".equalsIgnoreCase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
                    (System.getProperty("sun.security.policy.utf8"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
                return System.getProperty("sun.security.policy.numcaches");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        int numCaches;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        if (numCacheStr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                numCaches = Integer.parseInt(numCacheStr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            } catch (NumberFormatException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                numCaches = DEFAULT_CACHE_SIZE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
            numCaches = DEFAULT_CACHE_SIZE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        // System.out.println("number caches=" + numCaches);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        PolicyInfo newInfo = new PolicyInfo(numCaches);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        initPolicyFile(newInfo, url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        policyInfo.set(newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    private void initPolicyFile(final PolicyInfo newInfo, final URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        if (url != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
             * If the caller specified a URL via Policy.getInstance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
             * we only read from that URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                debug.println("reading "+url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            AccessController.doPrivileged(new PrivilegedAction<Void>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
                public Void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
                    if (init(url, newInfo) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                        // use static policy if all else fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                        initStaticPolicy(newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
             * Caller did not specify URL via Policy.getInstance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
             * Read from URLs listed in the java.security properties file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
             *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
             * We call initPolicyFile with POLICY , POLICY_URL and then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
             * call it with AUTH_POLICY and AUTH_POLICY_URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
             * So first we will process the JAVA standard policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
             * and then process the JAVA AUTH Policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
             * This is for backward compatibility as well as to handle
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
             * cases where the user has a single unified policyfile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
             * with both java policy entries and auth entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            boolean loaded_one = initPolicyFile(POLICY, POLICY_URL, newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            // To maintain strict backward compatibility
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            // we load the static policy only if POLICY load failed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            if (!loaded_one) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                // use static policy if all else fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                initStaticPolicy(newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            initPolicyFile(AUTH_POLICY, AUTH_POLICY_URL, newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    private boolean initPolicyFile(final String propname, final String urlname,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                                final PolicyInfo newInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        Boolean loadedPolicy =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            public Boolean run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                boolean loaded_policy = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                if (allowSystemProperties) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                    String extra_policy = System.getProperty(propname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                    if (extra_policy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                        boolean overrideAll = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                        if (extra_policy.startsWith("=")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                            overrideAll = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                            extra_policy = extra_policy.substring(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                            extra_policy =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                                PropertyExpander.expand(extra_policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                            URL policyURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                            File policyFile = new File(extra_policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                            if (policyFile.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                                policyURL = ParseUtil.fileToEncodedURL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                                    (new File(policyFile.getCanonicalPath()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                                policyURL = new URL(extra_policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                            if (debug != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                                debug.println("reading "+policyURL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                            if (init(policyURL, newInfo))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                                loaded_policy = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                            // ignore.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                                debug.println("caught exception: "+e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                        if (overrideAll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                                debug.println("overriding other policies!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                            return Boolean.valueOf(loaded_policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                int n = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                String policy_uri;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                while ((policy_uri = Security.getProperty(urlname+n)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                        URL policy_url = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                        String expanded_uri = PropertyExpander.expand
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                                (policy_uri).replace(File.separatorChar, '/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                        if (policy_uri.startsWith("file:${java.home}/") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                            policy_uri.startsWith("file:${user.home}/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                            // this special case accommodates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                            // the situation java.home/user.home
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                            // expand to a single slash, resulting in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                            // a file://foo URI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                            policy_url = new File
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                                (expanded_uri.substring(5)).toURI().toURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                            policy_url = new URI(expanded_uri).toURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                        if (debug != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                            debug.println("reading "+policy_url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                        if (init(policy_url, newInfo))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                            loaded_policy = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                    } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                            debug.println("error reading policy "+e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                        // ignore that policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                    n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                return Boolean.valueOf(loaded_policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        return loadedPolicy.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * Reads a policy configuration into the Policy object using a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * Reader object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * @param policyFile the policy Reader object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    private boolean init(URL policy, PolicyInfo newInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        boolean success = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        PolicyParser pp = new PolicyParser(expandProperties);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        InputStreamReader isr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            // read in policy using UTF-8 by default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            // check non-standard system property to see if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            // the default encoding should be used instead
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            if (notUtf8) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                isr = new InputStreamReader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                                (PolicyUtil.getInputStream(policy));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                isr = new InputStreamReader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                                (PolicyUtil.getInputStream(policy), "UTF-8");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
            pp.read(isr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            KeyStore keyStore = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                keyStore = PolicyUtil.getKeyStore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                                (policy,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                                pp.getKeyStoreUrl(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                                pp.getKeyStoreType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                                pp.getKeyStoreProvider(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                                pp.getStorePassURL(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                                debug);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                // ignore, treat it like we have no keystore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                    e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
            Enumeration<PolicyParser.GrantEntry> enum_ = pp.grantElements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            while (enum_.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                PolicyParser.GrantEntry ge = enum_.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                addGrantEntry(ge, keyStore, newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        } catch (PolicyParser.ParsingException pe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            MessageFormat form = new MessageFormat(ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   655
                (POLICY + ".error.parsing.policy.message"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
            Object[] source = {policy, pe.getLocalizedMessage()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            System.err.println(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            if (debug != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                pe.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                debug.println("error parsing "+policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                debug.println(e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
            if (isr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                    isr.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                    success = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                    // ignore the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
                success = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        return success;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    private void initStaticPolicy(final PolicyInfo newInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        AccessController.doPrivileged(new PrivilegedAction<Void>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
            public Void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
                PolicyEntry pe = new PolicyEntry(new CodeSource(null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
                    (Certificate[]) null));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
                pe.add(SecurityConstants.LOCAL_LISTEN_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
                pe.add(new PropertyPermission("java.version",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
                pe.add(new PropertyPermission("java.vendor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
                pe.add(new PropertyPermission("java.vendor.url",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
                pe.add(new PropertyPermission("java.class.version",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                pe.add(new PropertyPermission("os.name",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
                pe.add(new PropertyPermission("os.version",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
                pe.add(new PropertyPermission("os.arch",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                pe.add(new PropertyPermission("file.separator",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                pe.add(new PropertyPermission("path.separator",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                pe.add(new PropertyPermission("line.separator",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                pe.add(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                                ("java.specification.version",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                pe.add(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                                ("java.specification.vendor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
                pe.add(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                                ("java.specification.name",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                pe.add(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                                ("java.vm.specification.version",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                pe.add(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                                ("java.vm.specification.vendor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                pe.add(new PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                                ("java.vm.specification.name",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                pe.add(new PropertyPermission("java.vm.version",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
                pe.add(new PropertyPermission("java.vm.vendor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
                pe.add(new PropertyPermission("java.vm.name",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
                    SecurityConstants.PROPERTY_READ_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
                // No need to sync because noone has access to newInfo yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
                newInfo.policyEntries.add(pe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
                // Add AllPermissions for standard extensions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
                String[] extCodebases = PolicyParser.parseExtDirs(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
                    PolicyParser.EXTDIRS_EXPANSION, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                if (extCodebases != null && extCodebases.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                    for (int i = 0; i < extCodebases.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                            pe = new PolicyEntry(canonicalizeCodebase(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                                new CodeSource(new URL(extCodebases[i]),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                                    (Certificate[]) null), false ));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
                            pe.add(SecurityConstants.ALL_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
                            // No need to sync because noone has access to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                            // newInfo yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                            newInfo.policyEntries.add(pe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                            // this is probably bad (though not dangerous).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                            // What should we do?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * Given a GrantEntry, create a codeSource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * @return null if signedBy alias is not recognized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    private CodeSource getCodeSource(PolicyParser.GrantEntry ge, KeyStore keyStore,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        PolicyInfo newInfo) throws java.net.MalformedURLException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        Certificate[] certs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        if (ge.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
            certs = getCertificates(keyStore, ge.signedBy, newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
            if (certs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                // we don't have a key for this alias,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                // just return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                    debug.println("  -- No certs for alias '" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                                       ge.signedBy + "' - ignoring entry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        URL location;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        if (ge.codeBase != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
            location = new URL(ge.codeBase);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
            location = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        return (canonicalizeCodebase(new CodeSource(location, certs),false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * Add one policy entry to the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    private void addGrantEntry(PolicyParser.GrantEntry ge,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                               KeyStore keyStore, PolicyInfo newInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            debug.println("Adding policy entry: ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
            debug.println("  signedBy " + ge.signedBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
            debug.println("  codeBase " + ge.codeBase);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            if (ge.principals != null && ge.principals.size() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                ListIterator<PolicyParser.PrincipalEntry> li =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                                                ge.principals.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                while (li.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                    PolicyParser.PrincipalEntry pppe = li.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                debug.println("  " + pppe.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
            CodeSource codesource = getCodeSource(ge, keyStore, newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
            // skip if signedBy alias was unknown...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
            if (codesource == null) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            // perform keystore alias principal replacement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            // for example, if alias resolves to X509 certificate,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
            // replace principal with:  <X500Principal class>  <SubjectDN>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
            // -- skip if alias is unknown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            if (replacePrincipals(ge.principals, keyStore) == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            PolicyEntry entry = new PolicyEntry(codesource, ge.principals);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            Enumeration<PolicyParser.PermissionEntry> enum_ =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
                                                ge.permissionElements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            while (enum_.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                PolicyParser.PermissionEntry pe = enum_.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                    // perform ${{ ... }} expansions within permission name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                    expandPermissionName(pe, keyStore);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                    // XXX special case PrivateCredentialPermission-SELF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                    Permission perm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                    if (pe.permission.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                        ("javax.security.auth.PrivateCredentialPermission") &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                        pe.name.endsWith(" self")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                        pe.name = pe.name.substring(0, pe.name.indexOf("self"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                                + SELF;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                    // check for self
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                    if (pe.name != null && pe.name.indexOf(SELF) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                        // Create a "SelfPermission" , it could be an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                        // an unresolved permission which will be resolved
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                        // when implies is called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                        // Add it to entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                        Certificate certs[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                        if (pe.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                            certs = getCertificates(keyStore,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                                                    pe.signedBy,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                                                    newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                            certs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                        perm = new SelfPermission(pe.permission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                                                  pe.name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                                                  pe.action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                                                  certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                        perm = getInstance(pe.permission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                                           pe.name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                                           pe.action);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                    entry.add(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                    if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                        debug.println("  "+perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                } catch (ClassNotFoundException cnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                    Certificate certs[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
                    if (pe.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        certs = getCertificates(keyStore,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                                                pe.signedBy,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                                                newInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                        certs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
                    // only add if we had no signer or we had a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
                    // a signer and found the keys for it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
                    if (certs != null || pe.signedBy == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
                        Permission perm = new UnresolvedPermission(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
                                                  pe.permission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
                                                  pe.name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
                                                  pe.action,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
                                                  certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
                        entry.add(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
                            debug.println("  "+perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
                } catch (java.lang.reflect.InvocationTargetException ite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
                    MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
                        (ResourcesMgr.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
                         (POLICY +
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   897
                          ".error.adding.Permission.perm.message"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
                    Object[] source = {pe.permission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
                                       ite.getTargetException().toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
                    System.err.println(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
                } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
                    MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                        (ResourcesMgr.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                         (POLICY +
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   905
                          ".error.adding.Permission.perm.message"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                    Object[] source = {pe.permission,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                                       e.toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
                    System.err.println(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
            // No need to sync because noone has access to newInfo yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
            newInfo.policyEntries.add(entry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            MessageFormat form = new MessageFormat(ResourcesMgr.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                                         (POLICY
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
   917
                                         + ".error.adding.Entry.message"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            Object[] source = {e.toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            System.err.println(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        if (debug != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            debug.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * Returns a new Permission object of the given Type. The Permission is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     * created by getting the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     * Class object using the <code>Class.forName</code> method, and using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     * the reflection API to invoke the (String name, String actions)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     * constructor on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     * object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     * @param type the type of Permission being created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     * @param name the name of the Permission being created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     * @param actions the actions of the Permission being created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     * @exception  ClassNotFoundException  if the particular Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     *             class could not be found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * @exception  IllegalAccessException  if the class or initializer is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     *               not accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * @exception  InstantiationException  if getInstance tries to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     *               instantiate an abstract class or an interface, or if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     *               instantiation fails for some other reason.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * @exception  NoSuchMethodException if the (String, String) constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     *               is not found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * @exception  InvocationTargetException if the underlying Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     *               constructor throws an exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
    private static final Permission getInstance(String type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
                                    String name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                                    String actions)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        throws ClassNotFoundException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
               InstantiationException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
               IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
               NoSuchMethodException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
               InvocationTargetException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        //XXX we might want to keep a hash of created factories...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        Class<?> pc = Class.forName(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        Permission answer = getKnownInstance(pc, name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        if (answer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            return answer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        if (name == null && actions == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                Constructor<?> c = pc.getConstructor(PARAMS0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                return (Permission) c.newInstance(new Object[] {});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            } catch (NoSuchMethodException ne) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                    Constructor<?> c = pc.getConstructor(PARAMS1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
                    return (Permission) c.newInstance(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
                              new Object[] { name});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                } catch (NoSuchMethodException ne1 ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                    Constructor<?> c = pc.getConstructor(PARAMS2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                    return (Permission) c.newInstance(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
                        new Object[] { name, actions });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            if (name != null && actions == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
                    Constructor<?> c = pc.getConstructor(PARAMS1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
                    return (Permission) c.newInstance(new Object[] { name});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
                } catch (NoSuchMethodException ne) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
                    Constructor<?> c = pc.getConstructor(PARAMS2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
                    return (Permission) c.newInstance(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
                          new Object[] { name, actions });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
                Constructor<?> c = pc.getConstructor(PARAMS2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
                return (Permission) c.newInstance(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
                      new Object[] { name, actions });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * Creates one of the well-known permissions directly instead of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     * via reflection. Keep list short to not penalize non-JDK-defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     * permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    private static final Permission getKnownInstance(Class claz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        String name, String actions) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        // XXX shorten list to most popular ones?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        if (claz.equals(FilePermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            return new FilePermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        } else if (claz.equals(SocketPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
            return new SocketPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        } else if (claz.equals(RuntimePermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
            return new RuntimePermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        } else if (claz.equals(PropertyPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            return new PropertyPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        } else if (claz.equals(NetPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            return new NetPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        } else if (claz.equals(AllPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
            return SecurityConstants.ALL_PERMISSION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        } else if (claz.equals(ReflectPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            return new ReflectPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        } else if (claz.equals(SecurityPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            return new SecurityPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        } else if (claz.equals(PrivateCredentialPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
            return new PrivateCredentialPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        } else if (claz.equals(AuthPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
            return new AuthPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        } else if (claz.equals(ServicePermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            return new ServicePermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        } else if (claz.equals(DelegationPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
            return new DelegationPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        } else if (claz.equals(SerializablePermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            return new SerializablePermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        } else if (claz.equals(AudioPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            return new AudioPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        } else if (claz.equals(SSLPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
            return new SSLPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
        } else if (claz.equals(LoggingPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
            return new LoggingPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        } else if (claz.equals(SQLPermission.class)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
            return new SQLPermission(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     * Fetch all certs associated with this alias.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
    private Certificate[] getCertificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
                (KeyStore keyStore, String aliases, PolicyInfo newInfo) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        List<Certificate> vcerts = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
        StringTokenizer st = new StringTokenizer(aliases, ",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        while (st.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
            String alias = st.nextToken().trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
            n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
            Certificate cert = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            // See if this alias's cert has already been cached
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            synchronized (newInfo.aliasMapping) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
                cert = (Certificate)newInfo.aliasMapping.get(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
                if (cert == null && keyStore != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
                        cert = keyStore.getCertificate(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
                    } catch (KeyStoreException kse) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
                        // never happens, because keystore has already been loaded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
                        // when we call this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
                    if (cert != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
                        newInfo.aliasMapping.put(alias, cert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                        newInfo.aliasMapping.put(cert, alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            if (cert != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
                if (vcerts == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                    vcerts = new ArrayList<Certificate>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
                vcerts.add(cert);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
        // make sure n == vcerts.size, since we are doing a logical *and*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
        if (vcerts != null && n == vcerts.size()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
            Certificate[] certs = new Certificate[vcerts.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
            vcerts.toArray(certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
            return certs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     * Refreshes the policy object by re-reading all the policy files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  1107
    @Override public void refresh() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
        init(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     * Evaluates the the global policy for the permissions granted to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * the ProtectionDomain and tests whether the permission is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     * granted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * @param domain the ProtectionDomain to test
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     * @param permission the Permission object to be tested for implication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     * @return true if "permission" is a proper subset of a permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * granted to this ProtectionDomain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     * @see java.security.ProtectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  1124
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
    public boolean implies(ProtectionDomain pd, Permission p) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
        PolicyInfo pi = policyInfo.get();
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  1127
        ProtectionDomainCache pdMap = pi.getPdMapping();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
        PermissionCollection pc = pdMap.get(pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
        if (pc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
            return pc.implies(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
        pc = getPermissions(pd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        if (pc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        // cache mapping of protection domain to its PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
        pdMap.put(pd, pc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        return pc.implies(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
     * Examines this <code>Policy</code> and returns the permissions granted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
     * to the specified <code>ProtectionDomain</code>.  This includes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
     * the permissions currently associated with the domain as well
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     * as the policy permissions granted to the domain's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     * CodeSource, ClassLoader, and Principals.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * <p> Note that this <code>Policy</code> implementation has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     * special handling for PrivateCredentialPermissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * When this method encounters a <code>PrivateCredentialPermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     * which specifies "self" as the <code>Principal</code> class and name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     * it does not add that <code>Permission</code> to the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     * <code>PermissionCollection</code>.  Instead, it builds
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     * a new <code>PrivateCredentialPermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     * for each <code>Principal</code> associated with the provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     * <code>Subject</code>.  Each new <code>PrivateCredentialPermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * contains the same Credential class as specified in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * originally granted permission, as well as the Class and name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * for the respective <code>Principal</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * @param domain the Permissions granted to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     *          <code>ProtectionDomain</code> are returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * @return the Permissions granted to the provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     *          <code>ProtectionDomain</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  1173
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
    public PermissionCollection getPermissions(ProtectionDomain domain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        Permissions perms = new Permissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        if (domain == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
           return perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
        // first get policy perms
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        getPermissions(perms, domain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        // add static perms
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
        //      - adding static perms after policy perms is necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
        //        to avoid a regression for 4301064
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
        PermissionCollection pc = domain.getPermissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
        if (pc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
            synchronized (pc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
                Enumeration<Permission> e = pc.elements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
                while (e.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
                    perms.add(e.nextElement());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
        return perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
     * Examines this Policy and creates a PermissionCollection object with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     * the set of permissions for the specified CodeSource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
     * @param CodeSource the codesource associated with the caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
     * This encapsulates the original location of the code (where the code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
     * came from) and the public key(s) of its signer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     * @return the set of permissions according to the policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  1209
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
    public PermissionCollection getPermissions(CodeSource codesource) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
        return getPermissions(new Permissions(), codesource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     * Examines the global policy and returns the provided Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     * object with additional permissions granted to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * ProtectionDomain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * @param perm the Permissions to populate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     * @param pd the ProtectionDomain associated with the caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * @return the set of Permissions according to the policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
    private PermissionCollection getPermissions(Permissions perms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
                                        ProtectionDomain pd ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
            debug.println("getPermissions:\n\t" + printPD(pd));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
        final CodeSource cs = pd.getCodeSource();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
        if (cs == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
            return perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
        CodeSource canonCodeSource = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
            new java.security.PrivilegedAction<CodeSource>(){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
                public CodeSource run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
                    return canonicalizeCodebase(cs, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        return getPermissions(perms, canonCodeSource, pd.getPrincipals());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
     * Examines the global policy and returns the provided Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
     * object with additional permissions granted to the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
     * CodeSource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
     * @param permissions the permissions to populate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     * @param codesource the codesource associated with the caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     * This encapsulates the original location of the code (where the code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
     * came from) and the public key(s) of its signer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
     * @return the set of permissions according to the policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
    private PermissionCollection getPermissions(Permissions perms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
                               final CodeSource cs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        CodeSource canonCodeSource = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
            new java.security.PrivilegedAction<CodeSource>(){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
                public CodeSource run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
                    return canonicalizeCodebase(cs, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
        return getPermissions(perms, canonCodeSource, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
    private Permissions getPermissions(Permissions perms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
                                       final CodeSource cs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
                                       Principal[] principals) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
        PolicyInfo pi = policyInfo.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
        for (PolicyEntry entry : pi.policyEntries) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
            addPermissions(perms, cs, principals, entry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
        // Go through policyEntries gotten from identity db; sync required
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
        // because checkForTrustedIdentity (below) might update list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
        synchronized (pi.identityPolicyEntries) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
            for (PolicyEntry entry : pi.identityPolicyEntries) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
                addPermissions(perms, cs, principals, entry);
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
        // now see if any of the keys are trusted ids.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
        if (!ignoreIdentityScope) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
            Certificate certs[] = cs.getCertificates();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
            if (certs != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
                for (int k=0; k < certs.length; k++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
                    Object idMap = pi.aliasMapping.get(certs[k]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
                    if (idMap == null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
                        checkForTrustedIdentity(certs[k], pi)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
                        // checkForTrustedIdentity added it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
                        // to the policy for us. next time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
                        // around we'll find it. This time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
                        // around we need to add it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
                        perms.add(SecurityConstants.ALL_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
        return perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
    private void addPermissions(Permissions perms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
        final CodeSource cs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
        Principal[] principals,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
        final PolicyEntry entry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
            debug.println("evaluate codesources:\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
                "\tPolicy CodeSource: " + entry.getCodeSource() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
                "\tActive CodeSource: " + cs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
        // check to see if the CodeSource implies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
        Boolean imp = AccessController.doPrivileged
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
            (new PrivilegedAction<Boolean>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
            public Boolean run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
                return new Boolean(entry.getCodeSource().implies(cs));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
        if (!imp.booleanValue()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
                debug.println("evaluation (codesource) failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
            // CodeSource does not imply - return and try next policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
        // check to see if the Principals imply
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        List<PolicyParser.PrincipalEntry> entryPs = entry.getPrincipals();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        if (debug != null) {
7973
dffe8439eb20 7005608: diamond conversion of JCA and crypto providers
smarks
parents: 7179
diff changeset
  1336
            ArrayList<PolicyParser.PrincipalEntry> accPs = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
            if (principals != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
                for (int i = 0; i < principals.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
                    accPs.add(new PolicyParser.PrincipalEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
                                        (principals[i].getClass().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
                                        principals[i].getName()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
            debug.println("evaluate principals:\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
                "\tPolicy Principals: " + entryPs + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
                "\tActive Principals: " + accPs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
        if (entryPs == null || entryPs.size() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
            // policy entry has no principals -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
            // add perms regardless of principals in current ACC
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
            addPerms(perms, principals, entry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
                debug.println("evaluation (codesource/principals) passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
        } else if (principals == null || principals.length == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
            // current thread has no principals but this policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
            // has principals - perms are not added
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
                debug.println("evaluation (principals) failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
        // current thread has principals and this policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        // has principals.  see if policy entry principals match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
        // principals in current ACC
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
        for (int i = 0; i < entryPs.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
            PolicyParser.PrincipalEntry pppe = entryPs.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
            // see if principal entry is a PrincipalComparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
                Class<?> pClass = Class.forName
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
                                (pppe.principalClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
                                true,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
                                Thread.currentThread().getContextClassLoader());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
                if (!PrincipalComparator.class.isAssignableFrom(pClass)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
                    // common case - dealing with regular Principal class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
                    // see if policy entry principal is in current ACC
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
                    if (!checkEntryPs(principals, pppe)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
                        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
                            debug.println("evaluation (principals) failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
                        // policy entry principal not in current ACC -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
                        // immediately return and go to next policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
                        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
                    // dealing with a PrincipalComparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
                    Constructor<?> c = pClass.getConstructor(PARAMS1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
                    PrincipalComparator pc = (PrincipalComparator)c.newInstance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
                                        (new Object[] { pppe.principalName });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
                    if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
                        debug.println("found PrincipalComparator " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
                                        pc.getClass().getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
                    // check if the PrincipalComparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
                    // implies the current thread's principals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
7973
dffe8439eb20 7005608: diamond conversion of JCA and crypto providers
smarks
parents: 7179
diff changeset
  1417
                    Set<Principal> pSet = new HashSet<>(principals.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
                    for (int j = 0; j < principals.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
                        pSet.add(principals[j]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
                    Subject subject = new Subject(true,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
                                                pSet,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
                                                Collections.EMPTY_SET,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
                                                Collections.EMPTY_SET);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
                    if (!pc.implies(subject)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
                        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
                            debug.println
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
                                ("evaluation (principal comparator) failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
                        // policy principal does not imply the current Subject -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
                        // immediately return and go to next policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
                        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
                // fall back to regular principal comparison.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
                // see if policy entry principal is in current ACC
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
                    e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
                if (!checkEntryPs(principals, pppe)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
                    if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
                        debug.println("evaluation (principals) failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                    // policy entry principal not in current ACC -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
                    // immediately return and go to next policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
            // either the principal information matched,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
            // or the PrincipalComparator.implies succeeded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
            // continue loop and test the next policy principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
        // all policy entry principals were found in the current ACC -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
        // grant the policy permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
            debug.println("evaluation (codesource/principals) passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
        addPerms(perms, principals, entry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
    private void addPerms(Permissions perms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
                        Principal[] accPs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
                        PolicyEntry entry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
        for (int i = 0; i < entry.permissions.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
            Permission p = entry.permissions.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
                debug.println("  granting " + p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
            if (p instanceof SelfPermission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
                // handle "SELF" permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
                expandSelf((SelfPermission)p,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
                        entry.getPrincipals(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
                        accPs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
                        perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
                perms.add(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
     * This method returns, true, if the principal in the policy entry,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
     * pppe, is part of the current thread's principal array, pList.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
     * This method also returns, true, if the policy entry's principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
     * is appropriately wildcarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
     * Note that the provided <i>pppe</i> argument may have
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
     * wildcards (*) for both the <code>Principal</code> class and name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
     * @param pList an array of principals from the current thread's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
     *          AccessControlContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
     * @param pppe a Principal specified in a policy grant entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
     * @return true if the current thread's pList "contains" the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     *          principal in the policy entry, pppe.  This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     *          also returns true if the policy entry's principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     *          appropriately wildcarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
    private boolean checkEntryPs(Principal[] pList,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
                                PolicyParser.PrincipalEntry pppe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
        for (int i = 0; i < pList.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
            if (pppe.principalClass.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
                        (PolicyParser.PrincipalEntry.WILDCARD_CLASS) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
                pppe.principalClass.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
                        (pList[i].getClass().getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
                if (pppe.principalName.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
                        (PolicyParser.PrincipalEntry.WILDCARD_NAME) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
                    pppe.principalName.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
                        (pList[i].getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     * @param sp the SelfPermission that needs to be expanded <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
     * @param entryPs list of principals for the Policy entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
     * @param pdp Principal array from the current ProtectionDomain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
     * @param perms the PermissionCollection where the individual
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
     *                  Permissions will be added after expansion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
    private void expandSelf(SelfPermission sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
                            List<PolicyParser.PrincipalEntry> entryPs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
                            Principal[] pdp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
                            Permissions perms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
        if (entryPs == null || entryPs.size() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
            // No principals in the grant to substitute
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
                debug.println("Ignoring permission "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
                                + sp.getSelfType()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
                                + " with target name ("
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
                                + sp.getSelfName() + ").  "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
                                + "No Principal(s) specified "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
                                + "in the grant clause.  "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
                                + "SELF-based target names are "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
                                + "only valid in the context "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
                                + "of a Principal-based grant entry."
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
                             );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
        int startIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
        int v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
        StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
        while ((v = sp.getSelfName().indexOf(SELF, startIndex)) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
            // add non-SELF string
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
            sb.append(sp.getSelfName().substring(startIndex, v));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
            // expand SELF
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
            ListIterator<PolicyParser.PrincipalEntry> pli =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
                                                entryPs.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
            while (pli.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
                PolicyParser.PrincipalEntry pppe = pli.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
                String[][] principalInfo = getPrincipalInfo(pppe,pdp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
                for (int i = 0; i < principalInfo.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
                    if (i != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
                        sb.append(", ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
                    sb.append(principalInfo[i][0] + " " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
                        "\"" + principalInfo[i][1] + "\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
                if (pli.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
                    sb.append(", ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
            startIndex = v + SELF.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
        // add remaining string (might be the entire string)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
        sb.append(sp.getSelfName().substring(startIndex));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
            debug.println("  expanded:\n\t" + sp.getSelfName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
                        + "\n  into:\n\t" + sb.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
            // first try to instantiate the permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
            perms.add(getInstance(sp.getSelfType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
                                sb.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
                                sp.getSelfActions()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
        } catch (ClassNotFoundException cnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
            // ok, the permission is not in the bootclasspath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
            // before we add an UnresolvedPermission, check to see
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
            // whether this perm already belongs to the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
            // if so, use that perm's ClassLoader to create a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
            // one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
            Class<?> pc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
            synchronized (perms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
                Enumeration<Permission> e = perms.elements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
                while (e.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
                    Permission pElement = e.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
                    if (pElement.getClass().getName().equals(sp.getSelfType())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
                        pc = pElement.getClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
            if (pc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
                // create an UnresolvedPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
                perms.add(new UnresolvedPermission(sp.getSelfType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
                                                        sb.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
                                                        sp.getSelfActions(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
                                                        sp.getCerts()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
                    // we found an instantiated permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
                    // use its class loader to instantiate a new permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
                    Constructor<?> c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
                    // name parameter can not be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
                    if (sp.getSelfActions() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
                            c = pc.getConstructor(PARAMS1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
                            perms.add((Permission)c.newInstance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
                                 (new Object[] {sb.toString()}));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
                        } catch (NoSuchMethodException ne) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
                            c = pc.getConstructor(PARAMS2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
                            perms.add((Permission)c.newInstance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
                                 (new Object[] {sb.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
                                                sp.getSelfActions() }));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
                        c = pc.getConstructor(PARAMS2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
                        perms.add((Permission)c.newInstance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
                           (new Object[] {sb.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
                                          sp.getSelfActions()}));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
                } catch (Exception nme) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
                    if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
                        debug.println("self entry expansion " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
                        " instantiation failed: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
                        +  nme.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
                debug.println(e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     * return the principal class/name pair in the 2D array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * array[x][y]:     x corresponds to the array length.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     *                  if (y == 0), it's the principal class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     *                  if (y == 1), it's the principal name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
    private String[][] getPrincipalInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
        (PolicyParser.PrincipalEntry pe, Principal[] pdp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
        // there are 3 possibilities:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
        // 1) the entry's Principal class and name are not wildcarded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
        // 2) the entry's Principal name is wildcarded only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
        // 3) the entry's Principal class and name are wildcarded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
        if (!pe.principalClass.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
            (PolicyParser.PrincipalEntry.WILDCARD_CLASS) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
            !pe.principalName.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
            (PolicyParser.PrincipalEntry.WILDCARD_NAME)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
            // build an info array for the principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
            // from the Policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
            String[][] info = new String[1][2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
            info[0][0] = pe.principalClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
            info[0][1] = pe.principalName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
            return info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
        } else if (!pe.principalClass.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
                   (PolicyParser.PrincipalEntry.WILDCARD_CLASS) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
                   pe.principalName.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
                   (PolicyParser.PrincipalEntry.WILDCARD_NAME)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
            // build an info array for every principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
            // in the current domain which has a principal class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
            // that is equal to policy entry principal class name
7973
dffe8439eb20 7005608: diamond conversion of JCA and crypto providers
smarks
parents: 7179
diff changeset
  1700
            List<Principal> plist = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
            for (int i = 0; i < pdp.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
                if(pe.principalClass.equals(pdp[i].getClass().getName()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
                    plist.add(pdp[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
            String[][] info = new String[plist.size()][2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
            int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
            java.util.Iterator<Principal> pIterator = plist.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
            while (pIterator.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
                Principal p = pIterator.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
                info[i][0] = p.getClass().getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
                info[i][1] = p.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
            return info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
            // build an info array for every
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
            // one of the current Domain's principals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
            String[][] info = new String[pdp.length][2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
            for (int i = 0; i < pdp.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
                info[i][0] = pdp[i].getClass().getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
                info[i][1] = pdp[i].getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
            return info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
     * Returns the signer certificates from the list of certificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
     * associated with the given code source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
     * The signer certificates are those certificates that were used
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
     * to verifysigned code originating from the codesource location.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
     * This method assumes that in the given code source, each signer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
     * certificate is followed by its supporting certificate chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
     * (which may be empty), and that the signer certificate and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
     * supporting certificate chain are ordered bottom-to-top
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
     * (i.e., with the signer certificate first and the (root) certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
     * authority last).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
    protected Certificate[] getSignerCertificates(CodeSource cs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
        Certificate[] certs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
        if ((certs = cs.getCertificates()) == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
        for (int i=0; i<certs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
            if (!(certs[i] instanceof X509Certificate))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
                return cs.getCertificates();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
        // Do we have to do anything?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
        int count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
        while (i < certs.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
            count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
            while (((i+1) < certs.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
                   && ((X509Certificate)certs[i]).getIssuerDN().equals(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
                           ((X509Certificate)certs[i+1]).getSubjectDN())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
            i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
        if (count == certs.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
            // Done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
            return certs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
7973
dffe8439eb20 7005608: diamond conversion of JCA and crypto providers
smarks
parents: 7179
diff changeset
  1770
        ArrayList<Certificate> userCertList = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
        i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
        while (i < certs.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
            userCertList.add(certs[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
            while (((i+1) < certs.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
                   && ((X509Certificate)certs[i]).getIssuerDN().equals(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
                           ((X509Certificate)certs[i+1]).getSubjectDN())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
            i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
        Certificate[] userCerts = new Certificate[userCertList.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
        userCertList.toArray(userCerts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
        return userCerts;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
    private CodeSource canonicalizeCodebase(CodeSource cs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
                                            boolean extractSignerCerts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
        String path = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
        CodeSource canonCs = cs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
        URL u = cs.getLocation();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
        if (u != null && u.getProtocol().equals("file")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
            boolean isLocalFile = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
            String host = u.getHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
            isLocalFile = (host == null || host.equals("") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
                host.equals("~") || host.equalsIgnoreCase("localhost"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
            if (isLocalFile) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
                path = u.getFile().replace('/', File.separatorChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
                path = ParseUtil.decode(path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
        if (path != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
                URL csUrl = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
                path = canonPath(path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
                csUrl = ParseUtil.fileToEncodedURL(new File(path));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
                if (extractSignerCerts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
                    canonCs = new CodeSource(csUrl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
                                             getSignerCertificates(cs));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
                    canonCs = new CodeSource(csUrl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
                                             cs.getCertificates());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
            } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
                // leave codesource as it is, unless we have to extract its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
                // signer certificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
                if (extractSignerCerts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
                    canonCs = new CodeSource(cs.getLocation(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
                                             getSignerCertificates(cs));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
            if (extractSignerCerts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
                canonCs = new CodeSource(cs.getLocation(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
                                         getSignerCertificates(cs));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
        return canonCs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
4053
c2f8e57ba2f8 6891707: Eliminate the java.io.FilePermission dependency on PolicyFile
mchung
parents: 3956
diff changeset
  1835
    // Wrapper to return a canonical path that avoids calling getCanonicalPath()
c2f8e57ba2f8 6891707: Eliminate the java.io.FilePermission dependency on PolicyFile
mchung
parents: 3956
diff changeset
  1836
    // with paths that are intended to match all entries in the directory
c2f8e57ba2f8 6891707: Eliminate the java.io.FilePermission dependency on PolicyFile
mchung
parents: 3956
diff changeset
  1837
    private static String canonPath(String path) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
        if (path.endsWith("*")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
            path = path.substring(0, path.length()-1) + "-";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
            path = new File(path).getCanonicalPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
            return path.substring(0, path.length()-1) + "*";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
            return new File(path).getCanonicalPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
    private String printPD(ProtectionDomain pd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
        Principal[] principals = pd.getPrincipals();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
        String pals = "<no principals>";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
        if (principals != null && principals.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
            StringBuilder palBuf = new StringBuilder("(principals ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
            for (int i = 0; i < principals.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
                palBuf.append(principals[i].getClass().getName() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
                              " \"" + principals[i].getName() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
                              "\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
                if (i < principals.length-1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
                    palBuf.append(", ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
                    palBuf.append(")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
            pals = palBuf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
        return "PD CodeSource: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
                + pd.getCodeSource()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
                +"\n\t" + "PD ClassLoader: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
                + pd.getClassLoader()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
                +"\n\t" + "PD Principals: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
                + pals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
     * return true if no replacement was performed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
     * or if replacement succeeded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
    private boolean replacePrincipals(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
        List<PolicyParser.PrincipalEntry> principals, KeyStore keystore) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
        if (principals == null || principals.size() == 0 || keystore == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
        ListIterator<PolicyParser.PrincipalEntry> i = principals.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
        while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
            PolicyParser.PrincipalEntry pppe = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
            if (pppe.principalClass.equals(PolicyParser.REPLACE_NAME)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
                // perform replacement
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
                // (only X509 replacement is possible now)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
                String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
                if ((name = getDN(pppe.principalName, keystore)) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
                if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
                    debug.println("  Replacing \"" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
                        pppe.principalName +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
                        "\" with " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
                        X500PRINCIPAL + "/\"" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
                        name +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
                        "\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
                pppe.principalClass = X500PRINCIPAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
                pppe.principalName = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
        // return true if no replacement was performed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
        // or if replacement succeeded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
    private void expandPermissionName(PolicyParser.PermissionEntry pe,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
                                        KeyStore keystore) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
        // short cut the common case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
        if (pe.name == null || pe.name.indexOf("${{", 0) == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
        int startIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
        int b, e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
        StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
        while ((b = pe.name.indexOf("${{", startIndex)) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
            e = pe.name.indexOf("}}", b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
            if (e < 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
            sb.append(pe.name.substring(startIndex, b));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
            // get the value in ${{...}}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
            String value = pe.name.substring(b+3, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
            // parse up to the first ':'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
            int colonIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
            String prefix = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
            String suffix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
            if ((colonIndex = value.indexOf(":")) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
                prefix = value.substring(0, colonIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
            // handle different prefix possibilities
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
            if (prefix.equalsIgnoreCase("self")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
                // do nothing - handled later
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
                sb.append(pe.name.substring(b, e+2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
                startIndex = e+2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
            } else if (prefix.equalsIgnoreCase("alias")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
                // get the suffix and perform keystore alias replacement
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
                if (colonIndex == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
                    MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
                        (ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1950
                        ("alias.name.not.provided.pe.name."));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
                    Object[] source = {pe.name};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
                    throw new Exception(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
                suffix = value.substring(colonIndex+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
                if ((suffix = getDN(suffix, keystore)) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
                    MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
                        (ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1958
                        ("unable.to.perform.substitution.on.alias.suffix"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
                    Object[] source = {value.substring(colonIndex+1)};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
                    throw new Exception(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
                sb.append(X500PRINCIPAL + " \"" + suffix + "\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
                startIndex = e+2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
                MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
                        (ResourcesMgr.getString
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  1968
                        ("substitution.value.prefix.unsupported"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
                Object[] source = {prefix};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
                throw new Exception(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
        // copy the rest of the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
        sb.append(pe.name.substring(startIndex));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
        // replace the name with expanded value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
        if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
            debug.println("  Permission name expanded from:\n\t" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
                        pe.name + "\nto\n\t" + sb.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
        pe.name = sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
    private String getDN(String alias, KeyStore keystore) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
        Certificate cert = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
            cert = keystore.getCertificate(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
                debug.println("  Error retrieving certificate for '" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
                                alias +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
                                "': " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
                                e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
        if (cert == null || !(cert instanceof X509Certificate)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
            if (debug != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
                debug.println("  -- No certificate for '" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
                                alias +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
                                "' - ignoring entry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
            X509Certificate x509Cert = (X509Certificate)cert;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
            // 4702543:  X500 names with an EmailAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
            // were encoded incorrectly.  create new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
            // X500Principal name with correct encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
            X500Principal p = new X500Principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
                (x509Cert.getSubjectX500Principal().toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
            return p.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
     * Checks public key. If it is marked as trusted in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
     * the identity database, add it to the policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
     * with the AllPermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
    private boolean checkForTrustedIdentity(final Certificate cert,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
        PolicyInfo myInfo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
     * Each entry in the policy configuration file is represented by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
     * PolicyEntry object.  <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
     * A PolicyEntry is a (CodeSource,Permission) pair.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
     * CodeSource contains the (URL, PublicKey) that together identify
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
     * where the Java bytecodes come from and who (if anyone) signed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
     * them.  The URL could refer to localhost.  The URL could also be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
     * null, meaning that this policy entry is given to all comers, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
     * long as they match the signer field.  The signer could be null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
     * meaning the code is not signed. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
     * The Permission contains the (Type, Name, Action) triplet. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
     * For now, the Policy object retrieves the public key from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
     * X.509 certificate on disk that corresponds to the signedBy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
     * alias specified in the Policy config file.  For reasons of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
     * efficiency, the Policy object keeps a hashtable of certs already
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
     * read in.  This could be replaced by a secure internal key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
     * store.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
     * For example, the entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
     *          permission java.io.File "/tmp", "read,write",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
     *          signedBy "Duke";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
     * is represented internally
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
     * FilePermission f = new FilePermission("/tmp", "read,write");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
     * PublicKey p = publickeys.get("Duke");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
     * URL u = InetAddress.getLocalHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
     * CodeBase c = new CodeBase( p, u );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
     * pe = new PolicyEntry(f, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
     * @author Marianne Mueller
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
     * @author Roland Schemers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
     * @see java.security.CodeSource
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
     * @see java.security.Policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
     * @see java.security.Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
     * @see java.security.ProtectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
    private static class PolicyEntry {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
        private final CodeSource codesource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
        final List<Permission> permissions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
        private final List<PolicyParser.PrincipalEntry> principals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
         * Given a Permission and a CodeSource, create a policy entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
         * XXX Decide if/how to add validity fields and "purpose" fields to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
         * XXX policy entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
         * @param cs the CodeSource, which encapsulates the URL and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
         *        public key
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
         *        attributes from the policy config file. Validity checks
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
         *        are performed on the public key before PolicyEntry is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
         *        called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
        PolicyEntry(CodeSource cs, List<PolicyParser.PrincipalEntry> principals)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
            this.codesource = cs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
            this.permissions = new ArrayList<Permission>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
            this.principals = principals; // can be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
        PolicyEntry(CodeSource cs)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
            this(cs, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
        List<PolicyParser.PrincipalEntry> getPrincipals() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
            return principals; // can be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
         * add a Permission object to this entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
         * No need to sync add op because perms are added to entry only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
         * while entry is being initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
        void add(Permission p) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
            permissions.add(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
         * Return the CodeSource for this policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
        CodeSource getCodeSource() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
            return codesource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2125
        @Override public String toString(){
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
            StringBuilder sb = new StringBuilder();
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2127
            sb.append(ResourcesMgr.getString("LPARAM"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
            sb.append(getCodeSource());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
            sb.append("\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
            for (int j = 0; j < permissions.size(); j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
                Permission p = permissions.get(j);
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2132
                sb.append(ResourcesMgr.getString("SPACE"));
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2133
                sb.append(ResourcesMgr.getString("SPACE"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
                sb.append(p);
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2135
                sb.append(ResourcesMgr.getString("NEWLINE"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
            }
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2137
            sb.append(ResourcesMgr.getString("RPARAM"));
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2138
            sb.append(ResourcesMgr.getString("NEWLINE"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
            return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
    private static class SelfPermission extends Permission {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
        private static final long serialVersionUID = -8315562579967246806L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
         * The class name of the Permission class that will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
         * created when this self permission is expanded .
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
         * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
        private String type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
         * The permission name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
         * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
        private String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
         * The actions of the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
         * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
        private String actions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
         * The certs of the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
         * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
        private Certificate certs[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
         * Creates a new SelfPermission containing the permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
         * information needed later to expand the self
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
         * @param type the class name of the Permission class that will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
         * created when this permission is expanded and if necessary resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
         * @param name the name of the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
         * @param actions the actions of the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
         * @param certs the certificates the permission's class was signed with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
         * This is a list of certificate chains, where each chain is composed of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
         * a signer certificate and optionally its supporting certificate chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
         * Each chain is ordered bottom-to-top (i.e., with the signer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
         * certificate first and the (root) certificate authority last).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
        public SelfPermission(String type, String name, String actions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
                              Certificate certs[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
            super(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
            if (type == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
                throw new NullPointerException
7179
4afb81e50183 6987827: security/util/Resources.java needs improvement
weijun
parents: 5506
diff changeset
  2195
                    (ResourcesMgr.getString("type.can.t.be.null"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
            this.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
            this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2199
            this.actions = actions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
            if (certs != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
                // Extract the signer certs from the list of certificates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2202
                for (int i=0; i<certs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2203
                    if (!(certs[i] instanceof X509Certificate)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
                        // there is no concept of signer certs, so we store the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
                        // entire cert array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
                        this.certs = certs.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
                if (this.certs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
                    // Go through the list of certs and see if all the certs are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2213
                    // signer certs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
                    int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
                    int count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
                    while (i < certs.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
                        count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2218
                        while (((i+1) < certs.length) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2219
                            ((X509Certificate)certs[i]).getIssuerDN().equals(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
                            ((X509Certificate)certs[i+1]).getSubjectDN())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
                            i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
                        i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
                    if (count == certs.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
                        // All the certs are signer certs, so we store the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
                        // entire array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
                        this.certs = certs.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
                    if (this.certs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
                        // extract the signer certs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
                        ArrayList<Certificate> signerCerts =
7973
dffe8439eb20 7005608: diamond conversion of JCA and crypto providers
smarks
parents: 7179
diff changeset
  2234
                            new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
                        i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
                        while (i < certs.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
                            signerCerts.add(certs[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
                            while (((i+1) < certs.length) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
                                ((X509Certificate)certs[i]).getIssuerDN().equals(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
                                ((X509Certificate)certs[i+1]).getSubjectDN())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
                                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
                            i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
                        this.certs = new Certificate[signerCerts.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
                        signerCerts.toArray(this.certs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2249
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
         * This method always returns false for SelfPermission permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
         * That is, an SelfPermission never considered to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
         * imply another permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
         * @param p the permission to check against.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
         * @return false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
         */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2261
        @Override public boolean implies(Permission p) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2265
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
         * Checks two SelfPermission objects for equality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2267
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
         * Checks that <i>obj</i> is an SelfPermission, and has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
         * the same type (class) name, permission name, actions, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
         * certificates as this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
         * @param obj the object we are testing for equality with this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2273
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2274
         * @return true if obj is an SelfPermission, and has the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2275
         * type (class) name, permission name, actions, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
         * certificates as this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2277
         */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2278
        @Override public boolean equals(Object obj) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2279
            if (obj == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2280
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2281
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2282
            if (! (obj instanceof SelfPermission))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2283
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2284
            SelfPermission that = (SelfPermission) obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2286
            if (!(this.type.equals(that.type) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
                this.name.equals(that.name) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2288
                this.actions.equals(that.actions)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2290
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2291
            if (this.certs.length != that.certs.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
            int i,j;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
            boolean match;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
            for (i = 0; i < this.certs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2298
                match = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
                for (j = 0; j < that.certs.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2300
                    if (this.certs[i].equals(that.certs[j])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2301
                        match = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2302
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2303
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2304
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
                if (!match) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2308
            for (i = 0; i < that.certs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2309
                match = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
                for (j = 0; j < this.certs.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
                    if (that.certs[i].equals(this.certs[j])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2312
                        match = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2313
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
                if (!match) return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
         * Returns the hash code value for this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
         * @return a hash code value for this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
         */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2326
        @Override public int hashCode() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
            int hash = type.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
            if (name != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
                hash ^= name.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
            if (actions != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
                hash ^= actions.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
            return hash;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
         * Returns the canonical string representation of the actions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
         * which currently is the empty string "", since there are no actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
         * for an SelfPermission. That is, the actions for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
         * permission that will be created when this SelfPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
         * is resolved may be non-null, but an SelfPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
         * itself is never considered to have any actions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
         * @return the empty string "".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
         */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2345
        @Override public String getActions() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
            return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
        public String getSelfType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
            return type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
        public String getSelfName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
        public String getSelfActions() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
            return actions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
        public Certificate[] getCerts() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
            return certs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
         * Returns a string describing this SelfPermission.  The convention
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
         * is to specify the class name, the permission name, and the actions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
         * in the following format: '(unresolved "ClassName" "name" "actions")'.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
         * @return information about this SelfPermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
         */
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2372
        @Override public String toString() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
            return "(SelfPermission " + type + " " + name + " " + actions + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     * holds policy information that we need to synch on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
    private static class PolicyInfo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
        private static final boolean verbose = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
        // Stores grant entries in the policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2384
        final List<PolicyEntry> policyEntries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
        // Stores grant entries gotten from identity database
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
        // Use separate lists to avoid sync on policyEntries
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
        final List<PolicyEntry> identityPolicyEntries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
        // Maps aliases to certs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
        final Map aliasMapping;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
        // Maps ProtectionDomain to PermissionCollection
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2394
        private final ProtectionDomainCache[] pdMapping;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
        private java.util.Random random;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
        PolicyInfo(int numCaches) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
            policyEntries = new ArrayList<PolicyEntry>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
            identityPolicyEntries =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
                Collections.synchronizedList(new ArrayList<PolicyEntry>(2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
            aliasMapping = Collections.synchronizedMap(new HashMap(11));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2403
            pdMapping = new ProtectionDomainCache[numCaches];
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2404
            JavaSecurityProtectionDomainAccess jspda
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2405
                = SharedSecrets.getJavaSecurityProtectionDomainAccess();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
            for (int i = 0; i < numCaches; i++) {
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2407
                pdMapping[i] = jspda.getProtectionDomainCache();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
            if (numCaches > 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
                random = new java.util.Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
        }
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 4053
diff changeset
  2413
        ProtectionDomainCache getPdMapping() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
            if (pdMapping.length == 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
                return pdMapping[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
                int i = java.lang.Math.abs(random.nextInt() % pdMapping.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
                return pdMapping[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
}