-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/syz-reprolist: rename tool to syz-db-export
- Loading branch information
1 parent
1c02d27
commit 75bb1b3
Showing
5 changed files
with
13 additions
and
13 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
12 changes: 6 additions & 6 deletions
12
tools/syz-reprolist/README.md → tools/syz-db-export/README.md
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
# Syzbot DB export | ||
Every week syzbot runs syz-reprolist to export its databases: | ||
Every week syzbot runs syz-db-export to export its databases: | ||
1. [Upstream Linux](https://syzkaller.appspot.com/upstream) | ||
db is [here](https://storage.googleapis.com/artifacts.syzkaller.appspot.com/shared-files/repro-export/upstream.tar.gz). | ||
2. Contact us if you want see others. | ||
|
||
## Export structure | ||
DB currently includes: | ||
1. First C-Reproducer for every bug. | ||
1. Bugs descriptions. | ||
2. First C-Reproducer for every bug. | ||
|
||
It doesn't include: | ||
1. Second+ C-Reproducers for every bug. | ||
2. Syz-Reproducers. | ||
3. Bugs description itself. | ||
4. Any reproducer related metadata (like triggering requirements). | ||
3. Any reproducer related metadata (like triggering requirements). | ||
|
||
## How to export more data | ||
|
||
The best way to see more data exported is to modify the tool and send us PR with your changes. | ||
|
||
To reproduce locally what syzbot is doing for upstream Linux: | ||
```golang | ||
go run ./tools/syz-reprolist/... -namespace upstream | ||
go run ./tools/syz-db-export/... -namespace upstream | ||
``` | ||
Extending tools/syz-reprolist you can teach syzbot to export more. | ||
Extending tools/syz-db-export you can teach syzbot to export more. |
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