[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20241128053937.4076797-2-dmitry.torokhov@gmail.com>
Date: Wed, 27 Nov 2024 21:39:35 -0800
From: Dmitry Torokhov <dmitry.torokhov@...il.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
"Rafael J . Wysocki" <rafael.j.wysocki@...el.com>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Heikki Krogerus <heikki.krogerus@...ux.intel.com>,
Daniel Scally <djrscally@...il.com>
Cc: linux-acpi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 2/2] device property: fix UAF in device_get_next_child_node()
fwnode_get_next_child_node() always drops reference to the node passed
as the "child" argument, which makes "child" pointer no longer valid
and we can not use it to scan the secondary node in case there are no
more children in primary one.
Also, it is not obvious whether it is safe to pass children of the
secondary node to fwnode_get_next_child_node() called on the primary
node in subsequent calls to device_get_next_child_node().
Fix the issue by checking whether the child node passed in is indeed a
child of primary or secondary node, and do not call
fwnode_get_next_child_node() for the wrong parent node. Also set the
"child" to NULL after unsuccessful call to fwnode_get_next_child_node()
on primary node to make sure secondary node's children are scanned from
the beginning.
Fixes: 114dbb4fa7c4 ("drivers property: When no children in primary, try secondary")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@...il.com>
---
drivers/base/property.c | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/drivers/base/property.c b/drivers/base/property.c
index 696ba43b8e8a..0ca3c0908b0c 100644
--- a/drivers/base/property.c
+++ b/drivers/base/property.c
@@ -815,11 +815,26 @@ struct fwnode_handle *device_get_next_child_node(const struct device *dev,
}
/* Try to find a child in primary fwnode */
- next = fwnode_get_next_child_node(fwnode, child);
- if (next)
- return next;
+ if (!child || fwnode_get_parent(child) == fwnode) {
+ next = fwnode_get_next_child_node(fwnode, child);
+ if (next)
+ return next;
+ /*
+ * We ran out of children in primary - reset the child
+ * node to start from the beginning when scanning secondary
+ * node.
+ */
+ child = NULL;
+ }
/* When no more children in primary, continue with secondary */
+
+ if (IS_ERR_OR_NULL(fwnode->secondary) ||
+ (child && fwnode_get_parent(child) != fwnode->secondary)) {
+ fwnode_handle_put(child);
+ return NULL;
+ }
+
return fwnode_get_next_child_node(fwnode->secondary, child);
}
EXPORT_SYMBOL_GPL(device_get_next_child_node);
--
2.47.0.338.g60cca15819-goog
Powered by blists - more mailing lists