Coverage Report

Created: 2024-02-25 07:20

/src/libfsfat/ossfuzz/file_entry_fuzzer.cc
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * OSS-Fuzz target for libfsfat file_entry type
3
 *
4
 * Copyright (C) 2021-2024, Joachim Metz <joachim.metz@gmail.com>
5
 *
6
 * Refer to AUTHORS for acknowledgements.
7
 *
8
 * This program is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Lesser General Public License as published by
10
 * the Free Software Foundation, either version 3 of the License, or
11
 * (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU Lesser General Public License
19
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20
 */
21
22
#include <stddef.h>
23
#include <stdint.h>
24
25
/* Note that some of the OSS-Fuzz engines use C++
26
 */
27
extern "C" {
28
29
#include "ossfuzz_libbfio.h"
30
#include "ossfuzz_libfsfat.h"
31
32
#if !defined( LIBFSFAT_HAVE_BFIO )
33
34
/* Opens a volume using a Basic File IO (bfio) handle
35
 * Returns 1 if successful or -1 on error
36
 */
37
LIBFSFAT_EXTERN \
38
int libfsfat_volume_open_file_io_handle(
39
     libfsfat_volume_t *volume,
40
     libbfio_handle_t *file_io_handle,
41
     int access_flags,
42
     libfsfat_error_t **error );
43
44
#endif /* !defined( LIBFSFAT_HAVE_BFIO ) */
45
46
int LLVMFuzzerTestOneInput(
47
     const uint8_t *data,
48
     size_t size )
49
23.2k
{
50
23.2k
  libbfio_handle_t *file_io_handle      = NULL;
51
23.2k
  libfsfat_file_entry_t *root_directory = NULL;
52
23.2k
  libfsfat_file_entry_t *sub_file_entry = NULL;
53
23.2k
  libfsfat_volume_t *volume             = NULL;
54
23.2k
  int number_of_sub_file_entries        = 0;
55
56
23.2k
  if( libbfio_memory_range_initialize(
57
23.2k
       &file_io_handle,
58
23.2k
       NULL ) != 1 )
59
0
  {
60
0
    return( 0 );
61
0
  }
62
23.2k
  if( libbfio_memory_range_set(
63
23.2k
       file_io_handle,
64
23.2k
       (uint8_t *) data,
65
23.2k
       size,
66
23.2k
       NULL ) != 1 )
67
0
  {
68
0
    goto on_error_libbfio;
69
0
  }
70
23.2k
  if( libfsfat_volume_initialize(
71
23.2k
       &volume,
72
23.2k
       NULL ) != 1 )
73
0
  {
74
0
    goto on_error_libbfio;
75
0
  }
76
23.2k
  if( libfsfat_volume_open_file_io_handle(
77
23.2k
       volume,
78
23.2k
       file_io_handle,
79
23.2k
       LIBFSFAT_OPEN_READ,
80
23.2k
       NULL ) != 1 )
81
12.2k
  {
82
12.2k
    goto on_error_libfsfat_volume;
83
12.2k
  }
84
11.0k
  if( libfsfat_volume_get_root_directory(
85
11.0k
       volume,
86
11.0k
       &root_directory,
87
11.0k
       NULL ) == 1 )
88
3.11k
  {
89
3.11k
    if( libfsfat_file_entry_get_number_of_sub_file_entries(
90
3.11k
         root_directory,
91
3.11k
         &number_of_sub_file_entries,
92
3.11k
         NULL ) != 1 )
93
1.94k
    {
94
1.94k
      goto on_error_libfsfat_root_directory;
95
1.94k
    }
96
1.16k
    if( number_of_sub_file_entries > 0 )
97
673
    {
98
673
      if( libfsfat_file_entry_get_sub_file_entry_by_index(
99
673
           root_directory,
100
673
           0,
101
673
           &sub_file_entry,
102
673
           NULL ) != 1 )
103
160
      {
104
160
        goto on_error_libfsfat_root_directory;
105
160
      }
106
513
      libfsfat_file_entry_free(
107
513
       &sub_file_entry,
108
513
       NULL );
109
513
    }
110
3.11k
on_error_libfsfat_root_directory:
111
3.11k
    libfsfat_file_entry_free(
112
3.11k
     &root_directory,
113
3.11k
     NULL );
114
3.11k
  }
115
11.0k
  libfsfat_volume_close(
116
11.0k
   volume,
117
11.0k
   NULL );
118
119
23.2k
on_error_libfsfat_volume:
120
23.2k
  libfsfat_volume_free(
121
23.2k
   &volume,
122
23.2k
   NULL );
123
124
23.2k
on_error_libbfio:
125
23.2k
  libbfio_handle_free(
126
23.2k
   &file_io_handle,
127
23.2k
   NULL );
128
129
23.2k
  return( 0 );
130
23.2k
}
131
132
} /* extern "C" */
133