aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/crash
Commit message (Collapse)AuthorAgeFilesLines
* pkg/aflow/flow/assessment: add UAF moderation workflowDmitry Vyukov2026-01-121-0/+4
| | | | | | Add workflow that can be used for moderation of UAF bugs (consistent/actionable reports), such UAF bugs can be upstreammed automatically, even if they happened only once and don't have a reproducer.
* pkg/report: move TitleToCrashType to crash packageDmitry Vyukov2026-01-093-1/+371
| | | | | | | | | TitleToCrashType is a simple function with no heavy dependencies that is used by the dashboard app. Currnetly we have to import pkg/report into dashboard/app, and this package has lots of heavy deps (symbolizer, demangler, coverage report generation, etc). Move TitleToCrashType to pkg/report/crash (where it arguably belongs anyway).
* pkg/report: introduce null ptr crash typesTaras Madan2025-07-091-2/+6
|
* dashboard/app: sort bugs by impactTaras Madan2025-07-081-3/+3
| | | | | The impact score is deducted from the title. Impact is max(known_titles).
* pkg/report: split crash.KFENCETaras Madan2025-07-041-25/+31
|
* pkg/report: split crash.KCSANTaras Madan2025-07-031-3/+4
| | | | | Introduce crash.KCSANAssert. Introduce crash.KCSANUnknown.
* pkg/report: use crash.KASANUnknown instead of crash.KASANOtherTaras Madan2025-07-031-2/+2
| | | | | | What we need is the category for "matched unknown KASAN bug". This king on bugs should be recategorised. The final goal is to keep this category empty.
* pkg/report: split crash.KMSANTaras Madan2025-07-031-2/+6
|
* pkg/report: split crash.KASAN into partsTaras Madan2025-07-031-17/+25
| | | | We want to prioritize KASAN bugs differently.
* dashboard/app: use crash types instead, no regexpsTaras Madan2025-07-021-14/+79
|
* pkg/report: add crash.KFENCE typeTaras Madan2025-06-271-0/+1
|
* pkg/report: detect the lost connection crash typeAleksandr Nogikh2024-12-031-0/+1
|
* pkg/report: introduce crash.SyzFailure report typeAleksandr Nogikh2023-07-061-0/+1
| | | | It refers to SYZFAIL and SYZFATAL errors.
* pkg/report/crash: explicitly print UNKNOWN for UnknownTypeAleksandr Nogikh2023-07-051-0/+7
|
* pkg/report: move report.Type to pkg/report/crashAleksandr Nogikh2023-07-051-0/+21
This will help avoid a circular dependency pkg/vcs -> pkg/report -> pkg/vcs.