Add basic test adapter for AFL

This commit is contained in:
sudden6 2019-08-02 00:18:58 +02:00
parent ef7058422e
commit 6732e5ef2f
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
5 changed files with 79 additions and 0 deletions

View File

@ -510,4 +510,7 @@ if (BUILD_MISC_TESTS)
add_executable(save-generator
other/fun/save-generator.c)
target_link_modules(save-generator toxcore misc_tools)
add_executable(afl_toxsave
testing/afl_toxsave.c)
target_link_modules(afl_toxsave toxcore)
endif()

View File

@ -35,3 +35,11 @@ cc_binary(
"//c-toxcore/toxcore",
],
)
cc_binary(
name = "afl_toxsave",
srcs = ["afl_toxsave.c"],
deps = [
"//c-toxcore/toxcore",
],
)

Binary file not shown.

54
testing/afl_toxsave.c Normal file
View File

@ -0,0 +1,54 @@
#include <malloc.h>
#include <stdio.h>
#include "../toxcore/tox.h"
int main(int argc, char **argv)
{
if (argc != 2) {
return -1;
}
// determine file size
FILE *fileptr = fopen(argv[1], "rb");
fseek(fileptr, 0, SEEK_END);
long filelen = ftell(fileptr);
rewind(fileptr);
// read file into buffer
uint8_t *buffer = (uint8_t *)malloc(filelen * sizeof(uint8_t));
size_t bytes_read = fread(buffer, filelen, 1, fileptr);
if (bytes_read != filelen) {
free(buffer);
return -1;
}
fclose(fileptr);
Tox_Err_Options_New error_options;
struct Tox_Options *tox_options = tox_options_new(&error_options);
if (error_options != TOX_ERR_OPTIONS_NEW_OK) {
free(buffer);
return -1;
}
// pass test data to Tox
tox_options_set_savedata_data(tox_options, buffer, filelen);
tox_options_set_savedata_type(tox_options, TOX_SAVEDATA_TYPE_TOX_SAVE);
Tox_Err_New error_new;
Tox *tox = tox_new(tox_options, &error_new);
if (!tox || error_new != TOX_ERR_NEW_OK) {
free(buffer);
return -1;
}
tox_kill(tox);
free(buffer);
return 0;
}

14
testing/run_afl.sh Executable file
View File

@ -0,0 +1,14 @@
#! /bin/sh
# move to repo root
cd ../
rm -R _afl_build
mkdir _afl_build
cd _afl_build
# build c-toxcore using afl instrumentation
cmake -DCMAKE_C_COMPILER=afl-clang -DBUILD_MISC_TESTS=ON ..
make
# start fuzzing
afl-fuzz -i ../testing/afl_testdata/tox_saves/ -o afl_out/ ./afl_toxsave @@