2018-12-02 16:26:31 +00:00
|
|
|
{ stdenv, fetchurl, afl, python2, zlib, pkgconfig, glib, ncurses, perl
|
2018-07-21 00:44:44 +00:00
|
|
|
, attr, libcap, vde2, texinfo, libuuid, flex, bison, lzo, snappy
|
2015-03-23 02:57:55 +00:00
|
|
|
, libaio, libcap_ng, gnutls, pixman, autoconf
|
|
|
|
, writeText
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2018-12-02 16:26:31 +00:00
|
|
|
qemuName = "qemu-2.10.0";
|
|
|
|
aflName = afl.name;
|
2018-08-20 19:11:29 +00:00
|
|
|
cpuTarget = if stdenv.hostPlatform.system == "x86_64-linux" then "x86_64-linux-user"
|
|
|
|
else if stdenv.hostPlatform.system == "i686-linux" then "i386-linux-user"
|
|
|
|
else throw "afl: no support for ${stdenv.hostPlatform.system}!";
|
2015-03-23 02:57:55 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-02 16:26:31 +00:00
|
|
|
name = "afl-${qemuName}";
|
2015-03-23 02:57:55 +00:00
|
|
|
|
2018-12-02 16:26:31 +00:00
|
|
|
srcs = [
|
|
|
|
(fetchurl {
|
|
|
|
url = "http://wiki.qemu.org/download/${qemuName}.tar.bz2";
|
|
|
|
sha256 = "0j3dfxzrzdp1w21k21fjvmakzc6lcha1rsclaicwqvbf63hkk7vy";
|
|
|
|
})
|
|
|
|
afl.src
|
|
|
|
];
|
|
|
|
|
|
|
|
sourceRoot = qemuName;
|
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
cp ${aflName}/types.h $sourceRoot/afl-types.h
|
|
|
|
substitute ${aflName}/config.h $sourceRoot/afl-config.h \
|
|
|
|
--replace "types.h" "afl-types.h"
|
|
|
|
substitute ${aflName}/qemu_mode/patches/afl-qemu-cpu-inl.h $sourceRoot/afl-qemu-cpu-inl.h \
|
|
|
|
--replace "../../config.h" "afl-config.h"
|
|
|
|
substituteInPlace ${aflName}/qemu_mode/patches/cpu-exec.diff \
|
|
|
|
--replace "../patches/afl-qemu-cpu-inl.h" "afl-qemu-cpu-inl.h"
|
|
|
|
'';
|
2015-03-23 02:57:55 +00:00
|
|
|
|
|
|
|
buildInputs =
|
2016-11-19 09:16:16 +00:00
|
|
|
[ python2 zlib pkgconfig glib pixman ncurses perl attr libcap
|
2015-03-23 02:57:55 +00:00
|
|
|
vde2 texinfo libuuid flex bison lzo snappy autoconf
|
|
|
|
libcap_ng gnutls
|
|
|
|
]
|
2018-08-20 19:11:29 +00:00
|
|
|
++ optionals (hasSuffix "linux" stdenv.hostPlatform.system) [ libaio ];
|
2015-03-23 02:57:55 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-12-02 16:26:31 +00:00
|
|
|
patches = [
|
|
|
|
# patches extracted from afl source
|
|
|
|
"../${aflName}/qemu_mode/patches/cpu-exec.diff"
|
|
|
|
"../${aflName}/qemu_mode/patches/elfload.diff"
|
|
|
|
"../${aflName}/qemu_mode/patches/syscall.diff"
|
|
|
|
# nix-specific patches to make installation more well-behaved
|
|
|
|
./qemu-patches/no-etc-install.patch
|
|
|
|
./qemu-patches/qemu-2.10.0-glibc-2.27.patch
|
|
|
|
];
|
2015-03-23 02:57:55 +00:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--disable-system"
|
|
|
|
"--enable-linux-user"
|
|
|
|
"--disable-gtk"
|
|
|
|
"--disable-sdl"
|
|
|
|
"--disable-vnc"
|
|
|
|
"--target-list=${cpuTarget}"
|
2018-12-02 16:26:31 +00:00
|
|
|
"--enable-pie"
|
|
|
|
"--enable-kvm"
|
2015-03-23 02:57:55 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.qemu.org/;
|
2015-04-11 11:43:25 +00:00
|
|
|
description = "Fork of QEMU with AFL instrumentation support";
|
2015-03-23 02:57:55 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|