From: Jiong Wang <jiong.wang@netronome.com>
To: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Cc: Jiong Wang <jiong.wang@netronome.com>,
Alexei Starovoitov <ast@kernel.org>,
daniel@iogearbox.net, netdev@vger.kernel.org,
bpf@vger.kernel.org,
Jakub Kicinski <jakub.kicinski@netronome.com>,
"oss-drivers\@netronome.com" <oss-drivers@netronome.com>
Subject: Re: 32-bit zext time complexity (Was Re: [PATCH bpf-next] selftests/bpf: two scale tests)
Date: Thu, 25 Apr 2019 08:25:44 +0100 [thread overview]
Message-ID: <lylfzyeebr.fsf@netronome.com> (raw)
In-Reply-To: <20190425043347.pxrz5ln4m7khebt6@ast-mbp.dhcp.thefacebook.com>
Alexei Starovoitov writes:
> On Thu, Apr 25, 2019 at 12:07:06AM +0100, Jiong Wang wrote:
>>
>> Alexei Starovoitov writes:
>>
>> > Add two tests to check that sequence of 1024 jumps is verifiable.
>> >
>> > Signed-off-by: Alexei Starovoitov <ast@kernel.org>
>> > ---
>> > tools/testing/selftests/bpf/test_verifier.c | 70 ++++++++++++++++++++
>> > tools/testing/selftests/bpf/verifier/scale.c | 18 +++++
>>
>> I am rebasing 32-bit opt pass on top of latest bpf-next and found these new
>> tests take more than 20 minutes to run and had not finished after that.
>>
>> The reason the following insn filling insde bpf_fill_scale1 is generating
>> nearly 1M insn whose results are recognized as safe to be poisoned.
>>
>> bpf_fill_scale1:
>> while (i < MAX_TEST_INSNS - 1025)
>> insn[i++] = BPF_ALU64_IMM(BPF_MOV, BPF_REG_0, 42);
>>
>> For each hi32 poisoning, there will be one call to "bpf_patch_insn_data"
>> which actually is not cheap (adjust jump insns, insn aux info etc). Now,
>> 1M call to it has exhausted server resources as described, 20minutes running
>> still not finished.
>>
>> For real world applications, we don't do hi32 poisoning, and there isn't much
>> lo32 zext. Benchmarking those bpf programs inside Cilium shows the final
>> zext pass adds about 8% ~ 15% verification time.
>>
>> The zext pass based on top of "bpf_patch_insn_data" looks more and more is
>> not the best approach to utilize the read32 analysis results.
>>
>> Previously, in v1 cover letter, I listed some of my other thoughts on how to
>> utilize the liveness analysis results:
>>
>> 1 Minor change on back-end JIT hook, also pass aux_insn information to
>> back-ends so they could have per insn information and they could do
>> zero extension for the marked insn themselves using the most
>> efficient native insn.
>>
>> 2 Introduce zero extension insn for eBPF. Then verifier could insert
>> the new zext insn instead of lshift + rshift. zext could be JITed
>> more efficiently.
>>
>> 3 Otherwise JIT back-ends need to do peephole to catch lshift + rshift
>> and turn them into native zext.
>
> all options sounds like hacks to workaround inefficient bpf_patch_insn_data().
> Especially option 2 will work only because single insn is replaced
> with another insn ?
Option 1 should be a generic solution. It is passing verifier analysis
results generated by insn walk down to JIT back-ends. The information
passed down could be any analysis result useful for JIT code-gen.
> Let's fix the algo of bpf_patch_insn_data() instead, so that 1 insn -> 2+ insn
> is also fast.
The issue with 1 insn -> 2+ insn should be calling of bpf_adj_branches
which is doing another for_each_insn_in_prog traversal, so the zext
insertion becomes something like:
for_each_insn_in_prog
...
if (zext)
...
for_each_insn_in_prog
which is quadratic. One solution is we chain all branch insns during
previous insn traversal in for example cfg check, and keep the information
somewhere info bpf_prog (env->insn_aux_data is a good place to keep such
information, but insn patch helpers are supposed to work with bpf_prog)
then bpf_adj_branches could traversal this chain instead of iterating
through all insns.
Regards,
Jiong
next prev parent reply other threads:[~2019-04-25 7:25 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-12 21:41 [PATCH bpf-next] selftests/bpf: two scale tests Alexei Starovoitov
2019-04-12 23:24 ` Song Liu
2019-04-12 23:32 ` Alexei Starovoitov
2019-04-15 5:59 ` Song Liu
2019-04-16 8:30 ` Daniel Borkmann
2019-04-24 23:07 ` 32-bit zext time complexity (Was Re: [PATCH bpf-next] selftests/bpf: two scale tests) Jiong Wang
2019-04-25 4:33 ` Alexei Starovoitov
2019-04-25 7:25 ` Jiong Wang [this message]
2019-04-25 9:49 ` Jiong Wang
2019-04-25 22:10 ` Alexei Starovoitov
2019-04-26 13:06 ` Jiong Wang
2019-04-26 14:50 ` Edward Cree
2019-04-27 3:11 ` Alexei Starovoitov
2019-04-29 10:43 ` Edward Cree
2019-04-27 3:05 ` Alexei Starovoitov
2019-04-28 22:11 ` Jiong Wang
2019-05-01 14:59 ` Jiong Wang
2019-05-03 17:12 ` 32-bit zext JIT efficiency " Jiong Wang
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=lylfzyeebr.fsf@netronome.com \
--to=jiong.wang@netronome.com \
--cc=alexei.starovoitov@gmail.com \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=jakub.kicinski@netronome.com \
--cc=netdev@vger.kernel.org \
--cc=oss-drivers@netronome.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.