about summary refs log tree commit diff
path: root/src/afl-cc.c
AgeCommit message (Collapse)Author
2020-11-01reenable afl-clang(++)hexcoder-
2020-11-24test-pre.sh: remove old uses of afl-clang, afl-cc.c: add missing env.var. ↵hexcoder-
AFL_LLVM_LAF_ALL
2020-11-18Solaris/Illumos build fix. (#609)David CARLIER
2020-11-18fixed alloc errors, code formatDominik Maier
2020-11-17fix: avoid preprocessor logic in macro arguments (not portable)hexcoder-
2020-11-16support AFL_LLVM_INSTRUMENT env for our own PCGUARDvan Hauser
2020-11-08fix wrong llvm version comparisonvan Hauser
2020-11-08fix for llvm 10.0.0van Hauser
2020-11-05require llvm 10.0.1+ for enhanced pcguard, correct 1MB checksvan Hauser
2020-10-31add our own inline trace-pc-guardvan Hauser
2020-09-22fix warningvan Hauser
2020-09-13fixed ngram size unsetDominik Maier
2020-09-10add libfuzzer custom mutator, minor enhancements and fixesvan Hauser
2020-09-08code-formatvan Hauser
2020-09-08new gcc_plugin integrationvan Hauser
2020-09-08rewrite gcc pluginAlexandre Oliva
When we started using AFL, it did not have an integrated GCC plugin. There was one proposed by Austin Seipp, but for various reasons we ended up using some of its infrastructure (runtime and wrapper), but writing the GCC plugin proper from scratch. With AFL++'s renewed interest in a GCC plugin, we rebased ours, with some features that are or were missing in the one that was integrated: * efficient, fully-functional inline and out-of-line instrumentation Inline instrumentation was work in progress in the original plugin. Controlled by AFL_GCC_OUT_OF_LINE. * reproducible instrumentation Obey -frandom-seed for pseudorandom number generation. * licensing clarity and strict compliance GPLv3+ for the plugin, that uses GCC internals; add a copy of the license, as required. * allow/deny list support Copied and adjusted from the LLVM plugin implementation. * neverZero support Not as compact as the asm-wrapper version, but likely more efficient. Both are quite thread-unsafe, with different caveats. Controlled with AFL_GCC_SKIP_NEVERZERO.
2020-09-06fix various warningsaflpp
2020-09-05first batch of changesvanhauser-thc