-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #357 from pkillarjun/fuzzing
Add fuzzing support in libmaxminddb
- Loading branch information
Showing
5 changed files
with
85 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ Makefile | |
Makefile.in | ||
Testing/ | ||
install_manifest.txt | ||
build/ |
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,41 @@ | ||
# Fuzzing libmaxminddb | ||
|
||
These tests are only meant to be run on GNU/Linux. | ||
|
||
## Build maxminddb fuzzer using libFuzzer. | ||
|
||
### Export flags for fuzzing. | ||
|
||
Note that in `CFLAGS` and `CXXFLAGS`, any type of sanitizers can be added. | ||
|
||
- [AddressSanitizer](https://clang.llvm.org/docs/AddressSanitizer.html), | ||
[ThreadSanitizer](https://clang.llvm.org/docs/ThreadSanitizer.html), | ||
[MemorySanitizer](https://clang.llvm.org/docs/MemorySanitizer.html), | ||
[UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html), | ||
[LeakSanitizer](https://clang.llvm.org/docs/LeakSanitizer.html). | ||
|
||
```shell | ||
$ export CC=clang | ||
$ export CXX=clang++ | ||
$ export CFLAGS="-g -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address,undefined -fsanitize=fuzzer-no-link" | ||
$ export CXXFLAGS="-g -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address,undefined -fsanitize=fuzzer-no-link" | ||
$ export LIB_FUZZING_ENGINE="-fsanitize=fuzzer" | ||
``` | ||
|
||
### Build maxminddb for fuzzing. | ||
|
||
```shell | ||
$ mkdir -p build && cd build | ||
$ cmake -DBUILD_FUZZING=ON ../. | ||
$ cmake --build . -j$(nproc) | ||
``` | ||
|
||
### Running fuzzer. | ||
|
||
```shell | ||
$ mkdir -p fuzz_mmdb_seed fuzz_mmdb_seed_corpus | ||
$ find ../t/maxmind-db/test-data/ -type f -size -4k -exec cp {} ./fuzz_mmdb_seed_corpus/ \; | ||
$ ./t/fuzz_mmdb fuzz_mmdb_seed/ fuzz_mmdb_seed_corpus/ | ||
``` | ||
|
||
Here is more information about [LibFuzzer](https://llvm.org/docs/LibFuzzer.html). |
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,36 @@ | ||
#include "maxminddb-compat-util.h" | ||
#include "maxminddb.h" | ||
#include <unistd.h> | ||
|
||
#define kMinInputLength 2 | ||
#define kMaxInputLength 4048 | ||
|
||
extern int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); | ||
|
||
int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
int status; | ||
FILE *fp; | ||
MMDB_s mmdb; | ||
char filename[256]; | ||
|
||
if (size < kMinInputLength || size > kMaxInputLength) | ||
return 0; | ||
|
||
sprintf(filename, "/tmp/libfuzzer.%d", getpid()); | ||
|
||
fp = fopen(filename, "wb"); | ||
if (!fp) | ||
return 0; | ||
|
||
fwrite(data, size, sizeof(uint8_t), fp); | ||
fclose(fp); | ||
|
||
status = MMDB_open(filename, MMDB_MODE_MMAP, &mmdb); | ||
if (status == MMDB_SUCCESS) | ||
MMDB_close(&mmdb); | ||
|
||
unlink(filename); | ||
return 0; | ||
} |