Skip to content

Commit 3024a73

Browse files
jaokimkevinjwalls
authored andcommittedJan 9, 2025
8345782: Refining the cases that libjsig deprecation warning is issued
Reviewed-by: dholmes, kevinw
1 parent 2801bc6 commit 3024a73

File tree

3 files changed

+82
-18
lines changed

3 files changed

+82
-18
lines changed
 

‎src/java.base/unix/native/libjsig/jsig.c

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2012, 2015 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -47,6 +47,7 @@
4747
#define MAX_SIGNALS NSIG
4848

4949
static struct sigaction sact[MAX_SIGNALS]; /* saved signal handlers */
50+
static bool deprecated_usage[MAX_SIGNALS]; /* usage of signal/sigset */
5051

5152
static sigset_t jvmsigs; /* Signals used by jvm. */
5253

@@ -69,6 +70,7 @@ static sigaction_t os_sigaction = 0; /* os's version of sigaction() */
6970

7071
static bool jvm_signal_installing = false;
7172
static bool jvm_signal_installed = false;
73+
static bool warning_printed = false;
7274

7375

7476
static void signal_lock() {
@@ -89,15 +91,20 @@ static void signal_unlock() {
8991
pthread_mutex_unlock(&mutex);
9092
}
9193

94+
static void print_deprecation_warning() {
95+
if (!warning_printed) {
96+
warning_printed = true;
97+
fprintf(stderr, HOTSPOT_VM_DISTRO " VM warning: the use of signal() and sigset() "
98+
"for signal chaining was deprecated in version 16.0 and will "
99+
"be removed in a future release. Use sigaction() instead.\n");
100+
}
101+
}
102+
92103
static sa_handler_t call_os_signal(int sig, sa_handler_t disp,
93104
bool is_sigset) {
94105
sa_handler_t res;
95106

96107
if (os_signal == NULL) {
97-
// Deprecation warning first time through
98-
fprintf(stderr, HOTSPOT_VM_DISTRO " VM warning: the use of signal() and sigset() "
99-
"for signal chaining was deprecated in version 16.0 and will "
100-
"be removed in a future release. Use sigaction() instead.\n");
101108
if (!is_sigset) {
102109
os_signal = (signal_function_t)dlsym(RTLD_NEXT, "signal");
103110
} else {
@@ -140,8 +147,11 @@ static sa_handler_t set_signal(int sig, sa_handler_t disp, bool is_sigset) {
140147

141148
signal_lock();
142149

150+
deprecated_usage[sig] = true;
151+
143152
sigused = sigismember(&jvmsigs, sig);
144153
if (jvm_signal_installed && sigused) {
154+
print_deprecation_warning();
145155
/* jvm has installed its signal handler for this signal. */
146156
/* Save the handler. Don't really install it. */
147157
if (is_sigset) {
@@ -250,6 +260,9 @@ JNIEXPORT int sigaction(int sig, const struct sigaction *act, struct sigaction *
250260
* within the JVM_begin_signal_setting-JVM_end_signal_setting-window. There can be any number of non-modifying
251261
* calls, but they will only return the expected preexisting handler if executed before the modifying call.
252262
*/
263+
if (deprecated_usage[sig] == true) {
264+
print_deprecation_warning();
265+
}
253266
res = call_os_sigaction(sig, act, &oldAct);
254267
if (res == 0) {
255268
if (act != NULL) {

‎test/hotspot/jtreg/runtime/signal/README

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
1+
Copyright (c) 2008, 2025, Oracle and/or its affiliates. All rights reserved.
22
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33

44
This code is free software; you can redistribute it and/or modify it
@@ -41,6 +41,9 @@ Also 2 different ways of setting signal handlers are tested: sigaction, sigset.
4141

4242
For 'postpre' and 'postpro' libjsig.so is used to chain signal handlers behind VM installed ones.
4343

44+
When libjsig.so is used, the warning for deprecated usage of signal/sigset is checked. For this
45+
purpose, all scenarios are also run once with libjsig preloaded.
46+
4447
=> Current tests cover the following cases (don't count 'nojvm' scenario):
4548
1. Support for pre-installed signal handlers when the HotSpot VM is created.
4649
2. Support for signal handler installation after the HotSpot VM is created inside JNI code

‎test/hotspot/jtreg/runtime/signal/SigTestDriver.java

+60-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2025, 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
@@ -91,12 +91,16 @@ public static void main(String[] args) {
9191
.subList(1, args.length);
9292
cmd.addAll(argList);
9393

94+
String failureMessage = null;
9495
boolean passed = true;
9596

9697
for (String mode : new String[] {"sigset", "sigaction"}) {
97-
for (String scenario : new String[] {"nojvm", "prepre", "prepost", "postpre", "postpost"}) {
98+
// Scenarios postpre and postpost requires libjsig.
99+
// The other scenarios are run with libjsig to validate the deprecation warning.
100+
for (String scenario : new String[] {"nojvm", "prepre", "prepost", "postpre#libjsig", "postpost#libjsig",
101+
"nojvm#libjsig", "prepre#libjsig", "prepost#libjsig", }) {
98102
cmd.set(modeIdx, mode);
99-
cmd.set(scenarioIdx, scenario);
103+
cmd.set(scenarioIdx, scenario.replace("#libjsig", ""));
100104
System.out.printf("START TESTING: SIGNAL = %s, MODE = %s, SCENARIO=%s%n", signame, mode, scenario);
101105
System.out.printf("Do execute: %s%n", cmd.toString());
102106

@@ -105,32 +109,54 @@ public static void main(String[] args) {
105109
(x, y) -> y + File.pathSeparator + x);
106110
pb.environment().put("CLASSPATH", Utils.TEST_CLASS_PATH);
107111

108-
switch (scenario) {
109-
case "postpre":
110-
case "postpost": {
111-
pb.environment().merge("LD_PRELOAD", libjsig().toString(),
112-
(x, y) -> y + File.pathSeparator + x);
113-
}
112+
boolean useLibjsig = scenario.endsWith("#libjsig");
113+
if (useLibjsig) {
114+
pb.environment().merge("LD_PRELOAD", libjsig().toString(),
115+
(x, y) -> y + File.pathSeparator + x);
114116
}
115117

116118
try {
117119
OutputAnalyzer oa = ProcessTools.executeProcess(pb);
118120
oa.reportDiagnosticSummary();
119121
int exitCode = oa.getExitValue();
120122
if (exitCode == 0) {
121-
System.out.println("PASSED with exit code 0");
123+
// Skip deprecation warning check on MacOSX (see JDK-8346381)
124+
if (useLibjsig && !Platform.isOSX()) {
125+
// verify that deprecation warning for sigset/signal is printed
126+
// only in the correct scenarios
127+
boolean deprecatedSigFunctionUsed = mode.equals("sigset");
128+
boolean jvmInvolved = !scenario.contains("nojvm");
129+
boolean warningPrinted = oa.contains("VM warning");
130+
boolean sigUsedByJVM = sigIsUsedByJVM(signame);
131+
if (deprecatedSigFunctionUsed && jvmInvolved && sigUsedByJVM) {
132+
if (!warningPrinted) {
133+
failureMessage = "FAILED: Missing deprecation warning for mode " + mode +
134+
", scenario: "+ scenario + ", signal " + signame;
135+
passed = false;
136+
}
137+
} else if (warningPrinted) {
138+
failureMessage = "FAILED: Deprecation warning shouldn't be printed for mode " + mode +
139+
", scenario: "+ scenario + ", signal " + signame;
140+
passed = false;
141+
}
142+
} else {
143+
System.out.println("PASSED with exit code 0");
144+
}
122145
} else {
123-
System.out.println("FAILED with exit code " + exitCode);
146+
failureMessage = "FAILED with exit code " + exitCode;
124147
passed = false;
125148
}
149+
if (!passed) {
150+
System.out.println(failureMessage);
151+
}
126152
} catch (Exception e) {
127153
throw new Error("execution failed", e);
128154
}
129155
}
130156
}
131157

132158
if (!passed) {
133-
throw new Error("test failed");
159+
throw new Error(failureMessage != null ? failureMessage : "test failed");
134160
}
135161
}
136162

@@ -146,4 +172,26 @@ private static List<String> vmargs() {
146172
private static Path libjsig() {
147173
return Platform.jvmLibDir().resolve(Platform.buildSharedLibraryName("jsig"));
148174
}
175+
176+
/**
177+
* Return true for the chainable signals that are used by the JVM.
178+
* See src/hotspot/os/posix/signals_posix.cpp
179+
* @param signame
180+
* @return true if signal is used by JVM, false otherwise
181+
*/
182+
private static boolean sigIsUsedByJVM(String signame) {
183+
switch(signame) {
184+
case "SIGSEGV":
185+
case "SIGPIPE":
186+
case "SIGBUS":
187+
case "SIGILL":
188+
case "SIGFPE":
189+
case "SIGXFSZ":
190+
return true;
191+
case "SIGTRAP":
192+
return Platform.isPPC();
193+
default:
194+
return false;
195+
}
196+
}
149197
}

0 commit comments

Comments
 (0)
Please sign in to comment.