4 * Builtin 'trace' command:
6 * Display a continuously updated trace of any workload, CPU, specific PID,
7 * system wide, etc. Default format is loosely strace like, but any other
8 * event may be specified using --event.
10 * Copyright (C) 2012, 2013, 2014, 2015 Red Hat Inc, Arnaldo Carvalho de Melo <
[email protected]>
12 * Initially based on the 'trace' prototype by Thomas Gleixner:
14 * http://lwn.net/Articles/415728/ ("Announcing a new utility: 'trace'")
17 #include "util/record.h"
18 #include <api/fs/tracing_path.h>
19 #ifdef HAVE_LIBBPF_SUPPORT
22 #include "util/bpf_map.h"
23 #include "util/rlimit.h"
25 #include "util/cgroup.h"
26 #include "util/color.h"
27 #include "util/config.h"
28 #include "util/debug.h"
31 #include "util/event.h"
32 #include "util/evsel.h"
33 #include "util/evsel_fprintf.h"
34 #include "util/synthetic-events.h"
35 #include "util/evlist.h"
36 #include "util/evswitch.h"
37 #include "util/mmap.h"
38 #include <subcmd/pager.h>
39 #include <subcmd/exec-cmd.h>
40 #include "util/machine.h"
42 #include "util/symbol.h"
43 #include "util/path.h"
44 #include "util/session.h"
45 #include "util/thread.h"
46 #include <subcmd/parse-options.h>
47 #include "util/strlist.h"
48 #include "util/intlist.h"
49 #include "util/thread_map.h"
50 #include "util/stat.h"
51 #include "util/tool.h"
52 #include "util/util.h"
53 #include "trace/beauty/beauty.h"
54 #include "trace-event.h"
55 #include "util/parse-events.h"
56 #include "util/bpf-loader.h"
57 #include "util/tracepoint.h"
58 #include "callchain.h"
59 #include "print_binary.h"
61 #include "syscalltbl.h"
62 #include "rb_resort.h"
71 #include <linux/err.h>
72 #include <linux/filter.h>
73 #include <linux/kernel.h>
74 #include <linux/random.h>
75 #include <linux/stringify.h>
76 #include <linux/time64.h>
77 #include <linux/zalloc.h>
79 #include <sys/sysmacros.h>
81 #include <linux/ctype.h>
82 #include <perf/mmap.h>
84 #ifdef HAVE_LIBTRACEEVENT
85 #include <traceevent/event-parse.h>
89 # define O_CLOEXEC 02000000
92 #ifndef F_LINUX_SPECIFIC_BASE
93 # define F_LINUX_SPECIFIC_BASE 1024
96 #define RAW_SYSCALL_ARGS_NUM 6
99 * strtoul: Go from a string to a value, i.e. for msr: MSR_FS_BASE to 0xc0000100
101 struct syscall_arg_fmt {
102 size_t (*scnprintf)(char *bf, size_t size, struct syscall_arg *arg);
103 bool (*strtoul)(char *bf, size_t size, struct syscall_arg *arg, u64 *val);
104 unsigned long (*mask_val)(struct syscall_arg *arg, unsigned long val);
107 u16 nr_entries; // for arrays
115 const char *sys_enter,
118 struct syscall_arg_fmt arg[RAW_SYSCALL_ARGS_NUM];
126 struct perf_tool tool;
127 struct syscalltbl *sctbl;
129 struct syscall *table;
130 struct { // per syscall BPF_MAP_TYPE_PROG_ARRAY
131 struct bpf_map *sys_enter,
135 struct evsel *sys_enter,
139 struct bpf_program *unaugmented_prog;
144 struct record_opts opts;
145 struct evlist *evlist;
146 struct machine *host;
147 struct thread *current;
148 struct bpf_object *bpf_obj;
149 struct cgroup *cgroup;
152 unsigned long nr_events;
153 unsigned long nr_events_printed;
154 unsigned long max_events;
155 struct evswitch evswitch;
156 struct strlist *ev_qualifier;
166 double duration_filter;
172 unsigned int max_stack;
173 unsigned int min_stack;
174 int raw_augmented_syscalls_args_size;
175 bool raw_augmented_syscalls;
176 bool fd_path_disabled;
178 bool not_ev_qualifier;
182 bool multiple_threads;
189 bool show_tool_stats;
191 bool libtraceevent_print;
192 bool kernel_syscallchains;
198 bool show_string_prefix;
202 char *perfconfig_events;
204 struct ordered_events data;
212 u64 (*integer)(struct tp_field *field, struct perf_sample *sample);
213 void *(*pointer)(struct tp_field *field, struct perf_sample *sample);
217 #define TP_UINT_FIELD(bits) \
218 static u64 tp_field__u##bits(struct tp_field *field, struct perf_sample *sample) \
221 memcpy(&value, sample->raw_data + field->offset, sizeof(value)); \
230 #define TP_UINT_FIELD__SWAPPED(bits) \
231 static u64 tp_field__swapped_u##bits(struct tp_field *field, struct perf_sample *sample) \
234 memcpy(&value, sample->raw_data + field->offset, sizeof(value)); \
235 return bswap_##bits(value);\
238 TP_UINT_FIELD__SWAPPED(16);
239 TP_UINT_FIELD__SWAPPED(32);
240 TP_UINT_FIELD__SWAPPED(64);
242 static int __tp_field__init_uint(struct tp_field *field, int size, int offset, bool needs_swap)
244 field->offset = offset;
248 field->integer = tp_field__u8;
251 field->integer = needs_swap ? tp_field__swapped_u16 : tp_field__u16;
254 field->integer = needs_swap ? tp_field__swapped_u32 : tp_field__u32;
257 field->integer = needs_swap ? tp_field__swapped_u64 : tp_field__u64;
266 static int tp_field__init_uint(struct tp_field *field, struct tep_format_field *format_field, bool needs_swap)
268 return __tp_field__init_uint(field, format_field->size, format_field->offset, needs_swap);
271 static void *tp_field__ptr(struct tp_field *field, struct perf_sample *sample)
273 return sample->raw_data + field->offset;
276 static int __tp_field__init_ptr(struct tp_field *field, int offset)
278 field->offset = offset;
279 field->pointer = tp_field__ptr;
283 static int tp_field__init_ptr(struct tp_field *field, struct tep_format_field *format_field)
285 return __tp_field__init_ptr(field, format_field->offset);
291 struct tp_field args, ret;
296 * The evsel->priv as used by 'perf trace'
297 * sc: for raw_syscalls:sys_{enter,exit} and syscalls:sys_{enter,exit}_SYSCALLNAME
298 * fmt: for all the other tracepoints
301 struct syscall_tp sc;
302 struct syscall_arg_fmt *fmt;
305 static struct evsel_trace *evsel_trace__new(void)
307 return zalloc(sizeof(struct evsel_trace));
310 static void evsel_trace__delete(struct evsel_trace *et)
320 * Used with raw_syscalls:sys_{enter,exit} and with the
321 * syscalls:sys_{enter,exit}_SYSCALL tracepoints
323 static inline struct syscall_tp *__evsel__syscall_tp(struct evsel *evsel)
325 struct evsel_trace *et = evsel->priv;
330 static struct syscall_tp *evsel__syscall_tp(struct evsel *evsel)
332 if (evsel->priv == NULL) {
333 evsel->priv = evsel_trace__new();
334 if (evsel->priv == NULL)
338 return __evsel__syscall_tp(evsel);
342 * Used with all the other tracepoints.
344 static inline struct syscall_arg_fmt *__evsel__syscall_arg_fmt(struct evsel *evsel)
346 struct evsel_trace *et = evsel->priv;
351 static struct syscall_arg_fmt *evsel__syscall_arg_fmt(struct evsel *evsel)
353 struct evsel_trace *et = evsel->priv;
355 if (evsel->priv == NULL) {
356 et = evsel->priv = evsel_trace__new();
362 if (et->fmt == NULL) {
363 et->fmt = calloc(evsel->tp_format->format.nr_fields, sizeof(struct syscall_arg_fmt));
368 return __evsel__syscall_arg_fmt(evsel);
371 evsel_trace__delete(evsel->priv);
376 static int evsel__init_tp_uint_field(struct evsel *evsel, struct tp_field *field, const char *name)
378 struct tep_format_field *format_field = evsel__field(evsel, name);
380 if (format_field == NULL)
383 return tp_field__init_uint(field, format_field, evsel->needs_swap);
386 #define perf_evsel__init_sc_tp_uint_field(evsel, name) \
387 ({ struct syscall_tp *sc = __evsel__syscall_tp(evsel);\
388 evsel__init_tp_uint_field(evsel, &sc->name, #name); })
390 static int evsel__init_tp_ptr_field(struct evsel *evsel, struct tp_field *field, const char *name)
392 struct tep_format_field *format_field = evsel__field(evsel, name);
394 if (format_field == NULL)
397 return tp_field__init_ptr(field, format_field);
400 #define perf_evsel__init_sc_tp_ptr_field(evsel, name) \
401 ({ struct syscall_tp *sc = __evsel__syscall_tp(evsel);\
402 evsel__init_tp_ptr_field(evsel, &sc->name, #name); })
404 static void evsel__delete_priv(struct evsel *evsel)
407 evsel__delete(evsel);
410 static int evsel__init_syscall_tp(struct evsel *evsel)
412 struct syscall_tp *sc = evsel__syscall_tp(evsel);
415 if (evsel__init_tp_uint_field(evsel, &sc->id, "__syscall_nr") &&
416 evsel__init_tp_uint_field(evsel, &sc->id, "nr"))
424 static int evsel__init_augmented_syscall_tp(struct evsel *evsel, struct evsel *tp)
426 struct syscall_tp *sc = evsel__syscall_tp(evsel);
429 struct tep_format_field *syscall_id = evsel__field(tp, "id");
430 if (syscall_id == NULL)
431 syscall_id = evsel__field(tp, "__syscall_nr");
432 if (syscall_id == NULL ||
433 __tp_field__init_uint(&sc->id, syscall_id->size, syscall_id->offset, evsel->needs_swap))
442 static int evsel__init_augmented_syscall_tp_args(struct evsel *evsel)
444 struct syscall_tp *sc = __evsel__syscall_tp(evsel);
446 return __tp_field__init_ptr(&sc->args, sc->id.offset + sizeof(u64));
449 static int evsel__init_augmented_syscall_tp_ret(struct evsel *evsel)
451 struct syscall_tp *sc = __evsel__syscall_tp(evsel);
453 return __tp_field__init_uint(&sc->ret, sizeof(u64), sc->id.offset + sizeof(u64), evsel->needs_swap);
456 static int evsel__init_raw_syscall_tp(struct evsel *evsel, void *handler)
458 if (evsel__syscall_tp(evsel) != NULL) {
459 if (perf_evsel__init_sc_tp_uint_field(evsel, id))
462 evsel->handler = handler;
469 static struct evsel *perf_evsel__raw_syscall_newtp(const char *direction, void *handler)
471 struct evsel *evsel = evsel__newtp("raw_syscalls", direction);
473 /* older kernel (e.g., RHEL6) use syscalls:{enter,exit} */
475 evsel = evsel__newtp("syscalls", direction);
480 if (evsel__init_raw_syscall_tp(evsel, handler))
486 evsel__delete_priv(evsel);
490 #define perf_evsel__sc_tp_uint(evsel, name, sample) \
491 ({ struct syscall_tp *fields = __evsel__syscall_tp(evsel); \
492 fields->name.integer(&fields->name, sample); })
494 #define perf_evsel__sc_tp_ptr(evsel, name, sample) \
495 ({ struct syscall_tp *fields = __evsel__syscall_tp(evsel); \
496 fields->name.pointer(&fields->name, sample); })
498 size_t strarray__scnprintf_suffix(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_suffix, int val)
500 int idx = val - sa->offset;
502 if (idx < 0 || idx >= sa->nr_entries || sa->entries[idx] == NULL) {
503 size_t printed = scnprintf(bf, size, intfmt, val);
505 printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sa->prefix);
509 return scnprintf(bf, size, "%s%s", sa->entries[idx], show_suffix ? sa->prefix : "");
512 size_t strarray__scnprintf(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_prefix, int val)
514 int idx = val - sa->offset;
516 if (idx < 0 || idx >= sa->nr_entries || sa->entries[idx] == NULL) {
517 size_t printed = scnprintf(bf, size, intfmt, val);
519 printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sa->prefix);
523 return scnprintf(bf, size, "%s%s", show_prefix ? sa->prefix : "", sa->entries[idx]);
526 static size_t __syscall_arg__scnprintf_strarray(char *bf, size_t size,
528 struct syscall_arg *arg)
530 return strarray__scnprintf(arg->parm, bf, size, intfmt, arg->show_string_prefix, arg->val);
533 static size_t syscall_arg__scnprintf_strarray(char *bf, size_t size,
534 struct syscall_arg *arg)
536 return __syscall_arg__scnprintf_strarray(bf, size, "%d", arg);
539 #define SCA_STRARRAY syscall_arg__scnprintf_strarray
541 bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
543 return strarray__strtoul(arg->parm, bf, size, ret);
546 bool syscall_arg__strtoul_strarray_flags(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
548 return strarray__strtoul_flags(arg->parm, bf, size, ret);
551 bool syscall_arg__strtoul_strarrays(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
553 return strarrays__strtoul(arg->parm, bf, size, ret);
556 size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct syscall_arg *arg)
558 return strarray__scnprintf_flags(arg->parm, bf, size, arg->show_string_prefix, arg->val);
561 size_t strarrays__scnprintf(struct strarrays *sas, char *bf, size_t size, const char *intfmt, bool show_prefix, int val)
566 for (i = 0; i < sas->nr_entries; ++i) {
567 struct strarray *sa = sas->entries[i];
568 int idx = val - sa->offset;
570 if (idx >= 0 && idx < sa->nr_entries) {
571 if (sa->entries[idx] == NULL)
573 return scnprintf(bf, size, "%s%s", show_prefix ? sa->prefix : "", sa->entries[idx]);
577 printed = scnprintf(bf, size, intfmt, val);
579 printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sas->entries[0]->prefix);
583 bool strarray__strtoul(struct strarray *sa, char *bf, size_t size, u64 *ret)
587 for (i = 0; i < sa->nr_entries; ++i) {
588 if (sa->entries[i] && strncmp(sa->entries[i], bf, size) == 0 && sa->entries[i][size] == '\0') {
589 *ret = sa->offset + i;
597 bool strarray__strtoul_flags(struct strarray *sa, char *bf, size_t size, u64 *ret)
600 char *tok = bf, *sep, *end;
607 sep = memchr(tok, '|', size);
609 size -= sep - tok + 1;
612 while (end > tok && isspace(*end))
615 toklen = end - tok + 1;
618 while (isspace(*tok))
621 if (isalpha(*tok) || *tok == '_') {
622 if (!strarray__strtoul(sa, tok, toklen, &val))
625 val = strtoul(tok, NULL, 0);
627 *ret |= (1 << (val - 1));
637 bool strarrays__strtoul(struct strarrays *sas, char *bf, size_t size, u64 *ret)
641 for (i = 0; i < sas->nr_entries; ++i) {
642 struct strarray *sa = sas->entries[i];
644 if (strarray__strtoul(sa, bf, size, ret))
651 size_t syscall_arg__scnprintf_strarrays(char *bf, size_t size,
652 struct syscall_arg *arg)
654 return strarrays__scnprintf(arg->parm, bf, size, "%d", arg->show_string_prefix, arg->val);
658 #define AT_FDCWD -100
661 static size_t syscall_arg__scnprintf_fd_at(char *bf, size_t size,
662 struct syscall_arg *arg)
665 const char *prefix = "AT_FD";
668 return scnprintf(bf, size, "%s%s", arg->show_string_prefix ? prefix : "", "CWD");
670 return syscall_arg__scnprintf_fd(bf, size, arg);
673 #define SCA_FDAT syscall_arg__scnprintf_fd_at
675 static size_t syscall_arg__scnprintf_close_fd(char *bf, size_t size,
676 struct syscall_arg *arg);
678 #define SCA_CLOSE_FD syscall_arg__scnprintf_close_fd
680 size_t syscall_arg__scnprintf_hex(char *bf, size_t size, struct syscall_arg *arg)
682 return scnprintf(bf, size, "%#lx", arg->val);
685 size_t syscall_arg__scnprintf_ptr(char *bf, size_t size, struct syscall_arg *arg)
688 return scnprintf(bf, size, "NULL");
689 return syscall_arg__scnprintf_hex(bf, size, arg);
692 size_t syscall_arg__scnprintf_int(char *bf, size_t size, struct syscall_arg *arg)
694 return scnprintf(bf, size, "%d", arg->val);
697 size_t syscall_arg__scnprintf_long(char *bf, size_t size, struct syscall_arg *arg)
699 return scnprintf(bf, size, "%ld", arg->val);
702 static size_t syscall_arg__scnprintf_char_array(char *bf, size_t size, struct syscall_arg *arg)
704 // XXX Hey, maybe for sched:sched_switch prev/next comm fields we can
705 // fill missing comms using thread__set_comm()...
706 // here or in a special syscall_arg__scnprintf_pid_sched_tp...
707 return scnprintf(bf, size, "\"%-.*s\"", arg->fmt->nr_entries ?: arg->len, arg->val);
710 #define SCA_CHAR_ARRAY syscall_arg__scnprintf_char_array
712 static const char *bpf_cmd[] = {
713 "MAP_CREATE", "MAP_LOOKUP_ELEM", "MAP_UPDATE_ELEM", "MAP_DELETE_ELEM",
714 "MAP_GET_NEXT_KEY", "PROG_LOAD", "OBJ_PIN", "OBJ_GET", "PROG_ATTACH",
715 "PROG_DETACH", "PROG_TEST_RUN", "PROG_GET_NEXT_ID", "MAP_GET_NEXT_ID",
716 "PROG_GET_FD_BY_ID", "MAP_GET_FD_BY_ID", "OBJ_GET_INFO_BY_FD",
717 "PROG_QUERY", "RAW_TRACEPOINT_OPEN", "BTF_LOAD", "BTF_GET_FD_BY_ID",
718 "TASK_FD_QUERY", "MAP_LOOKUP_AND_DELETE_ELEM", "MAP_FREEZE",
719 "BTF_GET_NEXT_ID", "MAP_LOOKUP_BATCH", "MAP_LOOKUP_AND_DELETE_BATCH",
720 "MAP_UPDATE_BATCH", "MAP_DELETE_BATCH", "LINK_CREATE", "LINK_UPDATE",
721 "LINK_GET_FD_BY_ID", "LINK_GET_NEXT_ID", "ENABLE_STATS", "ITER_CREATE",
722 "LINK_DETACH", "PROG_BIND_MAP",
724 static DEFINE_STRARRAY(bpf_cmd, "BPF_");
726 static const char *fsmount_flags[] = {
729 static DEFINE_STRARRAY(fsmount_flags, "FSMOUNT_");
731 #include "trace/beauty/generated/fsconfig_arrays.c"
733 static DEFINE_STRARRAY(fsconfig_cmds, "FSCONFIG_");
735 static const char *epoll_ctl_ops[] = { "ADD", "DEL", "MOD", };
736 static DEFINE_STRARRAY_OFFSET(epoll_ctl_ops, "EPOLL_CTL_", 1);
738 static const char *itimers[] = { "REAL", "VIRTUAL", "PROF", };
739 static DEFINE_STRARRAY(itimers, "ITIMER_");
741 static const char *keyctl_options[] = {
742 "GET_KEYRING_ID", "JOIN_SESSION_KEYRING", "UPDATE", "REVOKE", "CHOWN",
743 "SETPERM", "DESCRIBE", "CLEAR", "LINK", "UNLINK", "SEARCH", "READ",
744 "INSTANTIATE", "NEGATE", "SET_REQKEY_KEYRING", "SET_TIMEOUT",
745 "ASSUME_AUTHORITY", "GET_SECURITY", "SESSION_TO_PARENT", "REJECT",
746 "INSTANTIATE_IOV", "INVALIDATE", "GET_PERSISTENT",
748 static DEFINE_STRARRAY(keyctl_options, "KEYCTL_");
750 static const char *whences[] = { "SET", "CUR", "END",
758 static DEFINE_STRARRAY(whences, "SEEK_");
760 static const char *fcntl_cmds[] = {
761 "DUPFD", "GETFD", "SETFD", "GETFL", "SETFL", "GETLK", "SETLK",
762 "SETLKW", "SETOWN", "GETOWN", "SETSIG", "GETSIG", "GETLK64",
763 "SETLK64", "SETLKW64", "SETOWN_EX", "GETOWN_EX",
766 static DEFINE_STRARRAY(fcntl_cmds, "F_");
768 static const char *fcntl_linux_specific_cmds[] = {
769 "SETLEASE", "GETLEASE", "NOTIFY", [5] = "CANCELLK", "DUPFD_CLOEXEC",
770 "SETPIPE_SZ", "GETPIPE_SZ", "ADD_SEALS", "GET_SEALS",
771 "GET_RW_HINT", "SET_RW_HINT", "GET_FILE_RW_HINT", "SET_FILE_RW_HINT",
774 static DEFINE_STRARRAY_OFFSET(fcntl_linux_specific_cmds, "F_", F_LINUX_SPECIFIC_BASE);
776 static struct strarray *fcntl_cmds_arrays[] = {
777 &strarray__fcntl_cmds,
778 &strarray__fcntl_linux_specific_cmds,
781 static DEFINE_STRARRAYS(fcntl_cmds_arrays);
783 static const char *rlimit_resources[] = {
784 "CPU", "FSIZE", "DATA", "STACK", "CORE", "RSS", "NPROC", "NOFILE",
785 "MEMLOCK", "AS", "LOCKS", "SIGPENDING", "MSGQUEUE", "NICE", "RTPRIO",
788 static DEFINE_STRARRAY(rlimit_resources, "RLIMIT_");
790 static const char *sighow[] = { "BLOCK", "UNBLOCK", "SETMASK", };
791 static DEFINE_STRARRAY(sighow, "SIG_");
793 static const char *clockid[] = {
794 "REALTIME", "MONOTONIC", "PROCESS_CPUTIME_ID", "THREAD_CPUTIME_ID",
795 "MONOTONIC_RAW", "REALTIME_COARSE", "MONOTONIC_COARSE", "BOOTTIME",
796 "REALTIME_ALARM", "BOOTTIME_ALARM", "SGI_CYCLE", "TAI"
798 static DEFINE_STRARRAY(clockid, "CLOCK_");
800 static size_t syscall_arg__scnprintf_access_mode(char *bf, size_t size,
801 struct syscall_arg *arg)
803 bool show_prefix = arg->show_string_prefix;
804 const char *suffix = "_OK";
808 if (mode == F_OK) /* 0 */
809 return scnprintf(bf, size, "F%s", show_prefix ? suffix : "");
811 if (mode & n##_OK) { \
812 printed += scnprintf(bf + printed, size - printed, "%s%s", #n, show_prefix ? suffix : ""); \
822 printed += scnprintf(bf + printed, size - printed, "|%#x", mode);
827 #define SCA_ACCMODE syscall_arg__scnprintf_access_mode
829 static size_t syscall_arg__scnprintf_filename(char *bf, size_t size,
830 struct syscall_arg *arg);
832 #define SCA_FILENAME syscall_arg__scnprintf_filename
834 static size_t syscall_arg__scnprintf_pipe_flags(char *bf, size_t size,
835 struct syscall_arg *arg)
837 bool show_prefix = arg->show_string_prefix;
838 const char *prefix = "O_";
839 int printed = 0, flags = arg->val;
842 if (flags & O_##n) { \
843 printed += scnprintf(bf + printed, size - printed, "%s%s%s", printed ? "|" : "", show_prefix ? prefix : "", #n); \
852 printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags);
857 #define SCA_PIPE_FLAGS syscall_arg__scnprintf_pipe_flags
859 #ifndef GRND_NONBLOCK
860 #define GRND_NONBLOCK 0x0001
863 #define GRND_RANDOM 0x0002
866 static size_t syscall_arg__scnprintf_getrandom_flags(char *bf, size_t size,
867 struct syscall_arg *arg)
869 bool show_prefix = arg->show_string_prefix;
870 const char *prefix = "GRND_";
871 int printed = 0, flags = arg->val;
874 if (flags & GRND_##n) { \
875 printed += scnprintf(bf + printed, size - printed, "%s%s%s", printed ? "|" : "", show_prefix ? prefix : "", #n); \
876 flags &= ~GRND_##n; \
884 printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags);
889 #define SCA_GETRANDOM_FLAGS syscall_arg__scnprintf_getrandom_flags
891 #define STRARRAY(name, array) \
892 { .scnprintf = SCA_STRARRAY, \
893 .strtoul = STUL_STRARRAY, \
894 .parm = &strarray__##array, }
896 #define STRARRAY_FLAGS(name, array) \
897 { .scnprintf = SCA_STRARRAY_FLAGS, \
898 .strtoul = STUL_STRARRAY_FLAGS, \
899 .parm = &strarray__##array, }
901 #include "trace/beauty/arch_errno_names.c"
902 #include "trace/beauty/eventfd.c"
903 #include "trace/beauty/futex_op.c"
904 #include "trace/beauty/futex_val3.c"
905 #include "trace/beauty/mmap.c"
906 #include "trace/beauty/mode_t.c"
907 #include "trace/beauty/msg_flags.c"
908 #include "trace/beauty/open_flags.c"
909 #include "trace/beauty/perf_event_open.c"
910 #include "trace/beauty/pid.c"
911 #include "trace/beauty/sched_policy.c"
912 #include "trace/beauty/seccomp.c"
913 #include "trace/beauty/signum.c"
914 #include "trace/beauty/socket_type.c"
915 #include "trace/beauty/waitid_options.c"
917 static const struct syscall_fmt syscall_fmts[] = {
919 .arg = { [1] = { .scnprintf = SCA_ACCMODE, /* mode */ }, }, },
920 { .name = "arch_prctl",
921 .arg = { [0] = { .scnprintf = SCA_X86_ARCH_PRCTL_CODE, /* code */ },
922 [1] = { .scnprintf = SCA_PTR, /* arg2 */ }, }, },
924 .arg = { [0] = { .scnprintf = SCA_INT, /* fd */ },
925 [1] = { .scnprintf = SCA_SOCKADDR, /* umyaddr */ },
926 [2] = { .scnprintf = SCA_INT, /* addrlen */ }, }, },
928 .arg = { [0] = STRARRAY(cmd, bpf_cmd), }, },
929 { .name = "brk", .hexret = true,
930 .arg = { [0] = { .scnprintf = SCA_PTR, /* brk */ }, }, },
931 { .name = "clock_gettime",
932 .arg = { [0] = STRARRAY(clk_id, clockid), }, },
933 { .name = "clock_nanosleep",
934 .arg = { [2] = { .scnprintf = SCA_TIMESPEC, /* rqtp */ }, }, },
935 { .name = "clone", .errpid = true, .nr_args = 5,
936 .arg = { [0] = { .name = "flags", .scnprintf = SCA_CLONE_FLAGS, },
937 [1] = { .name = "child_stack", .scnprintf = SCA_HEX, },
938 [2] = { .name = "parent_tidptr", .scnprintf = SCA_HEX, },
939 [3] = { .name = "child_tidptr", .scnprintf = SCA_HEX, },
940 [4] = { .name = "tls", .scnprintf = SCA_HEX, }, }, },
942 .arg = { [0] = { .scnprintf = SCA_CLOSE_FD, /* fd */ }, }, },
944 .arg = { [0] = { .scnprintf = SCA_INT, /* fd */ },
945 [1] = { .scnprintf = SCA_SOCKADDR, /* servaddr */ },
946 [2] = { .scnprintf = SCA_INT, /* addrlen */ }, }, },
947 { .name = "epoll_ctl",
948 .arg = { [1] = STRARRAY(op, epoll_ctl_ops), }, },
949 { .name = "eventfd2",
950 .arg = { [1] = { .scnprintf = SCA_EFD_FLAGS, /* flags */ }, }, },
951 { .name = "fchmodat",
952 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
953 { .name = "fchownat",
954 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
956 .arg = { [1] = { .scnprintf = SCA_FCNTL_CMD, /* cmd */
957 .strtoul = STUL_STRARRAYS,
958 .parm = &strarrays__fcntl_cmds_arrays,
959 .show_zero = true, },
960 [2] = { .scnprintf = SCA_FCNTL_ARG, /* arg */ }, }, },
962 .arg = { [1] = { .scnprintf = SCA_FLOCK, /* cmd */ }, }, },
963 { .name = "fsconfig",
964 .arg = { [1] = STRARRAY(cmd, fsconfig_cmds), }, },
966 .arg = { [1] = STRARRAY_FLAGS(flags, fsmount_flags),
967 [2] = { .scnprintf = SCA_FSMOUNT_ATTR_FLAGS, /* attr_flags */ }, }, },
969 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
970 [1] = { .scnprintf = SCA_FILENAME, /* path */ },
971 [2] = { .scnprintf = SCA_FSPICK_FLAGS, /* flags */ }, }, },
972 { .name = "fstat", .alias = "newfstat", },
973 { .name = "fstatat", .alias = "newfstatat", },
975 .arg = { [1] = { .scnprintf = SCA_FUTEX_OP, /* op */ },
976 [5] = { .scnprintf = SCA_FUTEX_VAL3, /* val3 */ }, }, },
977 { .name = "futimesat",
978 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
979 { .name = "getitimer",
980 .arg = { [0] = STRARRAY(which, itimers), }, },
981 { .name = "getpid", .errpid = true, },
982 { .name = "getpgid", .errpid = true, },
983 { .name = "getppid", .errpid = true, },
984 { .name = "getrandom",
985 .arg = { [2] = { .scnprintf = SCA_GETRANDOM_FLAGS, /* flags */ }, }, },
986 { .name = "getrlimit",
987 .arg = { [0] = STRARRAY(resource, rlimit_resources), }, },
988 { .name = "getsockopt",
989 .arg = { [1] = STRARRAY(level, socket_level), }, },
990 { .name = "gettid", .errpid = true, },
993 #if defined(__i386__) || defined(__x86_64__)
995 * FIXME: Make this available to all arches.
997 [1] = { .scnprintf = SCA_IOCTL_CMD, /* cmd */ },
998 [2] = { .scnprintf = SCA_HEX, /* arg */ }, }, },
1000 [2] = { .scnprintf = SCA_HEX, /* arg */ }, }, },
1002 { .name = "kcmp", .nr_args = 5,
1003 .arg = { [0] = { .name = "pid1", .scnprintf = SCA_PID, },
1004 [1] = { .name = "pid2", .scnprintf = SCA_PID, },
1005 [2] = { .name = "type", .scnprintf = SCA_KCMP_TYPE, },
1006 [3] = { .name = "idx1", .scnprintf = SCA_KCMP_IDX, },
1007 [4] = { .name = "idx2", .scnprintf = SCA_KCMP_IDX, }, }, },
1009 .arg = { [0] = STRARRAY(option, keyctl_options), }, },
1011 .arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1013 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1015 .arg = { [2] = STRARRAY(whence, whences), }, },
1016 { .name = "lstat", .alias = "newlstat", },
1017 { .name = "madvise",
1018 .arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
1019 [2] = { .scnprintf = SCA_MADV_BHV, /* behavior */ }, }, },
1020 { .name = "mkdirat",
1021 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1022 { .name = "mknodat",
1023 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1024 { .name = "mmap", .hexret = true,
1025 /* The standard mmap maps to old_mmap on s390x */
1026 #if defined(__s390x__)
1027 .alias = "old_mmap",
1029 .arg = { [2] = { .scnprintf = SCA_MMAP_PROT, /* prot */ },
1030 [3] = { .scnprintf = SCA_MMAP_FLAGS, /* flags */
1031 .strtoul = STUL_STRARRAY_FLAGS,
1032 .parm = &strarray__mmap_flags, },
1033 [5] = { .scnprintf = SCA_HEX, /* offset */ }, }, },
1035 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* dev_name */ },
1036 [3] = { .scnprintf = SCA_MOUNT_FLAGS, /* flags */
1037 .mask_val = SCAMV_MOUNT_FLAGS, /* flags */ }, }, },
1038 { .name = "move_mount",
1039 .arg = { [0] = { .scnprintf = SCA_FDAT, /* from_dfd */ },
1040 [1] = { .scnprintf = SCA_FILENAME, /* from_pathname */ },
1041 [2] = { .scnprintf = SCA_FDAT, /* to_dfd */ },
1042 [3] = { .scnprintf = SCA_FILENAME, /* to_pathname */ },
1043 [4] = { .scnprintf = SCA_MOVE_MOUNT_FLAGS, /* flags */ }, }, },
1044 { .name = "mprotect",
1045 .arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
1046 [2] = { .scnprintf = SCA_MMAP_PROT, /* prot */ }, }, },
1047 { .name = "mq_unlink",
1048 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* u_name */ }, }, },
1049 { .name = "mremap", .hexret = true,
1050 .arg = { [3] = { .scnprintf = SCA_MREMAP_FLAGS, /* flags */ }, }, },
1051 { .name = "name_to_handle_at",
1052 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1053 { .name = "newfstatat",
1054 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1056 .arg = { [1] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1057 { .name = "open_by_handle_at",
1058 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
1059 [2] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1061 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
1062 [2] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1063 { .name = "perf_event_open",
1064 .arg = { [0] = { .scnprintf = SCA_PERF_ATTR, /* attr */ },
1065 [2] = { .scnprintf = SCA_INT, /* cpu */ },
1066 [3] = { .scnprintf = SCA_FD, /* group_fd */ },
1067 [4] = { .scnprintf = SCA_PERF_FLAGS, /* flags */ }, }, },
1069 .arg = { [1] = { .scnprintf = SCA_PIPE_FLAGS, /* flags */ }, }, },
1070 { .name = "pkey_alloc",
1071 .arg = { [1] = { .scnprintf = SCA_PKEY_ALLOC_ACCESS_RIGHTS, /* access_rights */ }, }, },
1072 { .name = "pkey_free",
1073 .arg = { [0] = { .scnprintf = SCA_INT, /* key */ }, }, },
1074 { .name = "pkey_mprotect",
1075 .arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
1076 [2] = { .scnprintf = SCA_MMAP_PROT, /* prot */ },
1077 [3] = { .scnprintf = SCA_INT, /* pkey */ }, }, },
1078 { .name = "poll", .timeout = true, },
1079 { .name = "ppoll", .timeout = true, },
1081 .arg = { [0] = { .scnprintf = SCA_PRCTL_OPTION, /* option */
1082 .strtoul = STUL_STRARRAY,
1083 .parm = &strarray__prctl_options, },
1084 [1] = { .scnprintf = SCA_PRCTL_ARG2, /* arg2 */ },
1085 [2] = { .scnprintf = SCA_PRCTL_ARG3, /* arg3 */ }, }, },
1086 { .name = "pread", .alias = "pread64", },
1087 { .name = "preadv", .alias = "pread", },
1088 { .name = "prlimit64",
1089 .arg = { [1] = STRARRAY(resource, rlimit_resources), }, },
1090 { .name = "pwrite", .alias = "pwrite64", },
1091 { .name = "readlinkat",
1092 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1093 { .name = "recvfrom",
1094 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1095 { .name = "recvmmsg",
1096 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1097 { .name = "recvmsg",
1098 .arg = { [2] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1099 { .name = "renameat",
1100 .arg = { [0] = { .scnprintf = SCA_FDAT, /* olddirfd */ },
1101 [2] = { .scnprintf = SCA_FDAT, /* newdirfd */ }, }, },
1102 { .name = "renameat2",
1103 .arg = { [0] = { .scnprintf = SCA_FDAT, /* olddirfd */ },
1104 [2] = { .scnprintf = SCA_FDAT, /* newdirfd */ },
1105 [4] = { .scnprintf = SCA_RENAMEAT2_FLAGS, /* flags */ }, }, },
1106 { .name = "rt_sigaction",
1107 .arg = { [0] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1108 { .name = "rt_sigprocmask",
1109 .arg = { [0] = STRARRAY(how, sighow), }, },
1110 { .name = "rt_sigqueueinfo",
1111 .arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1112 { .name = "rt_tgsigqueueinfo",
1113 .arg = { [2] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1114 { .name = "sched_setscheduler",
1115 .arg = { [1] = { .scnprintf = SCA_SCHED_POLICY, /* policy */ }, }, },
1116 { .name = "seccomp",
1117 .arg = { [0] = { .scnprintf = SCA_SECCOMP_OP, /* op */ },
1118 [1] = { .scnprintf = SCA_SECCOMP_FLAGS, /* flags */ }, }, },
1119 { .name = "select", .timeout = true, },
1120 { .name = "sendfile", .alias = "sendfile64", },
1121 { .name = "sendmmsg",
1122 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1123 { .name = "sendmsg",
1124 .arg = { [2] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1126 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ },
1127 [4] = { .scnprintf = SCA_SOCKADDR, /* addr */ }, }, },
1128 { .name = "set_tid_address", .errpid = true, },
1129 { .name = "setitimer",
1130 .arg = { [0] = STRARRAY(which, itimers), }, },
1131 { .name = "setrlimit",
1132 .arg = { [0] = STRARRAY(resource, rlimit_resources), }, },
1133 { .name = "setsockopt",
1134 .arg = { [1] = STRARRAY(level, socket_level), }, },
1136 .arg = { [0] = STRARRAY(family, socket_families),
1137 [1] = { .scnprintf = SCA_SK_TYPE, /* type */ },
1138 [2] = { .scnprintf = SCA_SK_PROTO, /* protocol */ }, }, },
1139 { .name = "socketpair",
1140 .arg = { [0] = STRARRAY(family, socket_families),
1141 [1] = { .scnprintf = SCA_SK_TYPE, /* type */ },
1142 [2] = { .scnprintf = SCA_SK_PROTO, /* protocol */ }, }, },
1143 { .name = "stat", .alias = "newstat", },
1145 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fdat */ },
1146 [2] = { .scnprintf = SCA_STATX_FLAGS, /* flags */ } ,
1147 [3] = { .scnprintf = SCA_STATX_MASK, /* mask */ }, }, },
1148 { .name = "swapoff",
1149 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* specialfile */ }, }, },
1151 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* specialfile */ }, }, },
1152 { .name = "symlinkat",
1153 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1154 { .name = "sync_file_range",
1155 .arg = { [3] = { .scnprintf = SCA_SYNC_FILE_RANGE_FLAGS, /* flags */ }, }, },
1157 .arg = { [2] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1159 .arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1160 { .name = "umount2", .alias = "umount",
1161 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* name */ }, }, },
1162 { .name = "uname", .alias = "newuname", },
1163 { .name = "unlinkat",
1164 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1165 { .name = "utimensat",
1166 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dirfd */ }, }, },
1167 { .name = "wait4", .errpid = true,
1168 .arg = { [2] = { .scnprintf = SCA_WAITID_OPTIONS, /* options */ }, }, },
1169 { .name = "waitid", .errpid = true,
1170 .arg = { [3] = { .scnprintf = SCA_WAITID_OPTIONS, /* options */ }, }, },
1173 static int syscall_fmt__cmp(const void *name, const void *fmtp)
1175 const struct syscall_fmt *fmt = fmtp;
1176 return strcmp(name, fmt->name);
1179 static const struct syscall_fmt *__syscall_fmt__find(const struct syscall_fmt *fmts,
1183 return bsearch(name, fmts, nmemb, sizeof(struct syscall_fmt), syscall_fmt__cmp);
1186 static const struct syscall_fmt *syscall_fmt__find(const char *name)
1188 const int nmemb = ARRAY_SIZE(syscall_fmts);
1189 return __syscall_fmt__find(syscall_fmts, nmemb, name);
1192 static const struct syscall_fmt *__syscall_fmt__find_by_alias(const struct syscall_fmt *fmts,
1193 const int nmemb, const char *alias)
1197 for (i = 0; i < nmemb; ++i) {
1198 if (fmts[i].alias && strcmp(fmts[i].alias, alias) == 0)
1205 static const struct syscall_fmt *syscall_fmt__find_by_alias(const char *alias)
1207 const int nmemb = ARRAY_SIZE(syscall_fmts);
1208 return __syscall_fmt__find_by_alias(syscall_fmts, nmemb, alias);
1212 * is_exit: is this "exit" or "exit_group"?
1213 * is_open: is this "open" or "openat"? To associate the fd returned in sys_exit with the pathname in sys_enter.
1214 * args_size: sum of the sizes of the syscall arguments, anything after that is augmented stuff: pathname for openat, etc.
1215 * nonexistent: Just a hole in the syscall table, syscall id not allocated
1218 struct tep_event *tp_format;
1222 struct bpf_program *sys_enter,
1228 struct tep_format_field *args;
1230 const struct syscall_fmt *fmt;
1231 struct syscall_arg_fmt *arg_fmt;
1235 * We need to have this 'calculated' boolean because in some cases we really
1236 * don't know what is the duration of a syscall, for instance, when we start
1237 * a session and some threads are waiting for a syscall to finish, say 'poll',
1238 * in which case all we can do is to print "( ? ) for duration and for the
1241 static size_t fprintf_duration(unsigned long t, bool calculated, FILE *fp)
1243 double duration = (double)t / NSEC_PER_MSEC;
1244 size_t printed = fprintf(fp, "(");
1247 printed += fprintf(fp, " ");
1248 else if (duration >= 1.0)
1249 printed += color_fprintf(fp, PERF_COLOR_RED, "%6.3f ms", duration);
1250 else if (duration >= 0.01)
1251 printed += color_fprintf(fp, PERF_COLOR_YELLOW, "%6.3f ms", duration);
1253 printed += color_fprintf(fp, PERF_COLOR_NORMAL, "%6.3f ms", duration);
1254 return printed + fprintf(fp, "): ");
1258 * filename.ptr: The filename char pointer that will be vfs_getname'd
1259 * filename.entry_str_pos: Where to insert the string translated from
1260 * filename.ptr by the vfs_getname tracepoint/kprobe.
1261 * ret_scnprintf: syscall args may set this to a different syscall return
1262 * formatter, for instance, fcntl may return fds, file flags, etc.
1264 struct thread_trace {
1267 unsigned long nr_events;
1268 unsigned long pfmaj, pfmin;
1271 size_t (*ret_scnprintf)(char *bf, size_t size, struct syscall_arg *arg);
1274 short int entry_str_pos;
1276 unsigned int namelen;
1284 struct intlist *syscall_stats;
1287 static struct thread_trace *thread_trace__new(void)
1289 struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace));
1292 ttrace->files.max = -1;
1293 ttrace->syscall_stats = intlist__new(NULL);
1299 static struct thread_trace *thread__trace(struct thread *thread, FILE *fp)
1301 struct thread_trace *ttrace;
1306 if (thread__priv(thread) == NULL)
1307 thread__set_priv(thread, thread_trace__new());
1309 if (thread__priv(thread) == NULL)
1312 ttrace = thread__priv(thread);
1313 ++ttrace->nr_events;
1317 color_fprintf(fp, PERF_COLOR_RED,
1318 "WARNING: not enough memory, dropping samples!\n");
1323 void syscall_arg__set_ret_scnprintf(struct syscall_arg *arg,
1324 size_t (*ret_scnprintf)(char *bf, size_t size, struct syscall_arg *arg))
1326 struct thread_trace *ttrace = thread__priv(arg->thread);
1328 ttrace->ret_scnprintf = ret_scnprintf;
1331 #define TRACE_PFMAJ (1 << 0)
1332 #define TRACE_PFMIN (1 << 1)
1334 static const size_t trace__entry_str_size = 2048;
1336 static struct file *thread_trace__files_entry(struct thread_trace *ttrace, int fd)
1341 if (fd > ttrace->files.max) {
1342 struct file *nfiles = realloc(ttrace->files.table, (fd + 1) * sizeof(struct file));
1347 if (ttrace->files.max != -1) {
1348 memset(nfiles + ttrace->files.max + 1, 0,
1349 (fd - ttrace->files.max) * sizeof(struct file));
1351 memset(nfiles, 0, (fd + 1) * sizeof(struct file));
1354 ttrace->files.table = nfiles;
1355 ttrace->files.max = fd;
1358 return ttrace->files.table + fd;
1361 struct file *thread__files_entry(struct thread *thread, int fd)
1363 return thread_trace__files_entry(thread__priv(thread), fd);
1366 static int trace__set_fd_pathname(struct thread *thread, int fd, const char *pathname)
1368 struct thread_trace *ttrace = thread__priv(thread);
1369 struct file *file = thread_trace__files_entry(ttrace, fd);
1373 if (stat(pathname, &st) == 0)
1374 file->dev_maj = major(st.st_rdev);
1375 file->pathname = strdup(pathname);
1383 static int thread__read_fd_path(struct thread *thread, int fd)
1385 char linkname[PATH_MAX], pathname[PATH_MAX];
1389 if (thread__pid(thread) == thread__tid(thread)) {
1390 scnprintf(linkname, sizeof(linkname),
1391 "/proc/%d/fd/%d", thread__pid(thread), fd);
1393 scnprintf(linkname, sizeof(linkname),
1394 "/proc/%d/task/%d/fd/%d",
1395 thread__pid(thread), thread__tid(thread), fd);
1398 if (lstat(linkname, &st) < 0 || st.st_size + 1 > (off_t)sizeof(pathname))
1401 ret = readlink(linkname, pathname, sizeof(pathname));
1403 if (ret < 0 || ret > st.st_size)
1406 pathname[ret] = '\0';
1407 return trace__set_fd_pathname(thread, fd, pathname);
1410 static const char *thread__fd_path(struct thread *thread, int fd,
1411 struct trace *trace)
1413 struct thread_trace *ttrace = thread__priv(thread);
1415 if (ttrace == NULL || trace->fd_path_disabled)
1421 if ((fd > ttrace->files.max || ttrace->files.table[fd].pathname == NULL)) {
1424 ++trace->stats.proc_getname;
1425 if (thread__read_fd_path(thread, fd))
1429 return ttrace->files.table[fd].pathname;
1432 size_t syscall_arg__scnprintf_fd(char *bf, size_t size, struct syscall_arg *arg)
1435 size_t printed = scnprintf(bf, size, "%d", fd);
1436 const char *path = thread__fd_path(arg->thread, fd, arg->trace);
1439 printed += scnprintf(bf + printed, size - printed, "<%s>", path);
1444 size_t pid__scnprintf_fd(struct trace *trace, pid_t pid, int fd, char *bf, size_t size)
1446 size_t printed = scnprintf(bf, size, "%d", fd);
1447 struct thread *thread = machine__find_thread(trace->host, pid, pid);
1450 const char *path = thread__fd_path(thread, fd, trace);
1453 printed += scnprintf(bf + printed, size - printed, "<%s>", path);
1455 thread__put(thread);
1461 static size_t syscall_arg__scnprintf_close_fd(char *bf, size_t size,
1462 struct syscall_arg *arg)
1465 size_t printed = syscall_arg__scnprintf_fd(bf, size, arg);
1466 struct thread_trace *ttrace = thread__priv(arg->thread);
1468 if (ttrace && fd >= 0 && fd <= ttrace->files.max)
1469 zfree(&ttrace->files.table[fd].pathname);
1474 static void thread__set_filename_pos(struct thread *thread, const char *bf,
1477 struct thread_trace *ttrace = thread__priv(thread);
1479 ttrace->filename.ptr = ptr;
1480 ttrace->filename.entry_str_pos = bf - ttrace->entry_str;
1483 static size_t syscall_arg__scnprintf_augmented_string(struct syscall_arg *arg, char *bf, size_t size)
1485 struct augmented_arg *augmented_arg = arg->augmented.args;
1486 size_t printed = scnprintf(bf, size, "\"%.*s\"", augmented_arg->size, augmented_arg->value);
1488 * So that the next arg with a payload can consume its augmented arg, i.e. for rename* syscalls
1489 * we would have two strings, each prefixed by its size.
1491 int consumed = sizeof(*augmented_arg) + augmented_arg->size;
1493 arg->augmented.args = ((void *)arg->augmented.args) + consumed;
1494 arg->augmented.size -= consumed;
1499 static size_t syscall_arg__scnprintf_filename(char *bf, size_t size,
1500 struct syscall_arg *arg)
1502 unsigned long ptr = arg->val;
1504 if (arg->augmented.args)
1505 return syscall_arg__scnprintf_augmented_string(arg, bf, size);
1507 if (!arg->trace->vfs_getname)
1508 return scnprintf(bf, size, "%#x", ptr);
1510 thread__set_filename_pos(arg->thread, bf, ptr);
1514 static bool trace__filter_duration(struct trace *trace, double t)
1516 return t < (trace->duration_filter * NSEC_PER_MSEC);
1519 static size_t __trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp)
1521 double ts = (double)(tstamp - trace->base_time) / NSEC_PER_MSEC;
1523 return fprintf(fp, "%10.3f ", ts);
1527 * We're handling tstamp=0 as an undefined tstamp, i.e. like when we are
1528 * using ttrace->entry_time for a thread that receives a sys_exit without
1529 * first having received a sys_enter ("poll" issued before tracing session
1530 * starts, lost sys_enter exit due to ring buffer overflow).
1532 static size_t trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp)
1535 return __trace__fprintf_tstamp(trace, tstamp, fp);
1537 return fprintf(fp, " ? ");
1540 static pid_t workload_pid = -1;
1541 static volatile sig_atomic_t done = false;
1542 static volatile sig_atomic_t interrupted = false;
1544 static void sighandler_interrupt(int sig __maybe_unused)
1546 done = interrupted = true;
1549 static void sighandler_chld(int sig __maybe_unused, siginfo_t *info,
1550 void *context __maybe_unused)
1552 if (info->si_pid == workload_pid)
1556 static size_t trace__fprintf_comm_tid(struct trace *trace, struct thread *thread, FILE *fp)
1560 if (trace->multiple_threads) {
1561 if (trace->show_comm)
1562 printed += fprintf(fp, "%.14s/", thread__comm_str(thread));
1563 printed += fprintf(fp, "%d ", thread__tid(thread));
1569 static size_t trace__fprintf_entry_head(struct trace *trace, struct thread *thread,
1570 u64 duration, bool duration_calculated, u64 tstamp, FILE *fp)
1574 if (trace->show_tstamp)
1575 printed = trace__fprintf_tstamp(trace, tstamp, fp);
1576 if (trace->show_duration)
1577 printed += fprintf_duration(duration, duration_calculated, fp);
1578 return printed + trace__fprintf_comm_tid(trace, thread, fp);
1581 static int trace__process_event(struct trace *trace, struct machine *machine,
1582 union perf_event *event, struct perf_sample *sample)
1586 switch (event->header.type) {
1587 case PERF_RECORD_LOST:
1588 color_fprintf(trace->output, PERF_COLOR_RED,
1589 "LOST %" PRIu64 " events!\n", event->lost.lost);
1590 ret = machine__process_lost_event(machine, event, sample);
1593 ret = machine__process_event(machine, event, sample);
1600 static int trace__tool_process(struct perf_tool *tool,
1601 union perf_event *event,
1602 struct perf_sample *sample,
1603 struct machine *machine)
1605 struct trace *trace = container_of(tool, struct trace, tool);
1606 return trace__process_event(trace, machine, event, sample);
1609 static char *trace__machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
1611 struct machine *machine = vmachine;
1613 if (machine->kptr_restrict_warned)
1616 if (symbol_conf.kptr_restrict) {
1617 pr_warning("Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
1618 "Check /proc/sys/kernel/kptr_restrict and /proc/sys/kernel/perf_event_paranoid.\n\n"
1619 "Kernel samples will not be resolved.\n");
1620 machine->kptr_restrict_warned = true;
1624 return machine__resolve_kernel_addr(vmachine, addrp, modp);
1627 static int trace__symbols_init(struct trace *trace, struct evlist *evlist)
1629 int err = symbol__init(NULL);
1634 trace->host = machine__new_host();
1635 if (trace->host == NULL)
1638 err = trace_event__register_resolver(trace->host, trace__machine__resolve_kernel_addr);
1642 err = __machine__synthesize_threads(trace->host, &trace->tool, &trace->opts.target,
1643 evlist->core.threads, trace__tool_process,
1652 static void trace__symbols__exit(struct trace *trace)
1654 machine__exit(trace->host);
1660 static int syscall__alloc_arg_fmts(struct syscall *sc, int nr_args)
1664 if (nr_args == RAW_SYSCALL_ARGS_NUM && sc->fmt && sc->fmt->nr_args != 0)
1665 nr_args = sc->fmt->nr_args;
1667 sc->arg_fmt = calloc(nr_args, sizeof(*sc->arg_fmt));
1668 if (sc->arg_fmt == NULL)
1671 for (idx = 0; idx < nr_args; ++idx) {
1673 sc->arg_fmt[idx] = sc->fmt->arg[idx];
1676 sc->nr_args = nr_args;
1680 static const struct syscall_arg_fmt syscall_arg_fmts__by_name[] = {
1681 { .name = "msr", .scnprintf = SCA_X86_MSR, .strtoul = STUL_X86_MSR, },
1682 { .name = "vector", .scnprintf = SCA_X86_IRQ_VECTORS, .strtoul = STUL_X86_IRQ_VECTORS, },
1685 static int syscall_arg_fmt__cmp(const void *name, const void *fmtp)
1687 const struct syscall_arg_fmt *fmt = fmtp;
1688 return strcmp(name, fmt->name);
1691 static const struct syscall_arg_fmt *
1692 __syscall_arg_fmt__find_by_name(const struct syscall_arg_fmt *fmts, const int nmemb,
1695 return bsearch(name, fmts, nmemb, sizeof(struct syscall_arg_fmt), syscall_arg_fmt__cmp);
1698 static const struct syscall_arg_fmt *syscall_arg_fmt__find_by_name(const char *name)
1700 const int nmemb = ARRAY_SIZE(syscall_arg_fmts__by_name);
1701 return __syscall_arg_fmt__find_by_name(syscall_arg_fmts__by_name, nmemb, name);
1704 static struct tep_format_field *
1705 syscall_arg_fmt__init_array(struct syscall_arg_fmt *arg, struct tep_format_field *field)
1707 struct tep_format_field *last_field = NULL;
1710 for (; field; field = field->next, ++arg) {
1716 len = strlen(field->name);
1718 if (strcmp(field->type, "const char *") == 0 &&
1719 ((len >= 4 && strcmp(field->name + len - 4, "name") == 0) ||
1720 strstr(field->name, "path") != NULL))
1721 arg->scnprintf = SCA_FILENAME;
1722 else if ((field->flags & TEP_FIELD_IS_POINTER) || strstr(field->name, "addr"))
1723 arg->scnprintf = SCA_PTR;
1724 else if (strcmp(field->type, "pid_t") == 0)
1725 arg->scnprintf = SCA_PID;
1726 else if (strcmp(field->type, "umode_t") == 0)
1727 arg->scnprintf = SCA_MODE_T;
1728 else if ((field->flags & TEP_FIELD_IS_ARRAY) && strstr(field->type, "char")) {
1729 arg->scnprintf = SCA_CHAR_ARRAY;
1730 arg->nr_entries = field->arraylen;
1731 } else if ((strcmp(field->type, "int") == 0 ||
1732 strcmp(field->type, "unsigned int") == 0 ||
1733 strcmp(field->type, "long") == 0) &&
1734 len >= 2 && strcmp(field->name + len - 2, "fd") == 0) {
1736 * /sys/kernel/tracing/events/syscalls/sys_enter*
1737 * grep -E 'field:.*fd;' .../format|sed -r 's/.*field:([a-z ]+) [a-z_]*fd.+/\1/g'|sort|uniq -c
1742 arg->scnprintf = SCA_FD;
1744 const struct syscall_arg_fmt *fmt =
1745 syscall_arg_fmt__find_by_name(field->name);
1748 arg->scnprintf = fmt->scnprintf;
1749 arg->strtoul = fmt->strtoul;
1757 static int syscall__set_arg_fmts(struct syscall *sc)
1759 struct tep_format_field *last_field = syscall_arg_fmt__init_array(sc->arg_fmt, sc->args);
1762 sc->args_size = last_field->offset + last_field->size;
1767 static int trace__read_syscall_info(struct trace *trace, int id)
1771 const char *name = syscalltbl__name(trace->sctbl, id);
1773 #ifdef HAVE_SYSCALL_TABLE_SUPPORT
1774 if (trace->syscalls.table == NULL) {
1775 trace->syscalls.table = calloc(trace->sctbl->syscalls.max_id + 1, sizeof(*sc));
1776 if (trace->syscalls.table == NULL)
1780 if (id > trace->sctbl->syscalls.max_id || (id == 0 && trace->syscalls.table == NULL)) {
1781 // When using libaudit we don't know beforehand what is the max syscall id
1782 struct syscall *table = realloc(trace->syscalls.table, (id + 1) * sizeof(*sc));
1787 // Need to memset from offset 0 and +1 members if brand new
1788 if (trace->syscalls.table == NULL)
1789 memset(table, 0, (id + 1) * sizeof(*sc));
1791 memset(table + trace->sctbl->syscalls.max_id + 1, 0, (id - trace->sctbl->syscalls.max_id) * sizeof(*sc));
1793 trace->syscalls.table = table;
1794 trace->sctbl->syscalls.max_id = id;
1797 sc = trace->syscalls.table + id;
1798 if (sc->nonexistent)
1802 sc->nonexistent = true;
1807 sc->fmt = syscall_fmt__find(sc->name);
1809 snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->name);
1810 sc->tp_format = trace_event__tp_format("syscalls", tp_name);
1812 if (IS_ERR(sc->tp_format) && sc->fmt && sc->fmt->alias) {
1813 snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->fmt->alias);
1814 sc->tp_format = trace_event__tp_format("syscalls", tp_name);
1818 * Fails to read trace point format via sysfs node, so the trace point
1819 * doesn't exist. Set the 'nonexistent' flag as true.
1821 if (IS_ERR(sc->tp_format)) {
1822 sc->nonexistent = true;
1823 return PTR_ERR(sc->tp_format);
1826 if (syscall__alloc_arg_fmts(sc, IS_ERR(sc->tp_format) ?
1827 RAW_SYSCALL_ARGS_NUM : sc->tp_format->format.nr_fields))
1830 sc->args = sc->tp_format->format.fields;
1832 * We need to check and discard the first variable '__syscall_nr'
1833 * or 'nr' that mean the syscall number. It is needless here.
1834 * So drop '__syscall_nr' or 'nr' field but does not exist on older kernels.
1836 if (sc->args && (!strcmp(sc->args->name, "__syscall_nr") || !strcmp(sc->args->name, "nr"))) {
1837 sc->args = sc->args->next;
1841 sc->is_exit = !strcmp(name, "exit_group") || !strcmp(name, "exit");
1842 sc->is_open = !strcmp(name, "open") || !strcmp(name, "openat");
1844 return syscall__set_arg_fmts(sc);
1847 static int evsel__init_tp_arg_scnprintf(struct evsel *evsel)
1849 struct syscall_arg_fmt *fmt = evsel__syscall_arg_fmt(evsel);
1852 syscall_arg_fmt__init_array(fmt, evsel->tp_format->format.fields);
1859 static int intcmp(const void *a, const void *b)
1861 const int *one = a, *another = b;
1863 return *one - *another;
1866 static int trace__validate_ev_qualifier(struct trace *trace)
1869 bool printed_invalid_prefix = false;
1870 struct str_node *pos;
1871 size_t nr_used = 0, nr_allocated = strlist__nr_entries(trace->ev_qualifier);
1873 trace->ev_qualifier_ids.entries = malloc(nr_allocated *
1874 sizeof(trace->ev_qualifier_ids.entries[0]));
1876 if (trace->ev_qualifier_ids.entries == NULL) {
1877 fputs("Error:\tNot enough memory for allocating events qualifier ids\n",
1883 strlist__for_each_entry(pos, trace->ev_qualifier) {
1884 const char *sc = pos->s;
1885 int id = syscalltbl__id(trace->sctbl, sc), match_next = -1;
1888 id = syscalltbl__strglobmatch_first(trace->sctbl, sc, &match_next);
1892 if (!printed_invalid_prefix) {
1893 pr_debug("Skipping unknown syscalls: ");
1894 printed_invalid_prefix = true;
1903 trace->ev_qualifier_ids.entries[nr_used++] = id;
1904 if (match_next == -1)
1908 id = syscalltbl__strglobmatch_next(trace->sctbl, sc, &match_next);
1911 if (nr_allocated == nr_used) {
1915 entries = realloc(trace->ev_qualifier_ids.entries,
1916 nr_allocated * sizeof(trace->ev_qualifier_ids.entries[0]));
1917 if (entries == NULL) {
1919 fputs("\nError:\t Not enough memory for parsing\n", trace->output);
1922 trace->ev_qualifier_ids.entries = entries;
1924 trace->ev_qualifier_ids.entries[nr_used++] = id;
1928 trace->ev_qualifier_ids.nr = nr_used;
1929 qsort(trace->ev_qualifier_ids.entries, nr_used, sizeof(int), intcmp);
1931 if (printed_invalid_prefix)
1935 zfree(&trace->ev_qualifier_ids.entries);
1936 trace->ev_qualifier_ids.nr = 0;
1940 static __maybe_unused bool trace__syscall_enabled(struct trace *trace, int id)
1942 bool in_ev_qualifier;
1944 if (trace->ev_qualifier_ids.nr == 0)
1947 in_ev_qualifier = bsearch(&id, trace->ev_qualifier_ids.entries,
1948 trace->ev_qualifier_ids.nr, sizeof(int), intcmp) != NULL;
1950 if (in_ev_qualifier)
1951 return !trace->not_ev_qualifier;
1953 return trace->not_ev_qualifier;
1957 * args is to be interpreted as a series of longs but we need to handle
1958 * 8-byte unaligned accesses. args points to raw_data within the event
1959 * and raw_data is guaranteed to be 8-byte unaligned because it is
1960 * preceded by raw_size which is a u32. So we need to copy args to a temp
1961 * variable to read it. Most notably this avoids extended load instructions
1962 * on unaligned addresses
1964 unsigned long syscall_arg__val(struct syscall_arg *arg, u8 idx)
1967 unsigned char *p = arg->args + sizeof(unsigned long) * idx;
1969 memcpy(&val, p, sizeof(val));
1973 static size_t syscall__scnprintf_name(struct syscall *sc, char *bf, size_t size,
1974 struct syscall_arg *arg)
1976 if (sc->arg_fmt && sc->arg_fmt[arg->idx].name)
1977 return scnprintf(bf, size, "%s: ", sc->arg_fmt[arg->idx].name);
1979 return scnprintf(bf, size, "arg%d: ", arg->idx);
1983 * Check if the value is in fact zero, i.e. mask whatever needs masking, such
1984 * as mount 'flags' argument that needs ignoring some magic flag, see comment
1985 * in tools/perf/trace/beauty/mount_flags.c
1987 static unsigned long syscall_arg_fmt__mask_val(struct syscall_arg_fmt *fmt, struct syscall_arg *arg, unsigned long val)
1989 if (fmt && fmt->mask_val)
1990 return fmt->mask_val(arg, val);
1995 static size_t syscall_arg_fmt__scnprintf_val(struct syscall_arg_fmt *fmt, char *bf, size_t size,
1996 struct syscall_arg *arg, unsigned long val)
1998 if (fmt && fmt->scnprintf) {
2001 arg->parm = fmt->parm;
2002 return fmt->scnprintf(bf, size, arg);
2004 return scnprintf(bf, size, "%ld", val);
2007 static size_t syscall__scnprintf_args(struct syscall *sc, char *bf, size_t size,
2008 unsigned char *args, void *augmented_args, int augmented_args_size,
2009 struct trace *trace, struct thread *thread)
2014 struct syscall_arg arg = {
2017 .size = augmented_args_size,
2018 .args = augmented_args,
2024 .show_string_prefix = trace->show_string_prefix,
2026 struct thread_trace *ttrace = thread__priv(thread);
2029 * Things like fcntl will set this in its 'cmd' formatter to pick the
2030 * right formatter for the return value (an fd? file flags?), which is
2031 * not needed for syscalls that always return a given type, say an fd.
2033 ttrace->ret_scnprintf = NULL;
2035 if (sc->args != NULL) {
2036 struct tep_format_field *field;
2038 for (field = sc->args; field;
2039 field = field->next, ++arg.idx, bit <<= 1) {
2043 arg.fmt = &sc->arg_fmt[arg.idx];
2044 val = syscall_arg__val(&arg, arg.idx);
2046 * Some syscall args need some mask, most don't and
2047 * return val untouched.
2049 val = syscall_arg_fmt__mask_val(&sc->arg_fmt[arg.idx], &arg, val);
2052 * Suppress this argument if its value is zero and
2053 * and we don't have a string associated in an
2057 !trace->show_zeros &&
2059 (sc->arg_fmt[arg.idx].show_zero ||
2060 sc->arg_fmt[arg.idx].scnprintf == SCA_STRARRAY ||
2061 sc->arg_fmt[arg.idx].scnprintf == SCA_STRARRAYS) &&
2062 sc->arg_fmt[arg.idx].parm))
2065 printed += scnprintf(bf + printed, size - printed, "%s", printed ? ", " : "");
2067 if (trace->show_arg_names)
2068 printed += scnprintf(bf + printed, size - printed, "%s: ", field->name);
2070 printed += syscall_arg_fmt__scnprintf_val(&sc->arg_fmt[arg.idx],
2071 bf + printed, size - printed, &arg, val);
2073 } else if (IS_ERR(sc->tp_format)) {
2075 * If we managed to read the tracepoint /format file, then we
2076 * may end up not having any args, like with gettid(), so only
2077 * print the raw args when we didn't manage to read it.
2079 while (arg.idx < sc->nr_args) {
2082 val = syscall_arg__val(&arg, arg.idx);
2084 printed += scnprintf(bf + printed, size - printed, ", ");
2085 printed += syscall__scnprintf_name(sc, bf + printed, size - printed, &arg);
2086 printed += syscall_arg_fmt__scnprintf_val(&sc->arg_fmt[arg.idx], bf + printed, size - printed, &arg, val);
2096 typedef int (*tracepoint_handler)(struct trace *trace, struct evsel *evsel,
2097 union perf_event *event,
2098 struct perf_sample *sample);
2100 static struct syscall *trace__syscall_info(struct trace *trace,
2101 struct evsel *evsel, int id)
2108 * XXX: Noticed on x86_64, reproduced as far back as 3.0.36, haven't tried
2109 * before that, leaving at a higher verbosity level till that is
2110 * explained. Reproduced with plain ftrace with:
2112 * echo 1 > /t/events/raw_syscalls/sys_exit/enable
2113 * grep "NR -1 " /t/trace_pipe
2115 * After generating some load on the machine.
2119 fprintf(trace->output, "Invalid syscall %d id, skipping (%s, %" PRIu64 ") ...\n",
2120 id, evsel__name(evsel), ++n);
2127 #ifdef HAVE_SYSCALL_TABLE_SUPPORT
2128 if (id > trace->sctbl->syscalls.max_id) {
2130 if (id >= trace->sctbl->syscalls.max_id) {
2132 * With libaudit we don't know beforehand what is the max_id,
2133 * so we let trace__read_syscall_info() figure that out as we
2134 * go on reading syscalls.
2136 err = trace__read_syscall_info(trace, id);
2142 if ((trace->syscalls.table == NULL || trace->syscalls.table[id].name == NULL) &&
2143 (err = trace__read_syscall_info(trace, id)) != 0)
2146 if (trace->syscalls.table && trace->syscalls.table[id].nonexistent)
2149 return &trace->syscalls.table[id];
2153 char sbuf[STRERR_BUFSIZE];
2154 fprintf(trace->output, "Problems reading syscall %d: %d (%s)", id, -err, str_error_r(-err, sbuf, sizeof(sbuf)));
2155 if (id <= trace->sctbl->syscalls.max_id && trace->syscalls.table[id].name != NULL)
2156 fprintf(trace->output, "(%s)", trace->syscalls.table[id].name);
2157 fputs(" information\n", trace->output);
2162 struct syscall_stats {
2169 static void thread__update_stats(struct thread *thread, struct thread_trace *ttrace,
2170 int id, struct perf_sample *sample, long err, bool errno_summary)
2172 struct int_node *inode;
2173 struct syscall_stats *stats;
2176 inode = intlist__findnew(ttrace->syscall_stats, id);
2180 stats = inode->priv;
2181 if (stats == NULL) {
2182 stats = zalloc(sizeof(*stats));
2186 init_stats(&stats->stats);
2187 inode->priv = stats;
2190 if (ttrace->entry_time && sample->time > ttrace->entry_time)
2191 duration = sample->time - ttrace->entry_time;
2193 update_stats(&stats->stats, duration);
2196 ++stats->nr_failures;
2202 if (err > stats->max_errno) {
2203 u32 *new_errnos = realloc(stats->errnos, err * sizeof(u32));
2206 memset(new_errnos + stats->max_errno, 0, (err - stats->max_errno) * sizeof(u32));
2208 pr_debug("Not enough memory for errno stats for thread \"%s\"(%d/%d), results will be incomplete\n",
2209 thread__comm_str(thread), thread__pid(thread),
2210 thread__tid(thread));
2214 stats->errnos = new_errnos;
2215 stats->max_errno = err;
2218 ++stats->errnos[err - 1];
2222 static int trace__printf_interrupted_entry(struct trace *trace)
2224 struct thread_trace *ttrace;
2228 if (trace->failure_only || trace->current == NULL)
2231 ttrace = thread__priv(trace->current);
2233 if (!ttrace->entry_pending)
2236 printed = trace__fprintf_entry_head(trace, trace->current, 0, false, ttrace->entry_time, trace->output);
2237 printed += len = fprintf(trace->output, "%s)", ttrace->entry_str);
2239 if (len < trace->args_alignment - 4)
2240 printed += fprintf(trace->output, "%-*s", trace->args_alignment - 4 - len, " ");
2242 printed += fprintf(trace->output, " ...\n");
2244 ttrace->entry_pending = false;
2245 ++trace->nr_events_printed;
2250 static int trace__fprintf_sample(struct trace *trace, struct evsel *evsel,
2251 struct perf_sample *sample, struct thread *thread)
2255 if (trace->print_sample) {
2256 double ts = (double)sample->time / NSEC_PER_MSEC;
2258 printed += fprintf(trace->output, "%22s %10.3f %s %d/%d [%d]\n",
2259 evsel__name(evsel), ts,
2260 thread__comm_str(thread),
2261 sample->pid, sample->tid, sample->cpu);
2267 static void *syscall__augmented_args(struct syscall *sc, struct perf_sample *sample, int *augmented_args_size, int raw_augmented_args_size)
2269 void *augmented_args = NULL;
2271 * For now with BPF raw_augmented we hook into raw_syscalls:sys_enter
2272 * and there we get all 6 syscall args plus the tracepoint common fields
2273 * that gets calculated at the start and the syscall_nr (another long).
2274 * So we check if that is the case and if so don't look after the
2275 * sc->args_size but always after the full raw_syscalls:sys_enter payload,
2278 * We'll revisit this later to pass s->args_size to the BPF augmenter
2279 * (now tools/perf/examples/bpf/augmented_raw_syscalls.c, so that it
2280 * copies only what we need for each syscall, like what happens when we
2281 * use syscalls:sys_enter_NAME, so that we reduce the kernel/userspace
2282 * traffic to just what is needed for each syscall.
2284 int args_size = raw_augmented_args_size ?: sc->args_size;
2286 *augmented_args_size = sample->raw_size - args_size;
2287 if (*augmented_args_size > 0)
2288 augmented_args = sample->raw_data + args_size;
2290 return augmented_args;
2293 static void syscall__exit(struct syscall *sc)
2298 zfree(&sc->arg_fmt);
2301 static int trace__sys_enter(struct trace *trace, struct evsel *evsel,
2302 union perf_event *event __maybe_unused,
2303 struct perf_sample *sample)
2308 struct thread *thread;
2309 int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1;
2310 int augmented_args_size = 0;
2311 void *augmented_args = NULL;
2312 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2313 struct thread_trace *ttrace;
2318 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2319 ttrace = thread__trace(thread, trace->output);
2323 trace__fprintf_sample(trace, evsel, sample, thread);
2325 args = perf_evsel__sc_tp_ptr(evsel, args, sample);
2327 if (ttrace->entry_str == NULL) {
2328 ttrace->entry_str = malloc(trace__entry_str_size);
2329 if (!ttrace->entry_str)
2333 if (!(trace->duration_filter || trace->summary_only || trace->min_stack))
2334 trace__printf_interrupted_entry(trace);
2336 * If this is raw_syscalls.sys_enter, then it always comes with the 6 possible
2337 * arguments, even if the syscall being handled, say "openat", uses only 4 arguments
2338 * this breaks syscall__augmented_args() check for augmented args, as we calculate
2339 * syscall->args_size using each syscalls:sys_enter_NAME tracefs format file,
2340 * so when handling, say the openat syscall, we end up getting 6 args for the
2341 * raw_syscalls:sys_enter event, when we expected just 4, we end up mistakenly
2342 * thinking that the extra 2 u64 args are the augmented filename, so just check
2343 * here and avoid using augmented syscalls when the evsel is the raw_syscalls one.
2345 if (evsel != trace->syscalls.events.sys_enter)
2346 augmented_args = syscall__augmented_args(sc, sample, &augmented_args_size, trace->raw_augmented_syscalls_args_size);
2347 ttrace->entry_time = sample->time;
2348 msg = ttrace->entry_str;
2349 printed += scnprintf(msg + printed, trace__entry_str_size - printed, "%s(", sc->name);
2351 printed += syscall__scnprintf_args(sc, msg + printed, trace__entry_str_size - printed,
2352 args, augmented_args, augmented_args_size, trace, thread);
2355 if (!(trace->duration_filter || trace->summary_only || trace->failure_only || trace->min_stack)) {
2358 trace__fprintf_entry_head(trace, thread, 0, false, ttrace->entry_time, trace->output);
2359 printed = fprintf(trace->output, "%s)", ttrace->entry_str);
2360 if (trace->args_alignment > printed)
2361 alignment = trace->args_alignment - printed;
2362 fprintf(trace->output, "%*s= ?\n", alignment, " ");
2365 ttrace->entry_pending = true;
2366 /* See trace__vfs_getname & trace__sys_exit */
2367 ttrace->filename.pending_open = false;
2370 if (trace->current != thread) {
2371 thread__put(trace->current);
2372 trace->current = thread__get(thread);
2376 thread__put(thread);
2380 static int trace__fprintf_sys_enter(struct trace *trace, struct evsel *evsel,
2381 struct perf_sample *sample)
2383 struct thread_trace *ttrace;
2384 struct thread *thread;
2385 int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1;
2386 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2388 void *args, *augmented_args = NULL;
2389 int augmented_args_size;
2394 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2395 ttrace = thread__trace(thread, trace->output);
2397 * We need to get ttrace just to make sure it is there when syscall__scnprintf_args()
2398 * and the rest of the beautifiers accessing it via struct syscall_arg touches it.
2403 args = perf_evsel__sc_tp_ptr(evsel, args, sample);
2404 augmented_args = syscall__augmented_args(sc, sample, &augmented_args_size, trace->raw_augmented_syscalls_args_size);
2405 syscall__scnprintf_args(sc, msg, sizeof(msg), args, augmented_args, augmented_args_size, trace, thread);
2406 fprintf(trace->output, "%s", msg);
2409 thread__put(thread);
2413 static int trace__resolve_callchain(struct trace *trace, struct evsel *evsel,
2414 struct perf_sample *sample,
2415 struct callchain_cursor *cursor)
2417 struct addr_location al;
2418 int max_stack = evsel->core.attr.sample_max_stack ?
2419 evsel->core.attr.sample_max_stack :
2423 addr_location__init(&al);
2424 if (machine__resolve(trace->host, &al, sample) < 0)
2427 err = thread__resolve_callchain(al.thread, cursor, evsel, sample, NULL, NULL, max_stack);
2429 addr_location__exit(&al);
2433 static int trace__fprintf_callchain(struct trace *trace, struct perf_sample *sample)
2435 /* TODO: user-configurable print_opts */
2436 const unsigned int print_opts = EVSEL__PRINT_SYM |
2438 EVSEL__PRINT_UNKNOWN_AS_ADDR;
2440 return sample__fprintf_callchain(sample, 38, print_opts, get_tls_callchain_cursor(), symbol_conf.bt_stop_list, trace->output);
2443 static const char *errno_to_name(struct evsel *evsel, int err)
2445 struct perf_env *env = evsel__env(evsel);
2446 const char *arch_name = perf_env__arch(env);
2448 return arch_syscalls__strerrno(arch_name, err);
2451 static int trace__sys_exit(struct trace *trace, struct evsel *evsel,
2452 union perf_event *event __maybe_unused,
2453 struct perf_sample *sample)
2457 bool duration_calculated = false;
2458 struct thread *thread;
2459 int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1, callchain_ret = 0, printed = 0;
2460 int alignment = trace->args_alignment;
2461 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2462 struct thread_trace *ttrace;
2467 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2468 ttrace = thread__trace(thread, trace->output);
2472 trace__fprintf_sample(trace, evsel, sample, thread);
2474 ret = perf_evsel__sc_tp_uint(evsel, ret, sample);
2477 thread__update_stats(thread, ttrace, id, sample, ret, trace->errno_summary);
2479 if (!trace->fd_path_disabled && sc->is_open && ret >= 0 && ttrace->filename.pending_open) {
2480 trace__set_fd_pathname(thread, ret, ttrace->filename.name);
2481 ttrace->filename.pending_open = false;
2482 ++trace->stats.vfs_getname;
2485 if (ttrace->entry_time) {
2486 duration = sample->time - ttrace->entry_time;
2487 if (trace__filter_duration(trace, duration))
2489 duration_calculated = true;
2490 } else if (trace->duration_filter)
2493 if (sample->callchain) {
2494 struct callchain_cursor *cursor = get_tls_callchain_cursor();
2496 callchain_ret = trace__resolve_callchain(trace, evsel, sample, cursor);
2497 if (callchain_ret == 0) {
2498 if (cursor->nr < trace->min_stack)
2504 if (trace->summary_only || (ret >= 0 && trace->failure_only))
2507 trace__fprintf_entry_head(trace, thread, duration, duration_calculated, ttrace->entry_time, trace->output);
2509 if (ttrace->entry_pending) {
2510 printed = fprintf(trace->output, "%s", ttrace->entry_str);
2512 printed += fprintf(trace->output, " ... [");
2513 color_fprintf(trace->output, PERF_COLOR_YELLOW, "continued");
2515 printed += fprintf(trace->output, "]: %s()", sc->name);
2518 printed++; /* the closing ')' */
2520 if (alignment > printed)
2521 alignment -= printed;
2525 fprintf(trace->output, ")%*s= ", alignment, " ");
2527 if (sc->fmt == NULL) {
2531 fprintf(trace->output, "%ld", ret);
2532 } else if (ret < 0) {
2534 char bf[STRERR_BUFSIZE];
2535 const char *emsg = str_error_r(-ret, bf, sizeof(bf)),
2536 *e = errno_to_name(evsel, -ret);
2538 fprintf(trace->output, "-1 %s (%s)", e, emsg);
2540 } else if (ret == 0 && sc->fmt->timeout)
2541 fprintf(trace->output, "0 (Timeout)");
2542 else if (ttrace->ret_scnprintf) {
2544 struct syscall_arg arg = {
2549 ttrace->ret_scnprintf(bf, sizeof(bf), &arg);
2550 ttrace->ret_scnprintf = NULL;
2551 fprintf(trace->output, "%s", bf);
2552 } else if (sc->fmt->hexret)
2553 fprintf(trace->output, "%#lx", ret);
2554 else if (sc->fmt->errpid) {
2555 struct thread *child = machine__find_thread(trace->host, ret, ret);
2557 if (child != NULL) {
2558 fprintf(trace->output, "%ld", ret);
2559 if (thread__comm_set(child))
2560 fprintf(trace->output, " (%s)", thread__comm_str(child));
2566 fputc('\n', trace->output);
2569 * We only consider an 'event' for the sake of --max-events a non-filtered
2570 * sys_enter + sys_exit and other tracepoint events.
2572 if (++trace->nr_events_printed == trace->max_events && trace->max_events != ULONG_MAX)
2575 if (callchain_ret > 0)
2576 trace__fprintf_callchain(trace, sample);
2577 else if (callchain_ret < 0)
2578 pr_err("Problem processing %s callchain, skipping...\n", evsel__name(evsel));
2580 ttrace->entry_pending = false;
2583 thread__put(thread);
2587 static int trace__vfs_getname(struct trace *trace, struct evsel *evsel,
2588 union perf_event *event __maybe_unused,
2589 struct perf_sample *sample)
2591 struct thread *thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2592 struct thread_trace *ttrace;
2593 size_t filename_len, entry_str_len, to_move;
2594 ssize_t remaining_space;
2596 const char *filename = evsel__rawptr(evsel, sample, "pathname");
2601 ttrace = thread__priv(thread);
2605 filename_len = strlen(filename);
2606 if (filename_len == 0)
2609 if (ttrace->filename.namelen < filename_len) {
2610 char *f = realloc(ttrace->filename.name, filename_len + 1);
2615 ttrace->filename.namelen = filename_len;
2616 ttrace->filename.name = f;
2619 strcpy(ttrace->filename.name, filename);
2620 ttrace->filename.pending_open = true;
2622 if (!ttrace->filename.ptr)
2625 entry_str_len = strlen(ttrace->entry_str);
2626 remaining_space = trace__entry_str_size - entry_str_len - 1; /* \0 */
2627 if (remaining_space <= 0)
2630 if (filename_len > (size_t)remaining_space) {
2631 filename += filename_len - remaining_space;
2632 filename_len = remaining_space;
2635 to_move = entry_str_len - ttrace->filename.entry_str_pos + 1; /* \0 */
2636 pos = ttrace->entry_str + ttrace->filename.entry_str_pos;
2637 memmove(pos + filename_len, pos, to_move);
2638 memcpy(pos, filename, filename_len);
2640 ttrace->filename.ptr = 0;
2641 ttrace->filename.entry_str_pos = 0;
2643 thread__put(thread);
2648 static int trace__sched_stat_runtime(struct trace *trace, struct evsel *evsel,
2649 union perf_event *event __maybe_unused,
2650 struct perf_sample *sample)
2652 u64 runtime = evsel__intval(evsel, sample, "runtime");
2653 double runtime_ms = (double)runtime / NSEC_PER_MSEC;
2654 struct thread *thread = machine__findnew_thread(trace->host,
2657 struct thread_trace *ttrace = thread__trace(thread, trace->output);
2662 ttrace->runtime_ms += runtime_ms;
2663 trace->runtime_ms += runtime_ms;
2665 thread__put(thread);
2669 fprintf(trace->output, "%s: comm=%s,pid=%u,runtime=%" PRIu64 ",vruntime=%" PRIu64 ")\n",
2671 evsel__strval(evsel, sample, "comm"),
2672 (pid_t)evsel__intval(evsel, sample, "pid"),
2674 evsel__intval(evsel, sample, "vruntime"));
2678 static int bpf_output__printer(enum binary_printer_ops op,
2679 unsigned int val, void *extra __maybe_unused, FILE *fp)
2681 unsigned char ch = (unsigned char)val;
2684 case BINARY_PRINT_CHAR_DATA:
2685 return fprintf(fp, "%c", isprint(ch) ? ch : '.');
2686 case BINARY_PRINT_DATA_BEGIN:
2687 case BINARY_PRINT_LINE_BEGIN:
2688 case BINARY_PRINT_ADDR:
2689 case BINARY_PRINT_NUM_DATA:
2690 case BINARY_PRINT_NUM_PAD:
2691 case BINARY_PRINT_SEP:
2692 case BINARY_PRINT_CHAR_PAD:
2693 case BINARY_PRINT_LINE_END:
2694 case BINARY_PRINT_DATA_END:
2702 static void bpf_output__fprintf(struct trace *trace,
2703 struct perf_sample *sample)
2705 binary__fprintf(sample->raw_data, sample->raw_size, 8,
2706 bpf_output__printer, NULL, trace->output);
2707 ++trace->nr_events_printed;
2710 static size_t trace__fprintf_tp_fields(struct trace *trace, struct evsel *evsel, struct perf_sample *sample,
2711 struct thread *thread, void *augmented_args, int augmented_args_size)
2714 size_t size = sizeof(bf);
2715 struct tep_format_field *field = evsel->tp_format->format.fields;
2716 struct syscall_arg_fmt *arg = __evsel__syscall_arg_fmt(evsel);
2720 struct syscall_arg syscall_arg = {
2722 .size = augmented_args_size,
2723 .args = augmented_args,
2729 .show_string_prefix = trace->show_string_prefix,
2732 for (; field && arg; field = field->next, ++syscall_arg.idx, bit <<= 1, ++arg) {
2733 if (syscall_arg.mask & bit)
2736 syscall_arg.len = 0;
2737 syscall_arg.fmt = arg;
2738 if (field->flags & TEP_FIELD_IS_ARRAY) {
2739 int offset = field->offset;
2741 if (field->flags & TEP_FIELD_IS_DYNAMIC) {
2742 offset = format_field__intval(field, sample, evsel->needs_swap);
2743 syscall_arg.len = offset >> 16;
2745 if (tep_field_is_relative(field->flags))
2746 offset += field->offset + field->size;
2749 val = (uintptr_t)(sample->raw_data + offset);
2751 val = format_field__intval(field, sample, evsel->needs_swap);
2753 * Some syscall args need some mask, most don't and
2754 * return val untouched.
2756 val = syscall_arg_fmt__mask_val(arg, &syscall_arg, val);
2759 * Suppress this argument if its value is zero and
2760 * we don't have a string associated in an
2764 !trace->show_zeros &&
2765 !((arg->show_zero ||
2766 arg->scnprintf == SCA_STRARRAY ||
2767 arg->scnprintf == SCA_STRARRAYS) &&
2771 printed += scnprintf(bf + printed, size - printed, "%s", printed ? ", " : "");
2773 if (trace->show_arg_names)
2774 printed += scnprintf(bf + printed, size - printed, "%s: ", field->name);
2776 printed += syscall_arg_fmt__scnprintf_val(arg, bf + printed, size - printed, &syscall_arg, val);
2779 return printed + fprintf(trace->output, "%s", bf);
2782 static int trace__event_handler(struct trace *trace, struct evsel *evsel,
2783 union perf_event *event __maybe_unused,
2784 struct perf_sample *sample)
2786 struct thread *thread;
2787 int callchain_ret = 0;
2789 * Check if we called perf_evsel__disable(evsel) due to, for instance,
2790 * this event's max_events having been hit and this is an entry coming
2791 * from the ring buffer that we should discard, since the max events
2792 * have already been considered/printed.
2794 if (evsel->disabled)
2797 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2799 if (sample->callchain) {
2800 struct callchain_cursor *cursor = get_tls_callchain_cursor();
2802 callchain_ret = trace__resolve_callchain(trace, evsel, sample, cursor);
2803 if (callchain_ret == 0) {
2804 if (cursor->nr < trace->min_stack)
2810 trace__printf_interrupted_entry(trace);
2811 trace__fprintf_tstamp(trace, sample->time, trace->output);
2813 if (trace->trace_syscalls && trace->show_duration)
2814 fprintf(trace->output, "( ): ");
2817 trace__fprintf_comm_tid(trace, thread, trace->output);
2819 if (evsel == trace->syscalls.events.augmented) {
2820 int id = perf_evsel__sc_tp_uint(evsel, id, sample);
2821 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2824 fprintf(trace->output, "%s(", sc->name);
2825 trace__fprintf_sys_enter(trace, evsel, sample);
2826 fputc(')', trace->output);
2831 * XXX: Not having the associated syscall info or not finding/adding
2832 * the thread should never happen, but if it does...
2833 * fall thru and print it as a bpf_output event.
2837 fprintf(trace->output, "%s(", evsel->name);
2839 if (evsel__is_bpf_output(evsel)) {
2840 bpf_output__fprintf(trace, sample);
2841 } else if (evsel->tp_format) {
2842 if (strncmp(evsel->tp_format->name, "sys_enter_", 10) ||
2843 trace__fprintf_sys_enter(trace, evsel, sample)) {
2844 if (trace->libtraceevent_print) {
2845 event_format__fprintf(evsel->tp_format, sample->cpu,
2846 sample->raw_data, sample->raw_size,
2849 trace__fprintf_tp_fields(trace, evsel, sample, thread, NULL, 0);
2855 fprintf(trace->output, ")\n");
2857 if (callchain_ret > 0)
2858 trace__fprintf_callchain(trace, sample);
2859 else if (callchain_ret < 0)
2860 pr_err("Problem processing %s callchain, skipping...\n", evsel__name(evsel));
2862 ++trace->nr_events_printed;
2864 if (evsel->max_events != ULONG_MAX && ++evsel->nr_events_printed == evsel->max_events) {
2865 evsel__disable(evsel);
2866 evsel__close(evsel);
2869 thread__put(thread);
2873 static void print_location(FILE *f, struct perf_sample *sample,
2874 struct addr_location *al,
2875 bool print_dso, bool print_sym)
2878 if ((verbose > 0 || print_dso) && al->map)
2879 fprintf(f, "%s@", map__dso(al->map)->long_name);
2881 if ((verbose > 0 || print_sym) && al->sym)
2882 fprintf(f, "%s+0x%" PRIx64, al->sym->name,
2883 al->addr - al->sym->start);
2885 fprintf(f, "0x%" PRIx64, al->addr);
2887 fprintf(f, "0x%" PRIx64, sample->addr);
2890 static int trace__pgfault(struct trace *trace,
2891 struct evsel *evsel,
2892 union perf_event *event __maybe_unused,
2893 struct perf_sample *sample)
2895 struct thread *thread;
2896 struct addr_location al;
2897 char map_type = 'd';
2898 struct thread_trace *ttrace;
2900 int callchain_ret = 0;
2902 addr_location__init(&al);
2903 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2905 if (sample->callchain) {
2906 struct callchain_cursor *cursor = get_tls_callchain_cursor();
2908 callchain_ret = trace__resolve_callchain(trace, evsel, sample, cursor);
2909 if (callchain_ret == 0) {
2910 if (cursor->nr < trace->min_stack)
2916 ttrace = thread__trace(thread, trace->output);
2920 if (evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)
2925 if (trace->summary_only)
2928 thread__find_symbol(thread, sample->cpumode, sample->ip, &al);
2930 trace__fprintf_entry_head(trace, thread, 0, true, sample->time, trace->output);
2932 fprintf(trace->output, "%sfault [",
2933 evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ ?
2936 print_location(trace->output, sample, &al, false, true);
2938 fprintf(trace->output, "] => ");
2940 thread__find_symbol(thread, sample->cpumode, sample->addr, &al);
2943 thread__find_symbol(thread, sample->cpumode, sample->addr, &al);
2951 print_location(trace->output, sample, &al, true, false);
2953 fprintf(trace->output, " (%c%c)\n", map_type, al.level);
2955 if (callchain_ret > 0)
2956 trace__fprintf_callchain(trace, sample);
2957 else if (callchain_ret < 0)
2958 pr_err("Problem processing %s callchain, skipping...\n", evsel__name(evsel));
2960 ++trace->nr_events_printed;
2964 thread__put(thread);
2965 addr_location__exit(&al);
2969 static void trace__set_base_time(struct trace *trace,
2970 struct evsel *evsel,
2971 struct perf_sample *sample)
2974 * BPF events were not setting PERF_SAMPLE_TIME, so be more robust
2975 * and don't use sample->time unconditionally, we may end up having
2976 * some other event in the future without PERF_SAMPLE_TIME for good
2977 * reason, i.e. we may not be interested in its timestamps, just in
2978 * it taking place, picking some piece of information when it
2979 * appears in our event stream (vfs_getname comes to mind).
2981 if (trace->base_time == 0 && !trace->full_time &&
2982 (evsel->core.attr.sample_type & PERF_SAMPLE_TIME))
2983 trace->base_time = sample->time;
2986 static int trace__process_sample(struct perf_tool *tool,
2987 union perf_event *event,
2988 struct perf_sample *sample,
2989 struct evsel *evsel,
2990 struct machine *machine __maybe_unused)
2992 struct trace *trace = container_of(tool, struct trace, tool);
2993 struct thread *thread;
2996 tracepoint_handler handler = evsel->handler;
2998 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2999 if (thread && thread__is_filtered(thread))
3002 trace__set_base_time(trace, evsel, sample);
3006 handler(trace, evsel, event, sample);
3009 thread__put(thread);
3013 static int trace__record(struct trace *trace, int argc, const char **argv)
3015 unsigned int rec_argc, i, j;
3016 const char **rec_argv;
3017 const char * const record_args[] = {
3023 pid_t pid = getpid();
3024 char *filter = asprintf__tp_filter_pids(1, &pid);
3025 const char * const sc_args[] = { "-e", };
3026 unsigned int sc_args_nr = ARRAY_SIZE(sc_args);
3027 const char * const majpf_args[] = { "-e", "major-faults" };
3028 unsigned int majpf_args_nr = ARRAY_SIZE(majpf_args);
3029 const char * const minpf_args[] = { "-e", "minor-faults" };
3030 unsigned int minpf_args_nr = ARRAY_SIZE(minpf_args);
3033 /* +3 is for the event string below and the pid filter */
3034 rec_argc = ARRAY_SIZE(record_args) + sc_args_nr + 3 +
3035 majpf_args_nr + minpf_args_nr + argc;
3036 rec_argv = calloc(rec_argc + 1, sizeof(char *));
3038 if (rec_argv == NULL || filter == NULL)
3042 for (i = 0; i < ARRAY_SIZE(record_args); i++)
3043 rec_argv[j++] = record_args[i];
3045 if (trace->trace_syscalls) {
3046 for (i = 0; i < sc_args_nr; i++)
3047 rec_argv[j++] = sc_args[i];
3049 /* event string may be different for older kernels - e.g., RHEL6 */
3050 if (is_valid_tracepoint("raw_syscalls:sys_enter"))
3051 rec_argv[j++] = "raw_syscalls:sys_enter,raw_syscalls:sys_exit";
3052 else if (is_valid_tracepoint("syscalls:sys_enter"))
3053 rec_argv[j++] = "syscalls:sys_enter,syscalls:sys_exit";
3055 pr_err("Neither raw_syscalls nor syscalls events exist.\n");
3060 rec_argv[j++] = "--filter";
3061 rec_argv[j++] = filter;
3063 if (trace->trace_pgfaults & TRACE_PFMAJ)
3064 for (i = 0; i < majpf_args_nr; i++)
3065 rec_argv[j++] = majpf_args[i];
3067 if (trace->trace_pgfaults & TRACE_PFMIN)
3068 for (i = 0; i < minpf_args_nr; i++)
3069 rec_argv[j++] = minpf_args[i];
3071 for (i = 0; i < (unsigned int)argc; i++)
3072 rec_argv[j++] = argv[i];
3074 err = cmd_record(j, rec_argv);
3081 static size_t trace__fprintf_thread_summary(struct trace *trace, FILE *fp);
3083 static bool evlist__add_vfs_getname(struct evlist *evlist)
3086 struct evsel *evsel, *tmp;
3087 struct parse_events_error err;
3090 parse_events_error__init(&err);
3091 ret = parse_events(evlist, "probe:vfs_getname*", &err);
3092 parse_events_error__exit(&err);
3096 evlist__for_each_entry_safe(evlist, evsel, tmp) {
3097 if (!strstarts(evsel__name(evsel), "probe:vfs_getname"))
3100 if (evsel__field(evsel, "pathname")) {
3101 evsel->handler = trace__vfs_getname;
3106 list_del_init(&evsel->core.node);
3107 evsel->evlist = NULL;
3108 evsel__delete(evsel);
3114 static struct evsel *evsel__new_pgfault(u64 config)
3116 struct evsel *evsel;
3117 struct perf_event_attr attr = {
3118 .type = PERF_TYPE_SOFTWARE,
3122 attr.config = config;
3123 attr.sample_period = 1;
3125 event_attr_init(&attr);
3127 evsel = evsel__new(&attr);
3129 evsel->handler = trace__pgfault;
3134 static void evlist__free_syscall_tp_fields(struct evlist *evlist)
3136 struct evsel *evsel;
3138 evlist__for_each_entry(evlist, evsel) {
3139 struct evsel_trace *et = evsel->priv;
3141 if (!et || !evsel->tp_format || strcmp(evsel->tp_format->system, "syscalls"))
3149 static void trace__handle_event(struct trace *trace, union perf_event *event, struct perf_sample *sample)
3151 const u32 type = event->header.type;
3152 struct evsel *evsel;
3154 if (type != PERF_RECORD_SAMPLE) {
3155 trace__process_event(trace, trace->host, event, sample);
3159 evsel = evlist__id2evsel(trace->evlist, sample->id);
3160 if (evsel == NULL) {
3161 fprintf(trace->output, "Unknown tp ID %" PRIu64 ", skipping...\n", sample->id);
3165 if (evswitch__discard(&trace->evswitch, evsel))
3168 trace__set_base_time(trace, evsel, sample);
3170 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT &&
3171 sample->raw_data == NULL) {
3172 fprintf(trace->output, "%s sample with no payload for tid: %d, cpu %d, raw_size=%d, skipping...\n",
3173 evsel__name(evsel), sample->tid,
3174 sample->cpu, sample->raw_size);
3176 tracepoint_handler handler = evsel->handler;
3177 handler(trace, evsel, event, sample);
3180 if (trace->nr_events_printed >= trace->max_events && trace->max_events != ULONG_MAX)
3184 static int trace__add_syscall_newtp(struct trace *trace)
3187 struct evlist *evlist = trace->evlist;
3188 struct evsel *sys_enter, *sys_exit;
3190 sys_enter = perf_evsel__raw_syscall_newtp("sys_enter", trace__sys_enter);
3191 if (sys_enter == NULL)
3194 if (perf_evsel__init_sc_tp_ptr_field(sys_enter, args))
3195 goto out_delete_sys_enter;
3197 sys_exit = perf_evsel__raw_syscall_newtp("sys_exit", trace__sys_exit);
3198 if (sys_exit == NULL)
3199 goto out_delete_sys_enter;
3201 if (perf_evsel__init_sc_tp_uint_field(sys_exit, ret))
3202 goto out_delete_sys_exit;
3204 evsel__config_callchain(sys_enter, &trace->opts, &callchain_param);
3205 evsel__config_callchain(sys_exit, &trace->opts, &callchain_param);
3207 evlist__add(evlist, sys_enter);
3208 evlist__add(evlist, sys_exit);
3210 if (callchain_param.enabled && !trace->kernel_syscallchains) {
3212 * We're interested only in the user space callchain
3213 * leading to the syscall, allow overriding that for
3214 * debugging reasons using --kernel_syscall_callchains
3216 sys_exit->core.attr.exclude_callchain_kernel = 1;
3219 trace->syscalls.events.sys_enter = sys_enter;
3220 trace->syscalls.events.sys_exit = sys_exit;
3226 out_delete_sys_exit:
3227 evsel__delete_priv(sys_exit);
3228 out_delete_sys_enter:
3229 evsel__delete_priv(sys_enter);
3233 static int trace__set_ev_qualifier_tp_filter(struct trace *trace)
3236 struct evsel *sys_exit;
3237 char *filter = asprintf_expr_inout_ints("id", !trace->not_ev_qualifier,
3238 trace->ev_qualifier_ids.nr,
3239 trace->ev_qualifier_ids.entries);
3244 if (!evsel__append_tp_filter(trace->syscalls.events.sys_enter, filter)) {
3245 sys_exit = trace->syscalls.events.sys_exit;
3246 err = evsel__append_tp_filter(sys_exit, filter);
3257 #ifdef HAVE_LIBBPF_SUPPORT
3258 static struct bpf_map *trace__find_bpf_map_by_name(struct trace *trace, const char *name)
3260 if (trace->bpf_obj == NULL)
3263 return bpf_object__find_map_by_name(trace->bpf_obj, name);
3266 static void trace__set_bpf_map_filtered_pids(struct trace *trace)
3268 trace->filter_pids.map = trace__find_bpf_map_by_name(trace, "pids_filtered");
3271 static void trace__set_bpf_map_syscalls(struct trace *trace)
3273 trace->syscalls.prog_array.sys_enter = trace__find_bpf_map_by_name(trace, "syscalls_sys_enter");
3274 trace->syscalls.prog_array.sys_exit = trace__find_bpf_map_by_name(trace, "syscalls_sys_exit");
3277 static struct bpf_program *trace__find_bpf_program_by_title(struct trace *trace, const char *name)
3279 struct bpf_program *pos, *prog = NULL;
3280 const char *sec_name;
3282 if (trace->bpf_obj == NULL)
3285 bpf_object__for_each_program(pos, trace->bpf_obj) {
3286 sec_name = bpf_program__section_name(pos);
3287 if (sec_name && !strcmp(sec_name, name)) {
3296 static struct bpf_program *trace__find_syscall_bpf_prog(struct trace *trace, struct syscall *sc,
3297 const char *prog_name, const char *type)
3299 struct bpf_program *prog;
3301 if (prog_name == NULL) {
3302 char default_prog_name[256];
3303 scnprintf(default_prog_name, sizeof(default_prog_name), "!syscalls:sys_%s_%s", type, sc->name);
3304 prog = trace__find_bpf_program_by_title(trace, default_prog_name);
3307 if (sc->fmt && sc->fmt->alias) {
3308 scnprintf(default_prog_name, sizeof(default_prog_name), "!syscalls:sys_%s_%s", type, sc->fmt->alias);
3309 prog = trace__find_bpf_program_by_title(trace, default_prog_name);
3313 goto out_unaugmented;
3316 prog = trace__find_bpf_program_by_title(trace, prog_name);
3323 pr_debug("Couldn't find BPF prog \"%s\" to associate with syscalls:sys_%s_%s, not augmenting it\n",
3324 prog_name, type, sc->name);
3326 return trace->syscalls.unaugmented_prog;
3329 static void trace__init_syscall_bpf_progs(struct trace *trace, int id)
3331 struct syscall *sc = trace__syscall_info(trace, NULL, id);
3336 sc->bpf_prog.sys_enter = trace__find_syscall_bpf_prog(trace, sc, sc->fmt ? sc->fmt->bpf_prog_name.sys_enter : NULL, "enter");
3337 sc->bpf_prog.sys_exit = trace__find_syscall_bpf_prog(trace, sc, sc->fmt ? sc->fmt->bpf_prog_name.sys_exit : NULL, "exit");
3340 static int trace__bpf_prog_sys_enter_fd(struct trace *trace, int id)
3342 struct syscall *sc = trace__syscall_info(trace, NULL, id);
3343 return sc ? bpf_program__fd(sc->bpf_prog.sys_enter) : bpf_program__fd(trace->syscalls.unaugmented_prog);
3346 static int trace__bpf_prog_sys_exit_fd(struct trace *trace, int id)
3348 struct syscall *sc = trace__syscall_info(trace, NULL, id);
3349 return sc ? bpf_program__fd(sc->bpf_prog.sys_exit) : bpf_program__fd(trace->syscalls.unaugmented_prog);
3352 static struct bpf_program *trace__find_usable_bpf_prog_entry(struct trace *trace, struct syscall *sc)
3354 struct tep_format_field *field, *candidate_field;
3358 * We're only interested in syscalls that have a pointer:
3360 for (field = sc->args; field; field = field->next) {
3361 if (field->flags & TEP_FIELD_IS_POINTER)
3362 goto try_to_find_pair;
3368 for (id = 0; id < trace->sctbl->syscalls.nr_entries; ++id) {
3369 struct syscall *pair = trace__syscall_info(trace, NULL, id);
3370 struct bpf_program *pair_prog;
3371 bool is_candidate = false;
3373 if (pair == NULL || pair == sc ||
3374 pair->bpf_prog.sys_enter == trace->syscalls.unaugmented_prog)
3377 for (field = sc->args, candidate_field = pair->args;
3378 field && candidate_field; field = field->next, candidate_field = candidate_field->next) {
3379 bool is_pointer = field->flags & TEP_FIELD_IS_POINTER,
3380 candidate_is_pointer = candidate_field->flags & TEP_FIELD_IS_POINTER;
3383 if (!candidate_is_pointer) {
3384 // The candidate just doesn't copies our pointer arg, might copy other pointers we want.
3388 if (candidate_is_pointer) {
3389 // The candidate might copy a pointer we don't have, skip it.
3390 goto next_candidate;
3395 if (strcmp(field->type, candidate_field->type))
3396 goto next_candidate;
3398 is_candidate = true;
3402 goto next_candidate;
3405 * Check if the tentative pair syscall augmenter has more pointers, if it has,
3406 * then it may be collecting that and we then can't use it, as it would collect
3407 * more than what is common to the two syscalls.
3409 if (candidate_field) {
3410 for (candidate_field = candidate_field->next; candidate_field; candidate_field = candidate_field->next)
3411 if (candidate_field->flags & TEP_FIELD_IS_POINTER)
3412 goto next_candidate;
3415 pair_prog = pair->bpf_prog.sys_enter;
3417 * If the pair isn't enabled, then its bpf_prog.sys_enter will not
3418 * have been searched for, so search it here and if it returns the
3419 * unaugmented one, then ignore it, otherwise we'll reuse that BPF
3420 * program for a filtered syscall on a non-filtered one.
3422 * For instance, we have "!syscalls:sys_enter_renameat" and that is
3423 * useful for "renameat2".
3425 if (pair_prog == NULL) {
3426 pair_prog = trace__find_syscall_bpf_prog(trace, pair, pair->fmt ? pair->fmt->bpf_prog_name.sys_enter : NULL, "enter");
3427 if (pair_prog == trace->syscalls.unaugmented_prog)
3428 goto next_candidate;
3431 pr_debug("Reusing \"%s\" BPF sys_enter augmenter for \"%s\"\n", pair->name, sc->name);
3440 static int trace__init_syscalls_bpf_prog_array_maps(struct trace *trace)
3442 int map_enter_fd = bpf_map__fd(trace->syscalls.prog_array.sys_enter),
3443 map_exit_fd = bpf_map__fd(trace->syscalls.prog_array.sys_exit);
3446 for (key = 0; key < trace->sctbl->syscalls.nr_entries; ++key) {
3449 if (!trace__syscall_enabled(trace, key))
3452 trace__init_syscall_bpf_progs(trace, key);
3454 // It'll get at least the "!raw_syscalls:unaugmented"
3455 prog_fd = trace__bpf_prog_sys_enter_fd(trace, key);
3456 err = bpf_map_update_elem(map_enter_fd, &key, &prog_fd, BPF_ANY);
3459 prog_fd = trace__bpf_prog_sys_exit_fd(trace, key);
3460 err = bpf_map_update_elem(map_exit_fd, &key, &prog_fd, BPF_ANY);
3466 * Now lets do a second pass looking for enabled syscalls without
3467 * an augmenter that have a signature that is a superset of another
3468 * syscall with an augmenter so that we can auto-reuse it.
3470 * I.e. if we have an augmenter for the "open" syscall that has
3473 * int open(const char *pathname, int flags, mode_t mode);
3475 * I.e. that will collect just the first string argument, then we
3476 * can reuse it for the 'creat' syscall, that has this signature:
3478 * int creat(const char *pathname, mode_t mode);
3482 * int stat(const char *pathname, struct stat *statbuf);
3483 * int lstat(const char *pathname, struct stat *statbuf);
3485 * Because the 'open' augmenter will collect the first arg as a string,
3486 * and leave alone all the other args, which already helps with
3487 * beautifying 'stat' and 'lstat''s pathname arg.
3489 * Then, in time, when 'stat' gets an augmenter that collects both
3490 * first and second arg (this one on the raw_syscalls:sys_exit prog
3491 * array tail call, then that one will be used.
3493 for (key = 0; key < trace->sctbl->syscalls.nr_entries; ++key) {
3494 struct syscall *sc = trace__syscall_info(trace, NULL, key);
3495 struct bpf_program *pair_prog;
3498 if (sc == NULL || sc->bpf_prog.sys_enter == NULL)
3502 * For now we're just reusing the sys_enter prog, and if it
3503 * already has an augmenter, we don't need to find one.
3505 if (sc->bpf_prog.sys_enter != trace->syscalls.unaugmented_prog)
3509 * Look at all the other syscalls for one that has a signature
3510 * that is close enough that we can share:
3512 pair_prog = trace__find_usable_bpf_prog_entry(trace, sc);
3513 if (pair_prog == NULL)
3516 sc->bpf_prog.sys_enter = pair_prog;
3519 * Update the BPF_MAP_TYPE_PROG_SHARED for raw_syscalls:sys_enter
3520 * with the fd for the program we're reusing:
3522 prog_fd = bpf_program__fd(sc->bpf_prog.sys_enter);
3523 err = bpf_map_update_elem(map_enter_fd, &key, &prog_fd, BPF_ANY);
3532 static void trace__delete_augmented_syscalls(struct trace *trace)
3534 struct evsel *evsel, *tmp;
3536 evlist__remove(trace->evlist, trace->syscalls.events.augmented);
3537 evsel__delete(trace->syscalls.events.augmented);
3538 trace->syscalls.events.augmented = NULL;
3540 evlist__for_each_entry_safe(trace->evlist, tmp, evsel) {
3541 if (evsel->bpf_obj == trace->bpf_obj) {
3542 evlist__remove(trace->evlist, evsel);
3543 evsel__delete(evsel);
3548 bpf_object__close(trace->bpf_obj);
3549 trace->bpf_obj = NULL;
3551 #else // HAVE_LIBBPF_SUPPORT
3552 static struct bpf_map *trace__find_bpf_map_by_name(struct trace *trace __maybe_unused,
3553 const char *name __maybe_unused)
3558 static void trace__set_bpf_map_filtered_pids(struct trace *trace __maybe_unused)
3562 static void trace__set_bpf_map_syscalls(struct trace *trace __maybe_unused)
3566 static struct bpf_program *trace__find_bpf_program_by_title(struct trace *trace __maybe_unused,
3567 const char *name __maybe_unused)
3572 static int trace__init_syscalls_bpf_prog_array_maps(struct trace *trace __maybe_unused)
3577 static void trace__delete_augmented_syscalls(struct trace *trace __maybe_unused)
3580 #endif // HAVE_LIBBPF_SUPPORT
3582 static bool trace__only_augmented_syscalls_evsels(struct trace *trace)
3584 struct evsel *evsel;
3586 evlist__for_each_entry(trace->evlist, evsel) {
3587 if (evsel == trace->syscalls.events.augmented ||
3588 evsel->bpf_obj == trace->bpf_obj)
3597 static int trace__set_ev_qualifier_filter(struct trace *trace)
3599 if (trace->syscalls.events.sys_enter)
3600 return trace__set_ev_qualifier_tp_filter(trace);
3604 static int bpf_map__set_filter_pids(struct bpf_map *map __maybe_unused,
3605 size_t npids __maybe_unused, pid_t *pids __maybe_unused)
3608 #ifdef HAVE_LIBBPF_SUPPORT
3610 int map_fd = bpf_map__fd(map);
3613 for (i = 0; i < npids; ++i) {
3614 err = bpf_map_update_elem(map_fd, &pids[i], &value, BPF_ANY);
3622 static int trace__set_filter_loop_pids(struct trace *trace)
3624 unsigned int nr = 1, err;
3628 struct thread *thread = machine__find_thread(trace->host, pids[0], pids[0]);
3630 while (thread && nr < ARRAY_SIZE(pids)) {
3631 struct thread *parent = machine__find_thread(trace->host,
3632 thread__ppid(thread),
3633 thread__ppid(thread));
3638 if (!strcmp(thread__comm_str(parent), "sshd") ||
3639 strstarts(thread__comm_str(parent), "gnome-terminal")) {
3640 pids[nr++] = thread__tid(parent);
3646 err = evlist__append_tp_filter_pids(trace->evlist, nr, pids);
3647 if (!err && trace->filter_pids.map)
3648 err = bpf_map__set_filter_pids(trace->filter_pids.map, nr, pids);
3653 static int trace__set_filter_pids(struct trace *trace)
3657 * Better not use !target__has_task() here because we need to cover the
3658 * case where no threads were specified in the command line, but a
3659 * workload was, and in that case we will fill in the thread_map when
3660 * we fork the workload in evlist__prepare_workload.
3662 if (trace->filter_pids.nr > 0) {
3663 err = evlist__append_tp_filter_pids(trace->evlist, trace->filter_pids.nr,
3664 trace->filter_pids.entries);
3665 if (!err && trace->filter_pids.map) {
3666 err = bpf_map__set_filter_pids(trace->filter_pids.map, trace->filter_pids.nr,
3667 trace->filter_pids.entries);
3669 } else if (perf_thread_map__pid(trace->evlist->core.threads, 0) == -1) {
3670 err = trace__set_filter_loop_pids(trace);
3676 static int __trace__deliver_event(struct trace *trace, union perf_event *event)
3678 struct evlist *evlist = trace->evlist;
3679 struct perf_sample sample;
3680 int err = evlist__parse_sample(evlist, event, &sample);
3683 fprintf(trace->output, "Can't parse sample, err = %d, skipping...\n", err);
3685 trace__handle_event(trace, event, &sample);
3690 static int __trace__flush_events(struct trace *trace)
3692 u64 first = ordered_events__first_time(&trace->oe.data);
3693 u64 flush = trace->oe.last - NSEC_PER_SEC;
3695 /* Is there some thing to flush.. */
3696 if (first && first < flush)
3697 return ordered_events__flush_time(&trace->oe.data, flush);
3702 static int trace__flush_events(struct trace *trace)
3704 return !trace->sort_events ? 0 : __trace__flush_events(trace);
3707 static int trace__deliver_event(struct trace *trace, union perf_event *event)
3711 if (!trace->sort_events)
3712 return __trace__deliver_event(trace, event);
3714 err = evlist__parse_sample_timestamp(trace->evlist, event, &trace->oe.last);
3715 if (err && err != -1)
3718 err = ordered_events__queue(&trace->oe.data, event, trace->oe.last, 0, NULL);
3722 return trace__flush_events(trace);
3725 static int ordered_events__deliver_event(struct ordered_events *oe,
3726 struct ordered_event *event)
3728 struct trace *trace = container_of(oe, struct trace, oe.data);
3730 return __trace__deliver_event(trace, event->event);
3733 static struct syscall_arg_fmt *evsel__find_syscall_arg_fmt_by_name(struct evsel *evsel, char *arg)
3735 struct tep_format_field *field;
3736 struct syscall_arg_fmt *fmt = __evsel__syscall_arg_fmt(evsel);
3738 if (evsel->tp_format == NULL || fmt == NULL)
3741 for (field = evsel->tp_format->format.fields; field; field = field->next, ++fmt)
3742 if (strcmp(field->name, arg) == 0)
3748 static int trace__expand_filter(struct trace *trace __maybe_unused, struct evsel *evsel)
3750 char *tok, *left = evsel->filter, *new_filter = evsel->filter;
3752 while ((tok = strpbrk(left, "=<>!")) != NULL) {
3753 char *right = tok + 1, *right_end;
3758 while (isspace(*right))
3764 while (!isalpha(*left))
3765 if (++left == tok) {
3767 * Bail out, can't find the name of the argument that is being
3768 * used in the filter, let it try to set this filter, will fail later.
3773 right_end = right + 1;
3774 while (isalnum(*right_end) || *right_end == '_' || *right_end == '|')
3777 if (isalpha(*right)) {
3778 struct syscall_arg_fmt *fmt;
3779 int left_size = tok - left,
3780 right_size = right_end - right;
3783 while (isspace(left[left_size - 1]))
3786 scnprintf(arg, sizeof(arg), "%.*s", left_size, left);
3788 fmt = evsel__find_syscall_arg_fmt_by_name(evsel, arg);
3790 pr_err("\"%s\" not found in \"%s\", can't set filter \"%s\"\n",
3791 arg, evsel->name, evsel->filter);
3795 pr_debug2("trying to expand \"%s\" \"%.*s\" \"%.*s\" -> ",
3796 arg, (int)(right - tok), tok, right_size, right);
3800 struct syscall_arg syscall_arg = {
3804 if (fmt->strtoul(right, right_size, &syscall_arg, &val)) {
3805 char *n, expansion[19];
3806 int expansion_lenght = scnprintf(expansion, sizeof(expansion), "%#" PRIx64, val);
3807 int expansion_offset = right - new_filter;
3809 pr_debug("%s", expansion);
3811 if (asprintf(&n, "%.*s%s%s", expansion_offset, new_filter, expansion, right_end) < 0) {
3812 pr_debug(" out of memory!\n");
3816 if (new_filter != evsel->filter)
3818 left = n + expansion_offset + expansion_lenght;
3821 pr_err("\"%.*s\" not found for \"%s\" in \"%s\", can't set filter \"%s\"\n",
3822 right_size, right, arg, evsel->name, evsel->filter);
3826 pr_err("No resolver (strtoul) for \"%s\" in \"%s\", can't set filter \"%s\"\n",
3827 arg, evsel->name, evsel->filter);
3837 if (new_filter != evsel->filter) {
3838 pr_debug("New filter for %s: %s\n", evsel->name, new_filter);
3839 evsel__set_filter(evsel, new_filter);
3846 static int trace__expand_filters(struct trace *trace, struct evsel **err_evsel)
3848 struct evlist *evlist = trace->evlist;
3849 struct evsel *evsel;
3851 evlist__for_each_entry(evlist, evsel) {
3852 if (evsel->filter == NULL)
3855 if (trace__expand_filter(trace, evsel)) {
3864 static int trace__run(struct trace *trace, int argc, const char **argv)
3866 struct evlist *evlist = trace->evlist;
3867 struct evsel *evsel, *pgfault_maj = NULL, *pgfault_min = NULL;
3869 unsigned long before;
3870 const bool forks = argc > 0;
3871 bool draining = false;
3875 if (!trace->raw_augmented_syscalls) {
3876 if (trace->trace_syscalls && trace__add_syscall_newtp(trace))
3877 goto out_error_raw_syscalls;
3879 if (trace->trace_syscalls)
3880 trace->vfs_getname = evlist__add_vfs_getname(evlist);
3883 if ((trace->trace_pgfaults & TRACE_PFMAJ)) {
3884 pgfault_maj = evsel__new_pgfault(PERF_COUNT_SW_PAGE_FAULTS_MAJ);
3885 if (pgfault_maj == NULL)
3887 evsel__config_callchain(pgfault_maj, &trace->opts, &callchain_param);
3888 evlist__add(evlist, pgfault_maj);
3891 if ((trace->trace_pgfaults & TRACE_PFMIN)) {
3892 pgfault_min = evsel__new_pgfault(PERF_COUNT_SW_PAGE_FAULTS_MIN);
3893 if (pgfault_min == NULL)
3895 evsel__config_callchain(pgfault_min, &trace->opts, &callchain_param);
3896 evlist__add(evlist, pgfault_min);
3899 /* Enable ignoring missing threads when -u/-p option is defined. */
3900 trace->opts.ignore_missing_thread = trace->opts.target.uid != UINT_MAX || trace->opts.target.pid;
3903 evlist__add_newtp(evlist, "sched", "sched_stat_runtime", trace__sched_stat_runtime))
3904 goto out_error_sched_stat_runtime;
3906 * If a global cgroup was set, apply it to all the events without an
3907 * explicit cgroup. I.e.:
3909 * trace -G A -e sched:*switch
3911 * Will set all raw_syscalls:sys_{enter,exit}, pgfault, vfs_getname, etc
3912 * _and_ sched:sched_switch to the 'A' cgroup, while:
3914 * trace -e sched:*switch -G A
3916 * will only set the sched:sched_switch event to the 'A' cgroup, all the
3917 * other events (raw_syscalls:sys_{enter,exit}, etc are left "without"
3918 * a cgroup (on the root cgroup, sys wide, etc).
3922 * trace -G A -e sched:*switch -G B
3924 * the syscall ones go to the 'A' cgroup, the sched:sched_switch goes
3925 * to the 'B' cgroup.
3927 * evlist__set_default_cgroup() grabs a reference of the passed cgroup
3928 * only for the evsels still without a cgroup, i.e. evsel->cgroup == NULL.
3931 evlist__set_default_cgroup(trace->evlist, trace->cgroup);
3933 err = evlist__create_maps(evlist, &trace->opts.target);
3935 fprintf(trace->output, "Problems parsing the target to trace, check your options!\n");
3936 goto out_delete_evlist;
3939 err = trace__symbols_init(trace, evlist);
3941 fprintf(trace->output, "Problems initializing symbol libraries!\n");
3942 goto out_delete_evlist;
3945 evlist__config(evlist, &trace->opts, &callchain_param);
3948 err = evlist__prepare_workload(evlist, &trace->opts.target, argv, false, NULL);
3950 fprintf(trace->output, "Couldn't run the workload!\n");
3951 goto out_delete_evlist;
3953 workload_pid = evlist->workload.pid;
3956 err = evlist__open(evlist);
3958 goto out_error_open;
3960 err = bpf__apply_obj_config();
3962 char errbuf[BUFSIZ];
3964 bpf__strerror_apply_obj_config(err, errbuf, sizeof(errbuf));
3965 pr_err("ERROR: Apply config to BPF failed: %s\n",
3967 goto out_error_open;
3970 err = trace__set_filter_pids(trace);
3974 if (trace->syscalls.prog_array.sys_enter)
3975 trace__init_syscalls_bpf_prog_array_maps(trace);
3977 if (trace->ev_qualifier_ids.nr > 0) {
3978 err = trace__set_ev_qualifier_filter(trace);
3982 if (trace->syscalls.events.sys_exit) {
3983 pr_debug("event qualifier tracepoint filter: %s\n",
3984 trace->syscalls.events.sys_exit->filter);
3989 * If the "close" syscall is not traced, then we will not have the
3990 * opportunity to, in syscall_arg__scnprintf_close_fd() invalidate the
3991 * fd->pathname table and were ending up showing the last value set by
3992 * syscalls opening a pathname and associating it with a descriptor or
3993 * reading it from /proc/pid/fd/ in cases where that doesn't make
3996 * So just disable this beautifier (SCA_FD, SCA_FDAT) when 'close' is
3999 trace->fd_path_disabled = !trace__syscall_enabled(trace, syscalltbl__id(trace->sctbl, "close"));
4001 err = trace__expand_filters(trace, &evsel);
4003 goto out_delete_evlist;
4004 err = evlist__apply_filters(evlist, &evsel);
4006 goto out_error_apply_filters;
4008 if (trace->dump.map)
4009 bpf_map__fprintf(trace->dump.map, trace->output);
4011 err = evlist__mmap(evlist, trace->opts.mmap_pages);
4013 goto out_error_mmap;
4015 if (!target__none(&trace->opts.target) && !trace->opts.target.initial_delay)
4016 evlist__enable(evlist);
4019 evlist__start_workload(evlist);
4021 if (trace->opts.target.initial_delay) {
4022 usleep(trace->opts.target.initial_delay * 1000);
4023 evlist__enable(evlist);
4026 trace->multiple_threads = perf_thread_map__pid(evlist->core.threads, 0) == -1 ||
4027 perf_thread_map__nr(evlist->core.threads) > 1 ||
4028 evlist__first(evlist)->core.attr.inherit;
4031 * Now that we already used evsel->core.attr to ask the kernel to setup the
4032 * events, lets reuse evsel->core.attr.sample_max_stack as the limit in
4033 * trace__resolve_callchain(), allowing per-event max-stack settings
4034 * to override an explicitly set --max-stack global setting.
4036 evlist__for_each_entry(evlist, evsel) {
4037 if (evsel__has_callchain(evsel) &&
4038 evsel->core.attr.sample_max_stack == 0)
4039 evsel->core.attr.sample_max_stack = trace->max_stack;
4042 before = trace->nr_events;
4044 for (i = 0; i < evlist->core.nr_mmaps; i++) {
4045 union perf_event *event;
4048 md = &evlist->mmap[i];
4049 if (perf_mmap__read_init(&md->core) < 0)
4052 while ((event = perf_mmap__read_event(&md->core)) != NULL) {
4055 err = trace__deliver_event(trace, event);
4059 perf_mmap__consume(&md->core);
4064 if (done && !draining) {
4065 evlist__disable(evlist);
4069 perf_mmap__read_done(&md->core);
4072 if (trace->nr_events == before) {
4073 int timeout = done ? 100 : -1;
4075 if (!draining && evlist__poll(evlist, timeout) > 0) {
4076 if (evlist__filter_pollfd(evlist, POLLERR | POLLHUP | POLLNVAL) == 0)
4081 if (trace__flush_events(trace))
4089 thread__zput(trace->current);
4091 evlist__disable(evlist);
4093 if (trace->sort_events)
4094 ordered_events__flush(&trace->oe.data, OE_FLUSH__FINAL);
4098 trace__fprintf_thread_summary(trace, trace->output);
4100 if (trace->show_tool_stats) {
4101 fprintf(trace->output, "Stats:\n "
4102 " vfs_getname : %" PRIu64 "\n"
4103 " proc_getname: %" PRIu64 "\n",
4104 trace->stats.vfs_getname,
4105 trace->stats.proc_getname);
4110 trace__symbols__exit(trace);
4111 evlist__free_syscall_tp_fields(evlist);
4112 evlist__delete(evlist);
4113 cgroup__put(trace->cgroup);
4114 trace->evlist = NULL;
4115 trace->live = false;
4118 char errbuf[BUFSIZ];
4120 out_error_sched_stat_runtime:
4121 tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "sched", "sched_stat_runtime");
4124 out_error_raw_syscalls:
4125 tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "raw_syscalls", "sys_(enter|exit)");
4129 evlist__strerror_mmap(evlist, errno, errbuf, sizeof(errbuf));
4133 evlist__strerror_open(evlist, errno, errbuf, sizeof(errbuf));
4136 fprintf(trace->output, "%s\n", errbuf);
4137 goto out_delete_evlist;
4139 out_error_apply_filters:
4140 fprintf(trace->output,
4141 "Failed to set filter \"%s\" on event %s with %d (%s)\n",
4142 evsel->filter, evsel__name(evsel), errno,
4143 str_error_r(errno, errbuf, sizeof(errbuf)));
4144 goto out_delete_evlist;
4147 fprintf(trace->output, "Not enough memory to run!\n");
4148 goto out_delete_evlist;
4151 fprintf(trace->output, "errno=%d,%s\n", errno, strerror(errno));
4152 goto out_delete_evlist;
4155 static int trace__replay(struct trace *trace)
4157 const struct evsel_str_handler handlers[] = {
4158 { "probe:vfs_getname", trace__vfs_getname, },
4160 struct perf_data data = {
4162 .mode = PERF_DATA_MODE_READ,
4163 .force = trace->force,
4165 struct perf_session *session;
4166 struct evsel *evsel;
4169 trace->tool.sample = trace__process_sample;
4170 trace->tool.mmap = perf_event__process_mmap;
4171 trace->tool.mmap2 = perf_event__process_mmap2;
4172 trace->tool.comm = perf_event__process_comm;
4173 trace->tool.exit = perf_event__process_exit;
4174 trace->tool.fork = perf_event__process_fork;
4175 trace->tool.attr = perf_event__process_attr;
4176 trace->tool.tracing_data = perf_event__process_tracing_data;
4177 trace->tool.build_id = perf_event__process_build_id;
4178 trace->tool.namespaces = perf_event__process_namespaces;
4180 trace->tool.ordered_events = true;
4181 trace->tool.ordering_requires_timestamps = true;
4183 /* add tid to output */
4184 trace->multiple_threads = true;
4186 session = perf_session__new(&data, &trace->tool);
4187 if (IS_ERR(session))
4188 return PTR_ERR(session);
4190 if (trace->opts.target.pid)
4191 symbol_conf.pid_list_str = strdup(trace->opts.target.pid);
4193 if (trace->opts.target.tid)
4194 symbol_conf.tid_list_str = strdup(trace->opts.target.tid);
4196 if (symbol__init(&session->header.env) < 0)
4199 trace->host = &session->machines.host;
4201 err = perf_session__set_tracepoints_handlers(session, handlers);
4205 evsel = evlist__find_tracepoint_by_name(session->evlist, "raw_syscalls:sys_enter");
4206 trace->syscalls.events.sys_enter = evsel;
4207 /* older kernels have syscalls tp versus raw_syscalls */
4209 evsel = evlist__find_tracepoint_by_name(session->evlist, "syscalls:sys_enter");
4212 (evsel__init_raw_syscall_tp(evsel, trace__sys_enter) < 0 ||
4213 perf_evsel__init_sc_tp_ptr_field(evsel, args))) {
4214 pr_err("Error during initialize raw_syscalls:sys_enter event\n");
4218 evsel = evlist__find_tracepoint_by_name(session->evlist, "raw_syscalls:sys_exit");
4219 trace->syscalls.events.sys_exit = evsel;
4221 evsel = evlist__find_tracepoint_by_name(session->evlist, "syscalls:sys_exit");
4223 (evsel__init_raw_syscall_tp(evsel, trace__sys_exit) < 0 ||
4224 perf_evsel__init_sc_tp_uint_field(evsel, ret))) {
4225 pr_err("Error during initialize raw_syscalls:sys_exit event\n");
4229 evlist__for_each_entry(session->evlist, evsel) {
4230 if (evsel->core.attr.type == PERF_TYPE_SOFTWARE &&
4231 (evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ ||
4232 evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MIN ||
4233 evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS))
4234 evsel->handler = trace__pgfault;
4239 err = perf_session__process_events(session);
4241 pr_err("Failed to process events, error %d", err);
4243 else if (trace->summary)
4244 trace__fprintf_thread_summary(trace, trace->output);
4247 perf_session__delete(session);
4252 static size_t trace__fprintf_threads_header(FILE *fp)
4256 printed = fprintf(fp, "\n Summary of events:\n\n");
4261 DEFINE_RESORT_RB(syscall_stats, a->msecs > b->msecs,
4262 struct syscall_stats *stats;
4267 struct int_node *source = rb_entry(nd, struct int_node, rb_node);
4268 struct syscall_stats *stats = source->priv;
4270 entry->syscall = source->i;
4271 entry->stats = stats;
4272 entry->msecs = stats ? (u64)stats->stats.n * (avg_stats(&stats->stats) / NSEC_PER_MSEC) : 0;
4275 static size_t thread__dump_stats(struct thread_trace *ttrace,
4276 struct trace *trace, FILE *fp)
4281 DECLARE_RESORT_RB_INTLIST(syscall_stats, ttrace->syscall_stats);
4283 if (syscall_stats == NULL)
4286 printed += fprintf(fp, "\n");
4288 printed += fprintf(fp, " syscall calls errors total min avg max stddev\n");
4289 printed += fprintf(fp, " (msec) (msec) (msec) (msec) (%%)\n");
4290 printed += fprintf(fp, " --------------- -------- ------ -------- --------- --------- --------- ------\n");
4292 resort_rb__for_each_entry(nd, syscall_stats) {
4293 struct syscall_stats *stats = syscall_stats_entry->stats;
4295 double min = (double)(stats->stats.min) / NSEC_PER_MSEC;
4296 double max = (double)(stats->stats.max) / NSEC_PER_MSEC;
4297 double avg = avg_stats(&stats->stats);
4299 u64 n = (u64)stats->stats.n;
4301 pct = avg ? 100.0 * stddev_stats(&stats->stats) / avg : 0.0;
4302 avg /= NSEC_PER_MSEC;
4304 sc = &trace->syscalls.table[syscall_stats_entry->syscall];
4305 printed += fprintf(fp, " %-15s", sc->name);
4306 printed += fprintf(fp, " %8" PRIu64 " %6" PRIu64 " %9.3f %9.3f %9.3f",
4307 n, stats->nr_failures, syscall_stats_entry->msecs, min, avg);
4308 printed += fprintf(fp, " %9.3f %9.2f%%\n", max, pct);
4310 if (trace->errno_summary && stats->nr_failures) {
4311 const char *arch_name = perf_env__arch(trace->host->env);
4314 for (e = 0; e < stats->max_errno; ++e) {
4315 if (stats->errnos[e] != 0)
4316 fprintf(fp, "\t\t\t\t%s: %d\n", arch_syscalls__strerrno(arch_name, e + 1), stats->errnos[e]);
4322 resort_rb__delete(syscall_stats);
4323 printed += fprintf(fp, "\n\n");
4328 static size_t trace__fprintf_thread(FILE *fp, struct thread *thread, struct trace *trace)
4331 struct thread_trace *ttrace = thread__priv(thread);
4337 ratio = (double)ttrace->nr_events / trace->nr_events * 100.0;
4339 printed += fprintf(fp, " %s (%d), ", thread__comm_str(thread), thread__tid(thread));
4340 printed += fprintf(fp, "%lu events, ", ttrace->nr_events);
4341 printed += fprintf(fp, "%.1f%%", ratio);
4343 printed += fprintf(fp, ", %lu majfaults", ttrace->pfmaj);
4345 printed += fprintf(fp, ", %lu minfaults", ttrace->pfmin);
4347 printed += fprintf(fp, ", %.3f msec\n", ttrace->runtime_ms);
4348 else if (fputc('\n', fp) != EOF)
4351 printed += thread__dump_stats(ttrace, trace, fp);
4356 static unsigned long thread__nr_events(struct thread_trace *ttrace)
4358 return ttrace ? ttrace->nr_events : 0;
4361 DEFINE_RESORT_RB(threads,
4362 (thread__nr_events(thread__priv(a->thread)) <
4363 thread__nr_events(thread__priv(b->thread))),
4364 struct thread *thread;
4367 entry->thread = rb_entry(nd, struct thread_rb_node, rb_node)->thread;
4370 static size_t trace__fprintf_thread_summary(struct trace *trace, FILE *fp)
4372 size_t printed = trace__fprintf_threads_header(fp);
4376 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
4377 DECLARE_RESORT_RB_MACHINE_THREADS(threads, trace->host, i);
4379 if (threads == NULL) {
4380 fprintf(fp, "%s", "Error sorting output by nr_events!\n");
4384 resort_rb__for_each_entry(nd, threads)
4385 printed += trace__fprintf_thread(fp, threads_entry->thread, trace);
4387 resort_rb__delete(threads);
4392 static int trace__set_duration(const struct option *opt, const char *str,
4393 int unset __maybe_unused)
4395 struct trace *trace = opt->value;
4397 trace->duration_filter = atof(str);
4401 static int trace__set_filter_pids_from_option(const struct option *opt, const char *str,
4402 int unset __maybe_unused)
4406 struct trace *trace = opt->value;
4408 * FIXME: introduce a intarray class, plain parse csv and create a
4409 * { int nr, int entries[] } struct...
4411 struct intlist *list = intlist__new(str);
4416 i = trace->filter_pids.nr = intlist__nr_entries(list) + 1;
4417 trace->filter_pids.entries = calloc(i, sizeof(pid_t));
4419 if (trace->filter_pids.entries == NULL)
4422 trace->filter_pids.entries[0] = getpid();
4424 for (i = 1; i < trace->filter_pids.nr; ++i)
4425 trace->filter_pids.entries[i] = intlist__entry(list, i - 1)->i;
4427 intlist__delete(list);
4433 static int trace__open_output(struct trace *trace, const char *filename)
4437 if (!stat(filename, &st) && st.st_size) {
4438 char oldname[PATH_MAX];
4440 scnprintf(oldname, sizeof(oldname), "%s.old", filename);
4442 rename(filename, oldname);
4445 trace->output = fopen(filename, "w");
4447 return trace->output == NULL ? -errno : 0;
4450 static int parse_pagefaults(const struct option *opt, const char *str,
4451 int unset __maybe_unused)
4453 int *trace_pgfaults = opt->value;
4455 if (strcmp(str, "all") == 0)
4456 *trace_pgfaults |= TRACE_PFMAJ | TRACE_PFMIN;
4457 else if (strcmp(str, "maj") == 0)
4458 *trace_pgfaults |= TRACE_PFMAJ;
4459 else if (strcmp(str, "min") == 0)
4460 *trace_pgfaults |= TRACE_PFMIN;
4467 static void evlist__set_default_evsel_handler(struct evlist *evlist, void *handler)
4469 struct evsel *evsel;
4471 evlist__for_each_entry(evlist, evsel) {
4472 if (evsel->handler == NULL)
4473 evsel->handler = handler;
4477 static void evsel__set_syscall_arg_fmt(struct evsel *evsel, const char *name)
4479 struct syscall_arg_fmt *fmt = evsel__syscall_arg_fmt(evsel);
4482 const struct syscall_fmt *scfmt = syscall_fmt__find(name);
4487 if (strcmp(evsel->tp_format->format.fields->name, "__syscall_nr") == 0 ||
4488 strcmp(evsel->tp_format->format.fields->name, "nr") == 0)
4491 memcpy(fmt + skip, scfmt->arg, (evsel->tp_format->format.nr_fields - skip) * sizeof(*fmt));
4496 static int evlist__set_syscall_tp_fields(struct evlist *evlist)
4498 struct evsel *evsel;
4500 evlist__for_each_entry(evlist, evsel) {
4501 if (evsel->priv || !evsel->tp_format)
4504 if (strcmp(evsel->tp_format->system, "syscalls")) {
4505 evsel__init_tp_arg_scnprintf(evsel);
4509 if (evsel__init_syscall_tp(evsel))
4512 if (!strncmp(evsel->tp_format->name, "sys_enter_", 10)) {
4513 struct syscall_tp *sc = __evsel__syscall_tp(evsel);
4515 if (__tp_field__init_ptr(&sc->args, sc->id.offset + sizeof(u64)))
4518 evsel__set_syscall_arg_fmt(evsel, evsel->tp_format->name + sizeof("sys_enter_") - 1);
4519 } else if (!strncmp(evsel->tp_format->name, "sys_exit_", 9)) {
4520 struct syscall_tp *sc = __evsel__syscall_tp(evsel);
4522 if (__tp_field__init_uint(&sc->ret, sizeof(u64), sc->id.offset + sizeof(u64), evsel->needs_swap))
4525 evsel__set_syscall_arg_fmt(evsel, evsel->tp_format->name + sizeof("sys_exit_") - 1);
4533 * XXX: Hackish, just splitting the combined -e+--event (syscalls
4534 * (raw_syscalls:{sys_{enter,exit}} + events (tracepoints, HW, SW, etc) to use
4535 * existing facilities unchanged (trace->ev_qualifier + parse_options()).
4537 * It'd be better to introduce a parse_options() variant that would return a
4538 * list with the terms it didn't match to an event...
4540 static int trace__parse_events_option(const struct option *opt, const char *str,
4541 int unset __maybe_unused)
4543 struct trace *trace = (struct trace *)opt->value;
4544 const char *s = str;
4545 char *sep = NULL, *lists[2] = { NULL, NULL, };
4546 int len = strlen(str) + 1, err = -1, list, idx;
4547 char *strace_groups_dir = system_path(STRACE_GROUPS_DIR);
4548 char group_name[PATH_MAX];
4549 const struct syscall_fmt *fmt;
4551 if (strace_groups_dir == NULL)
4556 trace->not_ev_qualifier = true;
4560 if ((sep = strchr(s, ',')) != NULL)
4564 if (syscalltbl__id(trace->sctbl, s) >= 0 ||
4565 syscalltbl__strglobmatch_first(trace->sctbl, s, &idx) >= 0) {
4570 fmt = syscall_fmt__find_by_alias(s);
4575 path__join(group_name, sizeof(group_name), strace_groups_dir, s);
4576 if (access(group_name, R_OK) == 0)
4581 sprintf(lists[list] + strlen(lists[list]), ",%s", s);
4583 lists[list] = malloc(len);
4584 if (lists[list] == NULL)
4586 strcpy(lists[list], s);
4596 if (lists[1] != NULL) {
4597 struct strlist_config slist_config = {
4598 .dirname = strace_groups_dir,
4601 trace->ev_qualifier = strlist__new(lists[1], &slist_config);
4602 if (trace->ev_qualifier == NULL) {
4603 fputs("Not enough memory to parse event qualifier", trace->output);
4607 if (trace__validate_ev_qualifier(trace))
4609 trace->trace_syscalls = true;
4615 struct parse_events_option_args parse_events_option_args = {
4616 .evlistp = &trace->evlist,
4619 .value = &parse_events_option_args,
4621 err = parse_events_option(&o, lists[0], 0);
4624 free(strace_groups_dir);
4633 static int trace__parse_cgroups(const struct option *opt, const char *str, int unset)
4635 struct trace *trace = opt->value;
4637 if (!list_empty(&trace->evlist->core.entries)) {
4639 .value = &trace->evlist,
4641 return parse_cgroups(&o, str, unset);
4643 trace->cgroup = evlist__findnew_cgroup(trace->evlist, str);
4648 static int trace__config(const char *var, const char *value, void *arg)
4650 struct trace *trace = arg;
4653 if (!strcmp(var, "trace.add_events")) {
4654 trace->perfconfig_events = strdup(value);
4655 if (trace->perfconfig_events == NULL) {
4656 pr_err("Not enough memory for %s\n", "trace.add_events");
4659 } else if (!strcmp(var, "trace.show_timestamp")) {
4660 trace->show_tstamp = perf_config_bool(var, value);
4661 } else if (!strcmp(var, "trace.show_duration")) {
4662 trace->show_duration = perf_config_bool(var, value);
4663 } else if (!strcmp(var, "trace.show_arg_names")) {
4664 trace->show_arg_names = perf_config_bool(var, value);
4665 if (!trace->show_arg_names)
4666 trace->show_zeros = true;
4667 } else if (!strcmp(var, "trace.show_zeros")) {
4668 bool new_show_zeros = perf_config_bool(var, value);
4669 if (!trace->show_arg_names && !new_show_zeros) {
4670 pr_warning("trace.show_zeros has to be set when trace.show_arg_names=no\n");
4673 trace->show_zeros = new_show_zeros;
4674 } else if (!strcmp(var, "trace.show_prefix")) {
4675 trace->show_string_prefix = perf_config_bool(var, value);
4676 } else if (!strcmp(var, "trace.no_inherit")) {
4677 trace->opts.no_inherit = perf_config_bool(var, value);
4678 } else if (!strcmp(var, "trace.args_alignment")) {
4679 int args_alignment = 0;
4680 if (perf_config_int(&args_alignment, var, value) == 0)
4681 trace->args_alignment = args_alignment;
4682 } else if (!strcmp(var, "trace.tracepoint_beautifiers")) {
4683 if (strcasecmp(value, "libtraceevent") == 0)
4684 trace->libtraceevent_print = true;
4685 else if (strcasecmp(value, "libbeauty") == 0)
4686 trace->libtraceevent_print = false;
4692 static void trace__exit(struct trace *trace)
4696 strlist__delete(trace->ev_qualifier);
4697 zfree(&trace->ev_qualifier_ids.entries);
4698 if (trace->syscalls.table) {
4699 for (i = 0; i <= trace->sctbl->syscalls.max_id; i++)
4700 syscall__exit(&trace->syscalls.table[i]);
4701 zfree(&trace->syscalls.table);
4703 syscalltbl__delete(trace->sctbl);
4704 zfree(&trace->perfconfig_events);
4707 int cmd_trace(int argc, const char **argv)
4709 const char *trace_usage[] = {
4710 "perf trace [<options>] [<command>]",
4711 "perf trace [<options>] -- <command> [<options>]",
4712 "perf trace record [<options>] [<command>]",
4713 "perf trace record [<options>] -- <command> [<options>]",
4716 struct trace trace = {
4722 .user_freq = UINT_MAX,
4723 .user_interval = ULLONG_MAX,
4724 .no_buffering = true,
4725 .mmap_pages = UINT_MAX,
4729 .show_tstamp = true,
4730 .show_duration = true,
4731 .show_arg_names = true,
4732 .args_alignment = 70,
4733 .trace_syscalls = false,
4734 .kernel_syscallchains = false,
4735 .max_stack = UINT_MAX,
4736 .max_events = ULONG_MAX,
4738 const char *map_dump_str = NULL;
4739 const char *output_name = NULL;
4740 const struct option trace_options[] = {
4741 OPT_CALLBACK('e', "event", &trace, "event",
4742 "event/syscall selector. use 'perf list' to list available events",
4743 trace__parse_events_option),
4744 OPT_CALLBACK(0, "filter", &trace.evlist, "filter",
4745 "event filter", parse_filter),
4746 OPT_BOOLEAN(0, "comm", &trace.show_comm,
4747 "show the thread COMM next to its id"),
4748 OPT_BOOLEAN(0, "tool_stats", &trace.show_tool_stats, "show tool stats"),
4749 OPT_CALLBACK(0, "expr", &trace, "expr", "list of syscalls/events to trace",
4750 trace__parse_events_option),
4751 OPT_STRING('o', "output", &output_name, "file", "output file name"),
4752 OPT_STRING('i', "input", &input_name, "file", "Analyze events in file"),
4753 OPT_STRING('p', "pid", &trace.opts.target.pid, "pid",
4754 "trace events on existing process id"),
4755 OPT_STRING('t', "tid", &trace.opts.target.tid, "tid",
4756 "trace events on existing thread id"),
4757 OPT_CALLBACK(0, "filter-pids", &trace, "CSV list of pids",
4758 "pids to filter (by the kernel)", trace__set_filter_pids_from_option),
4759 OPT_BOOLEAN('a', "all-cpus", &trace.opts.target.system_wide,
4760 "system-wide collection from all CPUs"),
4761 OPT_STRING('C', "cpu", &trace.opts.target.cpu_list, "cpu",
4762 "list of cpus to monitor"),
4763 OPT_BOOLEAN(0, "no-inherit", &trace.opts.no_inherit,
4764 "child tasks do not inherit counters"),
4765 OPT_CALLBACK('m', "mmap-pages", &trace.opts.mmap_pages, "pages",
4766 "number of mmap data pages", evlist__parse_mmap_pages),
4767 OPT_STRING('u', "uid", &trace.opts.target.uid_str, "user",
4769 OPT_CALLBACK(0, "duration", &trace, "float",
4770 "show only events with duration > N.M ms",
4771 trace__set_duration),
4772 #ifdef HAVE_LIBBPF_SUPPORT
4773 OPT_STRING(0, "map-dump", &map_dump_str, "BPF map", "BPF map to periodically dump"),
4775 OPT_BOOLEAN(0, "sched", &trace.sched, "show blocking scheduler events"),
4776 OPT_INCR('v', "verbose", &verbose, "be more verbose"),
4777 OPT_BOOLEAN('T', "time", &trace.full_time,
4778 "Show full timestamp, not time relative to first start"),
4779 OPT_BOOLEAN(0, "failure", &trace.failure_only,
4780 "Show only syscalls that failed"),
4781 OPT_BOOLEAN('s', "summary", &trace.summary_only,
4782 "Show only syscall summary with statistics"),
4783 OPT_BOOLEAN('S', "with-summary", &trace.summary,
4784 "Show all syscalls and summary with statistics"),
4785 OPT_BOOLEAN(0, "errno-summary", &trace.errno_summary,
4786 "Show errno stats per syscall, use with -s or -S"),
4787 OPT_CALLBACK_DEFAULT('F', "pf", &trace.trace_pgfaults, "all|maj|min",
4788 "Trace pagefaults", parse_pagefaults, "maj"),
4789 OPT_BOOLEAN(0, "syscalls", &trace.trace_syscalls, "Trace syscalls"),
4790 OPT_BOOLEAN('f', "force", &trace.force, "don't complain, do it"),
4791 OPT_CALLBACK(0, "call-graph", &trace.opts,
4792 "record_mode[,record_size]", record_callchain_help,
4793 &record_parse_callchain_opt),
4794 OPT_BOOLEAN(0, "libtraceevent_print", &trace.libtraceevent_print,
4795 "Use libtraceevent to print the tracepoint arguments."),
4796 OPT_BOOLEAN(0, "kernel-syscall-graph", &trace.kernel_syscallchains,
4797 "Show the kernel callchains on the syscall exit path"),
4798 OPT_ULONG(0, "max-events", &trace.max_events,
4799 "Set the maximum number of events to print, exit after that is reached. "),
4800 OPT_UINTEGER(0, "min-stack", &trace.min_stack,
4801 "Set the minimum stack depth when parsing the callchain, "
4802 "anything below the specified depth will be ignored."),
4803 OPT_UINTEGER(0, "max-stack", &trace.max_stack,
4804 "Set the maximum stack depth when parsing the callchain, "
4805 "anything beyond the specified depth will be ignored. "
4806 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
4807 OPT_BOOLEAN(0, "sort-events", &trace.sort_events,
4808 "Sort batch of events before processing, use if getting out of order events"),
4809 OPT_BOOLEAN(0, "print-sample", &trace.print_sample,
4810 "print the PERF_RECORD_SAMPLE PERF_SAMPLE_ info, for debugging"),
4811 OPT_UINTEGER(0, "proc-map-timeout", &proc_map_timeout,
4812 "per thread proc mmap processing timeout in ms"),
4813 OPT_CALLBACK('G', "cgroup", &trace, "name", "monitor event in cgroup name only",
4814 trace__parse_cgroups),
4815 OPT_INTEGER('D', "delay", &trace.opts.target.initial_delay,
4816 "ms to wait before starting measurement after program "
4818 OPTS_EVSWITCH(&trace.evswitch),
4821 bool __maybe_unused max_stack_user_set = true;
4822 bool mmap_pages_user_set = true;
4823 struct evsel *evsel;
4824 const char * const trace_subcommands[] = { "record", NULL };
4827 struct sigaction sigchld_act;
4829 signal(SIGSEGV, sighandler_dump_stack);
4830 signal(SIGFPE, sighandler_dump_stack);
4831 signal(SIGINT, sighandler_interrupt);
4833 memset(&sigchld_act, 0, sizeof(sigchld_act));
4834 sigchld_act.sa_flags = SA_SIGINFO;
4835 sigchld_act.sa_sigaction = sighandler_chld;
4836 sigaction(SIGCHLD, &sigchld_act, NULL);
4838 trace.evlist = evlist__new();
4839 trace.sctbl = syscalltbl__new();
4841 if (trace.evlist == NULL || trace.sctbl == NULL) {
4842 pr_err("Not enough memory to run!\n");
4848 * Parsing .perfconfig may entail creating a BPF event, that may need
4849 * to create BPF maps, so bump RLIM_MEMLOCK as the default 64K setting
4850 * is too small. This affects just this process, not touching the
4851 * global setting. If it fails we'll get something in 'perf trace -v'
4852 * to help diagnose the problem.
4854 rlimit__bump_memlock();
4856 err = perf_config(trace__config, &trace);
4860 argc = parse_options_subcommand(argc, argv, trace_options, trace_subcommands,
4861 trace_usage, PARSE_OPT_STOP_AT_NON_OPTION);
4864 * Here we already passed thru trace__parse_events_option() and it has
4865 * already figured out if -e syscall_name, if not but if --event
4866 * foo:bar was used, the user is interested _just_ in those, say,
4867 * tracepoint events, not in the strace-like syscall-name-based mode.
4869 * This is important because we need to check if strace-like mode is
4870 * needed to decided if we should filter out the eBPF
4871 * __augmented_syscalls__ code, if it is in the mix, say, via
4872 * .perfconfig trace.add_events, and filter those out.
4874 if (!trace.trace_syscalls && !trace.trace_pgfaults &&
4875 trace.evlist->core.nr_entries == 0 /* Was --events used? */) {
4876 trace.trace_syscalls = true;
4879 * Now that we have --verbose figured out, lets see if we need to parse
4880 * events from .perfconfig, so that if those events fail parsing, say some
4881 * BPF program fails, then we'll be able to use --verbose to see what went
4882 * wrong in more detail.
4884 if (trace.perfconfig_events != NULL) {
4885 struct parse_events_error parse_err;
4887 parse_events_error__init(&parse_err);
4888 err = parse_events(trace.evlist, trace.perfconfig_events, &parse_err);
4890 parse_events_error__print(&parse_err, trace.perfconfig_events);
4891 parse_events_error__exit(&parse_err);
4896 if ((nr_cgroups || trace.cgroup) && !trace.opts.target.system_wide) {
4897 usage_with_options_msg(trace_usage, trace_options,
4898 "cgroup monitoring only available in system-wide mode");
4901 evsel = bpf__setup_output_event(trace.evlist, "__augmented_syscalls__");
4902 if (IS_ERR(evsel)) {
4903 bpf__strerror_setup_output_event(trace.evlist, PTR_ERR(evsel), bf, sizeof(bf));
4904 pr_err("ERROR: Setup trace syscalls enter failed: %s\n", bf);
4909 trace.syscalls.events.augmented = evsel;
4911 evsel = evlist__find_tracepoint_by_name(trace.evlist, "raw_syscalls:sys_enter");
4912 if (evsel == NULL) {
4913 pr_err("ERROR: raw_syscalls:sys_enter not found in the augmented BPF object\n");
4917 if (evsel->bpf_obj == NULL) {
4918 pr_err("ERROR: raw_syscalls:sys_enter not associated to a BPF object\n");
4922 trace.bpf_obj = evsel->bpf_obj;
4925 * If we have _just_ the augmenter event but don't have a
4926 * explicit --syscalls, then assume we want all strace-like
4929 if (!trace.trace_syscalls && trace__only_augmented_syscalls_evsels(&trace))
4930 trace.trace_syscalls = true;
4932 * So, if we have a syscall augmenter, but trace_syscalls, aka
4933 * strace-like syscall tracing is not set, then we need to trow
4934 * away the augmenter, i.e. all the events that were created
4935 * from that BPF object file.
4937 * This is more to fix the current .perfconfig trace.add_events
4938 * style of setting up the strace-like eBPF based syscall point
4939 * payload augmenter.
4941 * All this complexity will be avoided by adding an alternative
4942 * to trace.add_events in the form of
4943 * trace.bpf_augmented_syscalls, that will be only parsed if we
4946 * .perfconfig trace.add_events is still useful if we want, for
4947 * instance, have msr_write.msr in some .perfconfig profile based
4948 * 'perf trace --config determinism.profile' mode, where for some
4949 * particular goal/workload type we want a set of events and
4950 * output mode (with timings, etc) instead of having to add
4951 * all via the command line.
4953 * Also --config to specify an alternate .perfconfig file needs
4954 * to be implemented.
4956 if (!trace.trace_syscalls) {
4957 trace__delete_augmented_syscalls(&trace);
4959 trace__set_bpf_map_filtered_pids(&trace);
4960 trace__set_bpf_map_syscalls(&trace);
4961 trace.syscalls.unaugmented_prog = trace__find_bpf_program_by_title(&trace, "!raw_syscalls:unaugmented");
4965 err = bpf__setup_stdout(trace.evlist);
4967 bpf__strerror_setup_stdout(trace.evlist, err, bf, sizeof(bf));
4968 pr_err("ERROR: Setup BPF stdout failed: %s\n", bf);
4975 trace.dump.map = trace__find_bpf_map_by_name(&trace, map_dump_str);
4976 if (trace.dump.map == NULL) {
4977 pr_err("ERROR: BPF map \"%s\" not found\n", map_dump_str);
4982 if (trace.trace_pgfaults) {
4983 trace.opts.sample_address = true;
4984 trace.opts.sample_time = true;
4987 if (trace.opts.mmap_pages == UINT_MAX)
4988 mmap_pages_user_set = false;
4990 if (trace.max_stack == UINT_MAX) {
4991 trace.max_stack = input_name ? PERF_MAX_STACK_DEPTH : sysctl__max_stack();
4992 max_stack_user_set = false;
4995 #ifdef HAVE_DWARF_UNWIND_SUPPORT
4996 if ((trace.min_stack || max_stack_user_set) && !callchain_param.enabled) {
4997 record_opts__parse_callchain(&trace.opts, &callchain_param, "dwarf", false);
5001 if (callchain_param.enabled) {
5002 if (!mmap_pages_user_set && geteuid() == 0)
5003 trace.opts.mmap_pages = perf_event_mlock_kb_in_pages() * 4;
5005 symbol_conf.use_callchain = true;
5008 if (trace.evlist->core.nr_entries > 0) {
5009 evlist__set_default_evsel_handler(trace.evlist, trace__event_handler);
5010 if (evlist__set_syscall_tp_fields(trace.evlist)) {
5011 perror("failed to set syscalls:* tracepoint fields");
5016 if (trace.sort_events) {
5017 ordered_events__init(&trace.oe.data, ordered_events__deliver_event, &trace);
5018 ordered_events__set_copy_on_queue(&trace.oe.data, true);
5022 * If we are augmenting syscalls, then combine what we put in the
5023 * __augmented_syscalls__ BPF map with what is in the
5024 * syscalls:sys_exit_FOO tracepoints, i.e. just like we do without BPF,
5025 * combining raw_syscalls:sys_enter with raw_syscalls:sys_exit.
5027 * We'll switch to look at two BPF maps, one for sys_enter and the
5028 * other for sys_exit when we start augmenting the sys_exit paths with
5029 * buffers that are being copied from kernel to userspace, think 'read'
5032 if (trace.syscalls.events.augmented) {
5033 evlist__for_each_entry(trace.evlist, evsel) {
5034 bool raw_syscalls_sys_exit = strcmp(evsel__name(evsel), "raw_syscalls:sys_exit") == 0;
5036 if (raw_syscalls_sys_exit) {
5037 trace.raw_augmented_syscalls = true;
5038 goto init_augmented_syscall_tp;
5041 if (trace.syscalls.events.augmented->priv == NULL &&
5042 strstr(evsel__name(evsel), "syscalls:sys_enter")) {
5043 struct evsel *augmented = trace.syscalls.events.augmented;
5044 if (evsel__init_augmented_syscall_tp(augmented, evsel) ||
5045 evsel__init_augmented_syscall_tp_args(augmented))
5048 * Augmented is __augmented_syscalls__ BPF_OUTPUT event
5049 * Above we made sure we can get from the payload the tp fields
5050 * that we get from syscalls:sys_enter tracefs format file.
5052 augmented->handler = trace__sys_enter;
5054 * Now we do the same for the *syscalls:sys_enter event so that
5055 * if we handle it directly, i.e. if the BPF prog returns 0 so
5056 * as not to filter it, then we'll handle it just like we would
5057 * for the BPF_OUTPUT one:
5059 if (evsel__init_augmented_syscall_tp(evsel, evsel) ||
5060 evsel__init_augmented_syscall_tp_args(evsel))
5062 evsel->handler = trace__sys_enter;
5065 if (strstarts(evsel__name(evsel), "syscalls:sys_exit_")) {
5066 struct syscall_tp *sc;
5067 init_augmented_syscall_tp:
5068 if (evsel__init_augmented_syscall_tp(evsel, evsel))
5070 sc = __evsel__syscall_tp(evsel);
5072 * For now with BPF raw_augmented we hook into
5073 * raw_syscalls:sys_enter and there we get all
5074 * 6 syscall args plus the tracepoint common
5075 * fields and the syscall_nr (another long).
5076 * So we check if that is the case and if so
5077 * don't look after the sc->args_size but
5078 * always after the full raw_syscalls:sys_enter
5079 * payload, which is fixed.
5081 * We'll revisit this later to pass
5082 * s->args_size to the BPF augmenter (now
5083 * tools/perf/examples/bpf/augmented_raw_syscalls.c,
5084 * so that it copies only what we need for each
5085 * syscall, like what happens when we use
5086 * syscalls:sys_enter_NAME, so that we reduce
5087 * the kernel/userspace traffic to just what is
5088 * needed for each syscall.
5090 if (trace.raw_augmented_syscalls)
5091 trace.raw_augmented_syscalls_args_size = (6 + 1) * sizeof(long) + sc->id.offset;
5092 evsel__init_augmented_syscall_tp_ret(evsel);
5093 evsel->handler = trace__sys_exit;
5098 if ((argc >= 1) && (strcmp(argv[0], "record") == 0))
5099 return trace__record(&trace, argc-1, &argv[1]);
5101 /* Using just --errno-summary will trigger --summary */
5102 if (trace.errno_summary && !trace.summary && !trace.summary_only)
5103 trace.summary_only = true;
5105 /* summary_only implies summary option, but don't overwrite summary if set */
5106 if (trace.summary_only)
5107 trace.summary = trace.summary_only;
5109 if (output_name != NULL) {
5110 err = trace__open_output(&trace, output_name);
5112 perror("failed to create output file");
5117 err = evswitch__init(&trace.evswitch, trace.evlist, stderr);
5121 err = target__validate(&trace.opts.target);
5123 target__strerror(&trace.opts.target, err, bf, sizeof(bf));
5124 fprintf(trace.output, "%s", bf);
5128 err = target__parse_uid(&trace.opts.target);
5130 target__strerror(&trace.opts.target, err, bf, sizeof(bf));
5131 fprintf(trace.output, "%s", bf);
5135 if (!argc && target__none(&trace.opts.target))
5136 trace.opts.target.system_wide = true;
5139 err = trace__replay(&trace);
5141 err = trace__run(&trace, argc, argv);
5144 if (output_name != NULL)
5145 fclose(trace.output);
5147 trace__exit(&trace);