From: Chengfeng Ye <nicoyip.dev@gmail.com>
To: "David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Simon Horman <horms@kernel.org>, Mark Brown <broonie@kernel.org>,
Christian Brauner <brauner@kernel.org>,
Antoine Tenart <atenart@kernel.org>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
Chengfeng Ye <nicoyip.dev@gmail.com>,
stable@vger.kernel.org
Subject: [PATCH net] net-sysfs: release the TX queue tracker before allowing reuse
Date: Sun, 27 Sep 2026 01:33:15 +0800 [thread overview]
Message-ID: <20260926173315.2452612-1-nicoyip.dev@gmail.com> (raw)
An interrupted sysfs_rtnl_lock() can drop the last kobject reference to a
removed TX queue without holding RTNL. netdev_queue_release() clears the
kobject before releasing queue->dev_tracker, allowing the queue to be
re-added while the old release still needs the shared tracker slot:
CPU 0 CPU 1
netdev_queue_release()
memset(kobj, 0, sizeof(*kobj))
netdev_queue_add_kobject()
state_initialized is clear
netdev_hold() installs new tracker
netdev_put() releases the new tracker
With CONFIG_NET_DEV_REFCNT_TRACKER enabled, the old tracker is leaked and
the new lifetime's tracker is released prematurely. A later queue release
then reports a double release. The numeric device references remain
balanced.
The kernel reported:
ref_tracker: reference already released.
ref_tracker: allocated in:
netdev_queue_update_kobjects+0x23d/0x5c0
netif_set_real_num_tx_queues+0x111/0x820
veth_set_channels+0x327/0x930
ethtool_set_channels+0x3ee/0x490
ref_tracker: freed in:
netdev_queue_release+0xbd/0x130
kobject_put+0x1f9/0x280
sysfs_rtnl_lock+0x18b/0x1f0
xps_rxqs_show+0xad/0x250
WARNING: lib/ref_tracker.c:322 at ref_tracker_free+0x49e/0x6d0
Call Trace:
netdev_queue_release+0xbd/0x130
kobject_put+0x1f9/0x280
netdev_queue_update_kobjects+0x3f9/0x5c0
netif_set_real_num_tx_queues+0x111/0x820
veth_set_channels+0x327/0x930
ethtool_set_channels+0x3ee/0x490
Release the tracker before clearing the kobject. Use a full memory barrier
to order the tracker access before clearing state_initialized, paired with
the control dependency from that check to the new tracker allocation.
Keep the device reference until after the reset so that the queue storage
remains alive throughout the callback's accesses.
Fixes: b0b6fcfa6ad8 ("net-sysfs: remove rtnl_trylock from queue attributes")
Cc: stable@vger.kernel.org
Signed-off-by: Chengfeng Ye <nicoyip.dev@gmail.com>
---
net/core/net-sysfs.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 352173df7578..b9aadc4c000c 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -1906,8 +1906,11 @@ static void netdev_queue_release(struct kobject *kobj)
{
struct netdev_queue *queue = to_netdev_queue(kobj);
+ netdev_tracker_free(queue->dev, &queue->dev_tracker);
+ /* Finish using the tracker before allowing the queue to be re-added. */
+ smp_mb();
memset(kobj, 0, sizeof(*kobj));
- netdev_put(queue->dev, &queue->dev_tracker);
+ __dev_put(queue->dev);
}
static const struct ns_common *netdev_queue_namespace(const struct kobject *kobj)
--
2.43.0
reply other threads:[~2026-09-26 17:33 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260926173315.2452612-1-nicoyip.dev@gmail.com \
--to=nicoyip.dev@gmail.com \
--cc=atenart@kernel.org \
--cc=brauner@kernel.org \
--cc=broonie@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®