Coverage Report

Created: 2026-02-26 06:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cms_transform_extended_fuzzer.c
Line
Count
Source
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.71k
         uint32_t flags, int dstVal) {
24
5.71k
  if (size < 2) {
25
2
    return;
26
2
  }
27
28
5.70k
  cmsHPROFILE srcProfile = cmsOpenProfileFromMem(data, size);
29
5.70k
  if (!srcProfile) return;
30
31
  // Select dstProfile and dstFormat
32
5.06k
  cmsHPROFILE dstProfile;
33
5.06k
  uint32_t dstFormat;
34
5.06k
  if (dstVal == 1) {
35
445
    dstProfile = cmsCreateLab4Profile(NULL);
36
445
    dstFormat = TYPE_Lab_8;
37
445
  }
38
4.61k
  else if (dstVal == 2) {
39
533
    dstProfile = cmsCreateLab2Profile(NULL);
40
533
    dstFormat = TYPE_LabV2_8;
41
533
  }
42
4.08k
  else if (dstVal == 3) {
43
185
    cmsToneCurve* gamma18;
44
185
    gamma18 = cmsBuildGamma(0, 1.8);
45
185
    dstProfile = cmsCreateGrayProfile(NULL, gamma18);
46
185
    cmsFreeToneCurve(gamma18);
47
185
    dstFormat = TYPE_GRAY_FLT | EXTRA_SH(1);
48
185
  }
49
3.89k
  else if (dstVal == 4) {
50
570
    dstProfile = cmsCreateXYZProfile();
51
570
    dstFormat = TYPE_XYZ_16;
52
570
  }
53
3.32k
  else if (dstVal == 5) {
54
283
    dstProfile = cmsCreateXYZProfile();
55
283
    dstFormat = TYPE_XYZ_DBL;
56
283
  }
57
3.04k
  else if (dstVal == 6) {
58
554
    dstProfile = cmsCreateLab4Profile(NULL);
59
554
    dstFormat = TYPE_Lab_DBL;
60
554
  }
61
2.49k
  else if (dstVal == 7) {
62
341
    dstProfile = cmsCreateLab4Profile(NULL);
63
341
    dstFormat = TYPE_Lab_DBL;
64
341
  }
65
2.15k
  else if (dstVal == 8){
66
217
    dstProfile = cmsCreate_OkLabProfile(NULL);
67
217
    dstFormat = (FLOAT_SH(1)|COLORSPACE_SH(PT_MCH3)|CHANNELS_SH(3)|BYTES_SH(0));
68
217
  }
69
1.93k
  else if (dstVal == 9){
70
290
    dstProfile = cmsCreateNULLProfile();
71
290
    dstFormat = 0;
72
290
  }
73
1.64k
  else if (dstVal == 10){
74
452
    dstProfile = cmsCreateBCHSWabstractProfile(17, 0, 1.2, 0, 3, 5000, 5000);
75
452
    dstFormat = TYPE_Lab_DBL;
76
452
  }
77
1.19k
  else {
78
1.19k
    dstProfile = cmsCreate_sRGBProfile();
79
1.19k
    dstFormat = TYPE_RGB_8;
80
1.19k
  }
81
82
5.06k
  if (!dstProfile) {
83
0
    cmsCloseProfile(srcProfile);
84
0
    return;
85
0
  }
86
87
  // Extract srcFormat from the random src profile
88
5.06k
  cmsColorSpaceSignature srcCS = cmsGetColorSpace(srcProfile);
89
5.06k
  cmsUInt32Number nSrcComponents = cmsChannelsOf(srcCS);
90
5.06k
  cmsUInt32Number srcFormat;
91
5.06k
  if (srcCS == cmsSigLabData) {
92
361
    if (dstVal != 7) {
93
350
        srcFormat =
94
350
            COLORSPACE_SH(PT_Lab) | CHANNELS_SH(nSrcComponents) | BYTES_SH(0);
95
350
    }
96
11
    else {
97
11
        srcFormat =
98
11
            COLORSPACE_SH(PT_Lab) | CHANNELS_SH(nSrcComponents) | BYTES_SH(0) | FLOAT_SH(1);
99
11
    }
100
4.70k
  } else {
101
4.70k
    srcFormat =
102
4.70k
        COLORSPACE_SH(PT_ANY) | CHANNELS_SH(nSrcComponents) | BYTES_SH(1);
103
4.70k
  }
104
105
  // Create the transform
106
5.06k
  cmsContext ctx = cmsCreateContext(NULL, NULL);
107
5.06k
  cmsHTRANSFORM hTransform = cmsCreateTransformTHR(
108
5.06k
    ctx,
109
5.06k
    srcProfile,
110
5.06k
    srcFormat,
111
5.06k
    dstProfile,
112
5.06k
    dstFormat,
113
5.06k
    intent,
114
5.06k
    flags);
115
116
5.06k
  cmsCloseProfile(srcProfile);
117
5.06k
  cmsCloseProfile(dstProfile);
118
5.06k
  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
1.08k
  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
1.08k
  else {
132
1.08k
    uint8_t input[nSrcComponents];
133
4.69k
    for (uint32_t i = 0; i < nSrcComponents; i++) input[i] = 128;
134
135
1.08k
    if (dstFormat == TYPE_XYZ_16) {
136
90
      cmsCIEXYZ output_XYZ = { 0, 0, 0 };
137
90
      cmsDoTransform(hTransform, input, &output_XYZ, 1);
138
90
    }
139
990
    else if (dstFormat == TYPE_XYZ_DBL) {
140
35
      cmsCIEXYZTRIPLE out[4];
141
35
      cmsDoTransform(hTransform, input, out, 1);
142
35
    }
143
955
    else if (dstFormat == TYPE_Lab_DBL || dstFormat == (FLOAT_SH(1)|COLORSPACE_SH(PT_MCH3)|CHANNELS_SH(3)|BYTES_SH(0))) {
144
283
      cmsCIELab Lab1;
145
283
      cmsDoTransform(hTransform, input, &Lab1, 1);
146
283
    }
147
672
    else {
148
672
      uint8_t output[4];
149
672
      cmsDoTransform(hTransform, input, output, 1);
150
672
    }
151
1.08k
  }
152
1.08k
  cmsDeleteTransform(hTransform);
153
1.08k
}
154
155
156
12.7k
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
157
12.7k
  if (size < 12) {
158
12
    return 0;
159
12
  }
160
161
12.6k
  uint32_t flags         = *((const uint32_t *)data+0);
162
12.6k
  uint32_t intent        = *((const uint32_t *)data+1) % 16;
163
12.6k
  int decider = *((int*)data+2) % 11;
164
12.6k
  data += 12;
165
12.6k
  size -= 12;
166
167
  // Transform using various output formats.
168
12.6k
  run_test(data, size, intent, flags, decider);
169
170
12.6k
  return 0;
171
12.7k
}