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