]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.9-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 May 2022 15:17:11 +0000 (17:17 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 May 2022 15:17:11 +0000 (17:17 +0200)
added patches:
tty-serial-digicolor-fix-possible-null-ptr-deref-in-digicolor_uart_probe.patch

queue-4.9/series
queue-4.9/tty-serial-digicolor-fix-possible-null-ptr-deref-in-digicolor_uart_probe.patch [new file with mode: 0644]

index faf22d464a95f5b0ba078906b19f5b317f7b0fa3..92bf1cbc7d6fcf1290d8998ecb62e8c68b698054 100644 (file)
@@ -16,3 +16,4 @@ usb-serial-qcserial-add-support-for-sierra-wireless-em7590.patch
 usb-serial-option-add-fibocom-l610-modem.patch
 usb-serial-option-add-fibocom-ma510-modem.patch
 ping-fix-address-binding-wrt-vrf.patch
+tty-serial-digicolor-fix-possible-null-ptr-deref-in-digicolor_uart_probe.patch
diff --git a/queue-4.9/tty-serial-digicolor-fix-possible-null-ptr-deref-in-digicolor_uart_probe.patch b/queue-4.9/tty-serial-digicolor-fix-possible-null-ptr-deref-in-digicolor_uart_probe.patch
new file mode 100644 (file)
index 0000000..220101e
--- /dev/null
@@ -0,0 +1,38 @@
+From 447ee1516f19f534a228dda237eddb202f23e163 Mon Sep 17 00:00:00 2001
+From: Yang Yingliang <yangyingliang@huawei.com>
+Date: Thu, 5 May 2022 20:46:21 +0800
+Subject: tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe()
+
+From: Yang Yingliang <yangyingliang@huawei.com>
+
+commit 447ee1516f19f534a228dda237eddb202f23e163 upstream.
+
+It will cause null-ptr-deref when using 'res', if platform_get_resource()
+returns NULL, so move using 'res' after devm_ioremap_resource() that
+will check it to avoid null-ptr-deref.
+And use devm_platform_get_and_ioremap_resource() to simplify code.
+
+Fixes: 5930cb3511df ("serial: driver for Conexant Digicolor USART")
+Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
+Reviewed-by: Baruch Siach <baruch@tkos.co.il>
+Cc: stable <stable@vger.kernel.org>
+Link: https://lore.kernel.org/r/20220505124621.1592697-1-yangyingliang@huawei.com
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/tty/serial/digicolor-usart.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/tty/serial/digicolor-usart.c
++++ b/drivers/tty/serial/digicolor-usart.c
+@@ -476,10 +476,10 @@ static int digicolor_uart_probe(struct p
+               return PTR_ERR(uart_clk);
+       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+-      dp->port.mapbase = res->start;
+       dp->port.membase = devm_ioremap_resource(&pdev->dev, res);
+       if (IS_ERR(dp->port.membase))
+               return PTR_ERR(dp->port.membase);
++      dp->port.mapbase = res->start;
+       irq = platform_get_irq(pdev, 0);
+       if (irq < 0)