From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756224AbaIKTsH (ORCPT ); Thu, 11 Sep 2014 15:48:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43901 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756163AbaIKTsE (ORCPT ); Thu, 11 Sep 2014 15:48:04 -0400 Message-ID: <5411FC42.3070505@redhat.com> Date: Thu, 11 Sep 2014 21:47:14 +0200 From: Daniel Borkmann User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Alexei Starovoitov CC: "David S. Miller" , Ingo Molnar , Linus Torvalds , Andy Lutomirski , Steven Rostedt , Hannes Frederic Sowa , Chema Gonzalez , Eric Dumazet , Peter Zijlstra , Pablo Neira Ayuso , "H. Peter Anvin" , Andrew Morton , Kees Cook , Linux API , Network Development , LKML Subject: Re: [PATCH v11 net-next 00/12] eBPF syscall, verifier, testsuite References: <1410325808-3657-1-git-send-email-ast@plumgrid.com> <541013CE.6020307@redhat.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/10/2014 07:32 PM, Alexei Starovoitov wrote: > On Wed, Sep 10, 2014 at 2:03 AM, Daniel Borkmann wrote: >>> struct { /* anonymous struct used by BPF_PROG_LOAD command */ >>> enum bpf_prog_type prog_type; >>> __u32 insn_cnt; >>> const struct bpf_insn *insns; >>> const char *license; >>> __u32 log_level; /* verbosity level of >>> eBPF verifier */ >>> __u32 log_size; /* size of user buffer */ >>> void *log_buf; /* user supplied buffer >>> */ >> >> >> What is log buffer? Would that mean the verifier will return an error >> string if the program will not pass it, or if not, what other data? >> I think the man page is missing how to examine the returned verifier >> log buffer data. > > yes. it's an error log (as text string for humans) from verifier. I was confused due to the void pointer. But that also means that the text string becomes part of the ABI; aren't eBPF specific error codes (perhaps a tuple of [line + error code]), though ugly as well, but perhaps the better solution to this [which user space can then map to an actual string]?