Skip to content

Commit 0d96546

Browse files
author
Harold Seigel
committedAug 17, 2022
8292054: Test runtime/posixSig/TestPosixSig.java fails with 'Test failed, bad output.'
Reviewed-by: coleenp, stuefe
1 parent e8bc879 commit 0d96546

File tree

8 files changed

+87
-139
lines changed

8 files changed

+87
-139
lines changed
 

‎make/test/JtregNativeHotspot.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exesigtest := -ljvm
874874

875875
ifeq ($(call isTargetOs, windows), true)
876876
BUILD_HOTSPOT_JTREG_EXECUTABLES_CFLAGS_exeFPRegs := -MT
877-
BUILD_HOTSPOT_JTREG_EXCLUDE += exesigtest.c libterminatedThread.c libTestJNI.c libCompleteExit.c libTestPsig.c
877+
BUILD_HOTSPOT_JTREG_EXCLUDE += exesigtest.c libterminatedThread.c libTestJNI.c libCompleteExit.c
878878
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libatExit := jvm.lib
879879
BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exedaemonDestroy := jvm.lib
880880
else

‎src/hotspot/os/posix/signals_posix.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ int os::sigexitnum_pd() {
890890

891891
// This method is a periodic task to check for misbehaving JNI applications
892892
// under CheckJNI, we can add any periodic checks here
893-
void os::run_periodic_checks() {
893+
void os::run_periodic_checks(outputStream* st) {
894894

895895
if (check_signals == false) return;
896896

@@ -924,8 +924,8 @@ void os::run_periodic_checks() {
924924
// - print all signal handlers. As part of that printout, details will be printed
925925
// about any modified handlers.
926926
char buf[O_BUFLEN];
927-
os::print_signal_handlers(tty, buf, O_BUFLEN);
928-
tty->print_cr("Consider using jsig library.");
927+
os::print_signal_handlers(st, buf, O_BUFLEN);
928+
st->print_cr("Consider using jsig library.");
929929
}
930930
}
931931

‎src/hotspot/os/windows/os_windows.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ bool os::have_special_privileges() {
269269
}
270270

271271

272-
// This method is a periodic task to check for misbehaving JNI applications
272+
// This method is a periodic task to check for misbehaving JNI applications
273273
// under CheckJNI, we can add any periodic checks here.
274274
// For Windows at the moment does nothing
275-
void os::run_periodic_checks() {
275+
void os::run_periodic_checks(outputStream* st) {
276276
return;
277277
}
278278

‎src/hotspot/share/runtime/jniPeriodicChecker.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -33,7 +33,7 @@
3333
class JniPeriodicCheckerTask : public PeriodicTask {
3434
public:
3535
JniPeriodicCheckerTask(int interval_time) : PeriodicTask(interval_time) {}
36-
void task() { os::run_periodic_checks(); }
36+
void task() { os::run_periodic_checks(tty); }
3737
static void engage();
3838
static void disengage();
3939
};

‎src/hotspot/share/runtime/os.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class os: AllStatic {
257257
static jlong javaTimeNanos();
258258
static void javaTimeNanos_info(jvmtiTimerInfo *info_ptr);
259259
static void javaTimeSystemUTC(jlong &seconds, jlong &nanos);
260-
static void run_periodic_checks();
260+
static void run_periodic_checks(outputStream* st);
261261

262262
// Returns the elapsed time in seconds since the vm started.
263263
static double elapsedTime();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
/*
2+
* Copyright (c) 2022, 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+
#include "precompiled.hpp"
25+
#ifndef _WIN32
26+
#include "runtime/os.hpp"
27+
#include "utilities/ostream.hpp"
28+
#include "unittest.hpp"
29+
30+
#include <errno.h>
31+
#include <signal.h>
32+
#include <stdio.h>
33+
#include <sys/ucontext.h>
34+
#include <string.h>
35+
36+
extern "C" {
37+
static void sig_handler(int sig, siginfo_t *info, ucontext_t *context) {
38+
printf( " HANDLER (1) " );
39+
}
40+
}
41+
42+
class PosixSignalTest : public ::testing::Test {
43+
public:
44+
45+
static void check_handlers() {
46+
struct sigaction act, old_SIGFPE_act, old_SIGILL_act;
47+
act.sa_handler = (void (*)(int))sig_handler;
48+
sigemptyset(&act.sa_mask);
49+
act.sa_flags = 0;
50+
ASSERT_NE(sigaction(SIGFPE, &act, &old_SIGFPE_act), -1) << "Setting SIGFPE handler failed: " << os::strerror(errno) << " (" << errno << ")";
51+
ASSERT_NE(sigaction(SIGILL, &act, &old_SIGILL_act), -1) << "Setting SIGILL handler failed: " << os::strerror(errno) << " (" << errno << ")";
52+
53+
// Use local stringStream to capture output from run_periodic_checks() calls to
54+
// print_signal_handlers().
55+
stringStream st;
56+
os::run_periodic_checks(&st);
57+
char* res = (char *)st.base(); // res can't be const because some strstr()'s have non-const first args.
58+
59+
// Restore signal handlers.
60+
ASSERT_NE(sigaction(SIGFPE, &act, &old_SIGFPE_act), -1) << "Restoring SIGFPE handler failed: " << os::strerror(errno) << " (" << errno << ")";
61+
ASSERT_NE(sigaction(SIGILL, &act, &old_SIGILL_act), -1) << "Restoring SIGILL handler failed: " << os::strerror(errno) << " (" << errno << ")";
62+
63+
// Check that "Handler was modified" occurs exactly twice in the tty output.
64+
char* modified = strstr(res, "Handler was modified!");
65+
ASSERT_NE(modified, nullptr) << "No message found";
66+
67+
modified = strstr(modified + 1, "Handler was modified!");
68+
ASSERT_NE(modified, nullptr) << "Only one message found";
69+
ASSERT_EQ(strstr(modified + 1, "Handler was modified!"), nullptr) << "Too many messages found";
70+
}
71+
};
72+
73+
// This tests the fix for JDK-8285792.
74+
TEST_OTHER_VM(PosixSignalTest, check_handlers) {
75+
PosixSignalTest::check_handlers();
76+
}
77+
78+
#endif

‎test/hotspot/jtreg/runtime/posixSig/TestPosixSig.java

-76
This file was deleted.

‎test/hotspot/jtreg/runtime/posixSig/libTestPsig.c

-54
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.