From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DD12438A73C; Sun, 7 Jun 2026 11:00:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780830051; cv=none; b=QDA1elE027FtvHVTdlzslh94Xz7nbI1Ru5SaPV6IpJwg1w2Cacp+AX7pEBJQ61t+pk6GJtzQdUCSYL2vpEWGQUm2JVIfIUUGxU/YgXGDjSg7LYLolSq2brdjNoF/YjYO46nZ2FO53uEIPu8s5SlK6CaES9mBHmdgv0e2wfNBe0w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780830051; c=relaxed/simple; bh=YpwNCRRw18bf+TTJiYNbu/sUkTfT/PTfabOfsvy6d5U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Inw9DsCvsxftY1QiXYzv1wPeu0pL75tOU8raDh+J2+P3mFfed7Mc4FRWjco9evliiUXbOmbwKC75i8sMBp2vJw/2KcTn9IU2yN5bcilFv0YQl6BuYFsiWRr6Rr8IjUtT7IAYDwP7EgFvQXHXrzz1xCu32SfdYDmVEhpcPvxWYTU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DQxelXY/; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="DQxelXY/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 17A2A1F00893; Sun, 7 Jun 2026 11:00:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1780830049; bh=klChloZbnkVGCgRC07GuvH0/9pDCGFfN3dc2Na8ikhg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DQxelXY/uPLa0BBmiZsHbzHCBnIQ/jrTW69fbENFG99kSw5XjUKdBA+Hv2dnhDWCS 0Z8NihGcKA2D/9cakMlwv2wG0nx0WAf8FYRzgnmfjpZ/4oZxAzCGXKgfvFk6qRJhVl rieuMA4255NzJEMqfxVyosDY7fM8Vq4MH/IUQHxw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Michael Bommarito , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.12 277/307] net: hsr: defer node table free until after RCU readers Date: Sun, 7 Jun 2026 12:01:14 +0200 Message-ID: <20260607095737.902468229@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260607095727.647295505@linuxfoundation.org> References: <20260607095727.647295505@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Michael Bommarito [ Upstream commit aaec7096f9961eb223b5b149abe9495525c205d9 ] HSR node-list and node-status generic-netlink operations run under rcu_read_lock(). They walk hsr->node_db through hsr_get_next_node() and hsr_get_node_data(), but RTM_DELLINK teardown removes the same node table with plain list_del() and frees each node immediately. That lets a generic-netlink reader hold a struct hsr_node pointer across hsr_dellink(). In a KASAN build, widening the reader window after hsr_get_next_node() obtains the node reproduces a slab-use-after-free when the reader copies node->macaddress_A; the freeing stack is hsr_del_nodes() from hsr_dellink(). Use list_del_rcu() and defer the free through the existing hsr_free_node_rcu() callback. This matches the lifetime rule used by the HSR prune paths, which already delete nodes with list_del_rcu() and call_rcu(). Fixes: b9a1e627405d ("hsr: implement dellink to clean up resources") Cc: stable@vger.kernel.org # v5.3+ Signed-off-by: Michael Bommarito Link: https://patch.msgid.link/20260513233838.3064715-2-michael.bommarito@gmail.com Signed-off-by: Jakub Kicinski [ replaced `list_del`+`call_rcu(hsr_free_node_rcu)` with `list_del_rcu`+`kfree_rcu(node, rcu_head)` ] Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- net/hsr/hsr_framereg.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/net/hsr/hsr_framereg.c +++ b/net/hsr/hsr_framereg.c @@ -131,8 +131,10 @@ void hsr_del_nodes(struct list_head *nod struct hsr_node *node; struct hsr_node *tmp; - list_for_each_entry_safe(node, tmp, node_db, mac_list) - kfree(node); + list_for_each_entry_safe(node, tmp, node_db, mac_list) { + list_del_rcu(&node->mac_list); + kfree_rcu(node, rcu_head); + } } void prp_handle_san_frame(bool san, enum hsr_port_type port,