aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/afl-fuzz.h3
-rw-r--r--src/afl-fuzz-queue.c59
-rw-r--r--src/afl-performance.c10
3 files changed, 26 insertions, 46 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index 45de197d..85597150 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -1045,6 +1045,9 @@ u8 input_to_state_stage(afl_state_t *afl, u8 *orig_buf, u8 *buf, u32 len,
/* xoshiro256** */
uint64_t rand_next(afl_state_t *afl);
+/* probability between 0.0 and 1.0 */
+double rand_next_percent(afl_state_t *afl);
+
/**** Inline routines ****/
/* Generate a random number (from 0 to limit - 1). This may
diff --git a/src/afl-fuzz-queue.c b/src/afl-fuzz-queue.c
index d608e890..f224d851 100644
--- a/src/afl-fuzz-queue.c
+++ b/src/afl-fuzz-queue.c
@@ -27,17 +27,22 @@
#include <ctype.h>
#include <math.h>
+/* select next queue entry based on alias algo - fast! */
+
inline u32 select_next_queue_entry(afl_state_t *afl) {
- u32 r = rand_below(afl, 0xffffffff);
- u32 s = r % afl->queued_paths;
- // fprintf(stderr, "select: r=%u s=%u ... r < prob[s]=%f ? s=%u :
- // alias[%u]=%u\n", r, s, afl->alias_probability[s], s, s,
- // afl->alias_table[s]);
- return (r < afl->alias_probability[s] ? s : afl->alias_table[s]);
+ u32 s = rand_below(afl, afl->queued_paths);
+ double p = rand_next_percent(afl);
+ /*
+ fprintf(stderr, "select: p=%f s=%u ... p < prob[s]=%f ? s=%u : alias[%u]=%u"
+ " ==> %u\n", p, s, afl->alias_probability[s], s, s, afl->alias_table[s], p < afl->alias_probability[s] ? s : afl->alias_table[s]);
+ */
+ return (p < afl->alias_probability[s] ? s : afl->alias_table[s]);
}
+/* create the alias table that allows weighted random selection - expensive */
+
void create_alias_table(afl_state_t *afl) {
u32 n = afl->queued_paths, i = 0, a, g;
@@ -63,11 +68,6 @@ void create_alias_table(afl_state_t *afl) {
if (!q->disabled) q->perf_score = calculate_score(afl, q);
sum += q->perf_score;
- /*
- if (afl->debug)
- fprintf(stderr, "entry %u: score=%f %s (sum: %f)\n", i, q->perf_score,
- q->disabled ? "disabled" : "", sum);
- */
}
@@ -110,41 +110,10 @@ void create_alias_table(afl_state_t *afl) {
afl->alias_probability[S[--nS]] = 1;
/*
- if (afl->debug) {
-
- fprintf(stderr, " %-3s %-3s %-9s\n", "entry", "alias", "prob");
+ fprintf(stderr, " %-3s %-3s %-9s %-9s\n", "entry", "alias", "prob", "perf");
for (u32 i = 0; i < n; ++i)
- fprintf(stderr, " %3i %3i %9.7f\n", i, afl->alias_table[i],
- afl->alias_probability[i]);
-
- }
-
- int prob = 0;
- fprintf(stderr, "Alias:");
- for (i = 0; i < n; i++) {
-
- fprintf(stderr, " [%u]=%u", i, afl->alias_table[i]);
- if (afl->alias_table[i] >= n)
- prob = i;
-
- }
-
- fprintf(stderr, "\n");
-
- if (prob) {
-
- fprintf(stderr, "PROBLEM! alias[%u] = %u\n", prob,
- afl->alias_table[prob]);
-
- for (i = 0; i < n; i++) {
-
- struct queue_entry *q = afl->queue_buf[i];
-
- fprintf(stderr, "%u: score=%f\n", i, q->perf_score);
-
- }
-
- }
+ fprintf(stderr, " %3i %3i %9.7f %9.7f\n", i, afl->alias_table[i],
+ afl->alias_probability[i], afl->queue_buf[i]->perf_score);
*/
diff --git a/src/afl-performance.c b/src/afl-performance.c
index 7a80ac4b..6fa95dea 100644
--- a/src/afl-performance.c
+++ b/src/afl-performance.c
@@ -47,7 +47,7 @@ void rand_set_seed(afl_state_t *afl, s64 init_seed) {
}
-uint64_t rand_next(afl_state_t *afl) {
+inline uint64_t rand_next(afl_state_t *afl) {
const uint64_t result =
rotl(afl->rand_seed[0] + afl->rand_seed[3], 23) + afl->rand_seed[0];
@@ -67,6 +67,14 @@ uint64_t rand_next(afl_state_t *afl) {
}
+/* returns a double between 0.000000000 and 1.000000000 */
+
+inline double rand_next_percent(afl_state_t *afl) {
+
+ return (double)(((double)rand_next(afl)) / (double) 0xffffffffffffffff);
+
+}
+
/* This is the jump function for the generator. It is equivalent
to 2^128 calls to rand_next(); it can be used to generate 2^128
non-overlapping subsequences for parallel computations. */