* [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation
@ 2018-02-08 5:59 Cong Wang
2018-02-08 5:59 ` [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get() Cong Wang
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Cong Wang @ 2018-02-08 5:59 UTC (permalink / raw)
To: netdev; +Cc: netfilter-devel, pabeni, Cong Wang, Xin Long, Pablo Neira Ayuso
There is a race condition between clusterip_config_entry_put()
and clusterip_config_init(), after we release the spinlock in
clusterip_config_entry_put(), a new proc file with a same IP could
be created immediately since it is already removed from the configs
list, therefore it triggers this warning:
------------[ cut here ]------------
proc_dir_entry 'ipt_CLUSTERIP/172.20.0.170' already registered
WARNING: CPU: 1 PID: 4152 at fs/proc/generic.c:330 proc_register+0x2a4/0x370 fs/proc/generic.c:329
Kernel panic - not syncing: panic_on_warn set ...
As a quick fix, just move the proc_remove() inside the spinlock.
Reported-by: <syzbot+03218bcdba6aa76441a3@syzkaller.appspotmail.com>
Fixes: 6c5d5cfbe3c5 ("netfilter: ipt_CLUSTERIP: check duplicate config when initializing")
Tested-by: Paolo Abeni <pabeni@redhat.com>
Cc: Xin Long <lucien.xin@gmail.com>
Cc: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
---
net/ipv4/netfilter/ipt_CLUSTERIP.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
index 3a84a60f6b39..1ff72b87a066 100644
--- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
+++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
@@ -107,12 +107,6 @@ clusterip_config_entry_put(struct net *net, struct clusterip_config *c)
local_bh_disable();
if (refcount_dec_and_lock(&c->entries, &cn->lock)) {
- list_del_rcu(&c->list);
- spin_unlock(&cn->lock);
- local_bh_enable();
-
- unregister_netdevice_notifier(&c->notifier);
-
/* In case anyone still accesses the file, the open/close
* functions are also incrementing the refcount on their own,
* so it's safe to remove the entry even if it's in use. */
@@ -120,6 +114,12 @@ clusterip_config_entry_put(struct net *net, struct clusterip_config *c)
if (cn->procdir)
proc_remove(c->pde);
#endif
+ list_del_rcu(&c->list);
+ spin_unlock(&cn->lock);
+ local_bh_enable();
+
+ unregister_netdevice_notifier(&c->notifier);
+
return;
}
local_bh_enable();
--
2.13.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get()
2018-02-08 5:59 [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Cong Wang
@ 2018-02-08 5:59 ` Cong Wang
2018-02-08 8:01 ` Florian Westphal
2018-02-08 11:45 ` [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Xin Long
2018-02-08 16:58 ` Pablo Neira Ayuso
2 siblings, 1 reply; 6+ messages in thread
From: Cong Wang @ 2018-02-08 5:59 UTC (permalink / raw)
To: netdev; +Cc: netfilter-devel, pabeni, Cong Wang, Eric Dumazet,
Pablo Neira Ayuso
In clusterip_config_find_get() we hold RCU read lock so it could
run concurrently with clusterip_config_entry_put(), as a result,
the refcnt could go back to 1 from 0, which leads to a double
list_del()... Just replace refcount_inc() with
refcount_inc_not_zero(), as for c->refcount.
Fixes: d73f33b16883 ("netfilter: CLUSTERIP: RCU conversion")
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
---
net/ipv4/netfilter/ipt_CLUSTERIP.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
index 1ff72b87a066..4537b1686c7c 100644
--- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
+++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
@@ -154,8 +154,10 @@ clusterip_config_find_get(struct net *net, __be32 clusterip, int entry)
#endif
if (unlikely(!refcount_inc_not_zero(&c->refcount)))
c = NULL;
- else if (entry)
- refcount_inc(&c->entries);
+ else if (entry) {
+ if (unlikely(!refcount_inc_not_zero(&c->entries)))
+ c = NULL;
+ }
}
rcu_read_unlock_bh();
--
2.13.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get()
2018-02-08 5:59 ` [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get() Cong Wang
@ 2018-02-08 8:01 ` Florian Westphal
2018-02-08 20:05 ` Cong Wang
0 siblings, 1 reply; 6+ messages in thread
From: Florian Westphal @ 2018-02-08 8:01 UTC (permalink / raw)
To: Cong Wang
Cc: netdev, netfilter-devel, pabeni, Eric Dumazet, Pablo Neira Ayuso
Cong Wang <xiyou.wangcong@gmail.com> wrote:
> In clusterip_config_find_get() we hold RCU read lock so it could
> run concurrently with clusterip_config_entry_put(), as a result,
> the refcnt could go back to 1 from 0, which leads to a double
> list_del()... Just replace refcount_inc() with
> refcount_inc_not_zero(), as for c->refcount.
>
> Fixes: d73f33b16883 ("netfilter: CLUSTERIP: RCU conversion")
> Cc: Eric Dumazet <eric.dumazet@gmail.com>
> Cc: Pablo Neira Ayuso <pablo@netfilter.org>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
> ---
> net/ipv4/netfilter/ipt_CLUSTERIP.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
> index 1ff72b87a066..4537b1686c7c 100644
> --- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
> +++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
> @@ -154,8 +154,10 @@ clusterip_config_find_get(struct net *net, __be32 clusterip, int entry)
> #endif
> if (unlikely(!refcount_inc_not_zero(&c->refcount)))
> c = NULL;
> - else if (entry)
> - refcount_inc(&c->entries);
> + else if (entry) {
> + if (unlikely(!refcount_inc_not_zero(&c->entries)))
this needs to call clusterip_config_put(c); too, else we leak one
reference.
Other than that this looks good.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation
2018-02-08 5:59 [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Cong Wang
2018-02-08 5:59 ` [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get() Cong Wang
@ 2018-02-08 11:45 ` Xin Long
2018-02-08 16:58 ` Pablo Neira Ayuso
2 siblings, 0 replies; 6+ messages in thread
From: Xin Long @ 2018-02-08 11:45 UTC (permalink / raw)
To: Cong Wang; +Cc: network dev, netfilter-devel, Paolo Abeni, Pablo Neira Ayuso
On Thu, Feb 8, 2018 at 1:59 PM, Cong Wang <xiyou.wangcong@gmail.com> wrote:
> There is a race condition between clusterip_config_entry_put()
> and clusterip_config_init(), after we release the spinlock in
> clusterip_config_entry_put(), a new proc file with a same IP could
> be created immediately since it is already removed from the configs
> list, therefore it triggers this warning:
>
> ------------[ cut here ]------------
> proc_dir_entry 'ipt_CLUSTERIP/172.20.0.170' already registered
> WARNING: CPU: 1 PID: 4152 at fs/proc/generic.c:330 proc_register+0x2a4/0x370 fs/proc/generic.c:329
> Kernel panic - not syncing: panic_on_warn set ...
>
> As a quick fix, just move the proc_remove() inside the spinlock.
>
> Reported-by: <syzbot+03218bcdba6aa76441a3@syzkaller.appspotmail.com>
> Fixes: 6c5d5cfbe3c5 ("netfilter: ipt_CLUSTERIP: check duplicate config when initializing")
> Tested-by: Paolo Abeni <pabeni@redhat.com>
> Cc: Xin Long <lucien.xin@gmail.com>
> Cc: Pablo Neira Ayuso <pablo@netfilter.org>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
> ---
> net/ipv4/netfilter/ipt_CLUSTERIP.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
> index 3a84a60f6b39..1ff72b87a066 100644
> --- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
> +++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
> @@ -107,12 +107,6 @@ clusterip_config_entry_put(struct net *net, struct clusterip_config *c)
>
> local_bh_disable();
> if (refcount_dec_and_lock(&c->entries, &cn->lock)) {
> - list_del_rcu(&c->list);
> - spin_unlock(&cn->lock);
> - local_bh_enable();
> -
> - unregister_netdevice_notifier(&c->notifier);
> -
> /* In case anyone still accesses the file, the open/close
> * functions are also incrementing the refcount on their own,
> * so it's safe to remove the entry even if it's in use. */
> @@ -120,6 +114,12 @@ clusterip_config_entry_put(struct net *net, struct clusterip_config *c)
> if (cn->procdir)
> proc_remove(c->pde);
> #endif
> + list_del_rcu(&c->list);
> + spin_unlock(&cn->lock);
> + local_bh_enable();
> +
> + unregister_netdevice_notifier(&c->notifier);
> +
> return;
> }
> local_bh_enable();
> --
> 2.13.0
>
Reviewed-by: Xin Long <lucien.xin@gmail.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation
2018-02-08 5:59 [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Cong Wang
2018-02-08 5:59 ` [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get() Cong Wang
2018-02-08 11:45 ` [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Xin Long
@ 2018-02-08 16:58 ` Pablo Neira Ayuso
2 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2018-02-08 16:58 UTC (permalink / raw)
To: Cong Wang; +Cc: netdev, netfilter-devel, pabeni, Xin Long
On Wed, Feb 07, 2018 at 09:59:17PM -0800, Cong Wang wrote:
> There is a race condition between clusterip_config_entry_put()
> and clusterip_config_init(), after we release the spinlock in
> clusterip_config_entry_put(), a new proc file with a same IP could
> be created immediately since it is already removed from the configs
> list, therefore it triggers this warning:
>
> ------------[ cut here ]------------
> proc_dir_entry 'ipt_CLUSTERIP/172.20.0.170' already registered
> WARNING: CPU: 1 PID: 4152 at fs/proc/generic.c:330 proc_register+0x2a4/0x370 fs/proc/generic.c:329
> Kernel panic - not syncing: panic_on_warn set ...
>
> As a quick fix, just move the proc_remove() inside the spinlock.
Applied, thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get()
2018-02-08 8:01 ` Florian Westphal
@ 2018-02-08 20:05 ` Cong Wang
0 siblings, 0 replies; 6+ messages in thread
From: Cong Wang @ 2018-02-08 20:05 UTC (permalink / raw)
To: Florian Westphal
Cc: Linux Kernel Network Developers, netfilter-devel, Paolo Abeni,
Eric Dumazet, Pablo Neira Ayuso
On Thu, Feb 8, 2018 at 12:01 AM, Florian Westphal <fw@strlen.de> wrote:
> Cong Wang <xiyou.wangcong@gmail.com> wrote:
>> In clusterip_config_find_get() we hold RCU read lock so it could
>> run concurrently with clusterip_config_entry_put(), as a result,
>> the refcnt could go back to 1 from 0, which leads to a double
>> list_del()... Just replace refcount_inc() with
>> refcount_inc_not_zero(), as for c->refcount.
>>
>> Fixes: d73f33b16883 ("netfilter: CLUSTERIP: RCU conversion")
>> Cc: Eric Dumazet <eric.dumazet@gmail.com>
>> Cc: Pablo Neira Ayuso <pablo@netfilter.org>
>> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
>> ---
>> net/ipv4/netfilter/ipt_CLUSTERIP.c | 6 ++++--
>> 1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
>> index 1ff72b87a066..4537b1686c7c 100644
>> --- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
>> +++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
>> @@ -154,8 +154,10 @@ clusterip_config_find_get(struct net *net, __be32 clusterip, int entry)
>> #endif
>> if (unlikely(!refcount_inc_not_zero(&c->refcount)))
>> c = NULL;
>> - else if (entry)
>> - refcount_inc(&c->entries);
>> + else if (entry) {
>> + if (unlikely(!refcount_inc_not_zero(&c->entries)))
>
> this needs to call clusterip_config_put(c); too, else we leak one
> reference.
>
> Other than that this looks good.
Right, good catch! I will send v2.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-02-08 20:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-08 5:59 [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Cong Wang
2018-02-08 5:59 ` [Patch net] ipt_CLUSTERIP: fix a refcount bug in clusterip_config_find_get() Cong Wang
2018-02-08 8:01 ` Florian Westphal
2018-02-08 20:05 ` Cong Wang
2018-02-08 11:45 ` [Patch net] ipt_CLUSTERIP: fix a race condition of proc file creation Xin Long
2018-02-08 16:58 ` Pablo Neira Ayuso
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).