/src/libcreg/ossfuzz/value_fuzzer.cc
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * OSS-Fuzz target for libcreg value type |
3 | | * |
4 | | * Copyright (C) 2013-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_libcreg.h" |
31 | | |
32 | | #if !defined( LIBCREG_HAVE_BFIO ) |
33 | | |
34 | | /* Opens a file using a Basic File IO (bfio) handle |
35 | | * Returns 1 if successful or -1 on error |
36 | | */ |
37 | | LIBCREG_EXTERN \ |
38 | | int libcreg_file_open_file_io_handle( |
39 | | libcreg_file_t *file, |
40 | | libbfio_handle_t *file_io_handle, |
41 | | int access_flags, |
42 | | libcreg_error_t **error ); |
43 | | |
44 | | #endif /* !defined( LIBCREG_HAVE_BFIO ) */ |
45 | | |
46 | | int LLVMFuzzerTestOneInput( |
47 | | const uint8_t *data, |
48 | | size_t size ) |
49 | 3.26k | { |
50 | 3.26k | libbfio_handle_t *file_io_handle = NULL; |
51 | 3.26k | libcreg_file_t *file = NULL; |
52 | 3.26k | libcreg_key_t *root_key = NULL; |
53 | 3.26k | libcreg_key_t *sub_key = NULL; |
54 | 3.26k | libcreg_value_t *value = NULL; |
55 | 3.26k | uint32_t value_type = 0; |
56 | 3.26k | int number_of_sub_keys = 0; |
57 | 3.26k | int number_of_values = 0; |
58 | | |
59 | 3.26k | if( libbfio_memory_range_initialize( |
60 | 3.26k | &file_io_handle, |
61 | 3.26k | NULL ) != 1 ) |
62 | 0 | { |
63 | 0 | return( 0 ); |
64 | 0 | } |
65 | 3.26k | if( libbfio_memory_range_set( |
66 | 3.26k | file_io_handle, |
67 | 3.26k | (uint8_t *) data, |
68 | 3.26k | size, |
69 | 3.26k | NULL ) != 1 ) |
70 | 0 | { |
71 | 0 | goto on_error_libbfio; |
72 | 0 | } |
73 | 3.26k | if( libcreg_file_initialize( |
74 | 3.26k | &file, |
75 | 3.26k | NULL ) != 1 ) |
76 | 0 | { |
77 | 0 | goto on_error_libbfio; |
78 | 0 | } |
79 | 3.26k | if( libcreg_file_open_file_io_handle( |
80 | 3.26k | file, |
81 | 3.26k | file_io_handle, |
82 | 3.26k | LIBCREG_OPEN_READ, |
83 | 3.26k | NULL ) != 1 ) |
84 | 683 | { |
85 | 683 | goto on_error_libcreg_file; |
86 | 683 | } |
87 | 2.57k | if( libcreg_file_get_root_key( |
88 | 2.57k | file, |
89 | 2.57k | &root_key, |
90 | 2.57k | NULL ) == 1 ) |
91 | 776 | { |
92 | 776 | if( libcreg_key_get_number_of_sub_keys( |
93 | 776 | root_key, |
94 | 776 | &number_of_sub_keys, |
95 | 776 | NULL ) != 1 ) |
96 | 0 | { |
97 | 0 | goto on_error_libcreg_root_key; |
98 | 0 | } |
99 | 776 | if( number_of_sub_keys > 0 ) |
100 | 763 | { |
101 | 763 | if( libcreg_key_get_sub_key_by_index( |
102 | 763 | root_key, |
103 | 763 | 0, |
104 | 763 | &sub_key, |
105 | 763 | NULL ) != 1 ) |
106 | 191 | { |
107 | 191 | goto on_error_libcreg_root_key; |
108 | 191 | } |
109 | 572 | if( libcreg_key_get_number_of_values( |
110 | 572 | sub_key, |
111 | 572 | &number_of_values, |
112 | 572 | NULL ) != 1 ) |
113 | 0 | { |
114 | 0 | goto on_error_libcreg_sub_key; |
115 | 0 | } |
116 | 572 | if( number_of_sub_keys > 0 ) |
117 | 572 | { |
118 | 572 | if( libcreg_key_get_value_by_index( |
119 | 572 | root_key, |
120 | 572 | 0, |
121 | 572 | &value, |
122 | 572 | NULL ) != 1 ) |
123 | 319 | { |
124 | 319 | goto on_error_libcreg_sub_key; |
125 | 319 | } |
126 | 253 | libcreg_value_get_value_type( |
127 | 253 | value, |
128 | 253 | &value_type, |
129 | 253 | NULL ); |
130 | | |
131 | 253 | libcreg_value_free( |
132 | 253 | &value, |
133 | 253 | NULL ); |
134 | 253 | } |
135 | 572 | on_error_libcreg_sub_key: |
136 | 572 | libcreg_key_free( |
137 | 572 | &sub_key, |
138 | 572 | NULL ); |
139 | 572 | } |
140 | 776 | on_error_libcreg_root_key: |
141 | 776 | libcreg_key_free( |
142 | 776 | &root_key, |
143 | 776 | NULL ); |
144 | 776 | } |
145 | 2.57k | libcreg_file_close( |
146 | 2.57k | file, |
147 | 2.57k | NULL ); |
148 | | |
149 | 3.26k | on_error_libcreg_file: |
150 | 3.26k | libcreg_file_free( |
151 | 3.26k | &file, |
152 | 3.26k | NULL ); |
153 | | |
154 | 3.26k | on_error_libbfio: |
155 | 3.26k | libbfio_handle_free( |
156 | 3.26k | &file_io_handle, |
157 | 3.26k | NULL ); |
158 | | |
159 | 3.26k | return( 0 ); |
160 | 3.26k | } |
161 | | |
162 | | } /* extern "C" */ |
163 | | |