lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Tue,  7 Mar 2023 13:01:16 +0800
From:   Xujun Leng <lengxujun2007@....com>
To:     gregkh@...uxfoundation.org, rafael@...nel.org
Cc:     linux-kernel@...r.kernel.org, Xujun Leng <lengxujun2007@....com>
Subject: [PATCH] driver core: platform: added arguments check for platform_device_add_resources()

In the follow two cases, platform_device_add_resources() can lead an
invalid address access:
1) If (!res && num > 0), pdev->resource will be set to NULL but
   pdev->num_resources > 0, then a later platform_get_resource() will
   cause invalid address access.
2) If (res && num == 0), because num == 0 cause kmalloc_slab() returns
   ZERO_SIZE_PTR, then kmemdup() will copy data to the invalid address
   ZERO_SIZE_PTR.

Signed-off-by: Xujun Leng <lengxujun2007@....com>
---
 drivers/base/platform.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index 77510e4f47de..a060941c3076 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -606,6 +606,9 @@ int platform_device_add_resources(struct platform_device *pdev,
 {
 	struct resource *r = NULL;
 
+	if ((!res && num > 0) || (res && num == 0))
+		return -EINVAL;
+
 	if (res) {
 		r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
 		if (!r)
-- 
2.25.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ