]> Git Repo - linux.git/commit
nfc: nci: Fix uninit-value in nci_dev_up and nci_ntf_packet
authorRyosuke Yasuoka <[email protected]>
Wed, 20 Mar 2024 00:54:10 +0000 (09:54 +0900)
committerDavid S. Miller <[email protected]>
Fri, 22 Mar 2024 09:41:39 +0000 (09:41 +0000)
commitd24b03535e5eb82e025219c2f632b485409c898f
tree50176b375cc9d3592ebf2d72de88bad21e14b115
parentcba9ffdb9913dfe6be29f049ce920ce451ce7cc4
nfc: nci: Fix uninit-value in nci_dev_up and nci_ntf_packet

syzbot reported the following uninit-value access issue [1][2]:

nci_rx_work() parses and processes received packet. When the payload
length is zero, each message type handler reads uninitialized payload
and KMSAN detects this issue. The receipt of a packet with a zero-size
payload is considered unexpected, and therefore, such packets should be
silently discarded.

This patch resolved this issue by checking payload size before calling
each message type handler codes.

Fixes: 6a2968aaf50c ("NFC: basic NCI protocol implementation")
Reported-and-tested-by: [email protected]
Reported-and-tested-by: [email protected]
Closes: https://syzkaller.appspot.com/bug?extid=7ea9413ea6749baf5574 [1]
Closes: https://syzkaller.appspot.com/bug?extid=29b5ca705d2e0f4a44d2 [2]
Signed-off-by: Ryosuke Yasuoka <[email protected]>
Reviewed-by: Jeremy Cline <[email protected]>
Reviewed-by: Krzysztof Kozlowski <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/nfc/nci/core.c
This page took 0.052652 seconds and 4 git commands to generate.