Coverage Report

Created: 2024-02-25 07:20

/src/libvsgpt/ossfuzz/partition_fuzzer.cc
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * OSS-Fuzz target for libvsgpt volume type
3
 *
4
 * Copyright (C) 2019-2023, 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_libvsgpt.h"
31
32
#if !defined( LIBVSGPT_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
LIBVSGPT_EXTERN \
38
int libvsgpt_volume_open_file_io_handle(
39
     libvsgpt_volume_t *volume,
40
     libbfio_handle_t *file_io_handle,
41
     int access_flags,
42
     libvsgpt_error_t **error );
43
44
#endif /* !defined( LIBVSGPT_HAVE_BFIO ) */
45
46
int LLVMFuzzerTestOneInput(
47
     const uint8_t *data,
48
     size_t size )
49
9.60k
{
50
9.60k
  libbfio_handle_t *file_io_handle = NULL;
51
9.60k
  libvsgpt_partition_t *partition  = NULL;
52
9.60k
  libvsgpt_volume_t *volume        = NULL;
53
9.60k
  int number_of_partitions         = 0;
54
55
9.60k
  if( libbfio_memory_range_initialize(
56
9.60k
       &file_io_handle,
57
9.60k
       NULL ) != 1 )
58
0
  {
59
0
    return( 0 );
60
0
  }
61
9.60k
  if( libbfio_memory_range_set(
62
9.60k
       file_io_handle,
63
9.60k
       (uint8_t *) data,
64
9.60k
       size,
65
9.60k
       NULL ) != 1 )
66
0
  {
67
0
    goto on_error_libbfio;
68
0
  }
69
9.60k
  if( libvsgpt_volume_initialize(
70
9.60k
       &volume,
71
9.60k
       NULL ) != 1 )
72
0
  {
73
0
    goto on_error_libbfio;
74
0
  }
75
9.60k
  if( libvsgpt_volume_open_file_io_handle(
76
9.60k
       volume,
77
9.60k
       file_io_handle,
78
9.60k
       LIBVSGPT_OPEN_READ,
79
9.60k
       NULL ) != 1 )
80
4.46k
  {
81
4.46k
    goto on_error_libvsgpt_volume;
82
4.46k
  }
83
5.14k
  if( libvsgpt_volume_get_number_of_partitions(
84
5.14k
       volume,
85
5.14k
       &number_of_partitions,
86
5.14k
       NULL ) != 1 )
87
0
  {
88
0
    goto on_error_libvsgpt_volume;
89
0
  }
90
5.14k
  if( number_of_partitions > 0 )
91
3.06k
  {
92
3.06k
    if( libvsgpt_volume_get_partition_by_index(
93
3.06k
         volume,
94
3.06k
         0,
95
3.06k
         &partition,
96
3.06k
         NULL ) == 1 )
97
684
    {
98
684
      libvsgpt_partition_free(
99
684
       &partition,
100
684
       NULL );
101
684
    }
102
3.06k
  }
103
5.14k
  libvsgpt_volume_close(
104
5.14k
   volume,
105
5.14k
   NULL );
106
107
9.60k
on_error_libvsgpt_volume:
108
9.60k
  libvsgpt_volume_free(
109
9.60k
   &volume,
110
9.60k
   NULL );
111
112
9.60k
on_error_libbfio:
113
9.60k
  libbfio_handle_free(
114
9.60k
   &file_io_handle,
115
9.60k
   NULL );
116
117
9.60k
  return( 0 );
118
9.60k
}
119
120
} /* extern "C" */
121