aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-kcidb
Commit message (Collapse)AuthorAgeFilesLines
* tools/syz-kcidb: add -input and -output flags for testingDenys Fedoryshchenko2025-10-061-9/+36
| | | | | | | | | | | | Add -input and -output flags to syz-kcidb to allow for faster and easier testing of KCIDB submissions. With these flags, it's possible to use a local JSON file as input for a bug report and to save the resulting KCIDB submission locally. This removes the need for communication with the dashboard and KCIDB, which simplifies testing and development. Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
* kcidb: convert from Google PubSub to plain REST interfaceDenys Fedoryshchenko2025-10-061-7/+3
| | | | | | | | KCIDB removing Google PubSub and start to accept REST submissions. This will require new configuration options, such as REST URL and token. Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
* pkg/kcidb: upgrade submission schema to v5.3Denys Fedoryshchenko2025-10-061-1/+1
| | | | | | | Upgrading KCIDB schema, as old versions going to be deprecated soon. Ref: https://github.com/kernelci/kcidb-io/tree/main/kcidb_io/schema Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
* all: ioutil is deprecated in go1.19 (#3718)Taras Madan2023-02-231-2/+2
|
* dashboard/dashapi: return error from dashapi.NewGreg Steuck2021-07-121-2/+5
| | | | | This will allow it to make a call to meta-server and abort early when authentication by bearer token is impossible.
* all: use tool.Failf instead of local functionsDmitry Vyukov2020-12-251-10/+5
|
* pkg/kcidb: assorted improvements for the schemaDmitry Vyukov2020-10-011-0/+1
| | | | | | | | | | | Based on @spbnick comments: https://groups.google.com/g/syzkaller/c/Gd-hTPH4Two/m/6viE0QLgCQAJ Normalize git.kernel.org repo addresses. Send dashboard link in misc rather than in output files. Don't omit waived. Also check sent messages with kcidb-validate if it's in PATH.
* tools/syz-kcidb: add toolDmitry Vyukov2020-09-301-0/+55
A wrapper for pkg/kcidb that allows to publish a single bug to Kcidb. Just for testing. Update #2144