From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Borkmann Subject: Re: [PATCH v13 net-next 07/11] bpf: verifier (add ability to receive verification log) Date: Thu, 18 Sep 2014 19:28:04 +0200 Message-ID: <541B1624.80302@redhat.com> References: <1410914370-29883-1-git-send-email-ast@plumgrid.com> <1410914370-29883-8-git-send-email-ast@plumgrid.com> <54192F66.8020200@redhat.com> <5419BED8.5020309@redhat.com> <5419DE51.1060904@redhat.com> <541A7F35.2010804@redhat.com> <541AF11C.9050405@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Alexei Starovoitov Cc: "David S. Miller" , Ingo Molnar , Linus Torvalds , Andy Lutomirski , Hannes Frederic Sowa , Chema Gonzalez , Eric Dumazet , Peter Zijlstra , Pablo Neira Ayuso , "H. Peter Anvin" , Andrew Morton , Kees Cook , Linux API , Network Development , LKML List-Id: linux-api@vger.kernel.org On 09/18/2014 05:24 PM, Alexei Starovoitov wrote: ... > solve or not. If we decide to solve it, we need to have > a plan to solve it all the way. Partial fix for size of bpf_attr > is not a plan. It's something that is not addressing the problem > completely. Little bit of help is not useful for userspace. It > would need to deal with new types, verifier differences and > other things that I mentioned earlier. Hm, I don't think it would be a strict requirement to solve it all the way, and I think that perf_event_open() with perf_copy_attr() is not trying to do so either. It, however, is trying on a ``best effort basis'' to still load something if new features are unused by the binary (I guess you saw the comment in perf_copy_attr()). Iff, e.g. due to new types we fail at the verifier stage, sure, that's life since we only have backwards-compatible guarantee, but in case we tried to use features we support, we're still able to load the eBPF program while right now, we're rejecting it right up-front. That's just my $0.02 ...