Coverage Report

Created: 2026-07-24 07:44

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
3.03M
#define min(x, y) ((x) < (y) ? (x) : (y))
40
41
static int gs_stdin(void *inst, char *buf, int len)
42
1.51M
{
43
1.51M
  size_t to_copy = min(len, g_size);
44
1.51M
  to_copy = min(INT_MAX, to_copy);
45
46
1.51M
  memcpy(buf, g_data, to_copy);
47
48
1.51M
  g_data += to_copy;
49
1.51M
  g_size -= to_copy;
50
51
1.51M
  return to_copy;
52
1.51M
}
gs_device_pdfwrite_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
180k
{
43
180k
  size_t to_copy = min(len, g_size);
44
180k
  to_copy = min(INT_MAX, to_copy);
45
46
180k
  memcpy(buf, g_data, to_copy);
47
48
180k
  g_data += to_copy;
49
180k
  g_size -= to_copy;
50
51
180k
  return to_copy;
52
180k
}
gs_device_pxlcolor_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
74.4k
{
43
74.4k
  size_t to_copy = min(len, g_size);
44
74.4k
  to_copy = min(INT_MAX, to_copy);
45
46
74.4k
  memcpy(buf, g_data, to_copy);
47
48
74.4k
  g_data += to_copy;
49
74.4k
  g_size -= to_copy;
50
51
74.4k
  return to_copy;
52
74.4k
}
gs_device_ps2write_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
111k
{
43
111k
  size_t to_copy = min(len, g_size);
44
111k
  to_copy = min(INT_MAX, to_copy);
45
46
111k
  memcpy(buf, g_data, to_copy);
47
48
111k
  g_data += to_copy;
49
111k
  g_size -= to_copy;
50
51
111k
  return to_copy;
52
111k
}
gs_device_png16m_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
55.4k
{
43
55.4k
  size_t to_copy = min(len, g_size);
44
55.4k
  to_copy = min(INT_MAX, to_copy);
45
46
55.4k
  memcpy(buf, g_data, to_copy);
47
48
55.4k
  g_data += to_copy;
49
55.4k
  g_size -= to_copy;
50
51
55.4k
  return to_copy;
52
55.4k
}
gs_device_pgmraw_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
58.4k
{
43
58.4k
  size_t to_copy = min(len, g_size);
44
58.4k
  to_copy = min(INT_MAX, to_copy);
45
46
58.4k
  memcpy(buf, g_data, to_copy);
47
48
58.4k
  g_data += to_copy;
49
58.4k
  g_size -= to_copy;
50
51
58.4k
  return to_copy;
52
58.4k
}
gs_device_tiffsep1_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
168k
{
43
168k
  size_t to_copy = min(len, g_size);
44
168k
  to_copy = min(INT_MAX, to_copy);
45
46
168k
  memcpy(buf, g_data, to_copy);
47
48
168k
  g_data += to_copy;
49
168k
  g_size -= to_copy;
50
51
168k
  return to_copy;
52
168k
}
gs_device_ljet4_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
38.1k
{
43
38.1k
  size_t to_copy = min(len, g_size);
44
38.1k
  to_copy = min(INT_MAX, to_copy);
45
46
38.1k
  memcpy(buf, g_data, to_copy);
47
48
38.1k
  g_data += to_copy;
49
38.1k
  g_size -= to_copy;
50
51
38.1k
  return to_copy;
52
38.1k
}
gstoraster_fuzzer_all_colors.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
23.0k
{
43
23.0k
  size_t to_copy = min(len, g_size);
44
23.0k
  to_copy = min(INT_MAX, to_copy);
45
46
23.0k
  memcpy(buf, g_data, to_copy);
47
48
23.0k
  g_data += to_copy;
49
23.0k
  g_size -= to_copy;
50
51
23.0k
  return to_copy;
52
23.0k
}
gs_device_xpswrite_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
49.0k
{
43
49.0k
  size_t to_copy = min(len, g_size);
44
49.0k
  to_copy = min(INT_MAX, to_copy);
45
46
49.0k
  memcpy(buf, g_data, to_copy);
47
48
49.0k
  g_data += to_copy;
49
49.0k
  g_size -= to_copy;
50
51
49.0k
  return to_copy;
52
49.0k
}
gstoraster_ps_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
23.8k
{
43
23.8k
  size_t to_copy = min(len, g_size);
44
23.8k
  to_copy = min(INT_MAX, to_copy);
45
46
23.8k
  memcpy(buf, g_data, to_copy);
47
48
23.8k
  g_data += to_copy;
49
23.8k
  g_size -= to_copy;
50
51
23.8k
  return to_copy;
52
23.8k
}
gs_device_faxg3_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
154k
{
43
154k
  size_t to_copy = min(len, g_size);
44
154k
  to_copy = min(INT_MAX, to_copy);
45
46
154k
  memcpy(buf, g_data, to_copy);
47
48
154k
  g_data += to_copy;
49
154k
  g_size -= to_copy;
50
51
154k
  return to_copy;
52
154k
}
gs_device_psdcmyk_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
210k
{
43
210k
  size_t to_copy = min(len, g_size);
44
210k
  to_copy = min(INT_MAX, to_copy);
45
46
210k
  memcpy(buf, g_data, to_copy);
47
48
210k
  g_data += to_copy;
49
210k
  g_size -= to_copy;
50
51
210k
  return to_copy;
52
210k
}
gs_device_pdfwrite_opts_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
55.5k
{
43
55.5k
  size_t to_copy = min(len, g_size);
44
55.5k
  to_copy = min(INT_MAX, to_copy);
45
46
55.5k
  memcpy(buf, g_data, to_copy);
47
48
55.5k
  g_data += to_copy;
49
55.5k
  g_size -= to_copy;
50
51
55.5k
  return to_copy;
52
55.5k
}
gs_device_pxlmono_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
76.8k
{
43
76.8k
  size_t to_copy = min(len, g_size);
44
76.8k
  to_copy = min(INT_MAX, to_copy);
45
46
76.8k
  memcpy(buf, g_data, to_copy);
47
48
76.8k
  g_data += to_copy;
49
76.8k
  g_size -= to_copy;
50
51
76.8k
  return to_copy;
52
76.8k
}
gs_device_eps2write_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
94.9k
{
43
94.9k
  size_t to_copy = min(len, g_size);
44
94.9k
  to_copy = min(INT_MAX, to_copy);
45
46
94.9k
  memcpy(buf, g_data, to_copy);
47
48
94.9k
  g_data += to_copy;
49
94.9k
  g_size -= to_copy;
50
51
94.9k
  return to_copy;
52
94.9k
}
gstoraster_pdf_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
29.4k
{
43
29.4k
  size_t to_copy = min(len, g_size);
44
29.4k
  to_copy = min(INT_MAX, to_copy);
45
46
29.4k
  memcpy(buf, g_data, to_copy);
47
48
29.4k
  g_data += to_copy;
49
29.4k
  g_size -= to_copy;
50
51
29.4k
  return to_copy;
52
29.4k
}
gs_device_bmpmono_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
77.2k
{
43
77.2k
  size_t to_copy = min(len, g_size);
44
77.2k
  to_copy = min(INT_MAX, to_copy);
45
46
77.2k
  memcpy(buf, g_data, to_copy);
47
48
77.2k
  g_data += to_copy;
49
77.2k
  g_size -= to_copy;
50
51
77.2k
  return to_copy;
52
77.2k
}
gstoraster_fuzzer.cc:gs_stdin(void*, char*, int)
Line
Count
Source
42
36.0k
{
43
36.0k
  size_t to_copy = min(len, g_size);
44
36.0k
  to_copy = min(INT_MAX, to_copy);
45
46
36.0k
  memcpy(buf, g_data, to_copy);
47
48
36.0k
  g_data += to_copy;
49
36.0k
  g_size -= to_copy;
50
51
36.0k
  return to_copy;
52
36.0k
}
53
54
static int gs_stdnull(void *inst, const char *buf, int len)
55
559k
{
56
  /* Just discard everything. */
57
559k
  return len;
58
559k
}
gs_device_pdfwrite_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
57.8k
{
56
  /* Just discard everything. */
57
57.8k
  return len;
58
57.8k
}
gs_device_pxlcolor_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
22.7k
{
56
  /* Just discard everything. */
57
22.7k
  return len;
58
22.7k
}
gs_device_ps2write_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
41.8k
{
56
  /* Just discard everything. */
57
41.8k
  return len;
58
41.8k
}
gs_device_png16m_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
15.7k
{
56
  /* Just discard everything. */
57
15.7k
  return len;
58
15.7k
}
gs_device_pgmraw_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
7.29k
{
56
  /* Just discard everything. */
57
7.29k
  return len;
58
7.29k
}
gs_device_tiffsep1_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
21.9k
{
56
  /* Just discard everything. */
57
21.9k
  return len;
58
21.9k
}
gs_device_ljet4_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
9.06k
{
56
  /* Just discard everything. */
57
9.06k
  return len;
58
9.06k
}
gstoraster_fuzzer_all_colors.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
48.3k
{
56
  /* Just discard everything. */
57
48.3k
  return len;
58
48.3k
}
gs_device_xpswrite_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
17.3k
{
56
  /* Just discard everything. */
57
17.3k
  return len;
58
17.3k
}
gstoraster_ps_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
42.0k
{
56
  /* Just discard everything. */
57
42.0k
  return len;
58
42.0k
}
gs_device_faxg3_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
17.3k
{
56
  /* Just discard everything. */
57
17.3k
  return len;
58
17.3k
}
gs_device_psdcmyk_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
16.2k
{
56
  /* Just discard everything. */
57
16.2k
  return len;
58
16.2k
}
gs_device_pdfwrite_opts_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
66.0k
{
56
  /* Just discard everything. */
57
66.0k
  return len;
58
66.0k
}
gs_device_pxlmono_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
18.3k
{
56
  /* Just discard everything. */
57
18.3k
  return len;
58
18.3k
}
gs_device_eps2write_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
62.6k
{
56
  /* Just discard everything. */
57
62.6k
  return len;
58
62.6k
}
gstoraster_pdf_fuzzer.cc:gs_stdnull(void*, char const*, int)
Line
Count
Source
55
49.3k
{
56
  /* Just discard everything. */
57
49.3k
  return len;
58
49.3k
}
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.8k
{
56
  /* Just discard everything. */
57
25.8k
  return len;
58
25.8k
}
59
60
int gs_to_raster_fuzz(
61
  const unsigned char *buf,
62
  size_t size,
63
  int color_scheme
64
)
65
29.4k
{
66
29.4k
  return fuzz_gs_device(buf, size, color_scheme, "cups", "/dev/null", 0);
67
29.4k
}
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
155k
{
78
155k
  int ret;
79
155k
  void *gs = NULL;
80
155k
  char color_space[50];
81
155k
  char gs_device[50];
82
155k
  char gs_o[100];
83
155k
  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
155k
  sprintf(color_space, "-dcupsColorSpace=%d", color_scheme);
90
155k
  sprintf(gs_device, "-sDEVICE=%s", device_target);
91
155k
  sprintf(gs_o, "-sOutputFile=%s", output_file);
92
155k
  if (do_interpolation) {
93
5.32k
    sprintf(opt_interpolation, "-dDOINTERPOLATE");
94
5.32k
  }
95
150k
  else {
96
150k
    sprintf(opt_interpolation, "-dNOINTERPOLATE");
97
150k
  }
98
  /* Mostly stolen from cups-filters gstoraster. */
99
155k
  char *args[] = {
100
155k
    "gs",
101
155k
    "-K1048576",
102
155k
    "-r200x200",
103
155k
    "-sBandListStorage=memory",
104
155k
    "-dMaxBitmap=0",
105
155k
    "-dBufferSpace=450k",
106
155k
    "-dMediaPosition=1",
107
155k
    color_space,
108
155k
    "-dQUIET",
109
155k
    "-dSAFER",
110
155k
    "-dNOPAUSE",
111
155k
    "-dBATCH",
112
155k
    opt_interpolation,
113
155k
    "-dNOMEDIAATTRS",
114
155k
    "-sstdout=%%stderr",
115
155k
    gs_o,
116
155k
    gs_device,
117
155k
    "-_",
118
155k
  };
119
155k
  int argc = sizeof(args) / sizeof(args[0]);
120
121
  /* Stash buffers globally, for gs_stdin(). */
122
155k
  g_data = buf;
123
155k
  g_size = size;
124
125
155k
  ret = gsapi_new_instance(&gs, NULL);
126
155k
  if (ret < 0) {
127
0
    fprintf(stderr, "gsapi_new_instance: error %d\n", ret);
128
0
    return ret;
129
0
  }
130
131
155k
  gsapi_set_stdio(gs, gs_stdin, gs_stdnull, gs_stdnull);
132
155k
  ret = gsapi_set_arg_encoding(gs, GS_ARG_ENCODING_UTF8);
133
155k
  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
155k
  ret = gsapi_init_with_args(gs, argc, args);
140
155k
  if (ret && ret != gs_error_Quit)
141
    /* Just keep going, to cleanup. */
142
41.3k
    fprintf(stderr, "gsapi_init_with_args: error %d\n", ret);
143
144
155k
  ret = gsapi_exit(gs);
145
155k
  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
155k
  gsapi_delete_instance(gs);
152
153
155k
  return 0;
154
155k
}