Patch "nfc: nxp-nci: Fix potential memory leak in nxp_nci_send()" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    nfc: nxp-nci: Fix potential memory leak in nxp_nci_send()

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     nfc-nxp-nci-fix-potential-memory-leak-in-nxp_nci_sen.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 9ca79d3e0c9ae3aa501d31b2e06a0c6ad3f5c695
Author: Shang XiaoJing <shangxiaojing@xxxxxxxxxx>
Date:   Thu Oct 27 22:03:30 2022 +0800

    nfc: nxp-nci: Fix potential memory leak in nxp_nci_send()
    
    [ Upstream commit 7bf1ed6aff0f70434bd0cdd45495e83f1dffb551 ]
    
    nxp_nci_send() will call nxp_nci_i2c_write(), and only free skb when
    nxp_nci_i2c_write() failed. However, even if the nxp_nci_i2c_write()
    run succeeds, the skb will not be freed in nxp_nci_i2c_write(). As the
    result, the skb will memleak. nxp_nci_send() should also free the skb
    when nxp_nci_i2c_write() succeeds.
    
    Fixes: dece45855a8b ("NFC: nxp-nci: Add support for NXP NCI chips")
    Signed-off-by: Shang XiaoJing <shangxiaojing@xxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/nfc/nxp-nci/core.c b/drivers/nfc/nxp-nci/core.c
index 7c93d484dc1b..580cb6ecffee 100644
--- a/drivers/nfc/nxp-nci/core.c
+++ b/drivers/nfc/nxp-nci/core.c
@@ -80,10 +80,13 @@ static int nxp_nci_send(struct nci_dev *ndev, struct sk_buff *skb)
 		return -EINVAL;
 
 	r = info->phy_ops->write(info->phy_id, skb);
-	if (r < 0)
+	if (r < 0) {
 		kfree_skb(skb);
+		return r;
+	}
 
-	return r;
+	consume_skb(skb);
+	return 0;
 }
 
 static int nxp_nci_rf_pll_unlocked_ntf(struct nci_dev *ndev,



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux