netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net/sched: act_ct: fix ref leak when switching zones
@ 2022-03-24 19:22 Marcelo Ricardo Leitner
  2022-03-27  0:10 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Marcelo Ricardo Leitner @ 2022-03-24 19:22 UTC (permalink / raw)
  To: netdev; +Cc: Florian Westphal, Paul Blakey, Jamal Hadi Salim, Cong Wang

When switching zones or network namespaces without doing a ct clear in
between, it is now leaking a reference to the old ct entry. That's
because tcf_ct_skb_nfct_cached() returns false and
tcf_ct_flow_table_lookup() may simply overwrite it.

The fix is to, as the ct entry is not reusable, free it already at
tcf_ct_skb_nfct_cached().

Reported-by: Florian Westphal <fw@strlen.de>
Fixes: 2f131de361f6 ("net/sched: act_ct: Fix flow table lookup after ct clear or switching zones")
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
---
 net/sched/act_ct.c | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/net/sched/act_ct.c b/net/sched/act_ct.c
index ec19f625863a04229a9a3894a423e6dd562844a1..25718acc0ff00178fa42d6169d930351e565b104 100644
--- a/net/sched/act_ct.c
+++ b/net/sched/act_ct.c
@@ -605,22 +605,25 @@ static bool tcf_ct_skb_nfct_cached(struct net *net, struct sk_buff *skb,
 	if (!ct)
 		return false;
 	if (!net_eq(net, read_pnet(&ct->ct_net)))
-		return false;
+		goto drop_ct;
 	if (nf_ct_zone(ct)->id != zone_id)
-		return false;
+		goto drop_ct;
 
 	/* Force conntrack entry direction. */
 	if (force && CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL) {
 		if (nf_ct_is_confirmed(ct))
 			nf_ct_kill(ct);
 
-		nf_ct_put(ct);
-		nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
-
-		return false;
+		goto drop_ct;
 	}
 
 	return true;
+
+drop_ct:
+	nf_ct_put(ct);
+	nf_ct_set(skb, NULL, IP_CT_UNTRACKED);
+
+	return false;
 }
 
 /* Trim the skb to the length specified by the IP/IPv6 header,
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH net] net/sched: act_ct: fix ref leak when switching zones
  2022-03-24 19:22 [PATCH net] net/sched: act_ct: fix ref leak when switching zones Marcelo Ricardo Leitner
@ 2022-03-27  0:10 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-03-27  0:10 UTC (permalink / raw)
  To: Marcelo Ricardo Leitner; +Cc: netdev, fw, paulb, jhs, xiyou.wangcong

Hello:

This patch was applied to netdev/net.git (master)
by David S. Miller <davem@davemloft.net>:

On Thu, 24 Mar 2022 16:22:10 -0300 you wrote:
> When switching zones or network namespaces without doing a ct clear in
> between, it is now leaking a reference to the old ct entry. That's
> because tcf_ct_skb_nfct_cached() returns false and
> tcf_ct_flow_table_lookup() may simply overwrite it.
> 
> The fix is to, as the ct entry is not reusable, free it already at
> tcf_ct_skb_nfct_cached().
> 
> [...]

Here is the summary with links:
  - [net] net/sched: act_ct: fix ref leak when switching zones
    https://git.kernel.org/netdev/net/c/bcb74e132a76

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-27  0:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-24 19:22 [PATCH net] net/sched: act_ct: fix ref leak when switching zones Marcelo Ricardo Leitner
2022-03-27  0:10 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).