1 /*
   2  * Copyright (c) 2013, 2020, 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  * @requires vm.bits == 64
  29  * @modules java.base/jdk.internal.misc
  30  *          java.management
  31  * @build sun.hotspot.WhiteBox
  32  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  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 import jtreg.SkippedException;
  41 
  42 public class ReadFromNoaccessArea {
  43 
  44   public static void main(String args[]) throws Exception {
  45 
  46     ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  47           "-Xbootclasspath/a:.",
  48           "-XX:+UnlockDiagnosticVMOptions",
  49           "-XX:+WhiteBoxAPI",
  50           "-XX:+UseCompressedOops",
  51           "-XX:HeapBaseMinAddress=33G",
  52           "-XX:-CreateCoredumpOnCrash",
  53           "-Xmx128m",
  54           DummyClassWithMainTryingToReadFromNoaccessArea.class.getName());
  55 
  56     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  57     System.out.println("******* Printing stdout for analysis in case of failure *******");
  58     System.out.println(output.getStdout());
  59     System.out.println("******* Printing stderr for analysis in case of failure *******");
  60     System.out.println(output.getStderr());
  61     System.out.println("***************************************************************");
  62     if (output.getStdout() != null && output.getStdout().contains("WB_ReadFromNoaccessArea method is useless")) {
  63       throw new SkippedException("There is no protected page in ReservedHeapSpace in these circumstance");
  64     }
  65     if (Platform.isWindows()) {
  66       output.shouldContain("EXCEPTION_ACCESS_VIOLATION");
  67     } else if (Platform.isOSX()) {
  68       output.shouldContain("SIGBUS");
  69     } else {
  70       output.shouldContain("SIGSEGV");
  71     }
  72   }
  73 
  74   public static class DummyClassWithMainTryingToReadFromNoaccessArea {
  75 
  76     // This method calls whitebox method reading from noaccess area
  77     public static void main(String args[]) throws Exception {
  78       WhiteBox.getWhiteBox().readFromNoaccessArea();
  79       throw new Exception("Call of readFromNoaccessArea succeeded! This is wrong. Crash expected. Test failed.");
  80     }
  81   }
  82 
  83 }