From: Florian Westphal <fw@strlen.de>
To: Pablo Neira Ayuso <pablo@netfilter.org>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nf] netfilter: nf_conntrack_expect: zero at allocation time
Date: Fri, 26 Jun 2026 13:58:43 +0200 [thread overview]
Message-ID: <aj5pc-9CKwnuG5iE@strlen.de> (raw)
In-Reply-To: <aj5h9eFJE1glpYfz@chamomile>
Pablo Neira Ayuso <pablo@netfilter.org> wrote:
> On Thu, Jun 25, 2026 at 02:13:53AM +0200, Florian Westphal wrote:
> > There are occasional LLM hints wrt. leaking uninitialized data to
> > userspace via ctnetlink. Just zero at allocation time, expectations are
> > not frequently used these days.
>
> Fine with me. IIRC hints came because of real issue, ie. paths where
> I was missing to initial something.
> > @@ -389,6 +389,7 @@ void nf_ct_expect_init(struct nf_conntrack_expect *exp, unsigned int class,
> > #if IS_ENABLED(CONFIG_NF_NAT)
> > memset(&exp->saved_addr, 0, sizeof(exp->saved_addr));
> > memset(&exp->saved_proto, 0, sizeof(exp->saved_proto));
> > + exp->dir = 0;
>
> Hm. But now area is expect is zeroed, right?
>
> Maybe nf_ct_expect_init() needs to be updated to remove needless
> zeroing too?
See:
> > Intentionally keeps _init as-is because we could theoretically support
> > re-init, so add the missing exp->dir there.
If you say we are guaranteed to always have:
exp = nf_ct_expect_alloc(ct);
nf_ct_expect_init(exp)
then we could remove it. But then I'd question why we even have this
alloc / init split and not:
exp = nf_ct_expect_new(rtp_exp, NF_CT_EXPECT_CLASS_DEFAULT, nf_ct_l3num(ct),
&ct->tuplehash[!dir].tuple.src.u3,
&ct->tuplehash[!dir].tuple.dst.u3,
IPPROTO_UDP, NULL, &rtp_port);
prev parent reply other threads:[~2026-06-26 11:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-25 0:13 [PATCH nf] netfilter: nf_conntrack_expect: zero at allocation time Florian Westphal
2026-06-26 11:26 ` Pablo Neira Ayuso
2026-06-26 11:58 ` Florian Westphal [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=aj5pc-9CKwnuG5iE@strlen.de \
--to=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.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 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.