-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented new approach for fuzzer synchronization
This commit changes the way fuzzer workers synchronize. Previously, a new worker would be sent the entire set of interesting samples every discovered by the responsible master. It would then execute all of them and thus be synchronized. This had the advantage of filtering out non-deterministic samples but obviously was very slow for large corpuses. With this commit, the fuzzer master now exports its internal state consisting of the state of its evaluator (e.g. the coverage bitmap for edge coverage) and the current (active) corpus. It then sends both to the worker which simply imports them without having to execute any programs. The worker is then basically a clone of the master. Afterwards, workers will (hopefully) diverge from the master due to dropout and non-deterministic samples. This now also makes it possible to limit the size of the corpus, e.g. to avoid OOMing if too many intersting samples are discovered.
- Loading branch information
Samuel Groß
committed
Jun 17, 2019
1 parent
498ccbd
commit 5aeae9d
Showing
26 changed files
with
633 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.