mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 10:15:10 +07:00
7ab31d94bf
We indicate support for accepting sym+offset with kretprobes through a line in ftrace README. Parse the same to identify support and choose the appropriate format for kprobe_events. As an example, without this perf patch, but with the ftrace changes: naveen@ubuntu:~/linux/tools/perf$ sudo cat /sys/kernel/debug/tracing/README | grep kretprobe place (kretprobe): [<module>:]<symbol>[+<offset>]|<memaddr> naveen@ubuntu:~/linux/tools/perf$ naveen@ubuntu:~/linux/tools/perf$ sudo ./perf probe -v do_open%return probe-definition(0): do_open%return symbol:do_open file:(null) line:0 offset:0 return:1 lazy:(null) 0 arguments Looking at the vmlinux_path (8 entries long) Using /boot/vmlinux for symbols Open Debuginfo file: /boot/vmlinux Try to find probe point from debuginfo. Matched function: do_open [2d0c7d8] Probe point found: do_open+0 Matched function: do_open [35d76b5] found inline addr: 0xc0000000004ba984 Failed to find "do_open%return", because do_open is an inlined function and has no return point. An error occurred in debuginfo analysis (-22). Trying to use symbols. Opening /sys/kernel/debug/tracing//kprobe_events write=1 Writing event: r:probe/do_open do_open+0 Writing event: r:probe/do_open_1 do_open+0 Added new events: probe:do_open (on do_open%return) probe:do_open_1 (on do_open%return) You can now use it in all perf tools, such as: perf record -e probe:do_open_1 -aR sleep 1 naveen@ubuntu:~/linux/tools/perf$ sudo cat /sys/kernel/debug/kprobes/list c000000000041370 k kretprobe_trampoline+0x0 [OPTIMIZED] c0000000004433d0 r do_open+0x0 [DISABLED] c0000000004433d0 r do_open+0x0 [DISABLED] And after this patch (and the subsequent powerpc patch): naveen@ubuntu:~/linux/tools/perf$ sudo ./perf probe -v do_open%return probe-definition(0): do_open%return symbol:do_open file:(null) line:0 offset:0 return:1 lazy:(null) 0 arguments Looking at the vmlinux_path (8 entries long) Using /boot/vmlinux for symbols Open Debuginfo file: /boot/vmlinux Try to find probe point from debuginfo. Matched function: do_open [2d0c7d8] Probe point found: do_open+0 Matched function: do_open [35d76b5] found inline addr: 0xc0000000004ba984 Failed to find "do_open%return", because do_open is an inlined function and has no return point. An error occurred in debuginfo analysis (-22). Trying to use symbols. Opening /sys/kernel/debug/tracing//README write=0 Opening /sys/kernel/debug/tracing//kprobe_events write=1 Writing event: r:probe/do_open _text+4469712 Writing event: r:probe/do_open_1 _text+4956248 Added new events: probe:do_open (on do_open%return) probe:do_open_1 (on do_open%return) You can now use it in all perf tools, such as: perf record -e probe:do_open_1 -aR sleep 1 naveen@ubuntu:~/linux/tools/perf$ sudo cat /sys/kernel/debug/kprobes/list c000000000041370 k kretprobe_trampoline+0x0 [OPTIMIZED] c0000000004433d0 r do_open+0x0 [DISABLED] c0000000004ba058 r do_open+0x8 [DISABLED] Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: linuxppc-dev@lists.ozlabs.org Link: http://lkml.kernel.org/r/496ef9f33c1ab16286ece9dd62aa672807aef91c.1488961018.git.naveen.n.rao@linux.vnet.ibm.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
77 lines
2.4 KiB
C
77 lines
2.4 KiB
C
#ifndef __PROBE_FILE_H
|
|
#define __PROBE_FILE_H
|
|
|
|
#include "strlist.h"
|
|
#include "strfilter.h"
|
|
#include "probe-event.h"
|
|
|
|
/* Cache of probe definitions */
|
|
struct probe_cache_entry {
|
|
struct list_head node;
|
|
bool sdt;
|
|
struct perf_probe_event pev;
|
|
char *spev;
|
|
struct strlist *tevlist;
|
|
};
|
|
|
|
struct probe_cache {
|
|
int fd;
|
|
struct list_head entries;
|
|
};
|
|
|
|
enum probe_type {
|
|
PROBE_TYPE_U = 0,
|
|
PROBE_TYPE_S,
|
|
PROBE_TYPE_X,
|
|
PROBE_TYPE_STRING,
|
|
PROBE_TYPE_BITFIELD,
|
|
PROBE_TYPE_END,
|
|
};
|
|
|
|
#define PF_FL_UPROBE 1
|
|
#define PF_FL_RW 2
|
|
#define for_each_probe_cache_entry(entry, pcache) \
|
|
list_for_each_entry(entry, &pcache->entries, node)
|
|
|
|
/* probe-file.c depends on libelf */
|
|
#ifdef HAVE_LIBELF_SUPPORT
|
|
int open_trace_file(const char *trace_file, bool readwrite);
|
|
int probe_file__open(int flag);
|
|
int probe_file__open_both(int *kfd, int *ufd, int flag);
|
|
struct strlist *probe_file__get_namelist(int fd);
|
|
struct strlist *probe_file__get_rawlist(int fd);
|
|
int probe_file__add_event(int fd, struct probe_trace_event *tev);
|
|
int probe_file__del_events(int fd, struct strfilter *filter);
|
|
int probe_file__get_events(int fd, struct strfilter *filter,
|
|
struct strlist *plist);
|
|
int probe_file__del_strlist(int fd, struct strlist *namelist);
|
|
|
|
int probe_cache_entry__get_event(struct probe_cache_entry *entry,
|
|
struct probe_trace_event **tevs);
|
|
|
|
struct probe_cache *probe_cache__new(const char *target);
|
|
int probe_cache__add_entry(struct probe_cache *pcache,
|
|
struct perf_probe_event *pev,
|
|
struct probe_trace_event *tevs, int ntevs);
|
|
int probe_cache__scan_sdt(struct probe_cache *pcache, const char *pathname);
|
|
int probe_cache__commit(struct probe_cache *pcache);
|
|
void probe_cache__purge(struct probe_cache *pcache);
|
|
void probe_cache__delete(struct probe_cache *pcache);
|
|
int probe_cache__filter_purge(struct probe_cache *pcache,
|
|
struct strfilter *filter);
|
|
struct probe_cache_entry *probe_cache__find(struct probe_cache *pcache,
|
|
struct perf_probe_event *pev);
|
|
struct probe_cache_entry *probe_cache__find_by_name(struct probe_cache *pcache,
|
|
const char *group, const char *event);
|
|
int probe_cache__show_all_caches(struct strfilter *filter);
|
|
bool probe_type_is_available(enum probe_type type);
|
|
bool kretprobe_offset_is_supported(void);
|
|
#else /* ! HAVE_LIBELF_SUPPORT */
|
|
static inline struct probe_cache *probe_cache__new(const char *tgt __maybe_unused)
|
|
{
|
|
return NULL;
|
|
}
|
|
#define probe_cache__delete(pcache) do {} while (0)
|
|
#endif
|
|
#endif
|