linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] nfc: nci: Fix uninit-value in nci_rx_work
@ 2024-04-07  8:05 Ryosuke Yasuoka
  2024-04-08  9:55 ` Eric Dumazet
  0 siblings, 1 reply; 4+ messages in thread
From: Ryosuke Yasuoka @ 2024-04-07  8:05 UTC (permalink / raw)
  To: krzysztof.kozlowski, davem, edumazet, kuba, pabeni
  Cc: netdev, linux-kernel, syoshida

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

nci_rx_work() parses received packet from ndev->rx_q. It should be
checked skb->len is non-zero to verify if it is valid before processing
the packet. If skb->len is zero but skb->data is not, such packet is
invalid and should be silently discarded.

Fixes: d24b03535e5e ("nfc: nci: Fix uninit-value in nci_dev_up and nci_ntf_packet")
Reported-and-tested-by: syzbot+d7b4dc6cd50410152534@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=d7b4dc6cd50410152534 [1]
Signed-off-by: Ryosuke Yasuoka <ryasuoka@redhat.com>
---
 net/nfc/nci/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/nfc/nci/core.c b/net/nfc/nci/core.c
index 0d26c8ec9993..b7a020484131 100644
--- a/net/nfc/nci/core.c
+++ b/net/nfc/nci/core.c
@@ -1516,7 +1516,7 @@ static void nci_rx_work(struct work_struct *work)
 		nfc_send_to_raw_sock(ndev->nfc_dev, skb,
 				     RAW_PAYLOAD_NCI, NFC_DIRECTION_RX);
 
-		if (!nci_plen(skb->data)) {
+		if (!skb->len || !nci_plen(skb->data)) {
 			kfree_skb(skb);
 			break;
 		}
-- 
2.44.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread
[parent not found: <ZhAa7XH4uEM6yj5u@zeus>]

end of thread, other threads:[~2024-04-11  6:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-07  8:05 [PATCH net] nfc: nci: Fix uninit-value in nci_rx_work Ryosuke Yasuoka
2024-04-08  9:55 ` Eric Dumazet
2024-04-11  6:16   ` Ryosuke Yasuoka
     [not found] <ZhAa7XH4uEM6yj5u@zeus>
2024-04-05 15:38 ` syzbot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).