Skip to content

Commit 7734f8e

Browse files
myankelevwangweij
authored andcommittedFeb 19, 2025
8349664: HEX dump should always use ASCII or ISO_8859_1
Reviewed-by: weijun
1 parent 7631984 commit 7734f8e

File tree

2 files changed

+104
-3
lines changed

2 files changed

+104
-3
lines changed
 

‎src/java.base/share/classes/sun/security/util/HexDumpEncoder.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 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
@@ -84,7 +84,7 @@ protected int bytesPerLine() {
8484

8585
protected void encodeBufferPrefix(OutputStream o) throws IOException {
8686
offset = 0;
87-
pStream = new PrintStream(o);
87+
pStream = new PrintStream(o, false, ISO_8859_1);
8888
}
8989

9090
protected void encodeLinePrefix(OutputStream o, int len) {
@@ -303,6 +303,8 @@ public void encodeBuffer(byte[] aBuffer, OutputStream aStream)
303303
/**
304304
* A 'streamless' version of encode that simply takes a buffer of
305305
* bytes and returns a string containing the encoded buffer.
306+
* <P>
307+
* Returned string is encoded with the ISO-8859-1, also known as ISO-LATIN-1.
306308
*/
307309
public String encodeBuffer(byte[] aBuffer) {
308310
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
@@ -313,7 +315,7 @@ public String encodeBuffer(byte[] aBuffer) {
313315
// This should never happen.
314316
throw new Error("CharacterEncoder.encodeBuffer internal error");
315317
}
316-
return (outStream.toString());
318+
return (outStream.toString(ISO_8859_1));
317319
}
318320

319321
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
/*
2+
* Copyright (c) 2025, 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+
import jdk.test.lib.Asserts;
25+
import jdk.test.lib.process.ProcessTools;
26+
import sun.security.util.HexDumpEncoder;
27+
28+
import java.nio.charset.Charset;
29+
import java.nio.charset.StandardCharsets;
30+
import java.util.Arrays;
31+
32+
/*
33+
* @test
34+
* @bug 8349664
35+
* @summary HEX dump should always use ASCII or ISO_8859_1
36+
* @modules java.base/sun.security.util
37+
* @library /test/lib
38+
*/
39+
public class HexDumpEncoderTests {
40+
41+
42+
private static String[] getTestCommand(final String encoding) {
43+
return new String[]{
44+
"--add-modules", "java.base",
45+
"--add-exports", "java.base/sun.security.util=ALL-UNNAMED",
46+
"-Dfile.encoding=" + encoding,
47+
HexDumpEncoderTests.HexDumpEncoderTest.class.getName()
48+
};
49+
}
50+
51+
public static void main(String[] args) throws Exception {
52+
53+
final var testCommandIso = getTestCommand("ISO-8859-1");
54+
55+
final var resultIso = ProcessTools.executeTestJava(testCommandIso);
56+
resultIso.shouldHaveExitValue(0);
57+
58+
// This will take all available StandardCharsets and test them all comparing to the ISO_8859_1
59+
// Dome im parallel, as this is significantly faster
60+
Arrays.stream(StandardCharsets.class.getDeclaredFields())
61+
.parallel()
62+
.forEach(field -> {
63+
if (java.lang.reflect.Modifier.isStatic(field.getModifiers())) {
64+
try {
65+
final var charset = (Charset) field.get(StandardCharsets.ISO_8859_1); // getting the charset to test
66+
67+
final var testCommand = getTestCommand(charset.name());
68+
69+
final var result = ProcessTools.executeTestJava(testCommand);
70+
result.shouldHaveExitValue(0);
71+
72+
// The outputs of the ISO encoding must be identical to the one tested
73+
Asserts.assertEquals(resultIso.getStdout(),
74+
result.getStdout(),
75+
"Encoding " + charset.name());
76+
} catch (Exception e) {
77+
throw new RuntimeException(e);
78+
}
79+
}
80+
});
81+
}
82+
83+
public static class HexDumpEncoderTest {
84+
85+
/**
86+
* This will test the encode and encode buffer functions at once,
87+
* as they are both representing the string in LATIN_1
88+
* <p>
89+
* The output is put as a system.out
90+
*/
91+
public static void main(String[] args) throws Exception {
92+
93+
final var encoder = new HexDumpEncoder();
94+
95+
System.out.printf("\nCert Encoded With Encode Buffer: %s\n", encoder.encodeBuffer(new byte[100]));
96+
System.out.printf("\nCert Encoded With Encode: %s\n", encoder.encode(new byte[100]));
97+
}
98+
}
99+
}

0 commit comments

Comments
 (0)
Please sign in to comment.