|
| 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 | +/* |
| 25 | + * @test |
| 26 | + * @bug 8337703 |
| 27 | + * @summary To verify if ICC_Profile's setData() and getInstance() methods |
| 28 | + * validate header data and throw IAE for invalid values. |
| 29 | + * @run main ValidateICCHeaderData |
| 30 | + */ |
| 31 | + |
| 32 | +import java.awt.color.ColorSpace; |
| 33 | +import java.awt.color.ICC_Profile; |
| 34 | +import java.awt.image.BufferedImage; |
| 35 | +import java.io.IOException; |
| 36 | +import java.math.BigInteger; |
| 37 | +import java.nio.ByteBuffer; |
| 38 | + |
| 39 | +public class ValidateICCHeaderData { |
| 40 | + private static ICC_Profile profile; |
| 41 | + |
| 42 | + private static final boolean DEBUG = false; |
| 43 | + private static final int VALID_HEADER_SIZE = 128; |
| 44 | + private static final int HEADER_TAG = ICC_Profile.icSigHead; |
| 45 | + private static final int PROFILE_CLASS_START_INDEX = ICC_Profile.icHdrDeviceClass; |
| 46 | + private static final int COLOR_SPACE_START_INDEX = ICC_Profile.icHdrColorSpace; |
| 47 | + private static final int RENDER_INTENT_START_INDEX = ICC_Profile.icHdrRenderingIntent; |
| 48 | + private static final int PCS_START_INDEX = ICC_Profile.icHdrPcs; |
| 49 | + |
| 50 | + private static final int[] VALID_PROFILE_CLASS = new int[] { |
| 51 | + ICC_Profile.icSigInputClass, ICC_Profile.icSigDisplayClass, |
| 52 | + ICC_Profile.icSigOutputClass, ICC_Profile.icSigLinkClass, |
| 53 | + ICC_Profile.icSigAbstractClass, ICC_Profile.icSigColorSpaceClass, |
| 54 | + ICC_Profile.icSigNamedColorClass |
| 55 | + }; |
| 56 | + |
| 57 | + private static final int[] VALID_COLOR_SPACE = new int[] { |
| 58 | + ICC_Profile.icSigXYZData, ICC_Profile.icSigLabData, |
| 59 | + ICC_Profile.icSigLuvData, ICC_Profile.icSigYCbCrData, |
| 60 | + ICC_Profile.icSigYxyData, ICC_Profile.icSigRgbData, |
| 61 | + ICC_Profile.icSigGrayData, ICC_Profile.icSigHsvData, |
| 62 | + ICC_Profile.icSigHlsData, ICC_Profile.icSigCmykData, |
| 63 | + ICC_Profile.icSigSpace2CLR, ICC_Profile.icSigSpace3CLR, |
| 64 | + ICC_Profile.icSigSpace4CLR, ICC_Profile.icSigSpace5CLR, |
| 65 | + ICC_Profile.icSigSpace6CLR, ICC_Profile.icSigSpace7CLR, |
| 66 | + ICC_Profile.icSigSpace8CLR, ICC_Profile.icSigSpace9CLR, |
| 67 | + ICC_Profile.icSigSpaceACLR, ICC_Profile.icSigSpaceBCLR, |
| 68 | + ICC_Profile.icSigSpaceCCLR, ICC_Profile.icSigSpaceDCLR, |
| 69 | + ICC_Profile.icSigSpaceECLR, ICC_Profile.icSigSpaceFCLR, |
| 70 | + ICC_Profile.icSigCmyData |
| 71 | + }; |
| 72 | + |
| 73 | + private static final int[] VALID_RENDER_INTENT = new int[] { |
| 74 | + ICC_Profile.icPerceptual, ICC_Profile.icMediaRelativeColorimetric, |
| 75 | + ICC_Profile.icSaturation, ICC_Profile.icAbsoluteColorimetric |
| 76 | + }; |
| 77 | + |
| 78 | + private static void createCopyOfBuiltInProfile() { |
| 79 | + ICC_Profile builtInProfile = ICC_Profile.getInstance(ColorSpace.CS_sRGB); |
| 80 | + //copy of SRGB BuiltIn Profile that can be modified |
| 81 | + //using ICC_Profile.setData() |
| 82 | + profile = ICC_Profile.getInstance(builtInProfile.getData()); |
| 83 | + } |
| 84 | + |
| 85 | + public static void main(String[] args) throws Exception { |
| 86 | + createCopyOfBuiltInProfile(); |
| 87 | + |
| 88 | + System.out.println("CASE 1: Testing VALID Profile Classes ..."); |
| 89 | + testValidHeaderData(VALID_PROFILE_CLASS, PROFILE_CLASS_START_INDEX, 4); |
| 90 | + System.out.println("CASE 1: Passed \n"); |
| 91 | + |
| 92 | + // PCS field validation for Profile class != DEVICE_LINK |
| 93 | + System.out.println("CASE 2: Testing VALID PCS Type" |
| 94 | + + " for Profile class != DEVICE_LINK ..."); |
| 95 | + testValidHeaderData(new int[] {ICC_Profile.icSigXYZData, ICC_Profile.icSigLabData}, |
| 96 | + PCS_START_INDEX, 4); |
| 97 | + System.out.println("CASE 2: Passed \n"); |
| 98 | + |
| 99 | + System.out.println("CASE 3: Testing INVALID PCS Type" |
| 100 | + + " for Profile class != DEVICE_LINK ..."); |
| 101 | + testInvalidHeaderData(ICC_Profile.icSigCmykData, PCS_START_INDEX, 4); |
| 102 | + System.out.println("CASE 3: Passed \n"); |
| 103 | + |
| 104 | + System.out.println("CASE 4: Testing DEVICE LINK PROFILE CLASS ..."); |
| 105 | + testValidHeaderData(new int[] {ICC_Profile.icSigLinkClass}, |
| 106 | + PROFILE_CLASS_START_INDEX, 4); |
| 107 | + //to check if instantiating BufferedImage with |
| 108 | + //ICC_Profile device class = CLASS_DEVICELINK does not throw IAE. |
| 109 | + BufferedImage img = new BufferedImage(100, 100, |
| 110 | + BufferedImage.TYPE_3BYTE_BGR); |
| 111 | + System.out.println("CASE 4: Passed \n"); |
| 112 | + |
| 113 | + // PCS field validation for Profile class == DEVICE_LINK |
| 114 | + System.out.println("CASE 5: Testing VALID PCS Type" |
| 115 | + + " for Profile class == DEVICE_LINK ..."); |
| 116 | + testValidHeaderData(VALID_COLOR_SPACE, PCS_START_INDEX, 4); |
| 117 | + System.out.println("CASE 5: Passed \n"); |
| 118 | + |
| 119 | + System.out.println("CASE 6: Testing INVALID PCS Type" |
| 120 | + + " for Profile class == DEVICE_LINK ..."); |
| 121 | + //original icSigLabData = 0x4C616220 |
| 122 | + int invalidSigLabData = 0x4C616221; |
| 123 | + testInvalidHeaderData(invalidSigLabData, PCS_START_INDEX, 4); |
| 124 | + System.out.println("CASE 6: Passed \n"); |
| 125 | + |
| 126 | + System.out.println("CASE 7: Testing VALID Color Spaces ..."); |
| 127 | + testValidHeaderData(VALID_COLOR_SPACE, COLOR_SPACE_START_INDEX, 4); |
| 128 | + System.out.println("CASE 7: Passed \n"); |
| 129 | + |
| 130 | + System.out.println("CASE 8: Testing VALID Rendering Intent ..."); |
| 131 | + testValidHeaderData(VALID_RENDER_INTENT, RENDER_INTENT_START_INDEX, 4); |
| 132 | + System.out.println("CASE 8: Passed \n"); |
| 133 | + |
| 134 | + System.out.println("CASE 9: Testing INVALID Profile Class ..."); |
| 135 | + //original icSigInputClass = 0x73636E72 |
| 136 | + int invalidSigInputClass = 0x73636E70; |
| 137 | + testInvalidHeaderData(invalidSigInputClass, PROFILE_CLASS_START_INDEX, 4); |
| 138 | + System.out.println("CASE 9: Passed \n"); |
| 139 | + |
| 140 | + System.out.println("CASE 10: Testing INVALID Color Space ..."); |
| 141 | + //original icSigXYZData = 0x58595A20 |
| 142 | + int invalidSigXYZData = 0x58595A21; |
| 143 | + testInvalidHeaderData(invalidSigXYZData, COLOR_SPACE_START_INDEX, 4); |
| 144 | + System.out.println("CASE 10: Passed \n"); |
| 145 | + |
| 146 | + System.out.println("CASE 11: Testing INVALID Rendering Intent ..."); |
| 147 | + //valid rendering intent values are 0-3 |
| 148 | + int invalidRenderIntent = 5; |
| 149 | + testInvalidHeaderData(invalidRenderIntent, RENDER_INTENT_START_INDEX, 4); |
| 150 | + System.out.println("CASE 11: Passed \n"); |
| 151 | + |
| 152 | + System.out.println("CASE 12: Testing INVALID Header Size ..."); |
| 153 | + testInvalidHeaderSize(); |
| 154 | + System.out.println("CASE 12: Passed \n"); |
| 155 | + |
| 156 | + System.out.println("CASE 13: Testing ICC_Profile.getInstance(..)" |
| 157 | + + " with VALID profile data ..."); |
| 158 | + testProfileCreation(true); |
| 159 | + System.out.println("CASE 13: Passed \n"); |
| 160 | + |
| 161 | + System.out.println("CASE 14: Testing ICC_Profile.getInstance(..)" |
| 162 | + + " with INVALID profile data ..."); |
| 163 | + testProfileCreation(false); |
| 164 | + System.out.println("CASE 14: Passed \n"); |
| 165 | + |
| 166 | + System.out.println("CASE 15: Testing Deserialization of ICC_Profile ..."); |
| 167 | + testDeserialization(); |
| 168 | + System.out.println("CASE 15: Passed \n"); |
| 169 | + |
| 170 | + System.out.println("Successfully completed testing all 15 cases. Test Passed !!"); |
| 171 | + } |
| 172 | + |
| 173 | + private static void testValidHeaderData(int[] validData, int startIndex, |
| 174 | + int fieldLength) { |
| 175 | + for (int value : validData) { |
| 176 | + setTag(value, startIndex, fieldLength); |
| 177 | + } |
| 178 | + } |
| 179 | + |
| 180 | + private static void testInvalidHeaderData(int invalidData, int startIndex, |
| 181 | + int fieldLength) { |
| 182 | + try { |
| 183 | + setTag(invalidData, startIndex, fieldLength); |
| 184 | + throw new RuntimeException("Test Failed ! Expected IAE NOT thrown"); |
| 185 | + } catch (IllegalArgumentException iae) { |
| 186 | + System.out.println("Expected IAE thrown: " + iae.getMessage()); |
| 187 | + } |
| 188 | + } |
| 189 | + |
| 190 | + private static void setTag(int value, int startIndex, int fieldLength) { |
| 191 | + byte[] byteArray; |
| 192 | + if (startIndex == RENDER_INTENT_START_INDEX) { |
| 193 | + byteArray = ByteBuffer.allocate(4).putInt(value).array(); |
| 194 | + } else { |
| 195 | + BigInteger big = BigInteger.valueOf(value); |
| 196 | + byteArray = (big.toByteArray()); |
| 197 | + } |
| 198 | + |
| 199 | + if (DEBUG) { |
| 200 | + System.out.print("Byte Array : "); |
| 201 | + for (int i = 0; i < byteArray.length; i++) { |
| 202 | + System.out.print(byteArray[i] + " "); |
| 203 | + } |
| 204 | + System.out.println("\n"); |
| 205 | + } |
| 206 | + |
| 207 | + byte[] iccProfileHeaderData = profile.getData(HEADER_TAG); |
| 208 | + System.arraycopy(byteArray, 0, iccProfileHeaderData, startIndex, fieldLength); |
| 209 | + profile.setData(HEADER_TAG, iccProfileHeaderData); |
| 210 | + } |
| 211 | + |
| 212 | + private static void testProfileCreation(boolean validCase) { |
| 213 | + ICC_Profile builtInProfile = ICC_Profile.getInstance(ColorSpace.CS_GRAY); |
| 214 | + byte[] profileData = builtInProfile.getData(); |
| 215 | + |
| 216 | + int validDeviceClass = ICC_Profile.icSigInputClass; |
| 217 | + BigInteger big = BigInteger.valueOf(validDeviceClass); |
| 218 | + //valid case set device class to 0x73636E72 (icSigInputClass) |
| 219 | + //invalid case set device class to 0x00000000 |
| 220 | + byte[] field = validCase ? big.toByteArray() |
| 221 | + : ByteBuffer.allocate(4).putInt(0).array(); |
| 222 | + System.arraycopy(field, 0, profileData, PROFILE_CLASS_START_INDEX, 4); |
| 223 | + |
| 224 | + try { |
| 225 | + ICC_Profile.getInstance(profileData); |
| 226 | + if (!validCase) { |
| 227 | + throw new RuntimeException("Test Failed ! Expected IAE NOT thrown"); |
| 228 | + } |
| 229 | + } catch (IllegalArgumentException iae) { |
| 230 | + if (!validCase) { |
| 231 | + System.out.println("Expected IAE thrown: " + iae.getMessage()); |
| 232 | + } else { |
| 233 | + throw new RuntimeException("Unexpected IAE thrown"); |
| 234 | + } |
| 235 | + } |
| 236 | + } |
| 237 | + |
| 238 | + private static void testInvalidHeaderSize() { |
| 239 | + byte[] iccProfileHeaderData = profile.getData(HEADER_TAG); |
| 240 | + byte[] invalidHeaderSize = new byte[VALID_HEADER_SIZE - 1]; |
| 241 | + System.arraycopy(iccProfileHeaderData, 0, |
| 242 | + invalidHeaderSize, 0, invalidHeaderSize.length); |
| 243 | + try { |
| 244 | + profile.setData(HEADER_TAG, invalidHeaderSize); |
| 245 | + throw new RuntimeException("Test Failed ! Expected IAE NOT thrown"); |
| 246 | + } catch (IllegalArgumentException iae) { |
| 247 | + System.out.println("Expected IAE thrown: " + iae.getMessage()); |
| 248 | + } |
| 249 | + } |
| 250 | + |
| 251 | + private static void testDeserialization() throws IOException { |
| 252 | + //invalidSRGB.icc is serialized on older version of JDK |
| 253 | + //Upon deserialization, the invalid profile is expected to throw IAE |
| 254 | + try { |
| 255 | + ICC_Profile.getInstance("./invalidSRGB.icc"); |
| 256 | + throw new RuntimeException("Test Failed ! Expected IAE NOT thrown"); |
| 257 | + } catch (IllegalArgumentException iae) { |
| 258 | + System.out.println("Expected IAE thrown: " + iae.getMessage()); |
| 259 | + } |
| 260 | + } |
| 261 | +} |
0 commit comments