From: Julian Anastasov <ja@ssi.bg>
To: Chengfeng Ye <nicoyip.dev@gmail.com>
Cc: Simon Horman <horms@verge.net.au>,
Pablo Neira Ayuso <pablo@netfilter.org>,
Florian Westphal <fw@strlen.de>, Phil Sutter <phil@nwl.cc>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
netdev@vger.kernel.org, lvs-devel@vger.kernel.org,
netfilter-devel@vger.kernel.org, coreteam@netfilter.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH net] ipvs: Defer application parent freeing until after RCU readers
Date: Sat, 26 Sep 2026 22:48:40 +0300 (EEST) [thread overview]
Message-ID: <7ee83494-378a-ea25-6f31-e3164d533594@ssi.bg> (raw)
In-Reply-To: <20260926175129.2612644-1-nicoyip.dev@gmail.com>
Hello,
On Sun, 27 Sep 2026, Chengfeng Ye wrote:
> unregister_ip_vs_app() removes each incarnation from its protocol list and
> uses call_rcu() to defer freeing it, but frees the parent application
> immediately. An RCU reader that already found an incarnation can still
> access the parent through inc->app in ip_vs_app_inc_get().
>
> During FTP helper module unload, the following interleaving is possible:
>
> CPU 0 (RCU reader) CPU 1 (module unload)
> tcp_app_conn_bind()
> find inc in protocol list
> unregister_ip_vs_app()
> ip_vs_app_inc_release(inc)
> list_del_rcu(&inc->p_list)
> call_rcu(&inc->rcu_head, ...)
> kfree(a)
> ip_vs_app_inc_get(inc)
> try_module_get(inc->app->module)
>
> The helper module is already going away, so try_module_get() would fail,
> but evaluating its argument first reads the freed parent. The subsequent
> rcu_barrier() in pernet unregistration cannot protect this earlier free.
> KASAN reported:
>
> BUG: KASAN: slab-use-after-free in ip_vs_app_inc_get+0x7c/0x90
> Call Trace:
> ip_vs_app_inc_get+0x7c/0x90
> tcp_app_conn_bind+0x1bc/0x290
> ip_vs_conn_new+0x1915/0x20d0
> ip_vs_schedule+0x697/0xea0
> tcp_conn_schedule+0x489/0x820
> ip_vs_in_hook+0x7bf/0x1f40
> Allocated by task 88:
> kmemdup_noprof+0x20/0x50
> register_ip_vs_app+0x12d/0x2c0
> __ip_vs_ftp_init+0x56/0x160 [ip_vs_ftp]
> Freed by task 104:
> kfree+0x131/0x3c0
> unregister_ip_vs_app+0x2f4/0x5b0
> unregister_pernet_operations+0x232/0x490
> unregister_pernet_subsys+0x1c/0x30
> __do_sys_delete_module+0x346/0x510
>
> Use kfree_rcu() with the existing rcu_head to keep the parent alive until
> these readers finish. Successful helper references already prevent normal
> module unload, and incarnation RCU callbacks do not access the parent.
>
> Fixes: 363c97d7435e ("ipvs: convert app locks")
> Cc: stable@vger.kernel.org
> Signed-off-by: Chengfeng Ye <nicoyip.dev@gmail.com>
Looks good to me for the nf tree, thanks!
Acked-by: Julian Anastasov <ja@ssi.bg>
> ---
> net/netfilter/ipvs/ip_vs_app.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/netfilter/ipvs/ip_vs_app.c b/net/netfilter/ipvs/ip_vs_app.c
> index 11cbdbaf561d..2c1b47702da2 100644
> --- a/net/netfilter/ipvs/ip_vs_app.c
> +++ b/net/netfilter/ipvs/ip_vs_app.c
> @@ -242,7 +242,7 @@ void unregister_ip_vs_app(struct netns_ipvs *ipvs, struct ip_vs_app *app)
> }
>
> list_del(&a->a_list);
> - kfree(a);
> + kfree_rcu(a, rcu_head);
>
> /* decrease the module use count */
> ip_vs_use_count_dec();
> --
> 2.43.0
Regards
--
Julian Anastasov <ja@ssi.bg>
prev parent reply other threads:[~2026-09-26 19:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-26 17:51 Chengfeng Ye
2026-09-26 19:48 ` Julian Anastasov [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=7ee83494-378a-ea25-6f31-e3164d533594@ssi.bg \
--to=ja@ssi.bg \
--cc=coreteam@netfilter.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fw@strlen.de \
--cc=horms@verge.net.au \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lvs-devel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=nicoyip.dev@gmail.com \
--cc=pabeni@redhat.com \
--cc=pablo@netfilter.org \
--cc=phil@nwl.cc \
--cc=stable@vger.kernel.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 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®