| /* |
| * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| * |
| * This code is free software; you can redistribute it and/or modify it |
| * under the terms of the GNU General Public License version 2 only, as |
| * published by the Free Software Foundation. |
| * |
| * This code is distributed in the hope that it will be useful, but WITHOUT |
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| * version 2 for more details (a copy is included in the LICENSE file that |
| * accompanied this code). |
| * |
| * You should have received a copy of the GNU General Public License version |
| * 2 along with this work; if not, write to the Free Software Foundation, |
| * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| * |
| * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| * or visit www.oracle.com if you need additional information or have any |
| * questions. |
| */ |
| |
| /* |
| * @test TestPosixSig.java |
| * @bug 8292559 |
| * @summary test that -XX:+CheckJNICalss displays changed signal handlers. |
| * @requires os.family != "windows" |
| * @library /test/lib |
| * @run driver TestPosixSig |
| */ |
| |
| import jdk.test.lib.process.ProcessTools; |
| import jdk.test.lib.process.OutputAnalyzer; |
| |
| public class TestPosixSig { |
| |
| private static native void changeSigActionFor(int val); |
| |
| public static void main(String[] args) throws Throwable { |
| // Get the library path property. |
| String libpath = System.getProperty("java.library.path"); |
| |
| if (args.length == 0) { |
| |
| // Create a new java process for the TestPsig Java/JNI test. |
| // We run the VM in interpreted mode, because the JIT might mark |
| // a Java method as not-entrant, which means turning the first instruction |
| // into an illegal one. Calling such a method after establishing |
| // the new SIGILL signal handler with TestPosixSig.changeSigActionFor(4) |
| // below, but before the JNI checker noted and reacted on this signal handler |
| // modification, the JVM may crash or hang in an endless loop, where the |
| // illegal instruction will be continously executed, raising SIGILL, and |
| // the signal handler will return to the illegal instruction again... |
| ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder( |
| "-XX:+CheckJNICalls", |
| "-Xint", |
| "-Djava.library.path=" + libpath + ":.", |
| "TestPosixSig", "dummy"); |
| |
| // Start the process and check the output. |
| OutputAnalyzer output = new OutputAnalyzer(pb.start()); |
| String outputString = output.getOutput(); |
| if (!outputString.contains("Warning: SIGILL handler modified!") || |
| !outputString.contains("Warning: SIGFPE handler modified!")) { |
| System.out.println("output: " + outputString); |
| throw new RuntimeException("Test failed, missing signal Warning"); |
| } |
| output.shouldHaveExitValue(0); |
| |
| } else { |
| System.loadLibrary("TestPsig"); |
| TestPosixSig.changeSigActionFor(8); // SIGFPE |
| TestPosixSig.changeSigActionFor(4); // SIGILL |
| Thread.sleep(600); |
| } |
| } |
| } |