-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add minimal libFuzzer-compatible harness for FfsParser
- Loading branch information
1 parent
69edce7
commit 209fbb6
Showing
4 changed files
with
105 additions
and
9 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
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,65 @@ | ||
CMAKE_MINIMUM_REQUIRED(VERSION 3.1.0 FATAL_ERROR) | ||
|
||
PROJECT(ffsparser_fuzzer) | ||
|
||
SET(CMAKE_CXX_STANDARD 11) | ||
SET(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
SET(CMAKE_CXX_EXTENSIONS OFF) | ||
|
||
SET(PROJECT_SOURCES | ||
ffsparser_fuzzer.cpp | ||
../common/types.cpp | ||
../common/descriptor.cpp | ||
../common/guiddatabase.cpp | ||
../common/ffs.cpp | ||
../common/nvram.cpp | ||
../common/nvramparser.cpp | ||
../common/ffsparser.cpp | ||
../common/fitparser.cpp | ||
../common/peimage.cpp | ||
../common/treeitem.cpp | ||
../common/treemodel.cpp | ||
../common/utility.cpp | ||
../common/LZMA/LzmaDecompress.c | ||
../common/LZMA/SDK/C/Bra.c | ||
../common/LZMA/SDK/C/Bra86.c | ||
../common/LZMA/SDK/C/CpuArch.c | ||
../common/LZMA/SDK/C/LzmaDec.c | ||
../common/Tiano/EfiTianoDecompress.c | ||
../common/ustring.cpp | ||
../common/bstrlib/bstrlib.c | ||
../common/bstrlib/bstrwrap.cpp | ||
../common/generated/intel_acbp_v1.cpp | ||
../common/generated/intel_acbp_v2.cpp | ||
../common/generated/intel_keym_v1.cpp | ||
../common/generated/intel_keym_v2.cpp | ||
../common/generated/intel_acm.cpp | ||
../common/kaitai/kaitaistream.cpp | ||
../common/digest/sha1.c | ||
../common/digest/sha256.c | ||
../common/digest/sha512.c | ||
../common/digest/sm3.c | ||
../common/zlib/adler32.c | ||
../common/zlib/compress.c | ||
../common/zlib/crc32.c | ||
../common/zlib/deflate.c | ||
../common/zlib/gzclose.c | ||
../common/zlib/gzlib.c | ||
../common/zlib/gzread.c | ||
../common/zlib/gzwrite.c | ||
../common/zlib/inflate.c | ||
../common/zlib/infback.c | ||
../common/zlib/inftrees.c | ||
../common/zlib/inffast.c | ||
../common/zlib/trees.c | ||
../common/zlib/uncompr.c | ||
../common/zlib/zutil.c | ||
) | ||
|
||
ADD_DEFINITIONS(-DU_ENABLE_NVRAM_PARSING_SUPPORT -DU_ENABLE_FIT_PARSING_SUPPORT) | ||
|
||
ADD_EXECUTABLE(ffsparser_fuzzer ${PROJECT_SOURCES}) | ||
|
||
TARGET_COMPILE_OPTIONS(ffsparser_fuzzer PRIVATE -g -O1 -fsanitize=fuzzer) | ||
|
||
TARGET_LINK_LIBRARIES(ffsparser_fuzzer PRIVATE -fsanitize=fuzzer) |
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,31 @@ | ||
/* ffsparser_fuzzer.cpp | ||
Copyright (c) 2023, Nikolaj Schlej. All rights reserved. | ||
This program and the accompanying materials | ||
are licensed and made available under the terms and conditions of the BSD License | ||
which accompanies this distribution. The full text of the license may be found at | ||
http://opensource.org/licenses/bsd-license.php | ||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. | ||
*/ | ||
|
||
#include "../common/ffsparser.h" | ||
|
||
#define FUZZING_MIN_INPUT_SIZE 16 | ||
#define FUZZING_MAX_INPUT_SIZE (128 * 1024 * 1024) | ||
|
||
extern "C" int LLVMFuzzerTestOneInput(const char *Data, long long Size) { | ||
// Do not overblow the inout file size, won't change much in practical sense | ||
if (Size > FUZZING_MAX_INPUT_SIZE || Size < FUZZING_MIN_INPUT_SIZE) return 0; | ||
|
||
// Create the FFS parser | ||
TreeModel* model = new TreeModel(); | ||
FfsParser* ffsParser = new FfsParser(model); | ||
|
||
// Parse the image | ||
(void)ffsParser->parse(UByteArray(Data, (uint32_t)Size)); | ||
|
||
return 0; | ||
} |