aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/socket_netlink_xfrm.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix more netlink warningsDmitry Vyukov2020-01-231-9/+0
| | | | | | | | | | Handle NLA_BITFIELD32. Match string attribtues better. Calculate and check min size for varlen structs. Fix NLA_UNSPEC size check. Fix some things in descriptions. Update #590
* sys/linux: fix incorrect nlattr sizesDmitry Vyukov2020-01-221-2/+0
| | | | Update #590
* tools/syz-check: improve matching netlink attributesDmitry Vyukov2020-01-221-1/+11
| | | | | | | | | | 1. Match policies that has a _suffix in our descriptions (we frequently do this to improve precision or avoid dup names). 2. Rename policies in descriptions to match kernel names. 3. Match policy if there are several such names in kernel. 4. Recognize policies with helper sub-policies. Update #590
* sys/linux: add new netlink warningsDmitry Vyukov2020-01-221-0/+1
| | | | Update #590
* sys/linux: fix int64 alignment on 386Dmitry Vyukov2019-12-231-18/+0
| | | | | | | | | Turns out int64 alignment is 4 on 386... But on arm it's still 8. Another amusing finding thanks to syz-check. Update #590
* tools/syz-check: check amd64 and 386 at the same timeDmitry Vyukov2019-12-221-1/+19
| | | | Update #590
* sys/linux: another batch of warning fixesDmitry Vyukov2019-12-221-15/+0
| | | | | | The only remaining part now is dev_video4linux.txt Update #590
* tools/syz-check: don't print line numbers for warningsDmitry Vyukov2019-12-181-16/+16
| | | | | Line numbers create huge diffs when lines change slightly. That's very unhandy b/c we want to look at added/removed warnings.
* tools/syz-check: add description checking utilityDmitry Vyukov2019-12-171-0/+16
syz-check parses vmlinux dwarf, extracts struct descriptions, compares them with what we have (size, fields, alignment, etc) and produces .warn files. This is first raw version, it can be improved in a number of ways. But it already helped to identify a critical issue #1542 and shows some wrong struct descriptions. Update #590