diff mbox series

[net] netfilter: xt_hashlimit: fix lock imbalance

Message ID 1518451908.3715.161.camel@gmail.com
State Awaiting Upstream, archived
Delegated to: David Miller
Headers show
Series [net] netfilter: xt_hashlimit: fix lock imbalance | expand

Commit Message

Eric Dumazet Feb. 12, 2018, 4:11 p.m. UTC
From: Eric Dumazet <edumazet@google.com>

syszkaller found that rcu was not held in hashlimit_mt_common()

We only need to enable BH at this point.

Fixes: bea74641e378 ("netfilter: xt_hashlimit: add rate match mode")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzkaller <syzkaller@googlegroups.com>
---
 net/netfilter/xt_hashlimit.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vishwanath Pai Feb. 14, 2018, 4:41 p.m. UTC | #1
On 02/12/2018 11:11 AM, Eric Dumazet wrote:
> From: Eric Dumazet <edumazet@google.com>
> 
> syszkaller found that rcu was not held in hashlimit_mt_common()
> 
> We only need to enable BH at this point.
> 
> Fixes: bea74641e378 ("netfilter: xt_hashlimit: add rate match mode")
> Signed-off-by: Eric Dumazet <edumazet@google.com>
> Reported-by: syzkaller <syzkaller@googlegroups.com>
> ---
>  net/netfilter/xt_hashlimit.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/netfilter/xt_hashlimit.c b/net/netfilter/xt_hashlimit.c
> index ca6847403ca218c478d208080aab3e3c92a0a615..1fea48b4182f7cd5669b9c5e7100b2735cc590e7 100644
> --- a/net/netfilter/xt_hashlimit.c
> +++ b/net/netfilter/xt_hashlimit.c
> @@ -774,7 +774,7 @@ hashlimit_mt_common(const struct sk_buff *skb, struct xt_action_param *par,
>  		if (!dh->rateinfo.prev_window &&
>  		    (dh->rateinfo.current_rate <= dh->rateinfo.burst)) {
>  			spin_unlock(&dh->lock);
> -			rcu_read_unlock_bh();
> +			local_bh_enable();
>  			return !(cfg->mode & XT_HASHLIMIT_INVERT);
>  		} else {
>  			goto overlimit;
> 

Thanks for fixing this.

Acked-by: Vishwanath Pai <vpai@akamai.com>

-Vishwanath
Pablo Neira Ayuso Feb. 16, 2018, 2 p.m. UTC | #2
On Mon, Feb 12, 2018 at 08:11:48AM -0800, Eric Dumazet wrote:
> From: Eric Dumazet <edumazet@google.com>
> 
> syszkaller found that rcu was not held in hashlimit_mt_common()
> 
> We only need to enable BH at this point.

Applied, thanks Eric!

Sorry, this didn't get into my patchwork [1] for some reason, so it
got lost.

[1] https://patchwork.ozlabs.org/project/netfilter-devel/
diff mbox series

Patch

diff --git a/net/netfilter/xt_hashlimit.c b/net/netfilter/xt_hashlimit.c
index ca6847403ca218c478d208080aab3e3c92a0a615..1fea48b4182f7cd5669b9c5e7100b2735cc590e7 100644
--- a/net/netfilter/xt_hashlimit.c
+++ b/net/netfilter/xt_hashlimit.c
@@ -774,7 +774,7 @@  hashlimit_mt_common(const struct sk_buff *skb, struct xt_action_param *par,
 		if (!dh->rateinfo.prev_window &&
 		    (dh->rateinfo.current_rate <= dh->rateinfo.burst)) {
 			spin_unlock(&dh->lock);
-			rcu_read_unlock_bh();
+			local_bh_enable();
 			return !(cfg->mode & XT_HASHLIMIT_INVERT);
 		} else {
 			goto overlimit;