From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Florian Westphal <fw@strlen.de>
Cc: netfilter-devel@vger.kernel.org, hawkes@google.com
Subject: Re: [PATCH nf] netfilter: x_tables: check for size overflow
Date: Sat, 12 Mar 2016 11:53:49 +0100 [thread overview]
Message-ID: <20160312105349.GA1542@salvia> (raw)
In-Reply-To: <1457571383-25520-1-git-send-email-fw@strlen.de>
On Thu, Mar 10, 2016 at 01:56:23AM +0100, Florian Westphal wrote:
> Ben Hawkes says:
> integer overflow in xt_alloc_table_info, which on 32-bit systems can
> lead to small structure allocation and a copy_from_user based heap
> corruption.
Applied, thanks Florian. I have slightly mangled this patch, the
second check suffices to catch this case for us.
> Reported-by: Ben Hawkes <hawkes@google.com>
> Signed-off-by: Florian Westphal <fw@strlen.de>
> ---
> net/netfilter/x_tables.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c
> index c8a0b7d..17a9a9f 100644
> --- a/net/netfilter/x_tables.c
> +++ b/net/netfilter/x_tables.c
> @@ -659,6 +659,9 @@ struct xt_table_info *xt_alloc_table_info(unsigned int size)
> struct xt_table_info *info = NULL;
> size_t sz = sizeof(*info) + size;
>
> + if (sz < size || sz < sizeof(*info))
> + return NULL;
So this will show up in the tree like this:
if (sz < sizeof(*info))
return NULL;
prev parent reply other threads:[~2016-03-12 10:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-10 0:56 [PATCH nf] netfilter: x_tables: check for size overflow Florian Westphal
2016-03-12 10:53 ` Pablo Neira Ayuso [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=20160312105349.GA1542@salvia \
--to=pablo@netfilter.org \
--cc=fw@strlen.de \
--cc=hawkes@google.com \
--cc=netfilter-devel@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;
as well as URLs for NNTP newsgroup(s).