mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-05 23:01: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 * Enhancement on Deterministic stage (#1972) * fuzzer: init commit based on aflpp 60dc37a8cf09f8e9048e4b6a2204d6c90b27655a * fuzzers: adding the skip variables and initialize * log: profile the det/havoc finding * log: add profile log output * fuzzers: sperate log/skipdet module * fuzzers: add quick eff_map calc * fuzzers: add skip_eff_map in fuzz_one * fuzzers: mark whole input space in eff_map * fuzzers: add undet bit threshold to skip some seeds * fuzzers: fix one byte overflow * fuzzers: fix overflow * fix code format * add havoc only again * code format * remove log to INTROSPECTION, rename skipdet module * rename skipdet module * remove log to stats * clean redundant code * code format * remove redundant code format check * remove redundant doc * remove redundant objects * clean files * change -d to default skipdet * disable deterministic when using CUSTOM_MUTATOR * revert fix * final touches for skipdet * remove unused var * remove redundant eff struct (#1977) * update QEMU-Nyx submodule (#1978) * update QEMU-Nyx submodule (#1980) * Fix type in AFL_NOOPT env variable in afl-cc help message (#1982) * nits * 2024 v4.10c release * fixes --------- 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> Co-authored-by: Han Zheng <35988108+kdsjZh@users.noreply.github.com> Co-authored-by: Khaled Yakdan <yakdan@code-intelligence.com>
427 lines
15 KiB
C
427 lines
15 KiB
C
/*
|
|
american fuzzy lop++ - debug / error handling macros
|
|
----------------------------------------------------
|
|
|
|
Originally written by Michal Zalewski
|
|
|
|
Now maintained by Marc Heuse <mh@mh-sec.de>,
|
|
Heiko Eißfeldt <heiko.eissfeldt@hexco.de>,
|
|
Andrea Fioraldi <andreafioraldi@gmail.com>,
|
|
Dominik Maier <mail@dmnk.co>
|
|
|
|
Copyright 2016, 2017 Google Inc. All rights reserved.
|
|
Copyright 2019-2024 AFLplusplus Project. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at:
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*/
|
|
|
|
#ifndef _HAVE_DEBUG_H
|
|
#define _HAVE_DEBUG_H
|
|
|
|
#include <errno.h>
|
|
|
|
#include "types.h"
|
|
#include "config.h"
|
|
|
|
/*******************
|
|
* Terminal colors *
|
|
*******************/
|
|
|
|
#ifndef MESSAGES_TO_STDOUT
|
|
#define MESSAGES_TO_STDOUT
|
|
#endif
|
|
|
|
#ifdef USE_COLOR
|
|
|
|
#define cBLK "\x1b[0;30m"
|
|
#define cRED "\x1b[0;31m"
|
|
#define cGRN "\x1b[0;32m"
|
|
#define cBRN "\x1b[0;33m"
|
|
#define cBLU "\x1b[0;34m"
|
|
#define cMGN "\x1b[0;35m"
|
|
#define cCYA "\x1b[0;36m"
|
|
#define cLGR "\x1b[0;37m"
|
|
#define cGRA "\x1b[1;90m"
|
|
#define cLRD "\x1b[1;91m"
|
|
#define cLGN "\x1b[1;92m"
|
|
#define cYEL "\x1b[1;93m"
|
|
#define cLBL "\x1b[1;94m"
|
|
#define cPIN "\x1b[1;95m"
|
|
#define cLCY "\x1b[1;96m"
|
|
#define cBRI "\x1b[1;97m"
|
|
#define cRST "\x1b[0m"
|
|
|
|
#define bgBLK "\x1b[40m"
|
|
#define bgRED "\x1b[41m"
|
|
#define bgGRN "\x1b[42m"
|
|
#define bgBRN "\x1b[43m"
|
|
#define bgBLU "\x1b[44m"
|
|
#define bgMGN "\x1b[45m"
|
|
#define bgCYA "\x1b[46m"
|
|
#define bgLGR "\x1b[47m"
|
|
#define bgGRA "\x1b[100m"
|
|
#define bgLRD "\x1b[101m"
|
|
#define bgLGN "\x1b[102m"
|
|
#define bgYEL "\x1b[103m"
|
|
#define bgLBL "\x1b[104m"
|
|
#define bgPIN "\x1b[105m"
|
|
#define bgLCY "\x1b[106m"
|
|
#define bgBRI "\x1b[107m"
|
|
|
|
#else
|
|
|
|
#define cBLK ""
|
|
#define cRED ""
|
|
#define cGRN ""
|
|
#define cBRN ""
|
|
#define cBLU ""
|
|
#define cMGN ""
|
|
#define cCYA ""
|
|
#define cLGR ""
|
|
#define cGRA ""
|
|
#define cLRD ""
|
|
#define cLGN ""
|
|
#define cYEL ""
|
|
#define cLBL ""
|
|
#define cPIN ""
|
|
#define cLCY ""
|
|
#define cBRI ""
|
|
#define cRST ""
|
|
|
|
#define bgBLK ""
|
|
#define bgRED ""
|
|
#define bgGRN ""
|
|
#define bgBRN ""
|
|
#define bgBLU ""
|
|
#define bgMGN ""
|
|
#define bgCYA ""
|
|
#define bgLGR ""
|
|
#define bgGRA ""
|
|
#define bgLRD ""
|
|
#define bgLGN ""
|
|
#define bgYEL ""
|
|
#define bgLBL ""
|
|
#define bgPIN ""
|
|
#define bgLCY ""
|
|
#define bgBRI ""
|
|
|
|
#endif /* ^USE_COLOR */
|
|
|
|
/*************************
|
|
* Box drawing sequences *
|
|
*************************/
|
|
|
|
#ifdef FANCY_BOXES_NO_UTF
|
|
|
|
#define SET_G1 "\x1b)0" /* Set G1 for box drawing */
|
|
#define RESET_G1 "\x1b)B" /* Reset G1 to ASCII */
|
|
#define bSTART "\x0e" /* Enter G1 drawing mode */
|
|
#define bSTOP "\x0f" /* Leave G1 drawing mode */
|
|
#define bH "q" /* Horizontal line */
|
|
#define bV "x" /* Vertical line */
|
|
#define bLT "l" /* Left top corner */
|
|
#define bRT "k" /* Right top corner */
|
|
#define bLB "m" /* Left bottom corner */
|
|
#define bRB "j" /* Right bottom corner */
|
|
#define bX "n" /* Cross */
|
|
#define bVR "t" /* Vertical, branch right */
|
|
#define bVL "u" /* Vertical, branch left */
|
|
#define bHT "v" /* Horizontal, branch top */
|
|
#define bHB "w" /* Horizontal, branch bottom */
|
|
|
|
#else
|
|
|
|
#ifdef FANCY_BOXES
|
|
|
|
#define SET_G1 ""
|
|
#define RESET_G1 ""
|
|
#define bSTART ""
|
|
#define bSTOP ""
|
|
#define bH "\u2500" /* Horizontal line */
|
|
#define bV "\u2502" /* Vertical line */
|
|
#define bLT "\u250c" /* Left top corner */
|
|
#define bRT "\u2510" /* Right top corner */
|
|
#define bLB "\u2514" /* Left bottom corner */
|
|
#define bRB "\u2518" /* Right bottom corner */
|
|
#define bX "\u253c" /* Cross */
|
|
#define bVR "\u251c" /* Vertical, branch right */
|
|
#define bVL "\u2524" /* Vertical, branch left */
|
|
#define bHT "\u2534" /* Horizontal, branch top */
|
|
#define bHB "\u252c" /* Horizontal, branch bottom */
|
|
|
|
#else
|
|
|
|
#define SET_G1 ""
|
|
#define RESET_G1 ""
|
|
#define bSTART ""
|
|
#define bSTOP ""
|
|
#define bH "-"
|
|
#define bV "|"
|
|
#define bLT "+"
|
|
#define bRT "+"
|
|
#define bLB "+"
|
|
#define bRB "+"
|
|
#define bX "+"
|
|
#define bVR "+"
|
|
#define bVL "+"
|
|
#define bHT "+"
|
|
#define bHB "+"
|
|
|
|
#endif
|
|
#endif /* ^FANCY_BOXES */
|
|
|
|
/***********************
|
|
* Misc terminal codes *
|
|
***********************/
|
|
|
|
#define TERM_HOME "\x1b[H"
|
|
#define TERM_CLEAR TERM_HOME "\x1b[2J"
|
|
#define cEOL "\x1b[0K"
|
|
#define CURSOR_HIDE "\x1b[?25l"
|
|
#define CURSOR_SHOW "\x1b[?25h"
|
|
|
|
/************************
|
|
* Debug & error macros *
|
|
************************/
|
|
|
|
#if defined USE_COLOR && !defined ALWAYS_COLORED
|
|
#include <unistd.h>
|
|
#pragma GCC diagnostic ignored "-Wformat-security"
|
|
static inline const char *colorfilter(const char *x) {
|
|
|
|
static int once = 1;
|
|
static int disabled = 0;
|
|
|
|
if (once) {
|
|
|
|
/* when there is no tty -> we always want filtering
|
|
* when AFL_NO_UI is set filtering depends on AFL_NO_COLOR
|
|
* otherwise we want always colors
|
|
*/
|
|
disabled =
|
|
isatty(2) && (!getenv("AFL_NO_UI") ||
|
|
(!getenv("AFL_NO_COLOR") && !getenv("AFL_NO_COLOUR")));
|
|
once = 0;
|
|
|
|
}
|
|
|
|
if (likely(disabled)) return x;
|
|
|
|
static char monochromestring[4096];
|
|
char *d = monochromestring;
|
|
int in_seq = 0;
|
|
|
|
while (*x) {
|
|
|
|
if (in_seq && *x == 'm') {
|
|
|
|
in_seq = 0;
|
|
|
|
} else {
|
|
|
|
if (!in_seq && *x == '\x1b') { in_seq = 1; }
|
|
if (!in_seq) { *d++ = *x; }
|
|
|
|
}
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
*d = '\0';
|
|
return monochromestring;
|
|
|
|
}
|
|
|
|
#else
|
|
#define colorfilter(x) x /* no filtering necessary */
|
|
#endif
|
|
|
|
/* macro magic to transform the first parameter to SAYF
|
|
* through colorfilter which strips coloring */
|
|
#define GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, \
|
|
_15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, \
|
|
_27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, \
|
|
_39, _40, NAME, ...) \
|
|
NAME
|
|
|
|
#define SAYF(...) \
|
|
GET_MACRO(__VA_ARGS__, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, \
|
|
SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, \
|
|
SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, \
|
|
SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, \
|
|
SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, SAYF_N, \
|
|
SAYF_N, SAYF_1) \
|
|
(__VA_ARGS__)
|
|
|
|
#define SAYF_1(x) MY_SAYF(colorfilter(x))
|
|
#define SAYF_N(x, ...) MY_SAYF(colorfilter(x), __VA_ARGS__)
|
|
|
|
/* Just print stuff to the appropriate stream. */
|
|
#ifdef MESSAGES_TO_STDOUT
|
|
#define MY_SAYF(x...) printf(x)
|
|
#else
|
|
#define MY_SAYF(x...) fprintf(stderr, x)
|
|
#endif /* ^MESSAGES_TO_STDOUT */
|
|
|
|
/* Show a prefixed warning. */
|
|
|
|
#define WARNF(x...) \
|
|
do { \
|
|
\
|
|
SAYF(cYEL "[!] " cBRI "WARNING: " cRST x); \
|
|
SAYF(cRST "\n"); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Show a prefixed "doing something" message. */
|
|
|
|
#define ACTF(x...) \
|
|
do { \
|
|
\
|
|
SAYF(cLBL "[*] " cRST x); \
|
|
SAYF(cRST "\n"); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Show a prefixed "success" message. */
|
|
|
|
#define OKF(x...) \
|
|
do { \
|
|
\
|
|
SAYF(cLGN "[+] " cRST x); \
|
|
SAYF(cRST "\n"); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Show a prefixed fatal error message (not used in afl). */
|
|
|
|
#define BADF(x...) \
|
|
do { \
|
|
\
|
|
SAYF(cLRD "\n[-] " cRST x); \
|
|
SAYF(cRST "\n"); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Die with a verbose non-OS fatal error message. */
|
|
|
|
#define FATAL(x...) \
|
|
do { \
|
|
\
|
|
SAYF(bSTOP RESET_G1 CURSOR_SHOW cRST cLRD \
|
|
"\n[-] PROGRAM ABORT : " cRST x); \
|
|
SAYF(cLRD "\n Location : " cRST "%s(), %s:%u\n\n", __func__, \
|
|
__FILE__, (u32)__LINE__); \
|
|
exit(1); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Die by calling abort() to provide a core dump. */
|
|
|
|
#define ABORT(x...) \
|
|
do { \
|
|
\
|
|
SAYF(bSTOP RESET_G1 CURSOR_SHOW cRST cLRD \
|
|
"\n[-] PROGRAM ABORT : " cRST x); \
|
|
SAYF(cLRD "\n Stop location : " cRST "%s(), %s:%u\n\n", __func__, \
|
|
__FILE__, (u32)__LINE__); \
|
|
abort(); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Die while also including the output of perror(). */
|
|
|
|
#define PFATAL(x...) \
|
|
do { \
|
|
\
|
|
fflush(stdout); \
|
|
SAYF(bSTOP RESET_G1 CURSOR_SHOW cRST cLRD \
|
|
"\n[-] SYSTEM ERROR : " cRST x); \
|
|
SAYF(cLRD "\n Stop location : " cRST "%s(), %s:%u\n", __func__, \
|
|
__FILE__, (u32)__LINE__); \
|
|
SAYF(cLRD " OS message : " cRST "%s\n", strerror(errno)); \
|
|
exit(1); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Die with FATAL() or PFATAL() depending on the value of res (used to
|
|
interpret different failure modes for read(), write(), etc). */
|
|
|
|
#define RPFATAL(res, x...) \
|
|
do { \
|
|
\
|
|
if (res < 0) \
|
|
PFATAL(x); \
|
|
else \
|
|
FATAL(x); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Show a prefixed debug output. */
|
|
|
|
#define DEBUGF(x...) \
|
|
do { \
|
|
\
|
|
fprintf(stderr, cMGN "[D] " cBRI "DEBUG: " cRST x); \
|
|
fprintf(stderr, cRST ""); \
|
|
\
|
|
} while (0)
|
|
|
|
/* Error-checking versions of read() and write() that call RPFATAL() as
|
|
appropriate. */
|
|
|
|
#define ck_write(fd, buf, len, fn) \
|
|
do { \
|
|
\
|
|
if (len <= 0) break; \
|
|
int _fd = (fd); \
|
|
s32 _written = 0, _off = 0, _len = (s32)(len); \
|
|
\
|
|
do { \
|
|
\
|
|
s32 _res = write(_fd, (buf) + _off, _len); \
|
|
if (_res != _len && (_res > 0 && _written + _res != _len)) { \
|
|
\
|
|
if (_res > 0) { \
|
|
\
|
|
_written += _res; \
|
|
_len -= _res; \
|
|
_off += _res; \
|
|
\
|
|
} else { \
|
|
\
|
|
RPFATAL(_res, "Short write to %s, fd %d (%d of %d bytes)", fn, _fd, \
|
|
_res, _len); \
|
|
\
|
|
} \
|
|
\
|
|
} else { \
|
|
\
|
|
break; \
|
|
\
|
|
} \
|
|
\
|
|
} while (1); \
|
|
\
|
|
\
|
|
\
|
|
} while (0)
|
|
|
|
#define ck_read(fd, buf, len, fn) \
|
|
do { \
|
|
\
|
|
s32 _len = (s32)(len); \
|
|
s32 _res = read(fd, buf, _len); \
|
|
if (_res != _len) RPFATAL(_res, "Short read from %s", fn); \
|
|
\
|
|
} while (0)
|
|
|
|
#endif /* ! _HAVE_DEBUG_H */
|
|
|