platform_system_core/libsparse/sparse_fuzzer.cpp
hamzeh d17dc6af52 Add fuzzer for libsparse
Bug: 141129284
Test: SANITIZE_TARGET="hwaddress fuzzer' make libsparse_fuzzer
Change-Id: I54e19d399f7ea29a45734f1ddc520ceec56add09
2019-09-25 13:27:52 -07:00

16 lines
399 B
C++

#include "include/sparse/sparse.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
if (size < 2 * sizeof(wchar_t)) return 0;
int64_t blocksize = 4096;
struct sparse_file* file = sparse_file_new(size, blocksize);
if (!file) {
return 0;
}
unsigned int block = 1;
sparse_file_add_data(file, &data, size, block);
sparse_file_destroy(file);
return 0;
}