1 /*
   2  * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4165973
  27  * @summary Attempt to read inaccessible property can produce
  28  *          exception of the wrong type.
  29  * @author Tom Rodriguez
  30  *
  31  * @modules java.rmi
  32  * @run main compiler.exceptions.ExceptionInInit
  33  */
  34 
  35 package compiler.exceptions;
  36 
  37 import java.security.AccessController;
  38 import java.security.PrivilegedAction;
  39 
  40 public class ExceptionInInit {
  41 
  42     public static void main(String[] args) {
  43 
  44         Test test = null;
  45 
  46         try {
  47             System.setSecurityManager(new java.rmi.RMISecurityManager());
  48             Test.showTest();
  49         } catch (ExceptionInInitializerError e) {
  50         }
  51     }
  52 
  53     public static class FooBar {
  54         static String test = "test";
  55         FooBar(String test) {
  56             this.test = test;
  57         }
  58     }
  59 
  60     public static class Test extends FooBar {
  61 
  62         /*
  63          * An AccessControlException is thrown in the static initializer of the
  64          * class FooBar. This exception should produce an ExceptionInInitializer
  65          * error. Instead it causes a more cryptic ClassNotFound error.
  66          *
  67          * The following is an excerpt from the output from java.security.debug=all
  68          *
  69          * access: access denied (java.util.PropertyPermission test.src read)
  70          * java.lang.Exception: Stack trace
  71          *         at java.lang.Thread.dumpStack(Thread.java:938)
  72          *         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:184)
  73          *         at java.security.AccessController.checkPermission(AccessController.java:402)
  74          *         at java.lang.SecurityManager.checkPermission(SecurityManager.java:516)
  75          *         at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1035)
  76          *         at java.lang.System.getProperty(System.java:441)
  77          *         at sun.security.action.GetPropertyAction.run(GetPropertyAction.java:73)
  78          *         at java.security.AccessController.doPrivileged(Native Method)
  79          *         at ExceptionInInit$Test.&#60clinit>(ExceptionInInit.java:33)
  80          *         at ExceptionInInit.main(ExceptionInInit.java:18)
  81          * access: domain that failed ProtectionDomain (file:/tmp/exceptionInInit/<no certificates>)
  82          *
  83          * The following exception is occurring when this test program tries
  84          * to access the test.src property.
  85          */
  86         private static String test =
  87             AccessController.doPrivileged((PrivilegedAction<String>)() -> System.getProperty("test.src", "."));
  88 
  89         Test(String test) {
  90             super(test);
  91         }
  92         public static void showTest() {
  93             System.err.println(test);
  94         }
  95     }
  96 }