[PATCH 0/2] device property: fix child iteration issues with secondary fwnodes
From: Xu Yang
Date: Mon May 25 2026 - 02:07:04 EST
This series fixes two issues in the fwnode child iteration logic when
a secondary fwnode is present.
The first patch addresses a refcount imbalance in
software_node_get_next_child(). When a software node is used as a
secondary fwnode, the iteration code may incorrectly decrement the
refcount of child nodes that do not belong to the software node
hierarchy. This results in refcount underflow and possible use-after-free.
The second patch fixes an infinite loop in
fwnode_for_each_child_node(), caused by improper handling of iteration
state across primary and secondary fwnodes. When iterating over children
from both primary and secondary fwnodes, the code may incorrectly
resume iteration from the primary fwnode even when the current child
belongs to the secondary, leading to repeated traversal and a loop.
Both issues are triggered when mixing different fwnode types through the
secondary mechanism, and stem from incorrect assumptions about ownership
and traversal context of child nodes.
---
Xu Yang (2):
software node: fix refcount leak in software_node_get_next_child()
device property: fix infinite loop in fwnode_for_each_child_node()
drivers/base/property.c | 26 ++++++++++++++++++++------
drivers/base/swnode.c | 14 +++++++-------
2 files changed, 27 insertions(+), 13 deletions(-)
---
base-commit: c1ecb239fa3456529a32255359fc78b69eb9d847
change-id: 20260525-fixes_fwnode_iteration-baf62d861305
Best regards,
--
Xu Yang <xu.yang_2@xxxxxxx>