From 64ca0a371100fc7dfdb20de9263763e46c88a436 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 9 Dec 2019 07:42:48 +0100 Subject: tools/syz-check: add description checking utility 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 --- sys/linux/fuse.txt.warn | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sys/linux/fuse.txt.warn (limited to 'sys/linux/fuse.txt.warn') diff --git a/sys/linux/fuse.txt.warn b/sys/linux/fuse.txt.warn new file mode 100644 index 000000000..3923f6f92 --- /dev/null +++ b/sys/linux/fuse.txt.warn @@ -0,0 +1,5 @@ +0063: struct fuse_init_out: bad number of fields: syz=9 kernel=11 +0072: field fuse_init_out.unused/max_pages: bad size: syz=36 kernel=2 +0125: struct fuse_kstatfs: bad number of fields: syz=9 kernel=10 +0134: field fuse_kstatfs.padding_spare/padding: bad size: syz=28 kernel=4 +0167: struct fuse_create_open_out: no corresponding struct in kernel -- cgit mrf-deployment