forked from libyal/libpff
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Applied updates and added item OSS-Fuzz target
- Loading branch information
1 parent
fbea54d
commit b736acd
Showing
18 changed files
with
196 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ AC_PREREQ( 2.59 ) | |
|
||
AC_INIT( | ||
[libpff], | ||
[20210424], | ||
[20210508], | ||
[[email protected]]) | ||
|
||
AC_CONFIG_SRCDIR( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/* | ||
* OSS-Fuzz target for libpff item type | ||
* | ||
* Copyright (C) 2008-2020, Joachim Metz <[email protected]> | ||
* | ||
* Refer to AUTHORS for acknowledgements. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <stddef.h> | ||
#include <stdint.h> | ||
|
||
/* Note that some of the OSS-Fuzz engines use C++ | ||
*/ | ||
extern "C" { | ||
|
||
#include "ossfuzz_libbfio.h" | ||
#include "ossfuzz_libpff.h" | ||
|
||
#if !defined( LIBPFF_HAVE_BFIO ) | ||
|
||
/* Opens a file using a Basic File IO (bfio) handle | ||
* Returns 1 if successful or -1 on error | ||
*/ | ||
LIBPFF_EXTERN \ | ||
int libpff_file_open_file_io_handle( | ||
libpff_file_t *file, | ||
libbfio_handle_t *file_io_handle, | ||
int access_flags, | ||
libpff_error_t **error ); | ||
|
||
#endif /* !defined( LIBPFF_HAVE_BFIO ) */ | ||
|
||
int LLVMFuzzerTestOneInput( | ||
const uint8_t *data, | ||
size_t size ) | ||
{ | ||
libbfio_handle_t *file_io_handle = NULL; | ||
libpff_file_t *file = NULL; | ||
libpff_item_t *root_folder = NULL; | ||
libpff_item_t *sub_item = NULL; | ||
int number_of_sub_items = 0; | ||
|
||
if( libbfio_memory_range_initialize( | ||
&file_io_handle, | ||
NULL ) != 1 ) | ||
{ | ||
return( 0 ); | ||
} | ||
if( libbfio_memory_range_set( | ||
file_io_handle, | ||
(uint8_t *) data, | ||
size, | ||
NULL ) != 1 ) | ||
{ | ||
goto on_error_libbfio; | ||
} | ||
if( libpff_file_initialize( | ||
&file, | ||
NULL ) != 1 ) | ||
{ | ||
goto on_error_libbfio; | ||
} | ||
if( libpff_file_open_file_io_handle( | ||
file, | ||
file_io_handle, | ||
LIBPFF_OPEN_READ, | ||
NULL ) != 1 ) | ||
{ | ||
goto on_error_libpff_file; | ||
} | ||
if( libpff_file_get_root_folder( | ||
file, | ||
&root_folder, | ||
NULL ) == 1 ) | ||
{ | ||
if( libpff_item_get_number_of_sub_items( | ||
root_folder, | ||
&number_of_sub_items, | ||
NULL ) != 1 ) | ||
{ | ||
goto on_error_libpff_root_folder; | ||
} | ||
if( number_of_sub_items > 0 ) | ||
{ | ||
if( libpff_item_get_sub_item( | ||
root_folder, | ||
0, | ||
&sub_item, | ||
NULL ) != 1 ) | ||
{ | ||
goto on_error_libpff_root_folder; | ||
} | ||
libpff_item_free( | ||
&sub_item, | ||
NULL ); | ||
} | ||
on_error_libpff_root_folder: | ||
libpff_item_free( | ||
&root_folder, | ||
NULL ); | ||
} | ||
libpff_file_close( | ||
file, | ||
NULL ); | ||
|
||
on_error_libpff_file: | ||
libpff_file_free( | ||
&file, | ||
NULL ); | ||
|
||
on_error_libbfio: | ||
libbfio_handle_free( | ||
&file_io_handle, | ||
NULL ); | ||
|
||
return( 0 ); | ||
} | ||
|
||
} /* extern "C" */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters