]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
6.1-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Mar 2023 11:26:15 +0000 (12:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Mar 2023 11:26:15 +0000 (12:26 +0100)
added patches:
nfc-change-order-inside-nfc_se_io-error-path.patch

queue-6.1/nfc-change-order-inside-nfc_se_io-error-path.patch [new file with mode: 0644]
queue-6.1/series

diff --git a/queue-6.1/nfc-change-order-inside-nfc_se_io-error-path.patch b/queue-6.1/nfc-change-order-inside-nfc_se_io-error-path.patch
new file mode 100644 (file)
index 0000000..80f3ee0
--- /dev/null
@@ -0,0 +1,38 @@
+From 7d834b4d1ab66c48e8c0810fdeadaabb80fa2c81 Mon Sep 17 00:00:00 2001
+From: Fedor Pchelkin <pchelkin@ispras.ru>
+Date: Tue, 7 Mar 2023 00:26:50 +0300
+Subject: nfc: change order inside nfc_se_io error path
+
+From: Fedor Pchelkin <pchelkin@ispras.ru>
+
+commit 7d834b4d1ab66c48e8c0810fdeadaabb80fa2c81 upstream.
+
+cb_context should be freed on the error path in nfc_se_io as stated by
+commit 25ff6f8a5a3b ("nfc: fix memory leak of se_io context in
+nfc_genl_se_io").
+
+Make the error path in nfc_se_io unwind everything in reverse order, i.e.
+free the cb_context after unlocking the device.
+
+Suggested-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
+Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
+Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
+Link: https://lore.kernel.org/r/20230306212650.230322-1-pchelkin@ispras.ru
+Signed-off-by: Jakub Kicinski <kuba@kernel.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ net/nfc/netlink.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/net/nfc/netlink.c
++++ b/net/nfc/netlink.c
+@@ -1446,8 +1446,8 @@ static int nfc_se_io(struct nfc_dev *dev
+       return rc;
+ error:
+-      kfree(cb_context);
+       device_unlock(&dev->dev);
++      kfree(cb_context);
+       return rc;
+ }
index 211e17d9d796fe6dc8ce87d803f4f3b7b338b2d4..a09cecf1eda9b91d80a8fe9d471cb2eaf4a7f41f 100644 (file)
@@ -22,3 +22,4 @@ ext4-fix-warning-in-ext4_update_inline_data.patch
 ext4-zero-i_disksize-when-initializing-the-bootloader-inode.patch
 hid-core-provide-new-max_buffer_size-attribute-to-over-ride-the-default.patch
 hid-uhid-over-ride-the-default-maximum-data-buffer-value-with-our-own.patch
+nfc-change-order-inside-nfc_se_io-error-path.patch