Coverage Report

Created: 2026-09-14 07:34

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/gs_fuzzlib.h
Line
Count
Source
1
/*
2
# Copyright 2019 The Chromium OS Authors.
3
#
4
# Licensed under the Apache License, Version 2.0 (the "License");
5
# you may not use this file except in compliance with the License.
6
# You may obtain a copy of the License at
7
#
8
#      http://www.apache.org/licenses/LICENSE-2.0
9
#
10
# Unless required by applicable law or agreed to in writing, software
11
# distributed under the License is distributed on an "AS IS" BASIS,
12
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15
#
16
################################################################################
17
*/
18
19
#include <base/gserrors.h>
20
#include <psi/iapi.h>
21
22
#include <limits.h>
23
#include <stdio.h>
24
#include <string.h>
25
#include <stdint.h>
26
27
static const unsigned char *g_data;
28
static size_t g_size;
29
30
int fuzz_gs_device(
31
  const unsigned char *buf,
32
  size_t size,
33
  int color_scheme,
34
  const char *device_target,
35
  const char *output_file,
36
  int do_interpolation
37
);
38
39
2.46M
#define min(x, y) ((x) < (y) ? (x) : (y))
40
41
static int gs_stdin(void *inst, char *buf, int len)
42
1.23M
{
43
1.23M
  size_t to_copy = min(len, g_size);
44
1.23M
  to_copy = min(INT_MAX, to_copy);
45
46
1.23M
  memcpy(buf, g_data, to_copy);
47
48
1.23M
  g_data += to_copy;
49
1.23M
  g_size -= to_copy;
50
51
1.23M
  return to_copy;
52
1.23M
}
gs_device_pdfwrite_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
10.6k
{
43
10.6k
  size_t to_copy = min(len, g_size);
44
10.6k
  to_copy = min(INT_MAX, to_copy);
45
46
10.6k
  memcpy(buf, g_data, to_copy);
47
48
10.6k
  g_data += to_copy;
49
10.6k
  g_size -= to_copy;
50
51
10.6k
  return to_copy;
52
10.6k
}
gs_device_pxlcolor_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
69.8k
{
43
69.8k
  size_t to_copy = min(len, g_size);
44
69.8k
  to_copy = min(INT_MAX, to_copy);
45
46
69.8k
  memcpy(buf, g_data, to_copy);
47
48
69.8k
  g_data += to_copy;
49
69.8k
  g_size -= to_copy;
50
51
69.8k
  return to_copy;
52
69.8k
}
gs_device_ps2write_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
103k
{
43
103k
  size_t to_copy = min(len, g_size);
44
103k
  to_copy = min(INT_MAX, to_copy);
45
46
103k
  memcpy(buf, g_data, to_copy);
47
48
103k
  g_data += to_copy;
49
103k
  g_size -= to_copy;
50
51
103k
  return to_copy;
52
103k
}
gs_device_png16m_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
52.7k
{
43
52.7k
  size_t to_copy = min(len, g_size);
44
52.7k
  to_copy = min(INT_MAX, to_copy);
45
46
52.7k
  memcpy(buf, g_data, to_copy);
47
48
52.7k
  g_data += to_copy;
49
52.7k
  g_size -= to_copy;
50
51
52.7k
  return to_copy;
52
52.7k
}
gs_device_pgmraw_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
55.8k
{
43
55.8k
  size_t to_copy = min(len, g_size);
44
55.8k
  to_copy = min(INT_MAX, to_copy);
45
46
55.8k
  memcpy(buf, g_data, to_copy);
47
48
55.8k
  g_data += to_copy;
49
55.8k
  g_size -= to_copy;
50
51
55.8k
  return to_copy;
52
55.8k
}
gs_device_tiffsep1_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
167k
{
43
167k
  size_t to_copy = min(len, g_size);
44
167k
  to_copy = min(INT_MAX, to_copy);
45
46
167k
  memcpy(buf, g_data, to_copy);
47
48
167k
  g_data += to_copy;
49
167k
  g_size -= to_copy;
50
51
167k
  return to_copy;
52
167k
}
gs_device_ljet4_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
31.5k
{
43
31.5k
  size_t to_copy = min(len, g_size);
44
31.5k
  to_copy = min(INT_MAX, to_copy);
45
46
31.5k
  memcpy(buf, g_data, to_copy);
47
48
31.5k
  g_data += to_copy;
49
31.5k
  g_size -= to_copy;
50
51
31.5k
  return to_copy;
52
31.5k
}
gstoraster_fuzzer_all_colors.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
14.9k
{
43
14.9k
  size_t to_copy = min(len, g_size);
44
14.9k
  to_copy = min(INT_MAX, to_copy);
45
46
14.9k
  memcpy(buf, g_data, to_copy);
47
48
14.9k
  g_data += to_copy;
49
14.9k
  g_size -= to_copy;
50
51
14.9k
  return to_copy;
52
14.9k
}
gs_device_xpswrite_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
47.3k
{
43
47.3k
  size_t to_copy = min(len, g_size);
44
47.3k
  to_copy = min(INT_MAX, to_copy);
45
46
47.3k
  memcpy(buf, g_data, to_copy);
47
48
47.3k
  g_data += to_copy;
49
47.3k
  g_size -= to_copy;
50
51
47.3k
  return to_copy;
52
47.3k
}
gstoraster_ps_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
22.9k
{
43
22.9k
  size_t to_copy = min(len, g_size);
44
22.9k
  to_copy = min(INT_MAX, to_copy);
45
46
22.9k
  memcpy(buf, g_data, to_copy);
47
48
22.9k
  g_data += to_copy;
49
22.9k
  g_size -= to_copy;
50
51
22.9k
  return to_copy;
52
22.9k
}
gs_device_faxg3_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
184k
{
43
184k
  size_t to_copy = min(len, g_size);
44
184k
  to_copy = min(INT_MAX, to_copy);
45
46
184k
  memcpy(buf, g_data, to_copy);
47
48
184k
  g_data += to_copy;
49
184k
  g_size -= to_copy;
50
51
184k
  return to_copy;
52
184k
}
gs_device_psdcmyk_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
108k
{
43
108k
  size_t to_copy = min(len, g_size);
44
108k
  to_copy = min(INT_MAX, to_copy);
45
46
108k
  memcpy(buf, g_data, to_copy);
47
48
108k
  g_data += to_copy;
49
108k
  g_size -= to_copy;
50
51
108k
  return to_copy;
52
108k
}
gs_device_pdfwrite_opts_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
54.2k
{
43
54.2k
  size_t to_copy = min(len, g_size);
44
54.2k
  to_copy = min(INT_MAX, to_copy);
45
46
54.2k
  memcpy(buf, g_data, to_copy);
47
48
54.2k
  g_data += to_copy;
49
54.2k
  g_size -= to_copy;
50
51
54.2k
  return to_copy;
52
54.2k
}
gs_device_pxlmono_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
74.5k
{
43
74.5k
  size_t to_copy = min(len, g_size);
44
74.5k
  to_copy = min(INT_MAX, to_copy);
45
46
74.5k
  memcpy(buf, g_data, to_copy);
47
48
74.5k
  g_data += to_copy;
49
74.5k
  g_size -= to_copy;
50
51
74.5k
  return to_copy;
52
74.5k
}
gs_device_eps2write_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
98.0k
{
43
98.0k
  size_t to_copy = min(len, g_size);
44
98.0k
  to_copy = min(INT_MAX, to_copy);
45
46
98.0k
  memcpy(buf, g_data, to_copy);
47
48
98.0k
  g_data += to_copy;
49
98.0k
  g_size -= to_copy;
50
51
98.0k
  return to_copy;
52
98.0k
}
gstoraster_pdf_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
28.9k
{
43
28.9k
  size_t to_copy = min(len, g_size);
44
28.9k
  to_copy = min(INT_MAX, to_copy);
45
46
28.9k
  memcpy(buf, g_data, to_copy);
47
48
28.9k
  g_data += to_copy;
49
28.9k
  g_size -= to_copy;
50
51
28.9k
  return to_copy;
52
28.9k
}
gs_device_bmpmono_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
75.1k
{
43
75.1k
  size_t to_copy = min(len, g_size);
44
75.1k
  to_copy = min(INT_MAX, to_copy);
45
46
75.1k
  memcpy(buf, g_data, to_copy);
47
48
75.1k
  g_data += to_copy;
49
75.1k
  g_size -= to_copy;
50
51
75.1k
  return to_copy;
52
75.1k
}
gstoraster_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
34.0k
{
43
34.0k
  size_t to_copy = min(len, g_size);
44
34.0k
  to_copy = min(INT_MAX, to_copy);
45
46
34.0k
  memcpy(buf, g_data, to_copy);
47
48
34.0k
  g_data += to_copy;
49
34.0k
  g_size -= to_copy;
50
51
34.0k
  return to_copy;
52
34.0k
}
53
54
static int gs_stdnull(void *inst, const char *buf, int len)
55
477k
{
56
  /* Just discard everything. */
57
477k
  return len;
58
477k
}
gs_device_pdfwrite_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
2.03k
{
56
  /* Just discard everything. */
57
2.03k
  return len;
58
2.03k
}
gs_device_pxlcolor_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
22.0k
{
56
  /* Just discard everything. */
57
22.0k
  return len;
58
22.0k
}
gs_device_ps2write_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
45.8k
{
56
  /* Just discard everything. */
57
45.8k
  return len;
58
45.8k
}
gs_device_png16m_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
15.2k
{
56
  /* Just discard everything. */
57
15.2k
  return len;
58
15.2k
}
gs_device_pgmraw_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
7.19k
{
56
  /* Just discard everything. */
57
7.19k
  return len;
58
7.19k
}
gs_device_tiffsep1_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
21.7k
{
56
  /* Just discard everything. */
57
21.7k
  return len;
58
21.7k
}
gs_device_ljet4_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
8.69k
{
56
  /* Just discard everything. */
57
8.69k
  return len;
58
8.69k
}
gstoraster_fuzzer_all_colors.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
26.5k
{
56
  /* Just discard everything. */
57
26.5k
  return len;
58
26.5k
}
gs_device_xpswrite_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
16.8k
{
56
  /* Just discard everything. */
57
16.8k
  return len;
58
16.8k
}
gstoraster_ps_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
41.0k
{
56
  /* Just discard everything. */
57
41.0k
  return len;
58
41.0k
}
gs_device_faxg3_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
16.9k
{
56
  /* Just discard everything. */
57
16.9k
  return len;
58
16.9k
}
gs_device_psdcmyk_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
3.45k
{
56
  /* Just discard everything. */
57
3.45k
  return len;
58
3.45k
}
gs_device_pdfwrite_opts_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
65.1k
{
56
  /* Just discard everything. */
57
65.1k
  return len;
58
65.1k
}
gs_device_pxlmono_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
17.7k
{
56
  /* Just discard everything. */
57
17.7k
  return len;
58
17.7k
}
gs_device_eps2write_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
72.8k
{
56
  /* Just discard everything. */
57
72.8k
  return len;
58
72.8k
}
gstoraster_pdf_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
48.7k
{
56
  /* Just discard everything. */
57
48.7k
  return len;
58
48.7k
}
gs_device_bmpmono_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
19.3k
{
56
  /* Just discard everything. */
57
19.3k
  return len;
58
19.3k
}
gstoraster_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
25.4k
{
56
  /* Just discard everything. */
57
25.4k
  return len;
58
25.4k
}
59
60
int gs_to_raster_fuzz(
61
  const unsigned char *buf,
62
  size_t size,
63
  int color_scheme
64
)
65
25.1k
{
66
25.1k
  return fuzz_gs_device(buf, size, color_scheme, "cups", "/dev/null", 0);
67
25.1k
}
68
69
int fuzz_gs_device(
70
  const unsigned char *buf,
71
  size_t size,
72
  int color_scheme,
73
  const char *device_target,
74
  const char *output_file,
75
  int do_interpolation
76
)
77
133k
{
78
133k
  int ret;
79
133k
  void *gs = NULL;
80
133k
  char color_space[50];
81
133k
  char gs_device[50];
82
133k
  char gs_o[100];
83
133k
  char opt_interpolation[50];
84
  /*
85
   * We are expecting color_scheme to be in the [0:62] interval.
86
   * This corresponds to the color schemes defined here:
87
   * https://github.com/ArtifexSoftware/ghostpdl/blob/8c97d5adce0040ac38a1fb4d7954499c65f582ff/cups/libs/cups/raster.h#L102
88
   */
89
133k
  sprintf(color_space, "-dcupsColorSpace=%d", color_scheme);
90
133k
  sprintf(gs_device, "-sDEVICE=%s", device_target);
91
133k
  sprintf(gs_o, "-sOutputFile=%s", output_file);
92
133k
  if (do_interpolation) {
93
5.16k
    sprintf(opt_interpolation, "-dDOINTERPOLATE");
94
5.16k
  }
95
128k
  else {
96
128k
    sprintf(opt_interpolation, "-dNOINTERPOLATE");
97
128k
  }
98
  /* Mostly stolen from cups-filters gstoraster. */
99
133k
  char *args[] = {
100
133k
    "gs",
101
133k
    "-K1048576",
102
133k
    "-r200x200",
103
133k
    "-sBandListStorage=memory",
104
133k
    "-dMaxBitmap=0",
105
133k
    "-dBufferSpace=450k",
106
133k
    "-dMediaPosition=1",
107
133k
    color_space,
108
133k
    "-dQUIET",
109
133k
    "-dSAFER",
110
133k
    "-dNOPAUSE",
111
133k
    "-dBATCH",
112
133k
    opt_interpolation,
113
133k
    "-dNOMEDIAATTRS",
114
133k
    "-sstdout=%%stderr",
115
133k
    gs_o,
116
133k
    gs_device,
117
133k
    "-_",
118
133k
  };
119
133k
  int argc = sizeof(args) / sizeof(args[0]);
120
121
  /* Stash buffers globally, for gs_stdin(). */
122
133k
  g_data = buf;
123
133k
  g_size = size;
124
125
133k
  ret = gsapi_new_instance(&gs, NULL);
126
133k
  if (ret < 0) {
127
0
    fprintf(stderr, "gsapi_new_instance: error %d\n", ret);
128
0
    return ret;
129
0
  }
130
131
133k
  gsapi_set_stdio(gs, gs_stdin, gs_stdnull, gs_stdnull);
132
133k
  ret = gsapi_set_arg_encoding(gs, GS_ARG_ENCODING_UTF8);
133
133k
  if (ret < 0) {
134
0
    fprintf(stderr, "gsapi_set_arg_encoding: error %d\n", ret);
135
0
    gsapi_delete_instance(gs);
136
0
    return ret;
137
0
  }
138
139
133k
  ret = gsapi_init_with_args(gs, argc, args);
140
133k
  if (ret && ret != gs_error_Quit)
141
    /* Just keep going, to cleanup. */
142
33.1k
    fprintf(stderr, "gsapi_init_with_args: error %d\n", ret);
143
144
133k
  ret = gsapi_exit(gs);
145
133k
  if (ret < 0 && ret != gs_error_Quit) {
146
0
    fprintf(stderr, "gsapi_exit: error %d\n", ret);
147
0
    gsapi_delete_instance(gs);
148
0
    return ret;
149
0
  }
150
151
133k
  gsapi_delete_instance(gs);
152
153
133k
  return 0;
154
133k
}