Support fuzz testing (#4)

Quickstart (requires Clang 6 or later):

$ export LIB_FUZZING_ENGINE=/path/to/fuzzing/library.a
$ ./configure --enable-fuzz-testing
$ make
$ cd src/fuzz
$ make fuzz_mdb
$ ./fuzz_mdb

Also add a new `mdb_open_buffer function` to facilitate in-memory
fuzz-testing. This requires fmemopen, which may not be present on all
systems. The internal API has been reworked to use file streams instead
of file descriptors. This allows reading from memory and reading from
files using a consistent API.
This commit is contained in:
Evan Miller
2020-08-31 13:03:58 -04:00
committed by GitHub
parent 8b40423f65
commit be888e0dd7
12 changed files with 194 additions and 89 deletions

View File

@@ -28,12 +28,17 @@ int main(int argc, char **argv) {
if (argc < 3) {
fprintf(stderr, "Usage: %s <file> <table>\n", argv[0]);
exit(1);
return 1;
}
// open db and try to read table:
mdb = mdb_open(argv[1], MDB_NOFLAGS);
mdb_read_catalog(mdb, MDB_TABLE);
if (!mdb) {
return 1;
}
if (!mdb_read_catalog(mdb, MDB_TABLE)) {
return 1;
}
for (i = 0; i < mdb->num_catalog; i++) {
entry = g_ptr_array_index(mdb->catalog, i);
if (entry->object_type == MDB_TABLE && !g_ascii_strcasecmp(entry->object_name, argv[2])) {
@@ -46,8 +51,8 @@ int main(int argc, char **argv) {
// check was found:
if (!found) {
fprintf(stderr, "No table named %s found.\n", argv[2]);
exit(1);
fprintf(stderr, "No table named %s found (among %d tables in file).\n", argv[2], mdb->num_catalog);
return 1;
}
mdb_close(mdb);