/src/cms_transform_extended_fuzzer.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* Copyright 2022 Google LLC |
2 | | Licensed under the Apache License, Version 2.0 (the "License"); |
3 | | you may not use this file except in compliance with the License. |
4 | | You may obtain a copy of the License at |
5 | | http://www.apache.org/licenses/LICENSE-2.0 |
6 | | Unless required by applicable law or agreed to in writing, software |
7 | | distributed under the License is distributed on an "AS IS" BASIS, |
8 | | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
9 | | See the License for the specific language governing permissions and |
10 | | limitations under the License. |
11 | | */ |
12 | | |
13 | | #include <stdint.h> |
14 | | #include "lcms2.h" |
15 | | |
16 | | // An extended cmsDoTransform fuzzer. The idea is to include a range of |
17 | | // input/output source formats. |
18 | | |
19 | | void |
20 | | run_test(const uint8_t *data, |
21 | | size_t size, |
22 | | uint32_t intent, |
23 | 5.37k | uint32_t flags, int dstVal) { |
24 | 5.37k | if (size < 2) { |
25 | 2 | return; |
26 | 2 | } |
27 | | |
28 | 5.36k | cmsHPROFILE srcProfile = cmsOpenProfileFromMem(data, size); |
29 | 5.36k | if (!srcProfile) return; |
30 | | |
31 | | // Select dstProfile and dstFormat |
32 | 4.73k | cmsHPROFILE dstProfile; |
33 | 4.73k | uint32_t dstFormat; |
34 | 4.73k | if (dstVal == 1) { |
35 | 454 | dstProfile = cmsCreateLab4Profile(NULL); |
36 | 454 | dstFormat = TYPE_Lab_8; |
37 | 454 | } |
38 | 4.28k | else if (dstVal == 2) { |
39 | 447 | dstProfile = cmsCreateLab2Profile(NULL); |
40 | 447 | dstFormat = TYPE_LabV2_8; |
41 | 447 | } |
42 | 3.83k | else if (dstVal == 3) { |
43 | 157 | cmsToneCurve* gamma18; |
44 | 157 | gamma18 = cmsBuildGamma(0, 1.8); |
45 | 157 | dstProfile = cmsCreateGrayProfile(NULL, gamma18); |
46 | 157 | cmsFreeToneCurve(gamma18); |
47 | 157 | dstFormat = TYPE_GRAY_FLT | EXTRA_SH(1); |
48 | 157 | } |
49 | 3.67k | else if (dstVal == 4) { |
50 | 448 | dstProfile = cmsCreateXYZProfile(); |
51 | 448 | dstFormat = TYPE_XYZ_16; |
52 | 448 | } |
53 | 3.22k | else if (dstVal == 5) { |
54 | 309 | dstProfile = cmsCreateXYZProfile(); |
55 | 309 | dstFormat = TYPE_XYZ_DBL; |
56 | 309 | } |
57 | 2.91k | else if (dstVal == 6) { |
58 | 516 | dstProfile = cmsCreateLab4Profile(NULL); |
59 | 516 | dstFormat = TYPE_Lab_DBL; |
60 | 516 | } |
61 | 2.40k | else if (dstVal == 7) { |
62 | 327 | dstProfile = cmsCreateLab4Profile(NULL); |
63 | 327 | dstFormat = TYPE_Lab_DBL; |
64 | 327 | } |
65 | 2.07k | else if (dstVal == 8){ |
66 | 229 | dstProfile = cmsCreate_OkLabProfile(NULL); |
67 | 229 | dstFormat = (FLOAT_SH(1)|COLORSPACE_SH(PT_MCH3)|CHANNELS_SH(3)|BYTES_SH(0)); |
68 | 229 | } |
69 | 1.84k | else if (dstVal == 9){ |
70 | 251 | dstProfile = cmsCreateNULLProfile(); |
71 | 251 | dstFormat = 0; |
72 | 251 | } |
73 | 1.59k | else if (dstVal == 10){ |
74 | 478 | dstProfile = cmsCreateBCHSWabstractProfile(17, 0, 1.2, 0, 3, 5000, 5000); |
75 | 478 | dstFormat = TYPE_Lab_DBL; |
76 | 478 | } |
77 | 1.11k | else { |
78 | 1.11k | dstProfile = cmsCreate_sRGBProfile(); |
79 | 1.11k | dstFormat = TYPE_RGB_8; |
80 | 1.11k | } |
81 | | |
82 | 4.73k | if (!dstProfile) { |
83 | 0 | cmsCloseProfile(srcProfile); |
84 | 0 | return; |
85 | 0 | } |
86 | | |
87 | | // Extract srcFormat from the random src profile |
88 | 4.73k | cmsColorSpaceSignature srcCS = cmsGetColorSpace(srcProfile); |
89 | 4.73k | cmsUInt32Number nSrcComponents = cmsChannelsOf(srcCS); |
90 | 4.73k | cmsUInt32Number srcFormat; |
91 | 4.73k | if (srcCS == cmsSigLabData) { |
92 | 214 | if (dstVal != 7) { |
93 | 204 | srcFormat = |
94 | 204 | COLORSPACE_SH(PT_Lab) | CHANNELS_SH(nSrcComponents) | BYTES_SH(0); |
95 | 204 | } |
96 | 10 | else { |
97 | 10 | srcFormat = |
98 | 10 | COLORSPACE_SH(PT_Lab) | CHANNELS_SH(nSrcComponents) | BYTES_SH(0) | FLOAT_SH(1); |
99 | 10 | } |
100 | 4.52k | } else { |
101 | 4.52k | srcFormat = |
102 | 4.52k | COLORSPACE_SH(PT_ANY) | CHANNELS_SH(nSrcComponents) | BYTES_SH(1); |
103 | 4.52k | } |
104 | | |
105 | | // Create the transform |
106 | 4.73k | cmsContext ctx = cmsCreateContext(NULL, NULL); |
107 | 4.73k | cmsHTRANSFORM hTransform = cmsCreateTransformTHR( |
108 | 4.73k | ctx, |
109 | 4.73k | srcProfile, |
110 | 4.73k | srcFormat, |
111 | 4.73k | dstProfile, |
112 | 4.73k | dstFormat, |
113 | 4.73k | intent, |
114 | 4.73k | flags); |
115 | | |
116 | 4.73k | cmsCloseProfile(srcProfile); |
117 | 4.73k | cmsCloseProfile(dstProfile); |
118 | 4.73k | if (!hTransform) return; |
119 | | |
120 | | |
121 | | // Do transformation. |
122 | | // The output buffer type depends on the dstFormat |
123 | | // The input buffer type depends on the srcFormat. |
124 | 974 | if (T_BYTES(srcFormat) == 0) { // 0 means double |
125 | | // Ensure output is large enough |
126 | 4 | long long output[nSrcComponents*4]; |
127 | 4 | double input[nSrcComponents]; |
128 | 16 | for (uint32_t i = 0; i < nSrcComponents; i++) input[i] = 0.5f; |
129 | 4 | cmsDoTransform(hTransform, input, output, 1); |
130 | 4 | } |
131 | 970 | else { |
132 | 970 | uint8_t input[nSrcComponents]; |
133 | 4.46k | for (uint32_t i = 0; i < nSrcComponents; i++) input[i] = 128; |
134 | | |
135 | 970 | if (dstFormat == TYPE_XYZ_16) { |
136 | 77 | cmsCIEXYZ output_XYZ = { 0, 0, 0 }; |
137 | 77 | cmsDoTransform(hTransform, input, &output_XYZ, 1); |
138 | 77 | } |
139 | 893 | else if (dstFormat == TYPE_XYZ_DBL) { |
140 | 38 | cmsCIEXYZTRIPLE out[4]; |
141 | 38 | cmsDoTransform(hTransform, input, out, 1); |
142 | 38 | } |
143 | 855 | else if (dstFormat == TYPE_Lab_DBL || dstFormat == (FLOAT_SH(1)|COLORSPACE_SH(PT_MCH3)|CHANNELS_SH(3)|BYTES_SH(0))) { |
144 | 273 | cmsCIELab Lab1; |
145 | 273 | cmsDoTransform(hTransform, input, &Lab1, 1); |
146 | 273 | } |
147 | 582 | else { |
148 | 582 | uint8_t output[4]; |
149 | 582 | cmsDoTransform(hTransform, input, output, 1); |
150 | 582 | } |
151 | 970 | } |
152 | 974 | cmsDeleteTransform(hTransform); |
153 | 974 | } |
154 | | |
155 | | |
156 | 12.0k | int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
157 | 12.0k | if (size < 12) { |
158 | 12 | return 0; |
159 | 12 | } |
160 | | |
161 | 12.0k | uint32_t flags = *((const uint32_t *)data+0); |
162 | 12.0k | uint32_t intent = *((const uint32_t *)data+1) % 16; |
163 | 12.0k | int decider = *((int*)data+2) % 11; |
164 | 12.0k | data += 12; |
165 | 12.0k | size -= 12; |
166 | | |
167 | | // Transform using various output formats. |
168 | 12.0k | run_test(data, size, intent, flags, decider); |
169 | | |
170 | 12.0k | return 0; |
171 | 12.0k | } |