From: Paolo Abeni <pabeni@redhat.com>
To: netdev@vger.kernel.org
Cc: Jamal Hadi Salim <jhs@mojatatu.com>,
Jiri Pirko <jiri@resnulli.us>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Simon Horman <horms@kernel.org>,
Henrik Steen <henrist@henrist.net>,
Olivier Tilmans <olivier.tilmans@nokia.com>,
Bob Briscoe <research@bobbriscoe.net>,
Olga Albisser <olga@albisser.org>,
GangMin Kim <km.kim1503@gmail.com>
Subject: Re: [PATCH net] net_sched: act_ct: drop all packets when not attached to ingress
Date: Tue, 17 Feb 2026 11:42:32 +0100 [thread overview]
Message-ID: <614836d3-c3e3-4f33-8bc8-de00a424cf18@redhat.com> (raw)
In-Reply-To: <674b8cbfc385c6f37fb29a1de08d8fe5c2b0fbee.1771321118.git.pabeni@redhat.com>
On 2/17/26 10:38 AM, Paolo Abeni wrote:
> Since the blamed commit below, classify can return TC_ACT_CONSUMED while
> the current skb being held by the defragmentation engine. As reported by
> GangMin Kim, if such packet is that may cause a UaF when the defrag engine
> later on tries to tuch again such packet.
>
> act_ct was never meant to be used outside of the ingress path. Making
> defrag really works for act_ct outside such constraints range from very
> difficult to completely impossible.
>
> Address the issue making act_ct drop any packet when not attached to the
> ingress path and additionally emit a warning about the bad
> configuration.
>
> Reported-by: GangMin Kim <km.kim1503@gmail.com>
> Fixes: 8f9516daedd6 ("sched: Add enqueue/dequeue of dualpi2 qdisc")
Whoops, no idea how that wrong tag landed there
> CC: stable@vger.kernel.org
> Link: https://patch.msgid.link/16f6b264373ad60ab18eb8525809e7267442afa7.1770394932.git.pabeni@redhat.com
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
> ---
> Catching the bad configuration at runtime instead of init time to reduce
> complexity
> ---
> net/sched/act_ct.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/net/sched/act_ct.c b/net/sched/act_ct.c
> index 81d488655793..e8eb0d195f4a 100644
> --- a/net/sched/act_ct.c
> +++ b/net/sched/act_ct.c
> @@ -987,6 +987,11 @@ TC_INDIRECT_SCOPE int tcf_ct_act(struct sk_buff *skb, const struct tc_action *a,
> tcf_lastuse_update(&c->tcf_tm);
> tcf_action_update_bstats(&c->common, skb);
>
> + if (!skb_at_tc_ingress(skb)) {
> + pr_warn_once("act_CT should be attached at ingress!\n");
> + goto drop;
> + }
> +
> if (clear) {
> qdisc_skb_cb(skb)->post_ct = false;
> ct = nf_ct_get(skb, &ctinfo);
> @@ -1109,6 +1114,7 @@ TC_INDIRECT_SCOPE int tcf_ct_act(struct sk_buff *skb, const struct tc_action *a,
> out_frag:
> if (err != -EINPROGRESS)
> tcf_action_inc_drop_qstats(&c->common);
> +
This also must be dropped.
I'll send a v2 at due time.
/P
next prev parent reply other threads:[~2026-02-17 10:42 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-17 9:38 [PATCH net] net_sched: act_ct: drop all packets when not attached to ingress Paolo Abeni
2026-02-17 10:42 ` Paolo Abeni [this message]
2026-02-17 14:49 ` Ilya Maximets
2026-02-17 15:52 ` Paolo Abeni
2026-02-17 19:37 ` Ilya Maximets
2026-02-18 14:28 ` Jamal Hadi Salim
2026-02-18 16:15 ` Ilya Maximets
2026-02-18 18:31 ` Jamal Hadi Salim
2026-02-18 18:44 ` Jamal Hadi Salim
2026-02-18 20:43 ` Paolo Abeni
2026-02-19 11:46 ` Ilya Maximets
2026-02-19 14:16 ` Jamal Hadi Salim
2026-02-19 20:13 ` Jamal Hadi Salim
2026-02-20 12:24 ` Victor Nogueira
2026-02-20 13:41 ` Ilya Maximets
2026-02-20 16:12 ` Victor Nogueira
2026-02-17 15:28 ` Jakub Kicinski
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=614836d3-c3e3-4f33-8bc8-de00a424cf18@redhat.com \
--to=pabeni@redhat.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=henrist@henrist.net \
--cc=horms@kernel.org \
--cc=jhs@mojatatu.com \
--cc=jiri@resnulli.us \
--cc=km.kim1503@gmail.com \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=olga@albisser.org \
--cc=olivier.tilmans@nokia.com \
--cc=research@bobbriscoe.net \
/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