From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Subject: [patch -mainline] netfilter: ipset: small potential read beyond the end of buffer Date: Fri, 7 Nov 2014 09:21:40 +0300 Message-ID: <20141107062140.GA10905@mwanda> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Patrick McHardy , Jozsef Kadlecsik , "David S. Miller" , Sergey Popovich , Masanari Iida , Anton Danilov , stephen hemminger , netfilter-devel@vger.kernel.org, coreteam@netfilter.org, netdev@vger.kernddel.org, kernel-janitors@vger.kernel.org To: Pablo Neira Ayuso Return-path: Received: from aserp1040.oracle.com ([141.146.126.69]:44084 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751553AbaKGGWz (ORCPT ); Fri, 7 Nov 2014 01:22:55 -0500 Content-Disposition: inline Sender: netfilter-devel-owner@vger.kernel.org List-ID: We could be reading 8 bytes into a 4 byte buffer here. It seems harmless but adding a check is the right thing to do and it silences a static checker warning. Signed-off-by: Dan Carpenter diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c index 86f9d76..ac08a3f 100644 --- a/net/netfilter/ipset/ip_set_core.c +++ b/net/netfilter/ipset/ip_set_core.c @@ -1863,7 +1863,8 @@ ip_set_sockfn_get(struct sock *sk, int optval, void __user *user, int *len) if (*op < IP_SET_OP_VERSION) { /* Check the version at the beginning of operations */ struct ip_set_req_version *req_version = data; - if (req_version->version != IPSET_PROTOCOL) { + if (*len < sizeof(struct ip_set_req_version) || + req_version->version != IPSET_PROTOCOL) { ret = -EPROTO; goto done; }