diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-08-23 01:48:36 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-08-23 01:48:36 +0200 |
commit | 1301552101af899557a93a7535d8a57874fe6edf (patch) | |
tree | 7c97f8e12a7572b5d546d119fe9d7855ee80ccab /include | |
parent | c4f71ab201da991fd16b2691f76020bfdb6459a4 (diff) | |
download | afl++-1301552101af899557a93a7535d8a57874fe6edf.tar.gz |
added AFL_MAX_DET_EXTRAS env var
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 5 | ||||
-rw-r--r-- | include/envs.h | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 1deeddd3..148e6e84 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -353,7 +353,7 @@ typedef struct afl_env_vars { afl_cal_fast, afl_cycle_schedules, afl_expand_havoc; u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, - *afl_hang_tmout, *afl_skip_crashes, *afl_preload; + *afl_hang_tmout, *afl_skip_crashes, *afl_preload, *afl_max_det_extras; } afl_env_vars_t; @@ -506,7 +506,8 @@ typedef struct afl_state { useless_at_start, /* Number of useless starting paths */ var_byte_count, /* Bitmap bytes with var behavior */ current_entry, /* Current queue entry ID */ - havoc_div; /* Cycle count divisor for havoc */ + havoc_div, /* Cycle count divisor for havoc */ + max_det_extras; /* deterministic extra count (dicts)*/ u64 total_crashes, /* Total number of crashes */ unique_crashes, /* Crashes with unique signatures */ diff --git a/include/envs.h b/include/envs.h index 96ae91ba..4d50d0ff 100644 --- a/include/envs.h +++ b/include/envs.h @@ -102,6 +102,7 @@ static char *afl_environment_variables[] = { "AFL_NO_X86", // not really an env but we dont want to warn on it "AFL_MAP_SIZE", "AFL_MAPSIZE", + "AFL_MAX_DET_EXTRAS", "AFL_PATH", "AFL_PERFORMANCE_FILE", "AFL_PRELOAD", |