From: Andrew Cooper Date: Wed, 1 Mar 2017 19:02:35 +0000 (+0000) Subject: tools/insn-fuzz: Support AFL's afl-clang-fast mode X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2441 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=69f4633817c38655cd27aa62c3cbfc02f6627234;p=xen.git tools/insn-fuzz: Support AFL's afl-clang-fast mode AFL has an alternative llvm-base instrumentation mode, which has much lower overhead than the traditional afl-gcc. One extra ability is to chose exactly where the master process gets initialised to, before being forked for testing. This point is chosen after the call to LLVMFuzzerInitialize(), so the stack isn't being remapped executable for every test. Another extra ability is to feed multiple inputs into a single test process, to reduce the number of fork() calls required overall. Two caveats are that if stdin is used for data, it must be unbuffered, and if input is passed via a command line parameter, the underlying file must be opened and closed on each iteration. Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu --- diff --git a/tools/fuzz/README.afl b/tools/fuzz/README.afl index c5f749a6f8..4758de2490 100644 --- a/tools/fuzz/README.afl +++ b/tools/fuzz/README.afl @@ -18,7 +18,15 @@ Use the x86 instruction emulator fuzzer as an example. 2. run the following commands to build: $ cd tools/fuzz/x86_instruction_emulator $ make distclean - $ make CC=$AFLPATH/afl-gcc afl # produces afl-harness + + If you have a new enough version of Clang/LLVM and have configured AFL's + llvm_mode, make use of afl-clang-fast: + + $ make CC=$AFLPATH/afl-clang-fast afl # produces afl-harness + + If not, use the default afl-gcc: + + $ make CC=$AFLPATH/afl-gcc afl # produces afl-harness 3. provide initial test case (fuzzer dependent, see afl-*.c): $ mkdir testcase_dir diff --git a/tools/fuzz/x86_instruction_emulator/afl-harness.c b/tools/fuzz/x86_instruction_emulator/afl-harness.c index 63aff5904b..154869336a 100644 --- a/tools/fuzz/x86_instruction_emulator/afl-harness.c +++ b/tools/fuzz/x86_instruction_emulator/afl-harness.c @@ -17,6 +17,7 @@ int main(int argc, char **argv) size_t size; FILE *fp = NULL; + setbuf(stdin, NULL); setbuf(stdout, NULL); while ( 1 ) @@ -61,37 +62,44 @@ int main(int argc, char **argv) if ( LLVMFuzzerInitialize(&argc, &argv) ) exit(-1); - if ( fp != stdin ) /* If not using stdin, open the provided file. */ +#ifdef __AFL_HAVE_MANUAL_CONTROL + __AFL_INIT(); + + while ( __AFL_LOOP(1000) ) +#endif { - fp = fopen(argv[optind], "rb"); - if ( fp == NULL ) + if ( fp != stdin ) /* If not using stdin, open the provided file. */ { - perror("fopen"); - exit(-1); + fp = fopen(argv[optind], "rb"); + if ( fp == NULL ) + { + perror("fopen"); + exit(-1); + } } - } - size = fread(input, 1, INPUT_SIZE, fp); + size = fread(input, 1, INPUT_SIZE, fp); - if ( ferror(fp) ) - { - perror("fread"); - exit(-1); - } + if ( ferror(fp) ) + { + perror("fread"); + exit(-1); + } - if ( !feof(fp) ) - { - printf("Input too large\n"); - exit(-1); - } + if ( !feof(fp) ) + { + printf("Input too large\n"); + exit(-1); + } - if ( fp != stdin ) - { - fclose(fp); - fp = NULL; - } + if ( fp != stdin ) + { + fclose(fp); + fp = NULL; + } - LLVMFuzzerTestOneInput(input, size); + LLVMFuzzerTestOneInput(input, size); + } return 0; }