forked from google/syzkaller
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/syz-db: add more usage info for syz-db
Add some short notes on how syz-db can also be used manually. Signed-off-by: Simone Weiß <[email protected]>
- Loading branch information
1 parent
af24b05
commit 36c961a
Showing
2 changed files
with
77 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# syz-db | ||
|
||
`syz-db` program can be used to manipulate corpus.db databases that are used | ||
by syz-managers. | ||
|
||
## Build | ||
|
||
Build `syz-db` with `make db` or by changing to `tools/syz-db` and run `go build`. | ||
|
||
## Options | ||
|
||
`syz-db` currently overs the following generic arguments: | ||
|
||
```shell | ||
-arch string | ||
target arch | ||
-os string | ||
target OS | ||
-version uint | ||
database version | ||
-vv int | ||
verbosity | ||
``` | ||
|
||
That can be used with | ||
|
||
``` | ||
syz-db pack dir corpus.db | ||
``` | ||
|
||
to pack a database | ||
|
||
``` | ||
syz-db unpack corpus.db dir | ||
``` | ||
|
||
to unpack a database. A file containing performed syscalls will be returned. | ||
|
||
``` | ||
syz-db merge dst-corpus.db add-corpus.db* add-prog* | ||
``` | ||
|
||
to merge databases. No additional file will be created: The first file will be replaced by the merged result. | ||
|
||
``` | ||
syz-db bench corpus.db | ||
``` | ||
|
||
to run a deserialization benchmark. For example: | ||
|
||
``` | ||
syz-db -os=linux -arch=amd64 bench corpus.db | ||
``` | ||
|
||
could give an output like | ||
|
||
``` | ||
allocs 123 MB (123 M), next GC 123 MB, sys heap 123 MB, live allocs 123 MB (123 M), time 324s. | ||
``` |
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