mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
a11078a78c
This adds support for `afl-fuzz -Q`, which can be used to instrument arbitrary black-box binary code for fuzz testing using American Fuzzy Lop through QEMU emulation. This requires a custom QEMU 2.2.0 build of the Linux userspace emulators (system emulators aren't required) with some custom patches. Furthermore we have to patch the patches a little to make the build more sane (there are some notes in the README about this). Overall, the addition of this feature by default doesn't significantly impact build times (since building QEMU for only one target builds only a fraction of the source code, and many features are disabled), so it's enabled by default. Signed-off-by: Austin Seipp <aseipp@pobox.com>
33 lines
964 B
Diff
33 lines
964 B
Diff
--- qemu-2.2.0/cpu-exec.c.orig 2014-12-09 14:45:40.000000000 +0000
|
|
+++ qemu-2.2.0/cpu-exec.c 2015-02-20 22:07:02.966000000 +0000
|
|
@@ -25,6 +25,8 @@
|
|
#include "sysemu/qtest.h"
|
|
#include "qemu/timer.h"
|
|
|
|
+#include "afl-qemu-cpu-inl.h"
|
|
+
|
|
/* -icount align implementation. */
|
|
|
|
typedef struct SyncClocks {
|
|
@@ -262,8 +264,11 @@
|
|
}
|
|
not_found:
|
|
/* if no translated code available, then translate it now */
|
|
+
|
|
tb = tb_gen_code(cpu, pc, cs_base, flags, 0);
|
|
|
|
+ AFL_QEMU_CPU_SNIPPET1;
|
|
+
|
|
found:
|
|
/* Move the last found TB to the head of the list */
|
|
if (likely(*ptb1)) {
|
|
@@ -455,6 +460,9 @@
|
|
next_tb = 0;
|
|
tcg_ctx.tb_ctx.tb_invalidated_flag = 0;
|
|
}
|
|
+
|
|
+ AFL_QEMU_CPU_SNIPPET2;
|
|
+
|
|
if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
|
|
qemu_log("Trace %p [" TARGET_FMT_lx "] %s\n",
|
|
tb->tc_ptr, tb->pc, lookup_symbol(tb->pc));
|