nfc: nci: Fix uninit-value in nci_rx_work
authorRyosuke Yasuoka <ryasuoka@redhat.com>
Sun, 19 May 2024 09:43:03 +0000 (18:43 +0900)
committerDavid S. Miller <davem@davemloft.net>
Mon, 20 May 2024 10:41:26 +0000 (11:41 +0100)
syzbot reported the following uninit-value access issue [1]

nci_rx_work() parses received packet from ndev->rx_q. It should be
validated header size, payload size and total packet size before
processing the packet. If an invalid packet is detected, it 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>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/nfc/nci/core.c

index b133dc55304cebf412b3df8959d609cb12ec88f5..7a9897fbf4f411c1653975ca3d76303b2c06cc88 100644 (file)
@@ -1463,6 +1463,19 @@ int nci_core_ntf_packet(struct nci_dev *ndev, __u16 opcode,
                                 ndev->ops->n_core_ops);
 }
 
+static bool nci_valid_size(struct sk_buff *skb)
+{
+       BUILD_BUG_ON(NCI_CTRL_HDR_SIZE != NCI_DATA_HDR_SIZE);
+       unsigned int hdr_size = NCI_CTRL_HDR_SIZE;
+
+       if (skb->len < hdr_size ||
+           !nci_plen(skb->data) ||
+           skb->len < hdr_size + nci_plen(skb->data)) {
+               return false;
+       }
+       return true;
+}
+
 /* ---- NCI TX Data worker thread ---- */
 
 static void nci_tx_work(struct work_struct *work)
@@ -1516,7 +1529,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 (!nci_valid_size(skb)) {
                        kfree_skb(skb);
                        kcov_remote_stop();
                        break;