From: Eric Dumazet <eric.dumazet@gmail.com>
To: Cong Wang <xiyou.wangcong@gmail.com>, netdev@vger.kernel.org
Cc: netfilter-devel@vger.kernel.org, Pablo Neira Ayuso <pablo@netfilter.org>
Subject: Re: [Patch net] xt_RATEEST: acquire xt_rateest_mutex for hash insert
Date: Wed, 31 Jan 2018 17:44:46 -0800 [thread overview]
Message-ID: <1517449486.3715.112.camel@gmail.com> (raw)
In-Reply-To: <20180201002631.17638-1-xiyou.wangcong@gmail.com>
On Wed, 2018-01-31 at 16:26 -0800, Cong Wang wrote:
> rateest_hash is supposed to be protected by xt_rateest_mutex.
>
> Reported-by: <syzbot+5cb189720978275e4c75@syzkaller.appspotmail.com>
> Fixes: 5859034d7eb8 ("[NETFILTER]: x_tables: add RATEEST target")
> Cc: Pablo Neira Ayuso <pablo@netfilter.org>
> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
> ---
> net/netfilter/xt_RATEEST.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/net/netfilter/xt_RATEEST.c b/net/netfilter/xt_RATEEST.c
> index 498b54fd04d7..83ec3a282755 100644
> --- a/net/netfilter/xt_RATEEST.c
> +++ b/net/netfilter/xt_RATEEST.c
> @@ -36,7 +36,9 @@ static void xt_rateest_hash_insert(struct xt_rateest *est)
> unsigned int h;
>
> h = xt_rateest_hash(est->name);
> + mutex_lock(&xt_rateest_mutex);
> hlist_add_head(&est->list, &rateest_hash[h]);
> + mutex_unlock(&xt_rateest_mutex);
> }
We probably should make this module netns aware, otherwise bad things
will happen.
(It seems multiple threads could run, so getting the mutex twice
(xt_rateest_lookup then xt_rateest_hash_insert() is racy)
next prev parent reply other threads:[~2018-02-01 1:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-01 0:26 [Patch net] xt_RATEEST: acquire xt_rateest_mutex for hash insert Cong Wang
2018-02-01 1:44 ` Eric Dumazet [this message]
2018-02-01 21:50 ` Cong Wang
2018-02-01 22:36 ` Florian Westphal
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=1517449486.3715.112.camel@gmail.com \
--to=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.org \
--cc=xiyou.wangcong@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.