mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
more sync in deterministic mode
This commit is contained in:
@ -17,6 +17,8 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
|
|||||||
- afl-fuzz
|
- afl-fuzz
|
||||||
- fix crash for very, very fast targets+systems (thanks to mhlakhani
|
- fix crash for very, very fast targets+systems (thanks to mhlakhani
|
||||||
for reporting)
|
for reporting)
|
||||||
|
- if determinstic mode is active (-D, or -M without -d) then we sync
|
||||||
|
after every queue entry as this can take very long time otherwise
|
||||||
- switched to a faster RNG
|
- switched to a faster RNG
|
||||||
- added hghwng's patch for faster trace map analysis
|
- added hghwng's patch for faster trace map analysis
|
||||||
- afl-cc
|
- afl-cc
|
||||||
|
@ -1781,15 +1781,27 @@ int main(int argc, char **argv_orig, char **envp) {
|
|||||||
|
|
||||||
} while (skipped_fuzz && afl->queue_cur && !afl->stop_soon);
|
} while (skipped_fuzz && afl->queue_cur && !afl->stop_soon);
|
||||||
|
|
||||||
if (!afl->stop_soon && afl->sync_id) {
|
if (likely(!afl->stop_soon && afl->sync_id)) {
|
||||||
|
|
||||||
if (unlikely(afl->is_main_node)) {
|
if (likely(afl->skip_deterministic)) {
|
||||||
|
|
||||||
if (!(sync_interval_cnt++ % (SYNC_INTERVAL / 3))) { sync_fuzzers(afl); }
|
if (unlikely(afl->is_main_node)) {
|
||||||
|
|
||||||
|
if (!(sync_interval_cnt++ % (SYNC_INTERVAL / 3))) {
|
||||||
|
|
||||||
|
sync_fuzzers(afl);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
if (!(sync_interval_cnt++ % SYNC_INTERVAL)) { sync_fuzzers(afl); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (!(sync_interval_cnt++ % SYNC_INTERVAL)) { sync_fuzzers(afl); }
|
sync_fuzzers(afl);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user