Coverage Report

Created: 2026-07-16 07:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/flac/oss-fuzz/seek.cc
Line
Count
Source
1
/* fuzzer_seek
2
 * Copyright (C) 2022-2025  Xiph.Org Foundation
3
 *
4
 * Redistribution and use in source and binary forms, with or without
5
 * modification, are permitted provided that the following conditions
6
 * are met:
7
 *
8
 * - Redistributions of source code must retain the above copyright
9
 * notice, this list of conditions and the following disclaimer.
10
 *
11
 * - Redistributions in binary form must reproduce the above copyright
12
 * notice, this list of conditions and the following disclaimer in the
13
 * documentation and/or other materials provided with the distribution.
14
 *
15
 * - Neither the name of the Xiph.org Foundation nor the names of its
16
 * contributors may be used to endorse or promote products derived from
17
 * this software without specific prior written permission.
18
 *
19
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22
 * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
23
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
 */
31
32
#include <cstdlib>
33
#include <cstring> /* for memcpy */
34
#include "FLAC/stream_decoder.h"
35
#include "common.h"
36
37
#if MSAN == 1
38
extern "C" void __msan_check_mem_is_initialized(const volatile void *x, size_t size);
39
#endif
40
41
int write_abort_check_counter = -1;
42
int written_uncompressed_bytes = 0;
43
int errors_received_counter = 0;
44
45
#if 0 /* set to 1 to debug */
46
#define FPRINTF_DEBUG_ONLY(...) fprintf(__VA_ARGS__)
47
#else
48
#define FPRINTF_DEBUG_ONLY(...)
49
#endif
50
51
0
#define CONFIG_LENGTH 3
52
53
static FLAC__StreamDecoderWriteStatus write_callback(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data)
54
0
{
55
0
  (void)decoder, (void)buffer, (void)client_data;
56
0
  if(write_abort_check_counter > 0) {
57
0
    write_abort_check_counter--;
58
0
    if(write_abort_check_counter == 0)
59
0
      return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
60
0
  } else if(write_abort_check_counter == 0)
61
    /* This must not happen: write callback called after abort is returned */
62
0
    abort();
63
64
0
  written_uncompressed_bytes += frame->header.blocksize * frame->header.channels * frame->header.bits_per_sample / 8;
65
0
  if(written_uncompressed_bytes > (1 << 24))
66
0
    return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
67
68
69
0
  if(errors_received_counter > 10000)
70
0
    return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
71
72
0
        return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
73
0
}
74
75
static void error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus error, void *client_data)
76
0
{
77
0
  (void)decoder, (void)error, (void)client_data;
78
0
  errors_received_counter++;
79
0
}
80
81
82
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
83
0
{
84
0
  FLAC__bool decoder_valid = true;
85
0
  FLAC__StreamDecoder *decoder;
86
0
  uint8_t command_length;
87
0
  FLAC__bool init_bools[16], ogg;
88
89
0
  if(size < 1)
90
0
    return 1;
91
92
0
  if(data[0] < 128) /* Use MSB as on/off */
93
0
    alloc_check_threshold = data[0];
94
0
  else
95
0
    alloc_check_threshold = INT32_MAX;
96
0
  alloc_check_counter = 0;
97
98
0
  write_abort_check_counter = -1;
99
0
  written_uncompressed_bytes = 0;
100
0
  errors_received_counter = 0;
101
102
  /* allocate the decoder */
103
0
  if((decoder = FLAC__stream_decoder_new()) == NULL) {
104
0
    return 1;
105
0
  }
106
107
  /* Use first CONFIG_LENGTH bytes for configuration, leave at least one byte of input */
108
0
  if(size < 1 + CONFIG_LENGTH){
109
0
    FLAC__stream_decoder_delete(decoder);
110
0
    return 0;
111
0
  }
112
113
  /* bit 8 to 19 bits for configuration bools, bit 20 to 23 for length of command section */
114
0
  for(int i = 0; i < 12; i++)
115
0
    init_bools[i] = data[1+i/8] & (1 << (i % 8));
116
117
0
  command_length = data[CONFIG_LENGTH-1] >> 4;
118
119
  /* Leave at least one byte as input */
120
0
  if(command_length >= size - 1 - CONFIG_LENGTH)
121
0
    command_length = size - 1 - CONFIG_LENGTH;
122
123
  /* Dump decoder input to file */
124
0
  {
125
0
    FILE * file_to_decode = fopen("/tmp/tmp.flac","w");
126
0
    fwrite(data+CONFIG_LENGTH+command_length,1,size-CONFIG_LENGTH-command_length,file_to_decode);
127
0
    fclose(file_to_decode);
128
0
  }
129
130
0
  ogg = init_bools[0];
131
132
0
  FLAC__stream_decoder_set_md5_checking(decoder,init_bools[1]);
133
0
  if(init_bools[2])
134
0
    FLAC__stream_decoder_set_metadata_respond_all(decoder);
135
0
  if(init_bools[3])
136
0
    FLAC__stream_decoder_set_metadata_ignore_all(decoder);
137
0
  if(init_bools[4])
138
0
    FLAC__stream_decoder_set_decode_chained_stream(decoder, true);
139
140
  /* initialize decoder */
141
0
  if(decoder_valid) {
142
0
    FLAC__StreamDecoderInitStatus init_status;
143
0
    if(ogg)
144
0
      init_status = FLAC__stream_decoder_init_ogg_file(decoder, "/tmp/tmp.flac", write_callback, NULL, error_callback, NULL);
145
0
    else
146
0
      init_status = FLAC__stream_decoder_init_file(decoder, "/tmp/tmp.flac", write_callback, NULL, error_callback, NULL);
147
0
    if(init_status != FLAC__STREAM_DECODER_INIT_STATUS_OK) {
148
0
      decoder_valid = false;
149
0
    }
150
0
  }
151
152
  /* Run commands */
153
0
  for(uint8_t i = 0; decoder_valid && (i < command_length); i++){
154
0
    const uint8_t * command = data+CONFIG_LENGTH+i;
155
0
    uint8_t shift = 1u << (command[0] >> 3);
156
0
    FLAC__uint64 seekpos;
157
158
0
    switch(command[0] & 15){
159
0
      case 0:
160
0
        FPRINTF_DEBUG_ONLY(stderr,"end_of_stream\n");
161
0
        decoder_valid = FLAC__stream_decoder_process_until_end_of_stream(decoder);
162
0
        break;
163
0
      case 1:
164
0
        FPRINTF_DEBUG_ONLY(stderr,"end_of_metadata\n");
165
0
        decoder_valid = FLAC__stream_decoder_process_until_end_of_metadata(decoder);
166
0
        break;
167
0
      case 2:
168
0
        FPRINTF_DEBUG_ONLY(stderr,"single\n");
169
0
        decoder_valid = FLAC__stream_decoder_process_single(decoder);
170
0
        break;
171
0
      case 3:
172
0
        FPRINTF_DEBUG_ONLY(stderr,"skip_single\n");
173
0
        decoder_valid = FLAC__stream_decoder_skip_single_frame(decoder);
174
0
        break;
175
0
      case 4:
176
0
        FPRINTF_DEBUG_ONLY(stderr,"reset\n");
177
0
        decoder_valid = FLAC__stream_decoder_reset(decoder);
178
0
        break;
179
0
      case 5:
180
0
        FPRINTF_DEBUG_ONLY(stderr,"flush\n");
181
0
        decoder_valid = FLAC__stream_decoder_flush(decoder);
182
0
        break;
183
0
      case 6:
184
0
      case 14:
185
0
        shift = 1u << (command[0] >> 3);
186
0
        FPRINTF_DEBUG_ONLY(stderr,"seek short %hhu\n",shift);
187
0
        decoder_valid = FLAC__stream_decoder_seek_absolute(decoder,shift);
188
0
        break;
189
0
      case 7:
190
0
        if(i+8 >= command_length) /* Not enough data available to do this */
191
0
          break;
192
0
        seekpos = ((FLAC__uint64)command[1] << 56) +
193
0
                  ((FLAC__uint64)command[2] << 48) +
194
0
                  ((FLAC__uint64)command[3] << 40) +
195
0
                  ((FLAC__uint64)command[4] << 32) +
196
0
                  ((FLAC__uint64)command[5] << 24) +
197
0
                  ((FLAC__uint64)command[6] << 16) +
198
0
                  ((FLAC__uint64)command[7] << 8) +
199
0
                  command[8];
200
0
        i+=8;
201
0
        FPRINTF_DEBUG_ONLY(stderr,"seek long %lu\n",seekpos);
202
0
        decoder_valid = FLAC__stream_decoder_seek_absolute(decoder,seekpos);
203
0
        break;
204
0
      case 8:
205
        /* Set abort on write callback */
206
0
        write_abort_check_counter = (command[0] >> 4) + 1;
207
0
        break;
208
0
      case 9:
209
0
        FPRINTF_DEBUG_ONLY(stderr,"end_of_link\n");
210
0
        decoder_valid = FLAC__stream_decoder_process_until_end_of_link(decoder);
211
0
        break;
212
0
      case 10:
213
0
        FPRINTF_DEBUG_ONLY(stderr,"finish_link\n");
214
0
        if(FLAC__stream_decoder_get_state(decoder) == FLAC__STREAM_DECODER_END_OF_LINK)
215
0
          FLAC__stream_decoder_finish_link(decoder);
216
0
        break;
217
0
      case 11:
218
0
        FPRINTF_DEBUG_ONLY(stderr,"skip_single_link\n");
219
0
        decoder_valid = FLAC__stream_decoder_skip_single_link(decoder);
220
0
        break;
221
0
      case 12:
222
0
        FPRINTF_DEBUG_ONLY(stderr,"find_total_samples\n");
223
0
        if(FLAC__stream_decoder_find_total_samples(decoder) == 0) {
224
0
          FLAC__StreamDecoderState state = FLAC__stream_decoder_get_state(decoder);
225
0
          if(state == FLAC__STREAM_DECODER_OGG_ERROR ||
226
0
          state == FLAC__STREAM_DECODER_SEEK_ERROR ||
227
0
          state == FLAC__STREAM_DECODER_ABORTED ||
228
0
          state == FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR ||
229
0
          state == FLAC__STREAM_DECODER_UNINITIALIZED)
230
0
            decoder_valid = false;
231
0
        }
232
0
        break;
233
0
      case 13:
234
0
        int32_t retval;
235
0
        FLAC__uint64 *link_lengths;
236
0
        FPRINTF_DEBUG_ONLY(stderr,"get_link_lengths\n");
237
0
        retval = FLAC__stream_decoder_get_link_lengths(decoder, &link_lengths);
238
0
        if(retval == FLAC__STREAM_DECODER_GET_LINK_LENGTHS_MEMORY_ALLOCATION_ERROR) {
239
0
          decoder_valid = false;
240
0
        }
241
0
        if(retval > 0) {
242
0
          for(int32_t j = 0; j < retval; j++) {
243
#if MSAN == 1
244
             __msan_check_mem_is_initialized(&link_lengths[j],sizeof(link_lengths[j]));
245
#else
246
0
            ;
247
0
#endif
248
0
          }
249
0
          free(link_lengths);
250
0
        }
251
0
        break;
252
      /* case 14 is already used above */
253
0
    }
254
0
    if(!decoder_valid) {
255
      /* Try again if possible */
256
0
      FLAC__StreamDecoderState state = FLAC__stream_decoder_get_state(decoder);
257
0
      if(state != FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR && state != FLAC__STREAM_DECODER_ABORTED) {
258
0
        FPRINTF_DEBUG_ONLY(stderr,"reset invalid\n");
259
0
        decoder_valid = FLAC__stream_decoder_reset(decoder);
260
0
      }
261
0
    }
262
0
  }
263
264
0
  FLAC__stream_decoder_finish(decoder);
265
266
0
  FLAC__stream_decoder_delete(decoder);
267
268
0
  return 0;
269
0
}
270