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