]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net:nfc:digital: Fix a double free in digital_tg_recv_dep_req
authorLv Yunlong <lyl2019@mail.ustc.edu.cn>
Tue, 27 Apr 2021 16:22:58 +0000 (09:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 May 2021 08:38:26 +0000 (10:38 +0200)
[ Upstream commit 75258586793efc521e5dd52a5bf6c7a4cf7002be ]

In digital_tg_recv_dep_req, it calls nfc_tm_data_received(..,resp).
If nfc_tm_data_received() failed, the callee will free the resp via
kfree_skb() and return error. But in the exit branch, the resp
will be freed again.

My patch sets resp to NULL if nfc_tm_data_received() failed, to
avoid the double free.

Fixes: 1c7a4c24fbfd9 ("NFC Digital: Add target NFC-DEP support")
Signed-off-by: Lv Yunlong <lyl2019@mail.ustc.edu.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/nfc/digital_dep.c

index f72be7433df35fc1acfa3105a151b40876c0d47f..46375ff214c03641dc14927e3a60b3c9f99c1be0 100644 (file)
@@ -1187,6 +1187,8 @@ static void digital_tg_recv_dep_req(struct nfc_digital_dev *ddev, void *arg,
        }
 
        rc = nfc_tm_data_received(ddev->nfc_dev, resp);
+       if (rc)
+               resp = NULL;
 
 exit:
        kfree_skb(ddev->chaining_skb);