Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752361AbbERMsv (ORCPT ); Mon, 18 May 2015 08:48:51 -0400 Received: from szxga03-in.huawei.com ([119.145.14.66]:63230 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751106AbbERMsn (ORCPT ); Mon, 18 May 2015 08:48:43 -0400 Message-ID: <5559DF59.6080107@huawei.com> Date: Mon, 18 May 2015 20:47:21 +0800 From: "Wangnan (F)" User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Namhyung Kim , CC: , , , , , , , , , , , Subject: Re: [RFC PATCH v3 16/37] bpf tools: Collect eBPF programs from their own sections References: <1431860222-61636-1-git-send-email-wangnan0@huawei.com> <1431860222-61636-17-git-send-email-wangnan0@huawei.com> <20150518122922.GB7683@danjae.kornet> In-Reply-To: <20150518122922.GB7683@danjae.kornet> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.111.66.109] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020205.5559DF79.0268,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2013-05-26 15:14:31, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 253d312686351f7a668ba25b9433c420 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3920 Lines: 142 在 2015/5/18 20:29, Namhyung Kim 写道: > Hi, > > On Sun, May 17, 2015 at 10:56:41AM +0000, Wang Nan wrote: >> This patch collects all programs in an object file into an array of >> 'struct bpf_program' for further processing. That structure is for >> representing each eBPF program. 'bpf_prog' should be a better name, but >> it has been used by linux/filter.h. Although it is a kernel space name, >> I still prefer to call it 'bpf_program' to prevent possible confusion. >> >> Signed-off-by: Wang Nan >> --- > [SNIP] > >> +static struct bpf_program * >> +bpf_program_alloc(struct bpf_object *obj, void *data, size_t size, >> + char *name, int idx) >> +{ >> + struct bpf_program *prog, *progs; >> + int nr_progs; >> + >> + if (size < sizeof(struct bpf_insn)) { >> + pr_warning("corrupted section '%s'\n", name); >> + return NULL; >> + } >> + >> + progs = obj->programs; >> + nr_progs = obj->nr_programs; >> + >> + progs = realloc(progs, sizeof(*prog) * (nr_progs + 1)); >> + if (!progs) { >> + /* >> + * In this case the original obj->programs >> + * is still valid, so don't need special treat for >> + * bpf_close_object(). >> + */ >> + pr_warning("failed to alloc a new program '%s'\n", >> + name); >> + return NULL; >> + } >> + >> + obj->programs = progs; >> + >> + prog = &progs[nr_progs]; >> + bzero(prog, sizeof(*prog)); >> + >> + obj->nr_programs = nr_progs + 1; >> + >> + prog->section_name = strdup(name); >> + if (!prog->section_name) { >> + pr_warning("failed to alloc name for prog %s\n", >> + name); >> + goto out; >> + } >> + >> + prog->insns = malloc(size); >> + if (!prog->insns) { >> + pr_warning("failed to alloc insns for %s\n", name); >> + goto out; >> + } >> + prog->insns_cnt = size / sizeof(struct bpf_insn); >> + memcpy(prog->insns, data, >> + prog->insns_cnt * sizeof(struct bpf_insn)); > Doesn't the data need to be swapped? > > Thanks, > Namhyung > I'm not very sure, since they are instructions. Byte order of instructions and byte order of data are not always same. Think about ARM. Therefore another choice is to swap them in kernel, keep user-kernel interface clean. Alexei Starovoitov, do you think we should use uniformed instruction byte order in both big and little endian kernel on user-kernel interface, or let userspace feed swapped instructions to kernel if endianess is not match? Thank you. >> + prog->idx = idx; >> + >> + return prog; >> +out: >> + bpf_clear_program(prog); >> + return NULL; >> +} >> + >> static struct bpf_object *__bpf_obj_alloc(const char *path) >> { >> struct bpf_object *obj; >> @@ -380,6 +468,22 @@ static int bpf_obj_elf_collect(struct bpf_object *obj) >> err = -EEXIST; >> } else >> obj->elf.symbols = data; >> + } else if ((sh.sh_type == SHT_PROGBITS) && >> + (sh.sh_flags & SHF_EXECINSTR) && >> + (data->d_size > 0)) { >> + struct bpf_program *prog; >> + >> + prog = bpf_program_alloc(obj, data->d_buf, >> + data->d_size, name, >> + idx); >> + if (!prog) { >> + pr_warning("failed to alloc " >> + "program %s (%s)", name, >> + obj->path); >> + err = -ENOMEM; >> + } else >> + pr_debug("found program %s\n", >> + prog->section_name); >> } >> if (err) >> goto out; >> @@ -446,5 +550,12 @@ void bpf_close_object(struct bpf_object *obj) >> free(obj->maps_buf); >> if (obj->config_str) >> free(obj->config_str); >> + if (obj->programs) { >> + size_t i; >> + >> + for (i = 0; i < obj->nr_programs; i++) >> + bpf_clear_program(&obj->programs[i]); >> + free(obj->programs); >> + } >> free(obj); >> } >> -- >> 1.8.3.4 >> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/