From: Florian Westphal Date: Fri, 1 Apr 2016 12:17:25 +0000 (+0200) Subject: netfilter: x_tables: assert minimum target size X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a08e4e190b866579896c09af59b3bdca821da2cd;p=linux-beck.git netfilter: x_tables: assert minimum target size The target size includes the size of the xt_entry_target struct. Signed-off-by: Florian Westphal Signed-off-by: Pablo Neira Ayuso --- diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c index 1f44bfa8dd94..ec1b7183fff9 100644 --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c @@ -568,6 +568,9 @@ int xt_check_entry_offsets(const void *base, return -EINVAL; t = (void *)(e + target_offset); + if (t->u.target_size < sizeof(*t)) + return -EINVAL; + if (target_offset + t->u.target_size > next_offset) return -EINVAL;