* [PATCH nf-next] netfilter: flowtable: check namespace before iterating flows
@ 2026-09-09 8:17 Qingfang Deng
2026-09-09 11:16 ` Phil Sutter
0 siblings, 1 reply; 3+ messages in thread
From: Qingfang Deng @ 2026-09-09 8:17 UTC (permalink / raw)
To: Pablo Neira Ayuso, Florian Westphal, Phil Sutter,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Simon Horman, netfilter-devel, coreteam, netdev, linux-kernel
Cc: Qingfang Deng
nf_flow_table_cleanup() walks every registered flow table, checking the
network namespace for each flow in nf_flow_table_do_cleanup(). As a
result, tables in other namespaces are still iterated and their cleanup
work is flushed.
Compare the flow table's namespace with the device's namespace in
nf_flow_table_cleanup() and skip nonmatching tables. This avoids
unnecessary iteration and work flushing, and leaves the per-flow cleanup
callback to check only the interface index.
Signed-off-by: Qingfang Deng <qingfang.deng@linux.dev>
---
net/netfilter/nf_flow_table_core.c | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/net/netfilter/nf_flow_table_core.c b/net/netfilter/nf_flow_table_core.c
index 03241d4bfd5e..52cca7a8f141 100644
--- a/net/netfilter/nf_flow_table_core.c
+++ b/net/netfilter/nf_flow_table_core.c
@@ -730,14 +730,9 @@ static void nf_flow_table_do_cleanup(struct nf_flowtable *flow_table,
{
struct net_device *dev = data;
- if (!dev) {
- flow_offload_teardown(flow);
- return;
- }
-
- if (net_eq(nf_ct_net(flow->ct), dev_net(dev)) &&
- (flow->tuplehash[0].tuple.iifidx == dev->ifindex ||
- flow->tuplehash[1].tuple.iifidx == dev->ifindex))
+ if (!dev ||
+ flow->tuplehash[0].tuple.iifidx == dev->ifindex ||
+ flow->tuplehash[1].tuple.iifidx == dev->ifindex)
flow_offload_teardown(flow);
}
@@ -754,8 +749,10 @@ void nf_flow_table_cleanup(struct net_device *dev)
struct nf_flowtable *flowtable;
mutex_lock(&flowtable_lock);
- list_for_each_entry(flowtable, &flowtables, list)
- nf_flow_table_gc_cleanup(flowtable, dev);
+ list_for_each_entry(flowtable, &flowtables, list) {
+ if (net_eq(read_pnet(&flowtable->net), dev_net(dev)))
+ nf_flow_table_gc_cleanup(flowtable, dev);
+ }
mutex_unlock(&flowtable_lock);
}
EXPORT_SYMBOL_GPL(nf_flow_table_cleanup);
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH nf-next] netfilter: flowtable: check namespace before iterating flows
2026-09-09 8:17 [PATCH nf-next] netfilter: flowtable: check namespace before iterating flows Qingfang Deng
@ 2026-09-09 11:16 ` Phil Sutter
2026-09-09 14:18 ` Qingfang Deng
0 siblings, 1 reply; 3+ messages in thread
From: Phil Sutter @ 2026-09-09 11:16 UTC (permalink / raw)
To: Qingfang Deng
Cc: Pablo Neira Ayuso, Florian Westphal, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
netfilter-devel, coreteam, netdev, linux-kernel
Hi,
On Wed, Sep 09, 2026 at 04:17:04PM +0800, Qingfang Deng wrote:
> nf_flow_table_cleanup() walks every registered flow table, checking the
> network namespace for each flow in nf_flow_table_do_cleanup(). As a
> result, tables in other namespaces are still iterated and their cleanup
> work is flushed.
>
> Compare the flow table's namespace with the device's namespace in
> nf_flow_table_cleanup() and skip nonmatching tables. This avoids
> unnecessary iteration and work flushing, and leaves the per-flow cleanup
> callback to check only the interface index.
>
> Signed-off-by: Qingfang Deng <qingfang.deng@linux.dev>
> ---
> net/netfilter/nf_flow_table_core.c | 17 +++++++----------
> 1 file changed, 7 insertions(+), 10 deletions(-)
>
> diff --git a/net/netfilter/nf_flow_table_core.c b/net/netfilter/nf_flow_table_core.c
> index 03241d4bfd5e..52cca7a8f141 100644
> --- a/net/netfilter/nf_flow_table_core.c
> +++ b/net/netfilter/nf_flow_table_core.c
> @@ -730,14 +730,9 @@ static void nf_flow_table_do_cleanup(struct nf_flowtable *flow_table,
> {
> struct net_device *dev = data;
>
> - if (!dev) {
> - flow_offload_teardown(flow);
> - return;
> - }
> -
> - if (net_eq(nf_ct_net(flow->ct), dev_net(dev)) &&
> - (flow->tuplehash[0].tuple.iifidx == dev->ifindex ||
> - flow->tuplehash[1].tuple.iifidx == dev->ifindex))
> + if (!dev ||
> + flow->tuplehash[0].tuple.iifidx == dev->ifindex ||
> + flow->tuplehash[1].tuple.iifidx == dev->ifindex)
> flow_offload_teardown(flow);
> }
>
> @@ -754,8 +749,10 @@ void nf_flow_table_cleanup(struct net_device *dev)
> struct nf_flowtable *flowtable;
>
> mutex_lock(&flowtable_lock);
> - list_for_each_entry(flowtable, &flowtables, list)
> - nf_flow_table_gc_cleanup(flowtable, dev);
> + list_for_each_entry(flowtable, &flowtables, list) {
> + if (net_eq(read_pnet(&flowtable->net), dev_net(dev)))
> + nf_flow_table_gc_cleanup(flowtable, dev);
> + }
A second caller of nf_flow_table_gc_cleanup is
nf_flow_table_indr_cleanup in net/netfilter/nf_flow_table_offload.c. Is
the net_eq-check needed there as well? If not, could you please update
the patch description with a statement explaining why?
Thanks, Phil
> mutex_unlock(&flowtable_lock);
> }
> EXPORT_SYMBOL_GPL(nf_flow_table_cleanup);
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH nf-next] netfilter: flowtable: check namespace before iterating flows
2026-09-09 11:16 ` Phil Sutter
@ 2026-09-09 14:18 ` Qingfang Deng
0 siblings, 0 replies; 3+ messages in thread
From: Qingfang Deng @ 2026-09-09 14:18 UTC (permalink / raw)
To: Phil Sutter
Cc: Pablo Neira Ayuso, Florian Westphal, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
netfilter-devel, coreteam, netdev, linux-kernel
Hi,
On 9/9/2026 7:16 PM, Phil Sutter wrote:
> A second caller of nf_flow_table_gc_cleanup is
> nf_flow_table_indr_cleanup in net/netfilter/nf_flow_table_offload.c. Is
> the net_eq-check needed there as well? If not, could you please update
> the patch description with a statement explaining why?
No. Its callback uses the device bound to the flowtable, which belongs
to the same namespace.
Kind regards,
Qingfang
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-09 14:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-09 8:17 [PATCH nf-next] netfilter: flowtable: check namespace before iterating flows Qingfang Deng
2026-09-09 11:16 ` Phil Sutter
2026-09-09 14:18 ` Qingfang Deng
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®