All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eduard Zingerman <eddyz87@gmail.com>
To: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Cc: bpf <bpf@vger.kernel.org>, Alexei Starovoitov <ast@kernel.org>,
	Andrii Nakryiko <andrii@kernel.org>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Martin KaFai Lau <martin.lau@linux.dev>,
	Kernel Team <kernel-team@fb.com>, Yonghong Song <yhs@fb.com>,
	"Jose E. Marchesi" <jose.marchesi@oracle.com>
Subject: Re: [PATCH bpf-next 3/3] selftests/bpf: Disassembler tests for verifier.c:convert_ctx_access()
Date: Fri, 03 Mar 2023 23:42:38 +0200	[thread overview]
Message-ID: <d9e1b0397daed0bad7b82e4696e1dcd530a678a3.camel@gmail.com> (raw)
In-Reply-To: <CAADnVQ+abjckxC=KY9M_21scmHbqzA_5NvxYu1FTHrTPDz5=TA@mail.gmail.com>

On Fri, 2023-03-03 at 13:35 -0800, Alexei Starovoitov wrote:
> On Fri, Mar 3, 2023 at 1:24 PM Eduard Zingerman <eddyz87@gmail.com> wrote:
> > 
> > On Fri, 2023-03-03 at 12:28 -0800, Alexei Starovoitov wrote:
> > > On Fri, Mar 03, 2023 at 12:55:07AM +0200, Eduard Zingerman wrote:
> > > > Function verifier.c:convert_ctx_access() applies some rewrites to BPF
> > > > instructions that read or write BPF program context. This commit adds
> > > > machinery to allow test cases that inspect BPF program after these
> > > > rewrites are applied.
> > > > 
> > > > An example of a test case:
> > > > 
> > > >   {
> > > >         // Shorthand for field offset and size specification
> > > >     N(CGROUP_SOCKOPT, struct bpf_sockopt, retval),
> > > > 
> > > >         // Pattern generated for field read
> > > >     .read  = "$dst = *(u64 *)($ctx + bpf_sockopt_kern::current_task);"
> > > >              "$dst = *(u64 *)($dst + task_struct::bpf_ctx);"
> > > >              "$dst = *(u32 *)($dst + bpf_cg_run_ctx::retval);",
> > > > 
> > > >         // Pattern generated for field write
> > > >     .write = "*(u64 *)($ctx + bpf_sockopt_kern::tmp_reg) = r9;"
> > > >              "r9 = *(u64 *)($ctx + bpf_sockopt_kern::current_task);"
> > > >              "r9 = *(u64 *)(r9 + task_struct::bpf_ctx);"
> > > >              "*(u32 *)(r9 + bpf_cg_run_ctx::retval) = $src;"
> > > >              "r9 = *(u64 *)($ctx + bpf_sockopt_kern::tmp_reg);" ,
> > > >   },
> > > > 
> > > > For each test case, up to three programs are created:
> > > > - One that uses BPF_LDX_MEM to read the context field.
> > > > - One that uses BPF_STX_MEM to write to the context field.
> > > > - One that uses BPF_ST_MEM to write to the context field.
> > > > 
> > > > The disassembly of each program is compared with the pattern specified
> > > > in the test case.
> > > > 
> > > > Kernel code for disassembly is reused (as is in the bpftool).
> > > > To keep Makefile changes to the minimum, symbolic links to
> > > > `kernel/bpf/disasm.c` and `kernel/bpf/disasm.h ` are added.
> > > ...
> > > > +static regex_t *compile_regex(char *pat)
> > > > +{
> > > > +   regex_t *re;
> > > > +   int err;
> > > > +
> > > > +   re = malloc(sizeof(regex_t));
> > > > +   if (!re) {
> > > > +           PRINT_FAIL("Can't alloc regex\n");
> > > > +           return NULL;
> > > > +   }
> > > > +
> > > > +   err = regcomp(re, pat, REG_EXTENDED);
> > > 
> > > Fancy.
> > 
> > In a good or in a bad way?
> > It is the shortest form I came up with...
> > 
> > > What is the cost of running this in test_progs?
> > > How many seconds does it add to run time?
> > 
> > About 0.13sec (including modprobe and process initialization):
> > 
> >   # time ./test_progs -a "ctx_rewrite/*"
> >   #58/1    ctx_rewrite/SCHED_CLS.tstamp:OK
> >   ...
> >   #58/20   ctx_rewrite/CGROUP_SOCKOPT.optval_end:OK
> >   #58      ctx_rewrite:OK
> >   Summary: 1/20 PASSED, 0 SKIPPED, 0 FAILED
> > 
> >   real  0m0.131s
> >   user  0m0.027s
> >   sys   0m0.046s
> > 
> > It loads 52 programs.
> 
> That's fine then. I was worried that compiling regex in a loop
> might be slow.

Oh... Regexes are compiled only once at test entry (in test_ctx_rewrite()),
sub-tests do not re-compile.


      reply	other threads:[~2023-03-03 21:45 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-02 22:55 [PATCH bpf-next 0/3] bpf: allow ctx writes using BPF_ST_MEM instruction Eduard Zingerman
2023-03-02 22:55 ` [PATCH bpf-next 1/3] " Eduard Zingerman
2023-03-03 20:21   ` Alexei Starovoitov
2023-03-03 21:17     ` Eduard Zingerman
2023-03-03 22:56     ` Eduard Zingerman
2023-03-02 22:55 ` [PATCH bpf-next 2/3] selftests/bpf: test if pointer type is tracked for BPF_ST_MEM Eduard Zingerman
2023-03-02 22:55 ` [PATCH bpf-next 3/3] selftests/bpf: Disassembler tests for verifier.c:convert_ctx_access() Eduard Zingerman
2023-03-03 20:28   ` Alexei Starovoitov
2023-03-03 21:24     ` Eduard Zingerman
2023-03-03 21:35       ` Alexei Starovoitov
2023-03-03 21:42         ` Eduard Zingerman [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d9e1b0397daed0bad7b82e4696e1dcd530a678a3.camel@gmail.com \
    --to=eddyz87@gmail.com \
    --cc=alexei.starovoitov@gmail.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=jose.marchesi@oracle.com \
    --cc=kernel-team@fb.com \
    --cc=martin.lau@linux.dev \
    --cc=yhs@fb.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.