Skip to content

Commit f0b72f7

Browse files
author
Alan Bateman
committedNov 26, 2024
8342380: Implement JEP 498: Warn upon Use of Memory-Access Methods in sun.misc.Unsafe
Reviewed-by: vklang, jpai
1 parent fc2da15 commit f0b72f7

File tree

4 files changed

+24
-19
lines changed

4 files changed

+24
-19
lines changed
 

‎src/java.base/share/classes/sun/launcher/resources/launcher.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ java.launcher.X.usage=\n\
218218
\ --sun-misc-unsafe-memory-access=<value>\n\
219219
\ allow or deny usage of unsupported API sun.misc.Unsafe\n\
220220
\ <value> is one of "allow", "warn", "debug", or "deny".\n\
221-
\ The default value is "allow".\n\n\
221+
\ The default value is "warn".\n\n\
222222
These extra options are subject to change without notice.\n
223223

224224
# Translators please note do not translate the options themselves

‎src/java.base/share/man/java.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ the Java HotSpot Virtual Machine.
979979
: Disallow use of the memory-access methods by throwing an
980980
`UnsupportedOperationException` on every usage.
981981

982-
The default value when the option is not specified is `allow`.
982+
The default value when the option is not specified is `warn`.
983983

984984

985985
## Extra Options for macOS

‎src/jdk.unsupported/share/classes/sun/misc/Unsafe.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1846,7 +1846,7 @@ private enum MemoryAccessOption {
18461846
DENY;
18471847

18481848
private static MemoryAccessOption defaultValue() {
1849-
return ALLOW;
1849+
return WARN;
18501850
}
18511851

18521852
/**

‎test/jdk/sun/misc/UnsafeMemoryAccessWarnings.java

+21-16
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8331670
26+
* @bug 8331670 8338383
2727
* @summary Basic test for --sun-misc-unsafe-memory-access=<value>
2828
* @library /test/lib
2929
* @compile TryUnsafeMemoryAccess.java
@@ -43,19 +43,15 @@
4343
class UnsafeMemoryAccessWarnings {
4444

4545
/**
46-
* Test default is "allow"
46+
* Test default is "warn"
4747
*/
48-
@Test
49-
void testDefault() throws Exception {
50-
test("allocateMemory+freeMemory+objectFieldOffset+putLong+getLong+invokeCleaner")
51-
.shouldHaveExitValue(0)
52-
.shouldNotContain("WARNING: A terminally deprecated method in sun.misc.Unsafe has been called")
53-
.shouldNotContain("WARNING: sun.misc.Unsafe::allocateMemory")
54-
.shouldNotContain("WARNING: sun.misc.Unsafe::freeMemory")
55-
.shouldNotContain("WARNING: sun.misc.Unsafe::objectFieldOffset")
56-
.shouldNotContain("WARNING: sun.misc.Unsafe::putLong")
57-
.shouldNotContain("WARNING: sun.misc.Unsafe::getLong")
58-
.shouldNotContain("WARNING: sun.misc.Unsafe::invokeCleaner");
48+
@ParameterizedTest
49+
@ValueSource(strings = {
50+
"allocateMemory+freeMemory",
51+
"objectFieldOffset+putLong+getLong"
52+
})
53+
void testDefault(String input) throws Exception {
54+
testOneWarning(input);
5955
}
6056

6157
/**
@@ -81,11 +77,19 @@ void testAllow() throws Exception {
8177
@ParameterizedTest
8278
@ValueSource(strings = {
8379
"allocateMemory+freeMemory",
84-
"objectFieldOffset+putLong+getLong",
85-
"invokeCleaner"
80+
"objectFieldOffset+putLong+getLong"
8681
})
8782
void testWarn(String input) throws Exception {
88-
var output = test(input, "--sun-misc-unsafe-memory-access=warn").shouldHaveExitValue(0);
83+
testOneWarning(input, "--sun-misc-unsafe-memory-access=warn");
84+
}
85+
86+
/**
87+
* Test that a warning is printed by the first memory access method only.
88+
* @param input comma separated list of Unsafe memory access methods to execute
89+
* @param vmopts VM options
90+
*/
91+
private void testOneWarning(String input, String... vmopts) throws Exception {
92+
var output = test(input, vmopts).shouldHaveExitValue(0);
8993

9094
// should be warning printed for the first memory access method
9195
String[] methodNames = input.split("\\+");
@@ -99,6 +103,7 @@ void testWarn(String input) throws Exception {
99103
int index = 1;
100104
while (index < methodNames.length) {
101105
String methodName = methodNames[index++];
106+
assertNotEquals(firstMethodName, methodName);
102107
output.shouldNotContain("WARNING: sun.misc.Unsafe::" + methodName);
103108
}
104109
}

0 commit comments

Comments
 (0)
Please sign in to comment.