From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Ayuso Subject: Re: [PATCH] netfilter: nfnetlink: Remove VLA usage Date: Wed, 30 May 2018 11:52:49 +0200 Message-ID: <20180530095249.3jdhb5gdwt24cnsa@salvia> References: <20180530003525.GA18642@beast> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Jozsef Kadlecsik , Florian Westphal , "David S. Miller" , netfilter-devel@vger.kernel.org, coreteam@netfilter.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org To: Kees Cook Return-path: Received: from mail.us.es ([193.147.175.20]:47828 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S968807AbeE3Jwy (ORCPT ); Wed, 30 May 2018 05:52:54 -0400 Received: from antivirus1-rhel7.int (unknown [192.168.2.11]) by mail.us.es (Postfix) with ESMTP id 49F7932F9E for ; Wed, 30 May 2018 11:51:44 +0200 (CEST) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 38DD8DA4C8 for ; Wed, 30 May 2018 11:51:44 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20180530003525.GA18642@beast> Sender: netdev-owner@vger.kernel.org List-ID: On Tue, May 29, 2018 at 05:35:25PM -0700, Kees Cook wrote: > In the quest to remove all stack VLA usage from the kernel[1], this > allocates the maximum size expected for all possible attrs and adds > a sanity-check to make sure nothing gets out of sync. > > [1] https://lkml.kernel.org/r/CA+55aFzCG-zNmZwX4A2FQpadafLfEzK6CC=qPXydAacU1RqZWA@mail.gmail.com > > Signed-off-by: Kees Cook > --- > net/netfilter/nfnetlink.c | 22 ++++++++++++++++++++-- > 1 file changed, 20 insertions(+), 2 deletions(-) > > diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c > index 03ead8a9e90c..0cb395f9627e 100644 > --- a/net/netfilter/nfnetlink.c > +++ b/net/netfilter/nfnetlink.c > @@ -28,6 +28,7 @@ > > #include > #include > +#include > > MODULE_LICENSE("GPL"); > MODULE_AUTHOR("Harald Welte "); > @@ -37,6 +38,11 @@ MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER); > rcu_dereference_protected(table[(id)].subsys, \ > lockdep_nfnl_is_held((id))) > > +#define NFTA_MAX_ATTR max(max(max(NFTA_CHAIN_MAX, NFTA_FLOWTABLE_MAX),\ > + max(NFTA_OBJ_MAX, NFTA_RULE_MAX)), \ > + max(NFTA_TABLE_MAX, \ > + max(NFTA_SET_ELEM_LIST_MAX, NFTA_SET_MAX))) This is very specific of nftables, there are other nf subsystems using nfnetlink that may go over this maximum attribute value (grep from "struct nfnetlink_subsystem"). To remove the VLA, I think we need an artificial maximum attribute that reasonably large enough.