From: Phillip Potter <phil@philpotter.co.uk> Date: 2021-04-02 17:36:26
Use memset to initialize two local buffers in net/ipv6/mcast.c,
and another in net/ipv4/igmp.c. Fixes a KMSAN found uninit-value
bug reported by syzbot at:
https://syzkaller.appspot.com/bug?id=0766d38c656abeace60621896d705743aeefed51
Reported-by: syzbot+001516d86dbe88862cec@syzkaller.appspotmail.com
Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
---
net/ipv4/igmp.c | 2 ++
net/ipv6/mcast.c | 4 ++++
2 files changed, 6 insertions(+)
According to this link, the bug no longer triggers.
Please explain why you think it is still there.
Dear Eric,
It definitely still triggers, tested it on the master branch of
https://github.com/google/kmsan last night. The patch which fixes the
crash on that page is the same patch I've sent in.
Regards,
Phil
According to this link, the bug no longer triggers.
Please explain why you think it is still there.
Dear Eric,
It definitely still triggers, tested it on the master branch of
https://github.com/google/kmsan last night. The patch which fixes the
crash on that page is the same patch I've sent in.
According to this link, the bug no longer triggers.
Please explain why you think it is still there.
Dear Eric,
It definitely still triggers, tested it on the master branch of
https://github.com/google/kmsan last night. The patch which fixes the
crash on that page is the same patch I've sent in.
Please send the full report (stack trace)
I think your patch just silences the real problem.
The issue at hand is that TUNSETLINK changes dev->type without making
any change to dev->addr_len
This is the real issue.
If you care about this, please fix tun driver.
According to this link, the bug no longer triggers.
Please explain why you think it is still there.
Dear Eric,
It definitely still triggers, tested it on the master branch of
https://github.com/google/kmsan last night. The patch which fixes the
crash on that page is the same patch I've sent in.
Please send the full report (stack trace)
I think your patch just silences the real problem.
The issue at hand is that TUNSETLINK changes dev->type without making
any change to dev->addr_len
This is the real issue.
If you care about this, please fix tun driver.
Dear Eric,
Thank you for pointing me in the right direction. I will do as you
suggest.
Regards,
Phil