mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-06 23:31:33 +00:00
* Output afl-clang-fast stuffs only if necessary (#1912) * afl-cc header * afl-cc common declarations - Add afl-cc-state.c - Strip includes, find_object, debug/be_quiet/have_*/callname setting from afl-cc.c - Use debugf_args in main - Modify execvp stuffs to fit new aflcc struct * afl-cc show usage * afl-cc mode selecting 1. compiler_mode by callname in argv[0] 2. compiler_mode by env "AFL_CC_COMPILER" 3. compiler_mode/instrument_mode by command line options "--afl-..." 4. instrument_mode/compiler_mode by various env vars including "AFL_LLVM_INSTRUMENT" 5. final checking steps 6. print "... - mode: %s-%s\n" 7. determine real argv[0] according to compiler_mode * afl-cc macro defs * afl-cc linking behaviors * afl-cc fsanitize behaviors * afl-cc misc * afl-cc body update * afl-cc all-in-one formated with custom-format.py * nits --------- Co-authored-by: vanhauser-thc <vh@thc.org> * changelog * update grammar mutator * lto llvm 12+ * docs(custom_mutators): fix missing ':' (#1953) * Fix broken LTO mode and response file support (#1948) * Strip `-Wl,-no-undefined` during compilation (#1952) Make the compiler wrapper stripping `-Wl,-no-undefined` in addition to `-Wl,--no-undefined`. Both versions of the flag are accepted by clang and, therefore, used by building systems in the wild (e.g., samba will not build without this fix). * Remove dead code in write_to_testcase (#1955) The custom_mutators_count check in if case is duplicate with if condition. The else case is custom_mutators_count == 0, neither custom_mutator_list iteration nor sent check needed. Signed-off-by: Xeonacid <h.dwwwwww@gmail.com> * update qemuafl * WIP: Add ability to generate drcov trace using QEMU backend (#1956) * Document new drcov QEMU plugin * Add link to lightkeeper for QEMU drcov file loading --------- Co-authored-by: Jean-Romain Garnier <jean-romain.garnier@airbus.com> * code format * changelog * sleep on uid != 0 afl-system-config * fix segv about skip_next, warn on unsupported cases of linking options (#1958) * todos * ensure afl-cc only allows available compiler modes * update grammar mutator * disable aslr on apple * fix for arm64 * help selective instrumentation * typos * macos * add compiler test script * apple fixes * bump nyx submodules (#1963) * fix docs * update changelog * update grammar mutator * improve compiler test script * gcc asan workaround (#1966) * fix github merge fuckup * fix * Fix afl-cc (#1968) - Check if too many cmdline params here, each time before insert a new param. - Check if it is "-fsanitize=..." before we do sth. - Remove improper param_st transfer. * Avoid adding llvmnative instrumentation when linking rust sanitizer runtime (#1969) * Dynamic instrumentation filtering for LLVM native (#1971) * Add two dynamic instrumentation filter methods to runtime * Always use pc-table with native pcguard * Add make_symbol_list.py and README * changelog * todos * new forkserver check * fix * nyx test for CI * improve nyx docs * Fixes to afl-cc and documentation (#1974) * Always compile with -ldl when building for CODE_COVERAGE When building with CODE_COVERAGE, the afl runtime contains code that calls `dladdr` which requires -ldl. Under most circumstances, clang already adds this (e.g. when building with pc-table), but there are some circumstances where it isn't added automatically. * Add visibility declaration to __afl_connected When building with hidden visibility, the use of __AFL_LOOP inside such code can cause linker errors due to __afl_connected being declared "hidden". * Update docs to clarify that CODE_COVERAGE=1 is required for dynamic_covfilter * nits * nyx build script updates * test error output * debug ci * debug ci * Improve afl-cc (#1975) * update response file support - full support of rsp file - fix some segv issues * Improve afl-cc - remove dead code about allow/denylist options of sancov - missing `if (!aflcc->have_msan)` - add docs for each function - typo * enable nyx * debug ci * debug ci * debug ci * debug ci * debug ci * debug ci * debug ci * debug ci * fix ci * clean test script * NO_NYX * NO_NYX * fix ci * debug ci * fix ci * finalize ci fix --------- Signed-off-by: Xeonacid <h.dwwwwww@gmail.com> Co-authored-by: Sonic <50692172+SonicStark@users.noreply.github.com> Co-authored-by: Xeonacid <h.dwwwwww@gmail.com> Co-authored-by: Nils Bars <nils.bars@rub.de> Co-authored-by: Jean-Romain Garnier <7504819+JRomainG@users.noreply.github.com> Co-authored-by: Jean-Romain Garnier <jean-romain.garnier@airbus.com> Co-authored-by: Sergej Schumilo <sergej@schumilo.de> Co-authored-by: Christian Holler (:decoder) <choller@mozilla.com>
98 lines
4.0 KiB
Docker
98 lines
4.0 KiB
Docker
#
|
|
# This Dockerfile for AFLplusplus uses Ubuntu 22.04 jammy and
|
|
# installs LLVM 14 for afl-clang-lto support.
|
|
#
|
|
# GCC 11 is used instead of 12 because genhtml for afl-cov doesn't like it.
|
|
#
|
|
|
|
FROM ubuntu:22.04 AS aflplusplus
|
|
LABEL "maintainer"="AFL++ team <afl@aflplus.plus>"
|
|
LABEL "about"="AFLplusplus container image"
|
|
|
|
### Comment out to enable these features
|
|
# Only available on specific ARM64 boards
|
|
ENV NO_CORESIGHT=1
|
|
# Possible but unlikely in a docker container
|
|
ENV NO_NYX=1
|
|
|
|
### Only change these if you know what you are doing:
|
|
# Current recommended LLVM version is 16
|
|
ENV LLVM_VERSION=16
|
|
# GCC 12 is producing compile errors for some targets so we stay at GCC 11
|
|
ENV GCC_VERSION=11
|
|
|
|
### No changes beyond the point unless you know what you are doing :)
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
ENV NO_ARCH_OPT=1
|
|
ENV IS_DOCKER=1
|
|
|
|
RUN apt-get update && apt-get full-upgrade -y && \
|
|
apt-get install -y --no-install-recommends wget ca-certificates apt-utils && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN echo "deb [signed-by=/etc/apt/keyrings/llvm-snapshot.gpg.key] http://apt.llvm.org/jammy/ llvm-toolchain-jammy-${LLVM_VERSION} main" > /etc/apt/sources.list.d/llvm.list && \
|
|
wget -qO /etc/apt/keyrings/llvm-snapshot.gpg.key https://apt.llvm.org/llvm-snapshot.gpg.key
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install --no-install-recommends \
|
|
make cmake automake meson ninja-build bison flex \
|
|
git xz-utils bzip2 wget jupp nano bash-completion less vim joe ssh psmisc \
|
|
python3 python3-dev python3-pip python-is-python3 \
|
|
libtool libtool-bin libglib2.0-dev \
|
|
apt-transport-https gnupg dialog \
|
|
gnuplot-nox libpixman-1-dev bc \
|
|
gcc-${GCC_VERSION} g++-${GCC_VERSION} gcc-${GCC_VERSION}-plugin-dev gdb lcov \
|
|
clang-${LLVM_VERSION} clang-tools-${LLVM_VERSION} libc++1-${LLVM_VERSION} \
|
|
libc++-${LLVM_VERSION}-dev libc++abi1-${LLVM_VERSION} libc++abi-${LLVM_VERSION}-dev \
|
|
libclang1-${LLVM_VERSION} libclang-${LLVM_VERSION}-dev \
|
|
libclang-common-${LLVM_VERSION}-dev libclang-rt-${LLVM_VERSION}-dev libclang-cpp${LLVM_VERSION} \
|
|
libclang-cpp${LLVM_VERSION}-dev liblld-${LLVM_VERSION} \
|
|
liblld-${LLVM_VERSION}-dev liblldb-${LLVM_VERSION} liblldb-${LLVM_VERSION}-dev \
|
|
libllvm${LLVM_VERSION} libomp-${LLVM_VERSION}-dev libomp5-${LLVM_VERSION} \
|
|
lld-${LLVM_VERSION} lldb-${LLVM_VERSION} llvm-${LLVM_VERSION} \
|
|
llvm-${LLVM_VERSION}-dev llvm-${LLVM_VERSION}-runtime llvm-${LLVM_VERSION}-tools \
|
|
$([ "$(dpkg --print-architecture)" = "amd64" ] && echo gcc-${GCC_VERSION}-multilib gcc-multilib) \
|
|
$([ "$(dpkg --print-architecture)" = "arm64" ] && echo libcapstone-dev) && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
# gcc-multilib is only used for -m32 support on x86
|
|
# libcapstone-dev is used for coresight_mode on arm64
|
|
|
|
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_VERSION} 0 && \
|
|
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} 0 && \
|
|
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${LLVM_VERSION} 0 && \
|
|
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${LLVM_VERSION} 0
|
|
|
|
RUN wget -qO- https://sh.rustup.rs | CARGO_HOME=/etc/cargo sh -s -- -y -q --no-modify-path
|
|
ENV PATH=$PATH:/etc/cargo/bin
|
|
|
|
RUN apt clean -y
|
|
|
|
ENV LLVM_CONFIG=llvm-config-${LLVM_VERSION}
|
|
ENV AFL_SKIP_CPUFREQ=1
|
|
ENV AFL_TRY_AFFINITY=1
|
|
ENV AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1
|
|
|
|
RUN git clone --depth=1 https://github.com/vanhauser-thc/afl-cov && \
|
|
(cd afl-cov && make install) && rm -rf afl-cov
|
|
|
|
WORKDIR /AFLplusplus
|
|
COPY . .
|
|
|
|
ARG CC=gcc-$GCC_VERSION
|
|
ARG CXX=g++-$GCC_VERSION
|
|
|
|
# Used in CI to prevent a 'make clean' which would remove the binaries to be tested
|
|
ARG TEST_BUILD
|
|
|
|
RUN sed -i.bak 's/^ -/ /g' GNUmakefile && \
|
|
make clean && make distrib && \
|
|
([ "${TEST_BUILD}" ] || (make install)) && \
|
|
mv GNUmakefile.bak GNUmakefile
|
|
|
|
RUN echo "set encoding=utf-8" > /root/.vimrc && \
|
|
echo ". /etc/bash_completion" >> ~/.bashrc && \
|
|
echo 'alias joe="joe --wordwrap --joe_state -nobackup"' >> ~/.bashrc && \
|
|
echo "export PS1='"'[AFL++ \h] \w \$ '"'" >> ~/.bashrc
|