From: tip-bot for Wang Nan <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: mingo@kernel.org, dsahern@gmail.com, daniel@iogearbox.net,
linux-kernel@vger.kernel.org, hpa@zytor.com, acme@redhat.com,
masami.hiramatsu.pt@hitachi.com, tglx@linutronix.de,
xiakaixu@huawei.com, a.p.zijlstra@chello.nl, lizefan@huawei.com,
wangnan0@huawei.com, hekuang@huawei.com, jolsa@kernel.org,
brendan.d.gregg@gmail.com, namhyung@kernel.org, ast@plumgrid.com
Subject: [tip:perf/core] perf probe: Try to use symbol table if searching debug info failed
Date: Fri, 21 Aug 2015 23:54:27 -0700 [thread overview]
Message-ID: <tip-1c0bd0e891aaed0219010bfe79b32e1b0b82d662@git.kernel.org> (raw)
In-Reply-To: <1440151770-129878-2-git-send-email-wangnan0@huawei.com>
Commit-ID: 1c0bd0e891aaed0219010bfe79b32e1b0b82d662
Gitweb: http://git.kernel.org/tip/1c0bd0e891aaed0219010bfe79b32e1b0b82d662
Author: Wang Nan <wangnan0@huawei.com>
AuthorDate: Fri, 21 Aug 2015 10:09:02 +0000
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Fri, 21 Aug 2015 12:57:20 -0300
perf probe: Try to use symbol table if searching debug info failed
A problem can occur in a statically linked perf when vmlinux can be found:
# perf probe --add sys_epoll_pwait
probe-definition(0): sys_epoll_pwait
symbol:sys_epoll_pwait file:(null) line:0 offset:0 return:0 lazy:(null)
0 arguments
Looking at the vmlinux_path (7 entries long)
Using /lib/modules/4.2.0-rc1+/build/vmlinux for symbols
Open Debuginfo file: /lib/modules/4.2.0-rc1+/build/vmlinux
Try to find probe point from debuginfo.
Symbol sys_epoll_pwait address found : ffffffff8122bd40
Matched function: SyS_epoll_pwait
Failed to get call frame on 0xffffffff8122bd40
An error occurred in debuginfo analysis (-2).
Error: Failed to add events. Reason: No such file or directory (Code: -2)
The reason is caused by libdw that, if libdw is statically linked, it
can't load libebl_{arch}.so reliable.
In this case it is still possible to get the address from
/proc/kalksyms. However, perf tries that only when libdw returns
-EBADF.
This patch gives it another chance to utilize symbol table, even if
libdw returns an error code other than -EBADF.
After applying this patch:
# perf probe -nv --add sys_epoll_pwait
probe-definition(0): sys_epoll_pwait
symbol:sys_epoll_pwait file:(null) line:0 offset:0 return:0 lazy:(null)
0 arguments
Looking at the vmlinux_path (7 entries long)
Using /lib/modules/4.2.0-rc1+/build/vmlinux for symbols
Open Debuginfo file: /lib/modules/4.2.0-rc1+/build/vmlinux
Try to find probe point from debuginfo.
Symbol sys_epoll_pwait address found : ffffffff8122bd40
Matched function: SyS_epoll_pwait
Failed to get call frame on 0xffffffff8122bd40
An error occurred in debuginfo analysis (-2).
Trying to use symbols.
Opening /sys/kernel/debug/tracing/kprobe_events write=1
Added new event:
Writing event: p:probe/sys_epoll_pwait _text+2276672
probe:sys_epoll_pwait (on sys_epoll_pwait)
You can now use it in all perf tools, such as:
perf record -e probe:sys_epoll_pwait -aR sleep 1
Although libdw returns an error (Failed to get call frame), perf tries
symbol table and finally gets correct address.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: Alexei Starovoitov <ast@plumgrid.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: David Ahern <dsahern@gmail.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kaixu Xia <xiakaixu@huawei.com>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1440151770-129878-2-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/probe-event.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c
index fe4941a..f07374b 100644
--- a/tools/perf/util/probe-event.c
+++ b/tools/perf/util/probe-event.c
@@ -705,9 +705,10 @@ static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
}
/* Error path : ntevs < 0 */
pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
- if (ntevs == -EBADF) {
- pr_warning("Warning: No dwarf info found in the vmlinux - "
- "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
+ if (ntevs < 0) {
+ if (ntevs == -EBADF)
+ pr_warning("Warning: No dwarf info found in the vmlinux - "
+ "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
if (!need_dwarf) {
pr_debug("Trying to use symbols.\n");
return 0;
next prev parent reply other threads:[~2015-08-22 6:55 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-21 10:09 [GIT PULL 00/29] perf tools: filtering events using eBPF programs Wang Nan
2015-08-21 10:09 ` [PATCH 01/29] perf probe: Try to use symbol table if searching debug info failed Wang Nan
2015-08-21 14:13 ` Arnaldo Carvalho de Melo
2015-08-22 6:54 ` tip-bot for Wang Nan [this message]
2015-08-21 10:09 ` [PATCH 02/29] perf tools: Make perf depend on libbpf Wang Nan
2015-08-21 10:09 ` [PATCH 03/29] perf ebpf: Add the libbpf glue Wang Nan
2015-08-21 10:09 ` [PATCH 04/29] perf tools: Enable passing bpf object file to --event Wang Nan
2015-08-21 10:09 ` [PATCH 05/29] perf probe: Attach trace_probe_event with perf_probe_event Wang Nan
2015-08-21 10:09 ` [PATCH 06/29] perf record, bpf: Parse and probe eBPF programs probe points Wang Nan
2015-08-21 10:09 ` [PATCH 07/29] perf bpf: Collect 'struct perf_probe_event' for bpf_program Wang Nan
2015-08-21 10:09 ` [PATCH 08/29] perf record: Load all eBPF object into kernel Wang Nan
2015-08-21 10:09 ` [PATCH 09/29] perf tools: Add bpf_fd field to evsel and config it Wang Nan
2015-08-21 10:09 ` [PATCH 10/29] perf tools: Attach eBPF program to perf event Wang Nan
2015-08-21 10:09 ` [PATCH 11/29] perf tools: Suppress probing messages when probing by BPF loading Wang Nan
2015-08-21 10:09 ` [PATCH 12/29] perf record: Add clang options for compiling BPF scripts Wang Nan
2015-08-21 10:09 ` [PATCH 13/29] perf tools: Infrastructure for compiling scriptlets when passing '.c' to --event Wang Nan
2015-08-21 10:09 ` [PATCH 14/29] perf tests: Enforce LLVM test for BPF test Wang Nan
2015-08-21 10:09 ` [PATCH 15/29] perf test: Add 'perf test BPF' Wang Nan
2015-08-21 10:09 ` [PATCH 16/29] bpf tools: Load a program with different instances using preprocessor Wang Nan
2015-08-21 10:09 ` [PATCH 17/29] perf tools: Fix probe-event.h include Wang Nan
2015-08-21 10:09 ` [PATCH 18/29] perf probe: Reset args and nargs for probe_trace_event when failure Wang Nan
2015-08-21 10:09 ` [PATCH 19/29] perf tools: Move linux/filter.h to tools/include Wang Nan
2015-08-21 10:09 ` [PATCH 20/29] perf tools: Add BPF_PROLOGUE config options for further patches Wang Nan
2015-08-21 10:09 ` [PATCH 21/29] perf tools: Introduce arch_get_reg_info() for x86 Wang Nan
2015-08-21 10:09 ` [PATCH 22/29] perf tools: Add prologue for BPF programs for fetching arguments Wang Nan
2015-08-21 10:09 ` [PATCH 23/29] perf tools: Generate prologue for BPF programs Wang Nan
2015-08-21 10:09 ` [PATCH 24/29] perf tools: Use same BPF program if arguments are identical Wang Nan
2015-08-21 10:09 ` [PATCH 25/29] perf record: Support custom vmlinux path Wang Nan
2015-08-21 10:09 ` [PATCH 26/29] perf probe: Init symbol as kprobe Wang Nan
2015-08-21 10:09 ` [PATCH 27/29] perf tools: Support attach BPF program on uprobe events Wang Nan
2015-08-21 10:09 ` [PATCH 28/29] tools lib traceevent: Support function __get_dynamic_array_len Wang Nan
2015-08-21 16:00 ` Arnaldo Carvalho de Melo
2015-08-21 10:09 ` [PATCH 29/29] bpf: Introduce function for outputing data to perf event Wang Nan
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=tip-1c0bd0e891aaed0219010bfe79b32e1b0b82d662@git.kernel.org \
--to=tipbot@zytor.com \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@redhat.com \
--cc=ast@plumgrid.com \
--cc=brendan.d.gregg@gmail.com \
--cc=daniel@iogearbox.net \
--cc=dsahern@gmail.com \
--cc=hekuang@huawei.com \
--cc=hpa@zytor.com \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tip-commits@vger.kernel.org \
--cc=lizefan@huawei.com \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
--cc=tglx@linutronix.de \
--cc=wangnan0@huawei.com \
--cc=xiakaixu@huawei.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