Commit 7da29bde authored by Florian Westphal's avatar Florian Westphal Committed by Tim Gardner

UBUNTU: SAUCE: (noup) netfilter: x_tables: check for size overflow

BugLink: http://bugs.launchpad.net/bugs/1555353

http://marc.info/?l=netfilter-devel&m=145757136822750&w=2

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.
Reported-by: default avatarBen Hawkes <hawkes@google.com>
Signed-off-by: default avatarFlorian Westphal <fw@strlen.de>
Signed-off-by: default avatarTim Gardner <tim.gardner@canonical.com>
parent 766425b1
......@@ -658,6 +658,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;
/* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > totalram_pages)
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment