From: Pablo Neira Ayuso <pablo@netfilter.org>
To: XIAO WU <xiaowu.417@qq.com>
Cc: Mark Bundschuh <mkbund@amazon.com>,
stable@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
netfilter-devel@vger.kernel.org, Florian Westphal <fw@strlen.de>
Subject: Re: [PATCH 6.6.y] netfilter: ctnetlink: ensure safe access to master conntrack
Date: Mon, 15 Jun 2026 00:28:41 +0200 [thread overview]
Message-ID: <ai8rGfyUPgAe-eg_@chamomile> (raw)
In-Reply-To: <tencent_DFE6466C14D93204DE976442E459443CB807@qq.com>
Hi,
On Sun, Jun 14, 2026 at 10:38:16PM +0800, XIAO WU wrote:
> Hi,
>
> Pablo Neira Ayuso <pablo@netfilter.org> wrote:
> > Holding reference on the expectation is not sufficient, the master
> > conntrack object can just go away, making exp->master invalid.
> >
> > [...]
> >
> > This patch goes for extending the nf_conntrack_expect_lock section
> > to address this issue for simplicity, in the cases that are described
> > below this is just slightly extending the lock section.
>
> I tested this patch on 6.6.142-g005cf9204c4e with KASAN + lockdep
> enabled and found that the lock extension in ctnetlink_get_expect()
> and ctnetlink_del_expect() does address the expectation-lookup paths,
> but one other path still races:
>
> clean_from_lists()
> nf_ct_remove_expectations() // holds nf_conntrack_expect_lock
> list_for_each_entry_safe(exp, ...)
> nf_ct_remove_expect(exp)
> del_timer(&exp->timeout) // returns false if timer is
> // already executing on another CPU
> // expectation NOT unlinked
> ...
> nf_conntrack_free(ct) // master is freed
>
> // meanwhile, on another CPU:
> nf_ct_expectation_timed_out() // timer callback fires
> nf_ct_unlink_expect_report(exp, ...) // acquires
> nf_conntrack_expect_lock
> nf_ct_expect_event_report(...)
> e = nf_ct_ecache_find(exp->master); // UAF -- master already freed
>
> nf_ct_remove_expect() already has the lockdep annotation added by this
> patch:
>
> > + lockdep_nfct_expect_lock_held();
> > +
> > if (del_timer(&exp->timeout)) {
> > nf_ct_unlink_expect(exp);
> > nf_ct_expect_put(exp);
>
> But holding the lock is not enough: del_timer() cannot cancel a timer
> that is already running on another CPU. When it returns false, the
> expectation stays in the hash table, the master is freed immediately
> afterward, and the in-flight timer callback hits a dangling exp->master.
>
> The same del_timer() pattern also exists in ctnetlink_del_expect(),
> which the patch already extends:
>
> > + spin_lock_bh(&nf_conntrack_expect_lock);
> > +
> > /* bump usage count to 2 */
> > exp = nf_ct_expect_find_get(info->net, &zone, &tuple);
> > [...]
> > /* after list removal, usage count == 1 */
> > - spin_lock_bh(&nf_conntrack_expect_lock);
> > if (del_timer(&exp->timeout)) {
> > nf_ct_unlink_expect_report(exp, NETLINK_CB(skb).portid,
> > nlmsg_report(info->nlh));
>
> This del_timer() call has the same vulnerability -- just holding the
> lock doesn't prevent the timer from executing concurrently before the
> lock was acquired. The timer callback will spin-wait for the lock,
> acquire it after ctnetlink_del_expect() drops it, and then access the
> now-freed (or about-to-be-freed) master.
Thanks for your report.
I started a patch to replace the existing expectation timers by GC
workqueue to address this issue.
prev parent reply other threads:[~2026-06-14 22:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260612202408.1045757-1-mkbund@amazon.com>
2026-06-14 14:38 ` XIAO WU
2026-06-14 22:28 ` Pablo Neira Ayuso [this message]
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=ai8rGfyUPgAe-eg_@chamomile \
--to=pablo@netfilter.org \
--cc=fw@strlen.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mkbund@amazon.com \
--cc=netfilter-devel@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=xiaowu.417@qq.com \
/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®