1 /*
   2  * Copyright (c) 2013, 2015, 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  * @summary Test that touching noaccess area in class ReservedHeapSpace results in SIGSEGV/ACCESS_VIOLATION
  27  * @library /test/lib
  28  * @modules java.base/jdk.internal.misc
  29  *          java.management
  30  * @build sun.hotspot.WhiteBox
  31  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  32  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  33  * @run main ReadFromNoaccessArea
  34  */
  35 
  36 import jdk.test.lib.Platform;
  37 import jdk.test.lib.process.ProcessTools;
  38 import jdk.test.lib.process.OutputAnalyzer;
  39 import sun.hotspot.WhiteBox;
  40 
  41 public class ReadFromNoaccessArea {
  42 
  43   public static void main(String args[]) throws Exception {
  44     if (!Platform.is64bit()) {
  45       System.out.println("ReadFromNoaccessArea tests is useful only on 64bit architecture. Passing silently.");
  46       return;
  47     }
  48 
  49     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  50           "-Xbootclasspath/a:.",
  51           "-XX:+UnlockDiagnosticVMOptions",
  52           "-XX:+WhiteBoxAPI",
  53           "-XX:+UseCompressedOops",
  54           "-XX:HeapBaseMinAddress=33G",
  55           "-XX:-CreateCoredumpOnCrash",
  56           "-Xmx32m",
  57           DummyClassWithMainTryingToReadFromNoaccessArea.class.getName());
  58 
  59     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  60     System.out.println("******* Printing stdout for analysis in case of failure *******");
  61     System.out.println(output.getStdout());
  62     System.out.println("******* Printing stderr for analysis in case of failure *******");
  63     System.out.println(output.getStderr());
  64     System.out.println("***************************************************************");
  65     if (output.getStdout() != null && output.getStdout().contains("WB_ReadFromNoaccessArea method is useless")) {
  66       // Test conditions broken. There is no protected page in ReservedHeapSpace in these circumstances. Silently passing test.
  67       return;
  68     }
  69     if (Platform.isWindows()) {
  70       output.shouldContain("EXCEPTION_ACCESS_VIOLATION");
  71     } else if (Platform.isOSX()) {
  72       output.shouldContain("SIGBUS");
  73     } else {
  74       output.shouldContain("SIGSEGV");
  75     }
  76   }
  77 
  78   public static class DummyClassWithMainTryingToReadFromNoaccessArea {
  79 
  80     // This method calls whitebox method reading from noaccess area
  81     public static void main(String args[]) throws Exception {
  82       WhiteBox.getWhiteBox().readFromNoaccessArea();
  83       throw new Exception("Call of readFromNoaccessArea succeeded! This is wrong. Crash expected. Test failed.");
  84     }
  85   }
  86 
  87 }