Skip to content

Commit b249159

Browse files
committedApr 7, 2022
8261107: ArrayIndexOutOfBoundsException in the ICC_Profile.getInstance(InputStream)
Reviewed-by: phh Backport-of: 06b33a0ad78d1577711af22020cf5fdf25112523
1 parent 10029f7 commit b249159

File tree

2 files changed

+56
-2
lines changed

2 files changed

+56
-2
lines changed
 

‎jdk/src/share/classes/java/awt/color/ICC_Profile.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1023,10 +1023,10 @@ public static ICC_Profile getInstance(InputStream s) throws IOException {
10231023
static byte[] getProfileDataFromStream(InputStream s) throws IOException {
10241024

10251025
BufferedInputStream bis = new BufferedInputStream(s);
1026-
bis.mark(128);
1026+
bis.mark(128); // 128 is the length of the ICC profile header
10271027

10281028
byte[] header = IOUtils.readNBytes(bis, 128);
1029-
if (header[36] != 0x61 || header[37] != 0x63 ||
1029+
if (header.length < 128 || header[36] != 0x61 || header[37] != 0x63 ||
10301030
header[38] != 0x73 || header[39] != 0x70) {
10311031
return null; /* not a valid profile */
10321032
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/*
2+
* Copyright (c) 2021, 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 java.awt.color.ICC_Profile;
25+
import java.io.ByteArrayInputStream;
26+
import java.io.IOException;
27+
28+
/**
29+
* @test
30+
* @bug 8261107
31+
* @summary Short and broken streams should be reported as unsupported
32+
*/
33+
public final class GetInstanceBrokenStream {
34+
35+
public static void main(String[] args) throws IOException {
36+
// Empty header
37+
testHeader(new byte[]{});
38+
// Short header
39+
testHeader(new byte[]{-12, 3, 45});
40+
// Broken header
41+
testHeader(new byte[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
42+
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
43+
31, 32, 33, 34, 35, 0x61, 0x63, 0x73, 0x70});
44+
}
45+
46+
private static void testHeader(byte[] data) throws IOException {
47+
ByteArrayInputStream bais = new ByteArrayInputStream(data);
48+
try {
49+
ICC_Profile.getInstance(bais);
50+
} catch (IllegalArgumentException e) {
51+
// expected
52+
}
53+
}
54+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 7, 2022

@openjdk-notifier[bot]
Please sign in to comment.