From: Florian Westphal <fw@strlen.de>
To: netfilter-devel@vger.kernel.org
Cc: sbrivio@redhat.com, Yiming Qian <yimingqian591@gmail.com>
Subject: Re: [PATCH nf 1/2] netfilter: nft_set_pipapo: split gc in unlink and reclaim phase
Date: Wed, 4 Mar 2026 00:50:43 +0100 [thread overview]
Message-ID: <aadz0xl4LE797LS6@strlen.de> (raw)
In-Reply-To: <20260303190218.19781-2-fw@strlen.de>
Florian Westphal <fw@strlen.de> wrote:
> index eaab422aa56a..4a5baebabaa5 100644
> --- a/net/netfilter/nft_set_pipapo.h
> +++ b/net/netfilter/nft_set_pipapo.h
> @@ -156,12 +156,14 @@ struct nft_pipapo_match {
> * @clone: Copy where pending insertions and deletions are kept
> * @width: Total bytes to be matched for one packet, including padding
> * @last_gc: Timestamp of last garbage collection run, jiffies
> + * @to_free: single-linked list of elements to queue up for memory reclaim
> */
> struct nft_pipapo {
> struct nft_pipapo_match __rcu *match;
> struct nft_pipapo_match *clone;
> int width;
> unsigned long last_gc;
> + struct nft_pipapo_elem *to_free;
> };
>
> struct nft_pipapo_elem;
> @@ -169,10 +171,12 @@ struct nft_pipapo_elem;
> /**
> * struct nft_pipapo_elem - API-facing representation of single set element
> * @priv: element placeholder
> + * @to_free: list of elements waiting for mem reclaim
> * @ext: nftables API extensions
> */
> struct nft_pipapo_elem {
> struct nft_elem_priv priv;
> + struct nft_pipapo_elem *to_free;
> struct nft_set_ext ext;
Pablo points out that we don't need this extra member.
Instead we'll chain nft_trans_gc containers via their list_head
members and just defer posting the gc containers to the gc engine.
So overall idea remains the same.
next prev parent reply other threads:[~2026-03-03 23:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-03 19:02 [PATCH nf 0/2] netfilter: nft_set_pipapo: fix UaF during gc walk Florian Westphal
2026-03-03 19:02 ` [PATCH nf 1/2] netfilter: nft_set_pipapo: split gc in unlink and reclaim phase Florian Westphal
2026-03-03 23:50 ` Florian Westphal [this message]
2026-03-03 19:02 ` [PATCH nf 2/2] netfilter: nft_set_pipapo: prevent soft lockup during gc walk Florian Westphal
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=aadz0xl4LE797LS6@strlen.de \
--to=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
--cc=sbrivio@redhat.com \
--cc=yimingqian591@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.