aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-11-11 14:36:06 +0100
committerGitHub <noreply@github.com>2019-11-11 14:36:06 +0100
commit659db7e421b47da4b04110a141d9c20307f74ecc (patch)
tree18f9c38cc5270adcf445a62b974712cead4a01c4 /include
parentcd84339bccc104a51a5da614a9f82cc4ae615cce (diff)
parent01d55372441960c435af8f3bd6b61d1302042728 (diff)
downloadafl++-659db7e421b47da4b04110a141d9c20307f74ecc.tar.gz
Merge branch 'master' into radamsa
Diffstat (limited to 'include')
-rw-r--r--include/afl-as.h2
-rw-r--r--include/afl-fuzz.h15
-rw-r--r--include/alloc-inl.h2
-rw-r--r--include/android-ashmem.h2
-rw-r--r--include/common.h2
-rw-r--r--include/config.h4
-rw-r--r--include/debug.h2
-rw-r--r--include/forkserver.h2
-rw-r--r--include/hash.h2
-rw-r--r--include/sharedmem.h2
-rw-r--r--include/types.h14
11 files changed, 33 insertions, 16 deletions
diff --git a/include/afl-as.h b/include/afl-as.h
index 048866db..f0263312 100644
--- a/include/afl-as.h
+++ b/include/afl-as.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - injectable parts
---------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index a1a4ed50..342205df 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - fuzzer header
------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
@@ -72,17 +72,21 @@
#include <sys/file.h>
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || \
- defined(__NetBSD__)
+ defined(__NetBSD__) || defined(__DragonFly__)
#include <sys/sysctl.h>
#endif /* __APPLE__ || __FreeBSD__ || __OpenBSD__ */
/* For systems that have sched_setaffinity; right now just Linux, but one
can hope... */
-#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
+#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || \
+ defined(__DragonFly__)
#define HAVE_AFFINITY 1
+#if defined(__FreeBSD__) || defined(__DragonFly__)
+#include <sys/param.h>
#if defined(__FreeBSD__)
#include <sys/cpuset.h>
+#endif
#include <sys/user.h>
#include <pthread.h>
#include <pthread_np.h>
@@ -252,7 +256,7 @@ extern u8 *in_dir, /* Input directory with test cases */
*file_extension, /* File extension */
*orig_cmdline, /* Original command line */
*doc_path, /* Path to documentation dir */
- *infoexec, /* Command to execute on a new crash */
+ *infoexec, /* Command to execute on a new crash */
*out_file; /* File to fuzz, if any */
extern u32 exec_tmout; /* Configurable exec timeout (ms) */
@@ -315,7 +319,8 @@ extern u8 skip_deterministic, /* Skip deterministic stages? */
deferred_mode, /* Deferred forkserver mode? */
fixed_seed, /* do not reseed */
fast_cal, /* Try to calibrate faster? */
- uses_asan; /* Target uses ASAN? */
+ uses_asan, /* Target uses ASAN? */
+ disable_trim; /* Never trim in fuzz_one */
extern s32 out_fd, /* Persistent fd for out_file */
#ifndef HAVE_ARC4RANDOM
diff --git a/include/alloc-inl.h b/include/alloc-inl.h
index b0815ab1..f5bb7246 100644
--- a/include/alloc-inl.h
+++ b/include/alloc-inl.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - error-checking, memory-zeroing alloc routines
--------------------------------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
diff --git a/include/android-ashmem.h b/include/android-ashmem.h
index 6c7a98db..f4d31739 100644
--- a/include/android-ashmem.h
+++ b/include/android-ashmem.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - android shared memory compatibility layer
----------------------------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
diff --git a/include/common.h b/include/common.h
index e13bf0a0..7c3d4517 100644
--- a/include/common.h
+++ b/include/common.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - common routines header
---------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
diff --git a/include/config.h b/include/config.h
index f2732ad4..144d3810 100644
--- a/include/config.h
+++ b/include/config.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - vaguely configurable bits
------------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
@@ -26,7 +26,7 @@
/* Version string: */
-#define VERSION "++2.54d" // c = release, d = volatile github dev
+#define VERSION "++2.58d" // c = release, d = volatile github dev
/******************************************************
* *
diff --git a/include/debug.h b/include/debug.h
index cccfc284..ed6c29e9 100644
--- a/include/debug.h
+++ b/include/debug.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - debug / error handling macros
----------------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
diff --git a/include/forkserver.h b/include/forkserver.h
index 9a099888..9cabe58e 100644
--- a/include/forkserver.h
+++ b/include/forkserver.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - forkserver header
----------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Forkserver design by Jann Horn <jannhorn@googlemail.com>
diff --git a/include/hash.h b/include/hash.h
index 7085df32..1a8ac252 100644
--- a/include/hash.h
+++ b/include/hash.h
@@ -12,7 +12,7 @@
Austin's original code is public domain.
- Other code written and maintained by Michal Zalewski <lcamtuf@google.com>
+ Other code written by Michal Zalewski
Copyright 2016 Google Inc. All rights reserved.
diff --git a/include/sharedmem.h b/include/sharedmem.h
index 18e4ee9f..cec6c025 100644
--- a/include/sharedmem.h
+++ b/include/sharedmem.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - shared memory related header
---------------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Forkserver design by Jann Horn <jannhorn@googlemail.com>
diff --git a/include/types.h b/include/types.h
index 07fc7e91..3f34db66 100644
--- a/include/types.h
+++ b/include/types.h
@@ -2,7 +2,7 @@
american fuzzy lop++ - type definitions and minor macros
--------------------------------------------------------
- Originally written by Michal Zalewski <lcamtuf@google.com>
+ Originally written by Michal Zalewski
Now maintained by by Marc Heuse <mh@mh-sec.de>,
Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
@@ -79,9 +79,21 @@ typedef int64_t s64;
})
#ifdef AFL_LLVM_PASS
+#if defined(__linux__)
+#define AFL_SR(s) (srandom(s))
#define AFL_R(x) (random() % (x))
#else
+#define AFL_SR(s)
+#define AFL_R(x) (arc4random_uniform(x))
+#endif
+#else
+#if defined(__linux__)
+#define SR(s) (srandom(s))
#define R(x) (random() % (x))
+#else
+#define SR(s)
+#define R(x) (arc4random_uniform(x))
+#endif
#endif /* ^AFL_LLVM_PASS */
#define STRINGIFY_INTERNAL(x) #x