Coverage Report

Created: 2025-07-11 06:47

/src/cms_profile_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 <assert.h>
15
#include <stdlib.h>
16
#include <unistd.h>
17
18
#include "lcms2.h"
19
20
cmsTagSignature tagsToRead[] = {
21
  cmsSigGreenColorantTag,
22
  cmsSigGreenMatrixColumnTag,
23
  cmsSigGreenTRCTag,
24
  cmsSigMeasurementTag,
25
  cmsSigNamedColorTag,
26
  cmsSigPreview1Tag,
27
  cmsSigPs2CRD2Tag,
28
  cmsSigPs2CRD3Tag,
29
  cmsSigRedTRCTag,
30
};
31
32
2.64k
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
33
2.64k
  if (size == 0)
34
0
    return 0;
35
36
2.64k
  char filename[256];
37
2.64k
  sprintf(filename, "/tmp/libfuzzer.%d.icc", getpid());
38
2.64k
  FILE *fp = fopen(filename, "wb");
39
2.64k
  if (!fp) {
40
0
    return 0;
41
0
  }
42
2.64k
  fwrite(data, size, 1, fp);
43
2.64k
  fclose(fp);
44
45
2.64k
  cmsHPROFILE hProfile = cmsOpenProfileFromFile(filename, "r");
46
  // If we have a profile, perform a set of operations
47
2.64k
  if (hProfile) {
48
1.98k
    char tagBuffer[4];
49
50
    // Perform multiple tag reads. Read tags twice as behavior matters
51
    // if tags have been read before.
52
5.94k
    for (int j = 0; j < 2; j++) {
53
39.6k
      for (int i = 0; i < sizeof(tagsToRead)/sizeof(tagsToRead[0]); i++) {
54
35.6k
        cmsReadRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
55
35.6k
        cmsReadRawTag(hProfile, tagsToRead[i], NULL, 0);
56
35.6k
        cmsReadRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
57
35.6k
        cmsReadTag(hProfile, tagsToRead[i]);
58
35.6k
      }
59
3.96k
    }
60
61
    // Read profile info
62
1.98k
    cmsInfoType info = data[0] % 4;
63
1.98k
    char outBuffer[100];
64
65
1.98k
    cmsGetProfileInfoASCII(hProfile, info, "DEN", "DEN", outBuffer, 100);
66
1.98k
    cmsGetTagCount(hProfile);
67
1.98k
    if (size > 2) {
68
1.98k
      cmsGetTagSignature(hProfile, (cmsUInt32Number)data[1]);
69
1.98k
    }
70
1.98k
    if (size > 40) {
71
1.98k
      cmsTagSignature tag = *((uint32_t *)(data+5));
72
1.98k
      cmsTagLinkedTo(hProfile, tag);
73
1.98k
    }
74
75
    // Save to random file
76
1.98k
    cmsSaveProfileToFile(hProfile, "random.icc");
77
1.98k
    cmsCloseProfile(hProfile);
78
1.98k
  }
79
80
  // Let's write the profile now.
81
2.64k
  hProfile = cmsOpenProfileFromFile(filename, "w");
82
2.64k
  if (hProfile) {
83
2.64k
    char tagBuffer[4] = {'a', 'a', 'a', 'a'};
84
85
    // Perform multiple tag reads
86
7.94k
    for (int j = 0; j < 2; j++) {
87
52.9k
      for (int i = 0; i < sizeof(tagsToRead)/sizeof(tagsToRead[0]); i++) {
88
47.6k
        cmsReadRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
89
47.6k
        cmsReadRawTag(hProfile, tagsToRead[i], NULL, 0);
90
47.6k
        cmsReadRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
91
47.6k
        cmsReadTag(hProfile, tagsToRead[i]);
92
47.6k
      }
93
5.29k
    }
94
95
26.4k
    for (int i = 0; i < sizeof(tagsToRead)/sizeof(tagsToRead[0]); i++) {
96
23.8k
      cmsWriteRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
97
23.8k
    }
98
99
7.94k
    for (int j = 0; j < 2; j++) {
100
52.9k
      for (int i = 0; i < sizeof(tagsToRead)/sizeof(tagsToRead[0]); i++) {
101
47.6k
        cmsReadRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
102
47.6k
        cmsReadRawTag(hProfile, tagsToRead[i], NULL, 0);
103
47.6k
        cmsReadRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
104
47.6k
        cmsReadTag(hProfile, tagsToRead[i]);
105
47.6k
      }
106
5.29k
    }
107
108
26.4k
    for (int i = 0; i < sizeof(tagsToRead)/sizeof(tagsToRead[0]); i++) {
109
23.8k
      cmsWriteRawTag(hProfile, tagsToRead[i], tagBuffer, 4);
110
23.8k
    }
111
112
    // Save to random file
113
2.64k
    cmsSaveProfileToFile(hProfile, "random.icc");
114
2.64k
    cmsCloseProfile(hProfile);
115
2.64k
  }
116
117
2.64k
  unlink(filename);
118
2.64k
  return 0;
119
2.64k
}