From: "Naveen N. Rao" <naveen.n.rao@linux.vnet.ibm.com>
To: Daniel Borkmann <daniel@iogearbox.net>,
Sandipan Das <sandipan@linux.vnet.ibm.com>
Cc: ast@fb.com, jakub.kicinski@netronome.com,
linuxppc-dev@lists.ozlabs.org, mpe@ellerman.id.au,
netdev@vger.kernel.org
Subject: Re: [RFC][PATCH bpf] tools: bpftool: Fix tags for bpf-to-bpf calls
Date: Thu, 01 Mar 2018 14:21:51 +0530 [thread overview]
Message-ID: <1519891203.b146m3c5tj.naveen@linux.ibm.com> (raw)
In-Reply-To: <4cdcc751-d830-51ce-23a0-62f773dc015e@iogearbox.net>
Daniel Borkmann wrote:
> On 02/27/2018 01:13 PM, Sandipan Das wrote:
>> With this patch, it will look like this:
>> 0: (85) call pc+2#bpf_prog_8f85936f29a7790a+3
>=20
> (Note the +2 is the insn->off already.)
>=20
>> 1: (b7) r0 =3D 1
>> 2: (95) exit
>> 3: (b7) r0 =3D 2
>> 4: (95) exit
>>=20
>> where 8f85936f29a7790a is the tag of the bpf program and 3 is
>> the offset to the start of the subprog from the start of the
>> program.
>=20
> The problem with this approach would be that right now the name is
> something like bpf_prog_5f76847930402518_F where the subprog tag is
> just a placeholder so in future, this may well adapt to e.g. the actual
> function name from the elf file. Note that when kallsyms is enabled
> then a name like bpf_prog_5f76847930402518_F will also appear in stack
> traces, perf records, etc, so for correlation/debugging it would really
> help to have them the same everywhere.
>=20
> Worst case if there's nothing better, potentially what one could do in
> bpf_prog_get_info_by_fd() is to dump an array of full addresses and
> have the imm part as the index pointing to one of them, just unfortunate
> that it's likely only needed in ppc64.
Ok. We seem to have discussed a few different aspects in this thread. =20
Let me summarize the different aspects we have discussed:
1. Passing address of JIT'ed function to the JIT engines:
Two approaches discussed:
a. Existing approach, where the subprog address is encoded as an=20
offset from __bpf_call_base() in imm32 field of the BPF call=20
instruction. This requires the JIT'ed function to be within 2GB of=20
__bpf_call_base(), which won't be true on ppc64, at the least. So,=20
this won't on ppc64 (and any other architectures where vmalloc'ed=20
(module_alloc()) memory is from a different, far, address range).
=20
[As a side note, is it _actually_ guaranteed that JIT'ed functions=20
will be within 2GB (signed 32-bit...) on all other architectures=20
where BPF JIT is supported? I'm not quite sure how memory allocation=20
works on other architectures, but it looks like this can fail if=20
there are other larger allocations.]
b. Pass the full 64-bit address of the call target in an auxiliary=20
field for the JIT engine to use (as implemented in this mail chain). =20
We can then use this to determine the call target if this is a=20
pseudo call.
There is a third option we can consider:
c. Convert BPF pseudo call instruction into a 2-instruction sequence=20
(similar to BPF_DW) and encode the full 64-bit call target in the=20
second bpf instruction. To distinguish this from other instruction=20
forms, we can set imm32 to -1.
If we go with (b) or (c), we will need to take a call on whether we=20
will implement this in the same manner across all architectures, or=20
if we should have ppc64 (and any other affected architectures) work=20
differently from the rest.
Further more, for (b), bpftool won't be able to derive the target=20
function call address, but approaches (a) and (c) are fine. More=20
about that below...
2. Indicating target function in bpftool:
In the existing approach, bpftool can determine target address since=20
the offset is encoded in imm32 and is able to lookup the name from=20
kallsyms, if enabled.
If we go with approach (b) for ppc64, this won't work and we will=20
have to minimally update bpftool to detect that the target address=20
is not available on ppc64.
If we go with approach (c), the target address will be available and=20
we should be able to update bpftool to look that up.
=20
[As a side note, I suppose part of Sandipan's point with the=20
previous patch was to make the bpftool output consistent whether or=20
not JIT is enabled. It does look a bit weird that bpftool shows the=20
address of a JIT'ed function when asked to print the BPF bytecode.]
Thoughts?
- Naveen
=
next prev parent reply other threads:[~2018-03-01 8:52 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-13 4:05 [RFC][PATCH bpf v2 1/2] bpf: allow 64-bit offsets for bpf function calls Sandipan Das
2018-02-13 4:06 ` [RFC][PATCH bpf v2 2/2] bpf: powerpc64: add JIT support for multi-function programs Sandipan Das
2018-02-15 16:25 ` [RFC][PATCH bpf v2 1/2] bpf: allow 64-bit offsets for bpf function calls Daniel Borkmann
2018-02-15 20:18 ` Daniel Borkmann
2018-02-16 15:50 ` Naveen N. Rao
2018-02-20 9:29 ` Michael Ellerman
2018-02-20 19:22 ` Naveen N. Rao
2018-02-27 12:13 ` [RFC][PATCH bpf] tools: bpftool: Fix tags for bpf-to-bpf calls Sandipan Das
2018-02-27 14:44 ` Daniel Borkmann
2018-03-01 8:51 ` Naveen N. Rao [this message]
2018-03-05 17:02 ` Alexei Starovoitov
[not found] ` <415b415e-f47f-082c-1bc9-87d3e9d3aed1__9575.16645216874$1520270545$gmane$org@fb.com>
[not found] ` <415b415e-f47f-082c-1bc9-87d3e9d3aed1__9575.16645216874$1520270545$gmane$org@ fb.com>
2018-05-03 15:20 ` Naveen N. Rao
2018-02-22 12:06 ` [RFC][PATCH bpf v2 1/2] bpf: allow 64-bit offsets for bpf function calls Michael Holzheu
2018-02-22 12:10 ` Michael Holzheu
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=1519891203.b146m3c5tj.naveen@linux.ibm.com \
--to=naveen.n.rao@linux.vnet.ibm.com \
--cc=ast@fb.com \
--cc=daniel@iogearbox.net \
--cc=jakub.kicinski@netronome.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=netdev@vger.kernel.org \
--cc=sandipan@linux.vnet.ibm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).