From: Alan Maguire <alan.maguire@oracle.com>
To: Ilya Leoshkevich <iii@linux.ibm.com>
Cc: "Andrii Nakryiko" <andrii.nakryiko@gmail.com>,
"Alan Maguire" <alan.maguire@oracle.com>,
"Andrii Nakryiko" <andrii@kernel.org>,
"Daniel Borkmann" <daniel@iogearbox.net>,
"Alexei Starovoitov" <ast@kernel.org>,
"Martin Lau" <kafai@fb.com>, "Song Liu" <songliubraving@fb.com>,
"Yonghong Song" <yhs@fb.com>,
"john fastabend" <john.fastabend@gmail.com>,
"KP Singh" <kpsingh@kernel.org>,
"Toke Høiland-Jørgensen" <toke@redhat.com>,
"Yucong Sun" <sunyucong@gmail.com>,
Networking <netdev@vger.kernel.org>, bpf <bpf@vger.kernel.org>
Subject: Re: [PATCH v5 bpf-next 3/5] libbpf: add auto-attach for uprobes based on section name
Date: Mon, 4 Apr 2022 22:43:46 +0100 (IST) [thread overview]
Message-ID: <alpine.LRH.2.23.451.2204042228270.6114@MyRouter> (raw)
In-Reply-To: <55ff4df690d18faa4c88d05009ebe6d0c70ad37d.camel@linux.ibm.com>
[-- Attachment #1: Type: text/plain, Size: 3812 bytes --]
On Mon, 4 Apr 2022, Ilya Leoshkevich wrote:
> On Sun, 2022-04-03 at 21:46 -0700, Andrii Nakryiko wrote:
> > On Sun, Apr 3, 2022 at 6:14 PM Andrii Nakryiko
> > <andrii.nakryiko@gmail.com> wrote:
> > >
> > > On Wed, Mar 30, 2022 at 8:27 AM Alan Maguire
> > > <alan.maguire@oracle.com> wrote:
> > > >
> > > > Now that u[ret]probes can use name-based specification, it makes
> > > > sense to add support for auto-attach based on SEC() definition.
> > > > The format proposed is
> > > >
> > > >
> > > > SEC("u[ret]probe/binary:[raw_offset|[function_name[+offset]]")
> > > >
> > > > For example, to trace malloc() in libc:
> > > >
> > > > SEC("uprobe/libc.so.6:malloc")
> > > >
> > > > ...or to trace function foo2 in /usr/bin/foo:
> > > >
> > > > SEC("uprobe//usr/bin/foo:foo2")
> > > >
> > > > Auto-attach is done for all tasks (pid -1). prog can be an
> > > > absolute
> > > > path or simply a program/library name; in the latter case, we use
> > > > PATH/LD_LIBRARY_PATH to resolve the full path, falling back to
> > > > standard locations (/usr/bin:/usr/sbin or /usr/lib64:/usr/lib) if
> > > > the file is not found via environment-variable specified
> > > > locations.
> > > >
> > > > Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
> > > > ---
> > > > tools/lib/bpf/libbpf.c | 74
> > > > ++++++++++++++++++++++++++++++++++++++++++++++++--
> > > > 1 file changed, 72 insertions(+), 2 deletions(-)
> > > >
> > >
> > > [...]
> > >
> > > > +static int attach_uprobe(const struct bpf_program *prog, long
> > > > cookie, struct bpf_link **link)
> > > > +{
> > > > + DECLARE_LIBBPF_OPTS(bpf_uprobe_opts, opts);
> > > > + char *func, *probe_name, *func_end;
> > > > + char *func_name, binary_path[512];
> > > > + unsigned long long raw_offset;
> > > > + size_t offset = 0;
> > > > + int n;
> > > > +
> > > > + *link = NULL;
> > > > +
> > > > + opts.retprobe = str_has_pfx(prog->sec_name,
> > > > "uretprobe/");
> > > > + if (opts.retprobe)
> > > > + probe_name = prog->sec_name +
> > > > sizeof("uretprobe/") - 1;
> > > > + else
> > > > + probe_name = prog->sec_name + sizeof("uprobe/") -
> > > > 1;
> > >
> > > I think this will mishandle SEC("uretprobe"), let's fix this in a
> > > follow up (and see a note about uretprobe selftests)
> >
> > So I actually fixed it up a little bit to avoid test failure on s390x
> > arch. But now it's a different problem, complaining about not being
Thanks for doing all the fix-ups Andrii, and to Ilya for the Debian/s390
and selftests fixups!
> > able to resolve libc.so.6. CC'ing Ilya, but I was wondering if it's
> > better to use more generic "libc.so" instead of "libc.so.6"? Have you
> > tried that?
>
I looked at that, and unfortunately it's tricky because on some platforms
libc.so is a text GNU ld config file - here's what it looks like on my
system:
$ cat /usr/lib64/libc.so
/* GNU ld script
Use the shared library, but some functions are only in
the static library, so try that secondarily. */
OUTPUT_FORMAT(elf64-x86-64)
GROUP ( /lib64/libc.so.6 /usr/lib64/libc_nonshared.a AS_NEEDED (
/lib64/ld-linux-x86-64.so.2 ) )
I tried the dlopen()/dlinfo() trick with libc.so, thinking we might be
able to tap into native linking mechanisms such that it would parse
that file, but it doesn't work for dlopen()ing libc.so unfortunately;
it needed the .6 suffix.
> I believe it's a Debian-specific issue (our s390x CI image is Debian).
> libc is still called libc.so.6, but it's located in
> /lib/s390x-linux-gnu.
> This must also be an issue on Intel and other architectures.
> I'll send a patch.
>
Thanks!
next prev parent reply other threads:[~2022-04-04 22:16 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-30 15:26 [PATCH v5 bpf-next 0/5] libbpf: name-based u[ret]probe attach Alan Maguire
2022-03-30 15:26 ` [PATCH v5 bpf-next 1/5] libbpf: bpf_program__attach_uprobe_opts() should determine paths for programs/libraries where possible Alan Maguire
2022-04-04 1:14 ` Andrii Nakryiko
2022-03-30 15:26 ` [PATCH v5 bpf-next 2/5] libbpf: support function name-based attach uprobes Alan Maguire
2022-04-04 1:14 ` Andrii Nakryiko
2022-03-30 15:26 ` [PATCH v5 bpf-next 3/5] libbpf: add auto-attach for uprobes based on section name Alan Maguire
2022-04-04 1:14 ` Andrii Nakryiko
2022-04-04 4:46 ` Andrii Nakryiko
2022-04-04 4:49 ` Andrii Nakryiko
2022-04-04 9:36 ` Ilya Leoshkevich
2022-04-04 21:43 ` Alan Maguire [this message]
2022-03-30 15:26 ` [PATCH v5 bpf-next 4/5] selftests/bpf: add tests for u[ret]probe attach by name Alan Maguire
2022-03-30 15:26 ` [PATCH v5 bpf-next 5/5] selftests/bpf: add tests for uprobe auto-attach via skeleton Alan Maguire
2022-04-04 1:15 ` Andrii Nakryiko
2022-04-04 1:14 ` [PATCH v5 bpf-next 0/5] libbpf: name-based u[ret]probe attach Andrii Nakryiko
2022-04-05 10:27 ` Alan Maguire
2022-04-05 23:47 ` Andrii Nakryiko
2022-04-04 1:20 ` patchwork-bot+netdevbpf
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=alpine.LRH.2.23.451.2204042228270.6114@MyRouter \
--to=alan.maguire@oracle.com \
--cc=andrii.nakryiko@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=iii@linux.ibm.com \
--cc=john.fastabend@gmail.com \
--cc=kafai@fb.com \
--cc=kpsingh@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=songliubraving@fb.com \
--cc=sunyucong@gmail.com \
--cc=toke@redhat.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox