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