]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/builtin-trace.c
Merge tag 'perf-core-for-mingo-4.21-20181218' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-focal-kernel.git] / tools / perf / builtin-trace.c
CommitLineData
a598bb5e
ACM
1/*
2 * builtin-trace.c
3 *
4 * Builtin 'trace' command:
5 *
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.
9 *
10 * Copyright (C) 2012, 2013, 2014, 2015 Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
11 *
12 * Initially based on the 'trace' prototype by Thomas Gleixner:
13 *
14 * http://lwn.net/Articles/415728/ ("Announcing a new utility: 'trace'")
15 *
16 * Released under the GPL v2. (and only v2, not any later version)
17 */
18
4e319027 19#include <traceevent/event-parse.h>
988bdb31 20#include <api/fs/tracing_path.h>
744fafc7 21#include <bpf/bpf.h>
514f1c67 22#include "builtin.h"
9ea42ba4 23#include "util/cgroup.h"
752fde44 24#include "util/color.h"
ac96287c 25#include "util/config.h"
7c304ee0 26#include "util/debug.h"
092bd3cd 27#include "util/env.h"
5ab8c689 28#include "util/event.h"
514f1c67 29#include "util/evlist.h"
4b6ab94e 30#include <subcmd/exec-cmd.h>
752fde44 31#include "util/machine.h"
9a3993d4 32#include "util/path.h"
6810fc91 33#include "util/session.h"
752fde44 34#include "util/thread.h"
4b6ab94e 35#include <subcmd/parse-options.h>
2ae3a312 36#include "util/strlist.h"
bdc89661 37#include "util/intlist.h"
514f1c67 38#include "util/thread_map.h"
bf2575c1 39#include "util/stat.h"
fd5cead2 40#include "trace/beauty/beauty.h"
97978b3e 41#include "trace-event.h"
9aca7f17 42#include "util/parse-events.h"
ba504235 43#include "util/bpf-loader.h"
566a0885 44#include "callchain.h"
fea01392 45#include "print_binary.h"
a067558e 46#include "string2.h"
fd0db102 47#include "syscalltbl.h"
96c14451 48#include "rb_resort.h"
514f1c67 49
a43783ae 50#include <errno.h>
fd20e811 51#include <inttypes.h>
4208735d 52#include <poll.h>
9607ad3a 53#include <signal.h>
514f1c67 54#include <stdlib.h>
017037ff 55#include <string.h>
8dd2a131 56#include <linux/err.h>
997bba8c 57#include <linux/filter.h>
877a7a11 58#include <linux/kernel.h>
39878d49 59#include <linux/random.h>
c6d4a494 60#include <linux/stringify.h>
bd48c63e 61#include <linux/time64.h>
bafae98e 62#include <fcntl.h>
514f1c67 63
3d689ed6
ACM
64#include "sane_ctype.h"
65
c188e7ac
ACM
66#ifndef O_CLOEXEC
67# define O_CLOEXEC 02000000
68#endif
69
83a51694
ACM
70#ifndef F_LINUX_SPECIFIC_BASE
71# define F_LINUX_SPECIFIC_BASE 1024
72#endif
73
d1d438a3
ACM
74struct trace {
75 struct perf_tool tool;
fd0db102 76 struct syscalltbl *sctbl;
d1d438a3
ACM
77 struct {
78 int max;
79 struct syscall *table;
b27b38ed 80 struct bpf_map *map;
d1d438a3
ACM
81 struct {
82 struct perf_evsel *sys_enter,
d3d1c4bd
ACM
83 *sys_exit,
84 *augmented;
d1d438a3
ACM
85 } events;
86 } syscalls;
87 struct record_opts opts;
88 struct perf_evlist *evlist;
89 struct machine *host;
90 struct thread *current;
9ea42ba4 91 struct cgroup *cgroup;
d1d438a3
ACM
92 u64 base_time;
93 FILE *output;
94 unsigned long nr_events;
5067a8cd
ACM
95 unsigned long nr_events_printed;
96 unsigned long max_events;
d1d438a3
ACM
97 struct strlist *ev_qualifier;
98 struct {
99 size_t nr;
100 int *entries;
101 } ev_qualifier_ids;
d1d438a3
ACM
102 struct {
103 size_t nr;
104 pid_t *entries;
744fafc7 105 struct bpf_map *map;
d1d438a3
ACM
106 } filter_pids;
107 double duration_filter;
108 double runtime_ms;
109 struct {
110 u64 vfs_getname,
111 proc_getname;
112 } stats;
c6d4a494 113 unsigned int max_stack;
5cf9c84e 114 unsigned int min_stack;
a761a8d1 115 bool sort_events;
cd26ea6d 116 bool raw_augmented_syscalls;
d1d438a3
ACM
117 bool not_ev_qualifier;
118 bool live;
119 bool full_time;
120 bool sched;
121 bool multiple_threads;
122 bool summary;
123 bool summary_only;
0a6545bd 124 bool failure_only;
d1d438a3 125 bool show_comm;
591421e1 126 bool print_sample;
d1d438a3
ACM
127 bool show_tool_stats;
128 bool trace_syscalls;
44621819 129 bool kernel_syscallchains;
9ed45d59 130 s16 args_alignment;
b036146f 131 bool show_tstamp;
42e4a52d 132 bool show_duration;
e7c634fc 133 bool show_zeros;
9d6dc178 134 bool show_arg_names;
c65c83ff 135 bool show_string_prefix;
d1d438a3
ACM
136 bool force;
137 bool vfs_getname;
138 int trace_pgfaults;
028713aa
JO
139 struct {
140 struct ordered_events data;
141 u64 last;
142 } oe;
d1d438a3 143};
a1c2552d 144
77170988
ACM
145struct tp_field {
146 int offset;
147 union {
148 u64 (*integer)(struct tp_field *field, struct perf_sample *sample);
149 void *(*pointer)(struct tp_field *field, struct perf_sample *sample);
150 };
151};
152
153#define TP_UINT_FIELD(bits) \
154static u64 tp_field__u##bits(struct tp_field *field, struct perf_sample *sample) \
155{ \
55d43bca
DA
156 u##bits value; \
157 memcpy(&value, sample->raw_data + field->offset, sizeof(value)); \
158 return value; \
77170988
ACM
159}
160
161TP_UINT_FIELD(8);
162TP_UINT_FIELD(16);
163TP_UINT_FIELD(32);
164TP_UINT_FIELD(64);
165
166#define TP_UINT_FIELD__SWAPPED(bits) \
167static u64 tp_field__swapped_u##bits(struct tp_field *field, struct perf_sample *sample) \
168{ \
55d43bca
DA
169 u##bits value; \
170 memcpy(&value, sample->raw_data + field->offset, sizeof(value)); \
77170988
ACM
171 return bswap_##bits(value);\
172}
173
174TP_UINT_FIELD__SWAPPED(16);
175TP_UINT_FIELD__SWAPPED(32);
176TP_UINT_FIELD__SWAPPED(64);
177
aa823f58 178static int __tp_field__init_uint(struct tp_field *field, int size, int offset, bool needs_swap)
77170988 179{
aa823f58 180 field->offset = offset;
77170988 181
aa823f58 182 switch (size) {
77170988
ACM
183 case 1:
184 field->integer = tp_field__u8;
185 break;
186 case 2:
187 field->integer = needs_swap ? tp_field__swapped_u16 : tp_field__u16;
188 break;
189 case 4:
190 field->integer = needs_swap ? tp_field__swapped_u32 : tp_field__u32;
191 break;
192 case 8:
193 field->integer = needs_swap ? tp_field__swapped_u64 : tp_field__u64;
194 break;
195 default:
196 return -1;
197 }
198
199 return 0;
200}
201
2c92f982 202static int tp_field__init_uint(struct tp_field *field, struct tep_format_field *format_field, bool needs_swap)
aa823f58
ACM
203{
204 return __tp_field__init_uint(field, format_field->size, format_field->offset, needs_swap);
205}
206
77170988
ACM
207static void *tp_field__ptr(struct tp_field *field, struct perf_sample *sample)
208{
209 return sample->raw_data + field->offset;
210}
211
aa823f58 212static int __tp_field__init_ptr(struct tp_field *field, int offset)
77170988 213{
aa823f58 214 field->offset = offset;
77170988
ACM
215 field->pointer = tp_field__ptr;
216 return 0;
217}
218
2c92f982 219static int tp_field__init_ptr(struct tp_field *field, struct tep_format_field *format_field)
aa823f58
ACM
220{
221 return __tp_field__init_ptr(field, format_field->offset);
222}
223
77170988
ACM
224struct syscall_tp {
225 struct tp_field id;
226 union {
227 struct tp_field args, ret;
228 };
229};
230
231static int perf_evsel__init_tp_uint_field(struct perf_evsel *evsel,
232 struct tp_field *field,
233 const char *name)
234{
2c92f982 235 struct tep_format_field *format_field = perf_evsel__field(evsel, name);
77170988
ACM
236
237 if (format_field == NULL)
238 return -1;
239
240 return tp_field__init_uint(field, format_field, evsel->needs_swap);
241}
242
243#define perf_evsel__init_sc_tp_uint_field(evsel, name) \
244 ({ struct syscall_tp *sc = evsel->priv;\
245 perf_evsel__init_tp_uint_field(evsel, &sc->name, #name); })
246
247static int perf_evsel__init_tp_ptr_field(struct perf_evsel *evsel,
248 struct tp_field *field,
249 const char *name)
250{
2c92f982 251 struct tep_format_field *format_field = perf_evsel__field(evsel, name);
77170988
ACM
252
253 if (format_field == NULL)
254 return -1;
255
256 return tp_field__init_ptr(field, format_field);
257}
258
259#define perf_evsel__init_sc_tp_ptr_field(evsel, name) \
260 ({ struct syscall_tp *sc = evsel->priv;\
261 perf_evsel__init_tp_ptr_field(evsel, &sc->name, #name); })
262
263static void perf_evsel__delete_priv(struct perf_evsel *evsel)
264{
04662523 265 zfree(&evsel->priv);
77170988
ACM
266 perf_evsel__delete(evsel);
267}
268
d32855fa
ACM
269static int perf_evsel__init_syscall_tp(struct perf_evsel *evsel)
270{
271 struct syscall_tp *sc = evsel->priv = malloc(sizeof(struct syscall_tp));
272
273 if (evsel->priv != NULL) {
42da438c
ACM
274 if (perf_evsel__init_tp_uint_field(evsel, &sc->id, "__syscall_nr") &&
275 perf_evsel__init_tp_uint_field(evsel, &sc->id, "nr"))
d32855fa
ACM
276 goto out_delete;
277 return 0;
278 }
279
280 return -ENOMEM;
281out_delete:
282 zfree(&evsel->priv);
283 return -ENOENT;
284}
285
d3d1c4bd
ACM
286static int perf_evsel__init_augmented_syscall_tp(struct perf_evsel *evsel)
287{
288 struct syscall_tp *sc = evsel->priv = malloc(sizeof(struct syscall_tp));
289
290 if (evsel->priv != NULL) { /* field, sizeof_field, offsetof_field */
291 if (__tp_field__init_uint(&sc->id, sizeof(long), sizeof(long long), evsel->needs_swap))
292 goto out_delete;
293
294 return 0;
295 }
296
297 return -ENOMEM;
298out_delete:
299 zfree(&evsel->priv);
300 return -EINVAL;
301}
302
303static int perf_evsel__init_augmented_syscall_tp_args(struct perf_evsel *evsel)
304{
305 struct syscall_tp *sc = evsel->priv;
306
307 return __tp_field__init_ptr(&sc->args, sc->id.offset + sizeof(u64));
308}
309
b1a9e253
ACM
310static int perf_evsel__init_augmented_syscall_tp_ret(struct perf_evsel *evsel)
311{
312 struct syscall_tp *sc = evsel->priv;
313
314 return __tp_field__init_uint(&sc->ret, sizeof(u64), sc->id.offset + sizeof(u64), evsel->needs_swap);
315}
316
63f11c80 317static int perf_evsel__init_raw_syscall_tp(struct perf_evsel *evsel, void *handler)
96695d44
NK
318{
319 evsel->priv = malloc(sizeof(struct syscall_tp));
320 if (evsel->priv != NULL) {
321 if (perf_evsel__init_sc_tp_uint_field(evsel, id))
322 goto out_delete;
323
324 evsel->handler = handler;
325 return 0;
326 }
327
328 return -ENOMEM;
329
330out_delete:
04662523 331 zfree(&evsel->priv);
96695d44
NK
332 return -ENOENT;
333}
334
63f11c80 335static struct perf_evsel *perf_evsel__raw_syscall_newtp(const char *direction, void *handler)
77170988 336{
ef503831 337 struct perf_evsel *evsel = perf_evsel__newtp("raw_syscalls", direction);
77170988 338
9aca7f17 339 /* older kernel (e.g., RHEL6) use syscalls:{enter,exit} */
8dd2a131 340 if (IS_ERR(evsel))
9aca7f17
DA
341 evsel = perf_evsel__newtp("syscalls", direction);
342
8dd2a131
JO
343 if (IS_ERR(evsel))
344 return NULL;
345
63f11c80 346 if (perf_evsel__init_raw_syscall_tp(evsel, handler))
8dd2a131 347 goto out_delete;
77170988
ACM
348
349 return evsel;
350
351out_delete:
352 perf_evsel__delete_priv(evsel);
353 return NULL;
354}
355
356#define perf_evsel__sc_tp_uint(evsel, name, sample) \
357 ({ struct syscall_tp *fields = evsel->priv; \
358 fields->name.integer(&fields->name, sample); })
359
360#define perf_evsel__sc_tp_ptr(evsel, name, sample) \
361 ({ struct syscall_tp *fields = evsel->priv; \
362 fields->name.pointer(&fields->name, sample); })
363
c65c83ff 364size_t strarray__scnprintf(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_prefix, int val)
0ae79636
ACM
365{
366 int idx = val - sa->offset;
1f115cb7 367
9614b8d6
ACM
368 if (idx < 0 || idx >= sa->nr_entries || sa->entries[idx] == NULL) {
369 size_t printed = scnprintf(bf, size, intfmt, val);
370 if (show_prefix)
371 printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sa->prefix);
372 return printed;
373 }
1f115cb7 374
c65c83ff 375 return scnprintf(bf, size, "%s%s", show_prefix ? sa->prefix : "", sa->entries[idx]);
03e3adc9
ACM
376}
377
975b7c2f
ACM
378static size_t __syscall_arg__scnprintf_strarray(char *bf, size_t size,
379 const char *intfmt,
380 struct syscall_arg *arg)
1f115cb7 381{
c65c83ff 382 return strarray__scnprintf(arg->parm, bf, size, intfmt, arg->show_string_prefix, arg->val);
1f115cb7
ACM
383}
384
975b7c2f
ACM
385static size_t syscall_arg__scnprintf_strarray(char *bf, size_t size,
386 struct syscall_arg *arg)
387{
388 return __syscall_arg__scnprintf_strarray(bf, size, "%d", arg);
389}
390
1f115cb7
ACM
391#define SCA_STRARRAY syscall_arg__scnprintf_strarray
392
1f2d085e 393size_t strarrays__scnprintf(struct strarrays *sas, char *bf, size_t size, const char *intfmt, bool show_prefix, int val)
83a51694 394{
9614b8d6 395 size_t printed;
83a51694
ACM
396 int i;
397
398 for (i = 0; i < sas->nr_entries; ++i) {
399 struct strarray *sa = sas->entries[i];
1f2d085e 400 int idx = val - sa->offset;
83a51694
ACM
401
402 if (idx >= 0 && idx < sa->nr_entries) {
403 if (sa->entries[idx] == NULL)
404 break;
1f2d085e 405 return scnprintf(bf, size, "%s%s", show_prefix ? sa->prefix : "", sa->entries[idx]);
83a51694
ACM
406 }
407 }
408
9614b8d6
ACM
409 printed = scnprintf(bf, size, intfmt, val);
410 if (show_prefix)
411 printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sas->entries[0]->prefix);
412 return printed;
1f2d085e
ACM
413}
414
415size_t syscall_arg__scnprintf_strarrays(char *bf, size_t size,
416 struct syscall_arg *arg)
417{
418 return strarrays__scnprintf(arg->parm, bf, size, "%d", arg->show_string_prefix, arg->val);
83a51694
ACM
419}
420
48e1f91a
ACM
421#ifndef AT_FDCWD
422#define AT_FDCWD -100
423#endif
424
75b757ca
ACM
425static size_t syscall_arg__scnprintf_fd_at(char *bf, size_t size,
426 struct syscall_arg *arg)
427{
428 int fd = arg->val;
c65c83ff 429 const char *prefix = "AT_FD";
75b757ca
ACM
430
431 if (fd == AT_FDCWD)
c65c83ff 432 return scnprintf(bf, size, "%s%s", arg->show_string_prefix ? prefix : "", "CWD");
75b757ca
ACM
433
434 return syscall_arg__scnprintf_fd(bf, size, arg);
435}
436
437#define SCA_FDAT syscall_arg__scnprintf_fd_at
438
439static size_t syscall_arg__scnprintf_close_fd(char *bf, size_t size,
440 struct syscall_arg *arg);
441
442#define SCA_CLOSE_FD syscall_arg__scnprintf_close_fd
443
2c2b1623 444size_t syscall_arg__scnprintf_hex(char *bf, size_t size, struct syscall_arg *arg)
13d4ff3e 445{
01533e97 446 return scnprintf(bf, size, "%#lx", arg->val);
13d4ff3e
ACM
447}
448
ce05539f
ACM
449size_t syscall_arg__scnprintf_ptr(char *bf, size_t size, struct syscall_arg *arg)
450{
451 if (arg->val == 0)
452 return scnprintf(bf, size, "NULL");
453 return syscall_arg__scnprintf_hex(bf, size, arg);
454}
455
2c2b1623 456size_t syscall_arg__scnprintf_int(char *bf, size_t size, struct syscall_arg *arg)
a1c2552d
ACM
457{
458 return scnprintf(bf, size, "%d", arg->val);
459}
460
5dde91ed
ACM
461size_t syscall_arg__scnprintf_long(char *bf, size_t size, struct syscall_arg *arg)
462{
463 return scnprintf(bf, size, "%ld", arg->val);
464}
465
729a7841
ACM
466static const char *bpf_cmd[] = {
467 "MAP_CREATE", "MAP_LOOKUP_ELEM", "MAP_UPDATE_ELEM", "MAP_DELETE_ELEM",
468 "MAP_GET_NEXT_KEY", "PROG_LOAD",
469};
2e3d7fac 470static DEFINE_STRARRAY(bpf_cmd, "BPF_");
729a7841 471
03e3adc9 472static const char *epoll_ctl_ops[] = { "ADD", "DEL", "MOD", };
2e3d7fac 473static DEFINE_STRARRAY_OFFSET(epoll_ctl_ops, "EPOLL_CTL_", 1);
eac032c5 474
1f115cb7 475static const char *itimers[] = { "REAL", "VIRTUAL", "PROF", };
2e3d7fac 476static DEFINE_STRARRAY(itimers, "ITIMER_");
1f115cb7 477
b62bee1b
ACM
478static const char *keyctl_options[] = {
479 "GET_KEYRING_ID", "JOIN_SESSION_KEYRING", "UPDATE", "REVOKE", "CHOWN",
480 "SETPERM", "DESCRIBE", "CLEAR", "LINK", "UNLINK", "SEARCH", "READ",
481 "INSTANTIATE", "NEGATE", "SET_REQKEY_KEYRING", "SET_TIMEOUT",
482 "ASSUME_AUTHORITY", "GET_SECURITY", "SESSION_TO_PARENT", "REJECT",
483 "INSTANTIATE_IOV", "INVALIDATE", "GET_PERSISTENT",
484};
2e3d7fac 485static DEFINE_STRARRAY(keyctl_options, "KEYCTL_");
b62bee1b 486
efe6b882
ACM
487static const char *whences[] = { "SET", "CUR", "END",
488#ifdef SEEK_DATA
489"DATA",
490#endif
491#ifdef SEEK_HOLE
492"HOLE",
493#endif
494};
2e3d7fac 495static DEFINE_STRARRAY(whences, "SEEK_");
f9da0b0c 496
80f587d5
ACM
497static const char *fcntl_cmds[] = {
498 "DUPFD", "GETFD", "SETFD", "GETFL", "SETFL", "GETLK", "SETLK",
e000e5e3
ACM
499 "SETLKW", "SETOWN", "GETOWN", "SETSIG", "GETSIG", "GETLK64",
500 "SETLK64", "SETLKW64", "SETOWN_EX", "GETOWN_EX",
501 "GETOWNER_UIDS",
80f587d5 502};
2e3d7fac 503static DEFINE_STRARRAY(fcntl_cmds, "F_");
80f587d5 504
83a51694
ACM
505static const char *fcntl_linux_specific_cmds[] = {
506 "SETLEASE", "GETLEASE", "NOTIFY", [5] = "CANCELLK", "DUPFD_CLOEXEC",
507 "SETPIPE_SZ", "GETPIPE_SZ", "ADD_SEALS", "GET_SEALS",
64e4561d 508 "GET_RW_HINT", "SET_RW_HINT", "GET_FILE_RW_HINT", "SET_FILE_RW_HINT",
83a51694
ACM
509};
510
2e3d7fac 511static DEFINE_STRARRAY_OFFSET(fcntl_linux_specific_cmds, "F_", F_LINUX_SPECIFIC_BASE);
83a51694
ACM
512
513static struct strarray *fcntl_cmds_arrays[] = {
514 &strarray__fcntl_cmds,
515 &strarray__fcntl_linux_specific_cmds,
516};
517
518static DEFINE_STRARRAYS(fcntl_cmds_arrays);
519
c045bf02
ACM
520static const char *rlimit_resources[] = {
521 "CPU", "FSIZE", "DATA", "STACK", "CORE", "RSS", "NPROC", "NOFILE",
522 "MEMLOCK", "AS", "LOCKS", "SIGPENDING", "MSGQUEUE", "NICE", "RTPRIO",
523 "RTTIME",
524};
2e3d7fac 525static DEFINE_STRARRAY(rlimit_resources, "RLIMIT_");
c045bf02 526
eb5b1b14 527static const char *sighow[] = { "BLOCK", "UNBLOCK", "SETMASK", };
2e3d7fac 528static DEFINE_STRARRAY(sighow, "SIG_");
eb5b1b14 529
4f8c1b74
DA
530static const char *clockid[] = {
531 "REALTIME", "MONOTONIC", "PROCESS_CPUTIME_ID", "THREAD_CPUTIME_ID",
28ebb87c
ACM
532 "MONOTONIC_RAW", "REALTIME_COARSE", "MONOTONIC_COARSE", "BOOTTIME",
533 "REALTIME_ALARM", "BOOTTIME_ALARM", "SGI_CYCLE", "TAI"
4f8c1b74 534};
2e3d7fac 535static DEFINE_STRARRAY(clockid, "CLOCK_");
4f8c1b74 536
51108999
ACM
537static size_t syscall_arg__scnprintf_access_mode(char *bf, size_t size,
538 struct syscall_arg *arg)
539{
c65c83ff
ACM
540 bool show_prefix = arg->show_string_prefix;
541 const char *suffix = "_OK";
51108999
ACM
542 size_t printed = 0;
543 int mode = arg->val;
544
545 if (mode == F_OK) /* 0 */
c65c83ff 546 return scnprintf(bf, size, "F%s", show_prefix ? suffix : "");
51108999
ACM
547#define P_MODE(n) \
548 if (mode & n##_OK) { \
c65c83ff 549 printed += scnprintf(bf + printed, size - printed, "%s%s", #n, show_prefix ? suffix : ""); \
51108999
ACM
550 mode &= ~n##_OK; \
551 }
552
553 P_MODE(R);
554 P_MODE(W);
555 P_MODE(X);
556#undef P_MODE
557
558 if (mode)
559 printed += scnprintf(bf + printed, size - printed, "|%#x", mode);
560
561 return printed;
562}
563
564#define SCA_ACCMODE syscall_arg__scnprintf_access_mode
565
f994592d
ACM
566static size_t syscall_arg__scnprintf_filename(char *bf, size_t size,
567 struct syscall_arg *arg);
568
569#define SCA_FILENAME syscall_arg__scnprintf_filename
570
46cce19b
ACM
571static size_t syscall_arg__scnprintf_pipe_flags(char *bf, size_t size,
572 struct syscall_arg *arg)
573{
c65c83ff
ACM
574 bool show_prefix = arg->show_string_prefix;
575 const char *prefix = "O_";
46cce19b
ACM
576 int printed = 0, flags = arg->val;
577
578#define P_FLAG(n) \
579 if (flags & O_##n) { \
c65c83ff 580 printed += scnprintf(bf + printed, size - printed, "%s%s%s", printed ? "|" : "", show_prefix ? prefix : "", #n); \
46cce19b
ACM
581 flags &= ~O_##n; \
582 }
583
584 P_FLAG(CLOEXEC);
585 P_FLAG(NONBLOCK);
586#undef P_FLAG
587
588 if (flags)
589 printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags);
590
591 return printed;
592}
593
594#define SCA_PIPE_FLAGS syscall_arg__scnprintf_pipe_flags
595
a355a61e
ACM
596#ifndef GRND_NONBLOCK
597#define GRND_NONBLOCK 0x0001
598#endif
599#ifndef GRND_RANDOM
600#define GRND_RANDOM 0x0002
601#endif
602
39878d49
ACM
603static size_t syscall_arg__scnprintf_getrandom_flags(char *bf, size_t size,
604 struct syscall_arg *arg)
605{
c65c83ff
ACM
606 bool show_prefix = arg->show_string_prefix;
607 const char *prefix = "GRND_";
39878d49
ACM
608 int printed = 0, flags = arg->val;
609
610#define P_FLAG(n) \
611 if (flags & GRND_##n) { \
c65c83ff 612 printed += scnprintf(bf + printed, size - printed, "%s%s%s", printed ? "|" : "", show_prefix ? prefix : "", #n); \
39878d49
ACM
613 flags &= ~GRND_##n; \
614 }
615
616 P_FLAG(RANDOM);
617 P_FLAG(NONBLOCK);
618#undef P_FLAG
619
620 if (flags)
621 printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags);
622
623 return printed;
624}
625
626#define SCA_GETRANDOM_FLAGS syscall_arg__scnprintf_getrandom_flags
627
82d4a110
ACM
628#define STRARRAY(name, array) \
629 { .scnprintf = SCA_STRARRAY, \
630 .parm = &strarray__##array, }
453350dd 631
092bd3cd 632#include "trace/beauty/arch_errno_names.c"
ea8dc3ce 633#include "trace/beauty/eventfd.c"
d5d71e86 634#include "trace/beauty/futex_op.c"
3258abe0 635#include "trace/beauty/futex_val3.c"
df4cb167 636#include "trace/beauty/mmap.c"
ba2f22cf 637#include "trace/beauty/mode_t.c"
a30e6259 638#include "trace/beauty/msg_flags.c"
8f48df69 639#include "trace/beauty/open_flags.c"
62de344e 640#include "trace/beauty/perf_event_open.c"
d5d71e86 641#include "trace/beauty/pid.c"
a3bca91f 642#include "trace/beauty/sched_policy.c"
f5cd95ea 643#include "trace/beauty/seccomp.c"
12199d8e 644#include "trace/beauty/signum.c"
bbf86c43 645#include "trace/beauty/socket_type.c"
7206b900 646#include "trace/beauty/waitid_options.c"
a3bca91f 647
82d4a110
ACM
648struct syscall_arg_fmt {
649 size_t (*scnprintf)(char *bf, size_t size, struct syscall_arg *arg);
496fd346 650 unsigned long (*mask_val)(struct syscall_arg *arg, unsigned long val);
82d4a110 651 void *parm;
c51bdfec 652 const char *name;
d47737d5 653 bool show_zero;
82d4a110
ACM
654};
655
514f1c67
ACM
656static struct syscall_fmt {
657 const char *name;
aec1930b 658 const char *alias;
82d4a110 659 struct syscall_arg_fmt arg[6];
332337da 660 u8 nr_args;
11c8e39f 661 bool errpid;
514f1c67 662 bool timeout;
04b34729 663 bool hexret;
514f1c67 664} syscall_fmts[] = {
1f63139c 665 { .name = "access",
82d4a110 666 .arg = { [1] = { .scnprintf = SCA_ACCMODE, /* mode */ }, }, },
fb7068e7
ACM
667 { .name = "arch_prctl",
668 .arg = { [0] = { .scnprintf = SCA_X86_ARCH_PRCTL_CODE, /* code */ },
669 [1] = { .scnprintf = SCA_PTR, /* arg2 */ }, }, },
02ef2884
ACM
670 { .name = "bind",
671 .arg = { [1] = { .scnprintf = SCA_SOCKADDR, /* umyaddr */ }, }, },
1f63139c 672 { .name = "bpf",
82d4a110 673 .arg = { [0] = STRARRAY(cmd, bpf_cmd), }, },
beccb2b5 674 { .name = "brk", .hexret = true,
ce05539f 675 .arg = { [0] = { .scnprintf = SCA_PTR, /* brk */ }, }, },
1f63139c 676 { .name = "clock_gettime",
82d4a110 677 .arg = { [0] = STRARRAY(clk_id, clockid), }, },
33396a3a
ACM
678 { .name = "clone", .errpid = true, .nr_args = 5,
679 .arg = { [0] = { .name = "flags", .scnprintf = SCA_CLONE_FLAGS, },
680 [1] = { .name = "child_stack", .scnprintf = SCA_HEX, },
681 [2] = { .name = "parent_tidptr", .scnprintf = SCA_HEX, },
682 [3] = { .name = "child_tidptr", .scnprintf = SCA_HEX, },
683 [4] = { .name = "tls", .scnprintf = SCA_HEX, }, }, },
1f63139c 684 { .name = "close",
82d4a110 685 .arg = { [0] = { .scnprintf = SCA_CLOSE_FD, /* fd */ }, }, },
d5a7e661
ACM
686 { .name = "connect",
687 .arg = { [1] = { .scnprintf = SCA_SOCKADDR, /* servaddr */ }, }, },
1f63139c 688 { .name = "epoll_ctl",
82d4a110 689 .arg = { [1] = STRARRAY(op, epoll_ctl_ops), }, },
1f63139c 690 { .name = "eventfd2",
82d4a110 691 .arg = { [1] = { .scnprintf = SCA_EFD_FLAGS, /* flags */ }, }, },
1f63139c 692 { .name = "fchmodat",
82d4a110 693 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1f63139c 694 { .name = "fchownat",
82d4a110 695 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1f63139c 696 { .name = "fcntl",
82d4a110 697 .arg = { [1] = { .scnprintf = SCA_FCNTL_CMD, /* cmd */
39cc355b
ACM
698 .parm = &strarrays__fcntl_cmds_arrays,
699 .show_zero = true, },
82d4a110 700 [2] = { .scnprintf = SCA_FCNTL_ARG, /* arg */ }, }, },
1f63139c 701 { .name = "flock",
82d4a110 702 .arg = { [1] = { .scnprintf = SCA_FLOCK, /* cmd */ }, }, },
1f63139c
ACM
703 { .name = "fstat", .alias = "newfstat", },
704 { .name = "fstatat", .alias = "newfstatat", },
705 { .name = "futex",
3258abe0
ACM
706 .arg = { [1] = { .scnprintf = SCA_FUTEX_OP, /* op */ },
707 [5] = { .scnprintf = SCA_FUTEX_VAL3, /* val3 */ }, }, },
1f63139c 708 { .name = "futimesat",
82d4a110 709 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1f63139c 710 { .name = "getitimer",
82d4a110 711 .arg = { [0] = STRARRAY(which, itimers), }, },
c65f1070 712 { .name = "getpid", .errpid = true, },
d1d438a3 713 { .name = "getpgid", .errpid = true, },
c65f1070 714 { .name = "getppid", .errpid = true, },
1f63139c 715 { .name = "getrandom",
82d4a110 716 .arg = { [2] = { .scnprintf = SCA_GETRANDOM_FLAGS, /* flags */ }, }, },
1f63139c 717 { .name = "getrlimit",
82d4a110 718 .arg = { [0] = STRARRAY(resource, rlimit_resources), }, },
2d1073de 719 { .name = "gettid", .errpid = true, },
1f63139c 720 { .name = "ioctl",
82d4a110 721 .arg = {
844ae5b4
ACM
722#if defined(__i386__) || defined(__x86_64__)
723/*
724 * FIXME: Make this available to all arches.
725 */
1cc47f2d 726 [1] = { .scnprintf = SCA_IOCTL_CMD, /* cmd */ },
82d4a110 727 [2] = { .scnprintf = SCA_HEX, /* arg */ }, }, },
844ae5b4 728#else
82d4a110 729 [2] = { .scnprintf = SCA_HEX, /* arg */ }, }, },
844ae5b4 730#endif
1de3038d
ACM
731 { .name = "kcmp", .nr_args = 5,
732 .arg = { [0] = { .name = "pid1", .scnprintf = SCA_PID, },
733 [1] = { .name = "pid2", .scnprintf = SCA_PID, },
734 [2] = { .name = "type", .scnprintf = SCA_KCMP_TYPE, },
735 [3] = { .name = "idx1", .scnprintf = SCA_KCMP_IDX, },
736 [4] = { .name = "idx2", .scnprintf = SCA_KCMP_IDX, }, }, },
1f63139c 737 { .name = "keyctl",
82d4a110 738 .arg = { [0] = STRARRAY(option, keyctl_options), }, },
1f63139c 739 { .name = "kill",
82d4a110 740 .arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1f63139c 741 { .name = "linkat",
82d4a110 742 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1f63139c 743 { .name = "lseek",
82d4a110 744 .arg = { [2] = STRARRAY(whence, whences), }, },
1f63139c
ACM
745 { .name = "lstat", .alias = "newlstat", },
746 { .name = "madvise",
82d4a110
ACM
747 .arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
748 [2] = { .scnprintf = SCA_MADV_BHV, /* behavior */ }, }, },
1f63139c 749 { .name = "mkdirat",
82d4a110 750 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1f63139c 751 { .name = "mknodat",
82d4a110 752 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
beccb2b5 753 { .name = "mmap", .hexret = true,
54265664
JO
754/* The standard mmap maps to old_mmap on s390x */
755#if defined(__s390x__)
756 .alias = "old_mmap",
757#endif
ce05539f 758 .arg = { [2] = { .scnprintf = SCA_MMAP_PROT, /* prot */ },
a6631340
ACM
759 [3] = { .scnprintf = SCA_MMAP_FLAGS, /* flags */ },
760 [5] = { .scnprintf = SCA_HEX, /* offset */ }, }, },
73d141ad 761 { .name = "mount",
23c07a23
ACM
762 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* dev_name */ },
763 [3] = { .scnprintf = SCA_MOUNT_FLAGS, /* flags */
73d141ad 764 .mask_val = SCAMV_MOUNT_FLAGS, /* flags */ }, }, },
1f63139c 765 { .name = "mprotect",
82d4a110
ACM
766 .arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
767 [2] = { .scnprintf = SCA_MMAP_PROT, /* prot */ }, }, },
1f63139c 768 { .name = "mq_unlink",
82d4a110 769 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* u_name */ }, }, },
ae685380 770 { .name = "mremap", .hexret = true,
ce05539f 771 .arg = { [3] = { .scnprintf = SCA_MREMAP_FLAGS, /* flags */ }, }, },
1f63139c 772 { .name = "name_to_handle_at",
82d4a110 773 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1f63139c 774 { .name = "newfstatat",
82d4a110 775 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1f63139c 776 { .name = "open",
82d4a110 777 .arg = { [1] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1f63139c 778 { .name = "open_by_handle_at",
82d4a110
ACM
779 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
780 [2] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1f63139c 781 { .name = "openat",
82d4a110
ACM
782 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
783 [2] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1f63139c 784 { .name = "perf_event_open",
82d4a110
ACM
785 .arg = { [2] = { .scnprintf = SCA_INT, /* cpu */ },
786 [3] = { .scnprintf = SCA_FD, /* group_fd */ },
787 [4] = { .scnprintf = SCA_PERF_FLAGS, /* flags */ }, }, },
1f63139c 788 { .name = "pipe2",
82d4a110 789 .arg = { [1] = { .scnprintf = SCA_PIPE_FLAGS, /* flags */ }, }, },
83bc9c37
ACM
790 { .name = "pkey_alloc",
791 .arg = { [1] = { .scnprintf = SCA_PKEY_ALLOC_ACCESS_RIGHTS, /* access_rights */ }, }, },
792 { .name = "pkey_free",
793 .arg = { [0] = { .scnprintf = SCA_INT, /* key */ }, }, },
794 { .name = "pkey_mprotect",
795 .arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
796 [2] = { .scnprintf = SCA_MMAP_PROT, /* prot */ },
797 [3] = { .scnprintf = SCA_INT, /* pkey */ }, }, },
1f63139c
ACM
798 { .name = "poll", .timeout = true, },
799 { .name = "ppoll", .timeout = true, },
fb7068e7 800 { .name = "prctl",
d688d037
ACM
801 .arg = { [0] = { .scnprintf = SCA_PRCTL_OPTION, /* option */ },
802 [1] = { .scnprintf = SCA_PRCTL_ARG2, /* arg2 */ },
803 [2] = { .scnprintf = SCA_PRCTL_ARG3, /* arg3 */ }, }, },
1f63139c
ACM
804 { .name = "pread", .alias = "pread64", },
805 { .name = "preadv", .alias = "pread", },
806 { .name = "prlimit64",
82d4a110 807 .arg = { [1] = STRARRAY(resource, rlimit_resources), }, },
1f63139c
ACM
808 { .name = "pwrite", .alias = "pwrite64", },
809 { .name = "readlinkat",
82d4a110 810 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1f63139c 811 { .name = "recvfrom",
82d4a110 812 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1f63139c 813 { .name = "recvmmsg",
82d4a110 814 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1f63139c 815 { .name = "recvmsg",
82d4a110 816 .arg = { [2] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1f63139c 817 { .name = "renameat",
436651ca
ACM
818 .arg = { [0] = { .scnprintf = SCA_FDAT, /* olddirfd */ },
819 [2] = { .scnprintf = SCA_FDAT, /* newdirfd */ }, }, },
84a83541
ACM
820 { .name = "renameat2",
821 .arg = { [0] = { .scnprintf = SCA_FDAT, /* olddirfd */ },
ca7ff2c8
ACM
822 [2] = { .scnprintf = SCA_FDAT, /* newdirfd */ },
823 [4] = { .scnprintf = SCA_RENAMEAT2_FLAGS, /* flags */ }, }, },
1f63139c 824 { .name = "rt_sigaction",
82d4a110 825 .arg = { [0] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1f63139c 826 { .name = "rt_sigprocmask",
82d4a110 827 .arg = { [0] = STRARRAY(how, sighow), }, },
1f63139c 828 { .name = "rt_sigqueueinfo",
82d4a110 829 .arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1f63139c 830 { .name = "rt_tgsigqueueinfo",
82d4a110 831 .arg = { [2] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1f63139c 832 { .name = "sched_setscheduler",
82d4a110 833 .arg = { [1] = { .scnprintf = SCA_SCHED_POLICY, /* policy */ }, }, },
1f63139c 834 { .name = "seccomp",
82d4a110
ACM
835 .arg = { [0] = { .scnprintf = SCA_SECCOMP_OP, /* op */ },
836 [1] = { .scnprintf = SCA_SECCOMP_FLAGS, /* flags */ }, }, },
1f63139c
ACM
837 { .name = "select", .timeout = true, },
838 { .name = "sendmmsg",
82d4a110 839 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1f63139c 840 { .name = "sendmsg",
82d4a110 841 .arg = { [2] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1f63139c 842 { .name = "sendto",
6ebb6862
ACM
843 .arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ },
844 [4] = { .scnprintf = SCA_SOCKADDR, /* addr */ }, }, },
c65f1070 845 { .name = "set_tid_address", .errpid = true, },
1f63139c 846 { .name = "setitimer",
82d4a110 847 .arg = { [0] = STRARRAY(which, itimers), }, },
1f63139c 848 { .name = "setrlimit",
82d4a110 849 .arg = { [0] = STRARRAY(resource, rlimit_resources), }, },
1f63139c 850 { .name = "socket",
82d4a110 851 .arg = { [0] = STRARRAY(family, socket_families),
162d3edb
ACM
852 [1] = { .scnprintf = SCA_SK_TYPE, /* type */ },
853 [2] = { .scnprintf = SCA_SK_PROTO, /* protocol */ }, }, },
1f63139c 854 { .name = "socketpair",
82d4a110 855 .arg = { [0] = STRARRAY(family, socket_families),
162d3edb
ACM
856 [1] = { .scnprintf = SCA_SK_TYPE, /* type */ },
857 [2] = { .scnprintf = SCA_SK_PROTO, /* protocol */ }, }, },
1f63139c
ACM
858 { .name = "stat", .alias = "newstat", },
859 { .name = "statx",
82d4a110
ACM
860 .arg = { [0] = { .scnprintf = SCA_FDAT, /* fdat */ },
861 [2] = { .scnprintf = SCA_STATX_FLAGS, /* flags */ } ,
862 [3] = { .scnprintf = SCA_STATX_MASK, /* mask */ }, }, },
1f63139c 863 { .name = "swapoff",
82d4a110 864 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* specialfile */ }, }, },
1f63139c 865 { .name = "swapon",
82d4a110 866 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* specialfile */ }, }, },
1f63139c 867 { .name = "symlinkat",
82d4a110 868 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1f63139c 869 { .name = "tgkill",
82d4a110 870 .arg = { [2] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1f63139c 871 { .name = "tkill",
82d4a110 872 .arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
476c92ca
ACM
873 { .name = "umount2", .alias = "umount",
874 .arg = { [0] = { .scnprintf = SCA_FILENAME, /* name */ }, }, },
1f63139c
ACM
875 { .name = "uname", .alias = "newuname", },
876 { .name = "unlinkat",
82d4a110 877 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1f63139c 878 { .name = "utimensat",
82d4a110 879 .arg = { [0] = { .scnprintf = SCA_FDAT, /* dirfd */ }, }, },
11c8e39f 880 { .name = "wait4", .errpid = true,
82d4a110 881 .arg = { [2] = { .scnprintf = SCA_WAITID_OPTIONS, /* options */ }, }, },
11c8e39f 882 { .name = "waitid", .errpid = true,
82d4a110 883 .arg = { [3] = { .scnprintf = SCA_WAITID_OPTIONS, /* options */ }, }, },
514f1c67
ACM
884};
885
886static int syscall_fmt__cmp(const void *name, const void *fmtp)
887{
888 const struct syscall_fmt *fmt = fmtp;
889 return strcmp(name, fmt->name);
890}
891
892static struct syscall_fmt *syscall_fmt__find(const char *name)
893{
894 const int nmemb = ARRAY_SIZE(syscall_fmts);
895 return bsearch(name, syscall_fmts, nmemb, sizeof(struct syscall_fmt), syscall_fmt__cmp);
896}
897
f932184e
ACM
898static struct syscall_fmt *syscall_fmt__find_by_alias(const char *alias)
899{
900 int i, nmemb = ARRAY_SIZE(syscall_fmts);
901
902 for (i = 0; i < nmemb; ++i) {
903 if (syscall_fmts[i].alias && strcmp(syscall_fmts[i].alias, alias) == 0)
904 return &syscall_fmts[i];
905 }
906
907 return NULL;
908}
909
6a648b53
ACM
910/*
911 * is_exit: is this "exit" or "exit_group"?
912 * is_open: is this "open" or "openat"? To associate the fd returned in sys_exit with the pathname in sys_enter.
7a983a0f 913 * args_size: sum of the sizes of the syscall arguments, anything after that is augmented stuff: pathname for openat, etc.
6a648b53 914 */
514f1c67 915struct syscall {
97fbf3f0 916 struct tep_event *tp_format;
f208bd8d 917 int nr_args;
7a983a0f 918 int args_size;
6a648b53
ACM
919 bool is_exit;
920 bool is_open;
2c92f982 921 struct tep_format_field *args;
514f1c67
ACM
922 const char *name;
923 struct syscall_fmt *fmt;
82d4a110 924 struct syscall_arg_fmt *arg_fmt;
514f1c67
ACM
925};
926
bbab50dd
ACM
927struct bpf_map_syscall_entry {
928 bool enabled;
929};
930
fd2b2975
ACM
931/*
932 * We need to have this 'calculated' boolean because in some cases we really
933 * don't know what is the duration of a syscall, for instance, when we start
934 * a session and some threads are waiting for a syscall to finish, say 'poll',
935 * in which case all we can do is to print "( ? ) for duration and for the
936 * start timestamp.
937 */
938static size_t fprintf_duration(unsigned long t, bool calculated, FILE *fp)
60c907ab
ACM
939{
940 double duration = (double)t / NSEC_PER_MSEC;
941 size_t printed = fprintf(fp, "(");
942
fd2b2975 943 if (!calculated)
522283fe 944 printed += fprintf(fp, " ");
fd2b2975 945 else if (duration >= 1.0)
60c907ab
ACM
946 printed += color_fprintf(fp, PERF_COLOR_RED, "%6.3f ms", duration);
947 else if (duration >= 0.01)
948 printed += color_fprintf(fp, PERF_COLOR_YELLOW, "%6.3f ms", duration);
949 else
950 printed += color_fprintf(fp, PERF_COLOR_NORMAL, "%6.3f ms", duration);
c24ff998 951 return printed + fprintf(fp, "): ");
60c907ab
ACM
952}
953
f994592d
ACM
954/**
955 * filename.ptr: The filename char pointer that will be vfs_getname'd
956 * filename.entry_str_pos: Where to insert the string translated from
957 * filename.ptr by the vfs_getname tracepoint/kprobe.
84486caa
ACM
958 * ret_scnprintf: syscall args may set this to a different syscall return
959 * formatter, for instance, fcntl may return fds, file flags, etc.
f994592d 960 */
752fde44
ACM
961struct thread_trace {
962 u64 entry_time;
752fde44 963 bool entry_pending;
efd5745e 964 unsigned long nr_events;
a2ea67d7 965 unsigned long pfmaj, pfmin;
752fde44 966 char *entry_str;
1302d88e 967 double runtime_ms;
7ee57434 968 size_t (*ret_scnprintf)(char *bf, size_t size, struct syscall_arg *arg);
f994592d
ACM
969 struct {
970 unsigned long ptr;
7f4f8001
ACM
971 short int entry_str_pos;
972 bool pending_open;
973 unsigned int namelen;
974 char *name;
f994592d 975 } filename;
75b757ca
ACM
976 struct {
977 int max;
978 char **table;
979 } paths;
bf2575c1
DA
980
981 struct intlist *syscall_stats;
752fde44
ACM
982};
983
984static struct thread_trace *thread_trace__new(void)
985{
75b757ca
ACM
986 struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace));
987
988 if (ttrace)
989 ttrace->paths.max = -1;
990
bf2575c1
DA
991 ttrace->syscall_stats = intlist__new(NULL);
992
75b757ca 993 return ttrace;
752fde44
ACM
994}
995
c24ff998 996static struct thread_trace *thread__trace(struct thread *thread, FILE *fp)
752fde44 997{
efd5745e
ACM
998 struct thread_trace *ttrace;
999
752fde44
ACM
1000 if (thread == NULL)
1001 goto fail;
1002
89dceb22
NK
1003 if (thread__priv(thread) == NULL)
1004 thread__set_priv(thread, thread_trace__new());
48000a1a 1005
89dceb22 1006 if (thread__priv(thread) == NULL)
752fde44
ACM
1007 goto fail;
1008
89dceb22 1009 ttrace = thread__priv(thread);
efd5745e
ACM
1010 ++ttrace->nr_events;
1011
1012 return ttrace;
752fde44 1013fail:
c24ff998 1014 color_fprintf(fp, PERF_COLOR_RED,
752fde44
ACM
1015 "WARNING: not enough memory, dropping samples!\n");
1016 return NULL;
1017}
1018
84486caa
ACM
1019
1020void syscall_arg__set_ret_scnprintf(struct syscall_arg *arg,
7ee57434 1021 size_t (*ret_scnprintf)(char *bf, size_t size, struct syscall_arg *arg))
84486caa
ACM
1022{
1023 struct thread_trace *ttrace = thread__priv(arg->thread);
1024
1025 ttrace->ret_scnprintf = ret_scnprintf;
1026}
1027
598d02c5
SF
1028#define TRACE_PFMAJ (1 << 0)
1029#define TRACE_PFMIN (1 << 1)
1030
e4d44e83
ACM
1031static const size_t trace__entry_str_size = 2048;
1032
97119f37 1033static int trace__set_fd_pathname(struct thread *thread, int fd, const char *pathname)
75b757ca 1034{
89dceb22 1035 struct thread_trace *ttrace = thread__priv(thread);
75b757ca
ACM
1036
1037 if (fd > ttrace->paths.max) {
1038 char **npath = realloc(ttrace->paths.table, (fd + 1) * sizeof(char *));
1039
1040 if (npath == NULL)
1041 return -1;
1042
1043 if (ttrace->paths.max != -1) {
1044 memset(npath + ttrace->paths.max + 1, 0,
1045 (fd - ttrace->paths.max) * sizeof(char *));
1046 } else {
1047 memset(npath, 0, (fd + 1) * sizeof(char *));
1048 }
1049
1050 ttrace->paths.table = npath;
1051 ttrace->paths.max = fd;
1052 }
1053
1054 ttrace->paths.table[fd] = strdup(pathname);
1055
1056 return ttrace->paths.table[fd] != NULL ? 0 : -1;
1057}
1058
97119f37
ACM
1059static int thread__read_fd_path(struct thread *thread, int fd)
1060{
1061 char linkname[PATH_MAX], pathname[PATH_MAX];
1062 struct stat st;
1063 int ret;
1064
1065 if (thread->pid_ == thread->tid) {
1066 scnprintf(linkname, sizeof(linkname),
1067 "/proc/%d/fd/%d", thread->pid_, fd);
1068 } else {
1069 scnprintf(linkname, sizeof(linkname),
1070 "/proc/%d/task/%d/fd/%d", thread->pid_, thread->tid, fd);
1071 }
1072
1073 if (lstat(linkname, &st) < 0 || st.st_size + 1 > (off_t)sizeof(pathname))
1074 return -1;
1075
1076 ret = readlink(linkname, pathname, sizeof(pathname));
1077
1078 if (ret < 0 || ret > st.st_size)
1079 return -1;
1080
1081 pathname[ret] = '\0';
1082 return trace__set_fd_pathname(thread, fd, pathname);
1083}
1084
c522739d
ACM
1085static const char *thread__fd_path(struct thread *thread, int fd,
1086 struct trace *trace)
75b757ca 1087{
89dceb22 1088 struct thread_trace *ttrace = thread__priv(thread);
75b757ca
ACM
1089
1090 if (ttrace == NULL)
1091 return NULL;
1092
1093 if (fd < 0)
1094 return NULL;
1095
cdcd1e6b 1096 if ((fd > ttrace->paths.max || ttrace->paths.table[fd] == NULL)) {
c522739d
ACM
1097 if (!trace->live)
1098 return NULL;
1099 ++trace->stats.proc_getname;
cdcd1e6b 1100 if (thread__read_fd_path(thread, fd))
c522739d
ACM
1101 return NULL;
1102 }
75b757ca
ACM
1103
1104 return ttrace->paths.table[fd];
1105}
1106
fc65eb82 1107size_t syscall_arg__scnprintf_fd(char *bf, size_t size, struct syscall_arg *arg)
75b757ca
ACM
1108{
1109 int fd = arg->val;
1110 size_t printed = scnprintf(bf, size, "%d", fd);
c522739d 1111 const char *path = thread__fd_path(arg->thread, fd, arg->trace);
75b757ca
ACM
1112
1113 if (path)
1114 printed += scnprintf(bf + printed, size - printed, "<%s>", path);
1115
1116 return printed;
1117}
1118
0a2f7540
ACM
1119size_t pid__scnprintf_fd(struct trace *trace, pid_t pid, int fd, char *bf, size_t size)
1120{
1121 size_t printed = scnprintf(bf, size, "%d", fd);
1122 struct thread *thread = machine__find_thread(trace->host, pid, pid);
1123
1124 if (thread) {
1125 const char *path = thread__fd_path(thread, fd, trace);
1126
1127 if (path)
1128 printed += scnprintf(bf + printed, size - printed, "<%s>", path);
1129
1130 thread__put(thread);
1131 }
1132
1133 return printed;
1134}
1135
75b757ca
ACM
1136static size_t syscall_arg__scnprintf_close_fd(char *bf, size_t size,
1137 struct syscall_arg *arg)
1138{
1139 int fd = arg->val;
1140 size_t printed = syscall_arg__scnprintf_fd(bf, size, arg);
89dceb22 1141 struct thread_trace *ttrace = thread__priv(arg->thread);
75b757ca 1142
04662523
ACM
1143 if (ttrace && fd >= 0 && fd <= ttrace->paths.max)
1144 zfree(&ttrace->paths.table[fd]);
75b757ca
ACM
1145
1146 return printed;
1147}
1148
f994592d
ACM
1149static void thread__set_filename_pos(struct thread *thread, const char *bf,
1150 unsigned long ptr)
1151{
1152 struct thread_trace *ttrace = thread__priv(thread);
1153
1154 ttrace->filename.ptr = ptr;
1155 ttrace->filename.entry_str_pos = bf - ttrace->entry_str;
1156}
1157
75d1e306
ACM
1158static size_t syscall_arg__scnprintf_augmented_string(struct syscall_arg *arg, char *bf, size_t size)
1159{
1160 struct augmented_arg *augmented_arg = arg->augmented.args;
1161
721f5326 1162 return scnprintf(bf, size, "\"%.*s\"", augmented_arg->size, augmented_arg->value);
75d1e306
ACM
1163}
1164
f994592d
ACM
1165static size_t syscall_arg__scnprintf_filename(char *bf, size_t size,
1166 struct syscall_arg *arg)
1167{
1168 unsigned long ptr = arg->val;
1169
75d1e306
ACM
1170 if (arg->augmented.args)
1171 return syscall_arg__scnprintf_augmented_string(arg, bf, size);
1172
f994592d
ACM
1173 if (!arg->trace->vfs_getname)
1174 return scnprintf(bf, size, "%#x", ptr);
1175
1176 thread__set_filename_pos(arg->thread, bf, ptr);
1177 return 0;
1178}
1179
ae9ed035
ACM
1180static bool trace__filter_duration(struct trace *trace, double t)
1181{
1182 return t < (trace->duration_filter * NSEC_PER_MSEC);
1183}
1184
fd2b2975 1185static size_t __trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp)
752fde44
ACM
1186{
1187 double ts = (double)(tstamp - trace->base_time) / NSEC_PER_MSEC;
1188
60c907ab 1189 return fprintf(fp, "%10.3f ", ts);
752fde44
ACM
1190}
1191
fd2b2975
ACM
1192/*
1193 * We're handling tstamp=0 as an undefined tstamp, i.e. like when we are
1194 * using ttrace->entry_time for a thread that receives a sys_exit without
1195 * first having received a sys_enter ("poll" issued before tracing session
1196 * starts, lost sys_enter exit due to ring buffer overflow).
1197 */
1198static size_t trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp)
1199{
1200 if (tstamp > 0)
1201 return __trace__fprintf_tstamp(trace, tstamp, fp);
1202
1203 return fprintf(fp, " ? ");
1204}
1205
f15eb531 1206static bool done = false;
ba209f85 1207static bool interrupted = false;
f15eb531 1208
ba209f85 1209static void sig_handler(int sig)
f15eb531
NK
1210{
1211 done = true;
ba209f85 1212 interrupted = sig == SIGINT;
f15eb531
NK
1213}
1214
6dcbd212 1215static size_t trace__fprintf_comm_tid(struct trace *trace, struct thread *thread, FILE *fp)
752fde44 1216{
6dcbd212 1217 size_t printed = 0;
752fde44 1218
50c95cbd
ACM
1219 if (trace->multiple_threads) {
1220 if (trace->show_comm)
1902efe7 1221 printed += fprintf(fp, "%.14s/", thread__comm_str(thread));
38051234 1222 printed += fprintf(fp, "%d ", thread->tid);
50c95cbd 1223 }
752fde44
ACM
1224
1225 return printed;
1226}
1227
6dcbd212
ACM
1228static size_t trace__fprintf_entry_head(struct trace *trace, struct thread *thread,
1229 u64 duration, bool duration_calculated, u64 tstamp, FILE *fp)
1230{
b036146f
ACM
1231 size_t printed = 0;
1232
1233 if (trace->show_tstamp)
1234 printed = trace__fprintf_tstamp(trace, tstamp, fp);
42e4a52d
ACM
1235 if (trace->show_duration)
1236 printed += fprintf_duration(duration, duration_calculated, fp);
6dcbd212
ACM
1237 return printed + trace__fprintf_comm_tid(trace, thread, fp);
1238}
1239
c24ff998 1240static int trace__process_event(struct trace *trace, struct machine *machine,
162f0bef 1241 union perf_event *event, struct perf_sample *sample)
752fde44
ACM
1242{
1243 int ret = 0;
1244
1245 switch (event->header.type) {
1246 case PERF_RECORD_LOST:
c24ff998 1247 color_fprintf(trace->output, PERF_COLOR_RED,
752fde44 1248 "LOST %" PRIu64 " events!\n", event->lost.lost);
162f0bef 1249 ret = machine__process_lost_event(machine, event, sample);
3ed5ca2e 1250 break;
752fde44 1251 default:
162f0bef 1252 ret = machine__process_event(machine, event, sample);
752fde44
ACM
1253 break;
1254 }
1255
1256 return ret;
1257}
1258
c24ff998 1259static int trace__tool_process(struct perf_tool *tool,
752fde44 1260 union perf_event *event,
162f0bef 1261 struct perf_sample *sample,
752fde44
ACM
1262 struct machine *machine)
1263{
c24ff998 1264 struct trace *trace = container_of(tool, struct trace, tool);
162f0bef 1265 return trace__process_event(trace, machine, event, sample);
752fde44
ACM
1266}
1267
caf8a0d0
ACM
1268static char *trace__machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
1269{
1270 struct machine *machine = vmachine;
1271
1272 if (machine->kptr_restrict_warned)
1273 return NULL;
1274
1275 if (symbol_conf.kptr_restrict) {
1276 pr_warning("Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
1277 "Check /proc/sys/kernel/kptr_restrict.\n\n"
1278 "Kernel samples will not be resolved.\n");
1279 machine->kptr_restrict_warned = true;
1280 return NULL;
1281 }
1282
1283 return machine__resolve_kernel_addr(vmachine, addrp, modp);
1284}
1285
752fde44
ACM
1286static int trace__symbols_init(struct trace *trace, struct perf_evlist *evlist)
1287{
0a7e6d1b 1288 int err = symbol__init(NULL);
752fde44
ACM
1289
1290 if (err)
1291 return err;
1292
8fb598e5
DA
1293 trace->host = machine__new_host();
1294 if (trace->host == NULL)
1295 return -ENOMEM;
752fde44 1296
cbd5c178
AV
1297 err = trace_event__register_resolver(trace->host, trace__machine__resolve_kernel_addr);
1298 if (err < 0)
1299 goto out;
706c3da4 1300
a33fbd56 1301 err = __machine__synthesize_threads(trace->host, &trace->tool, &trace->opts.target,
9d9cad76 1302 evlist->threads, trace__tool_process, false,
3fcb10e4 1303 1);
cbd5c178 1304out:
752fde44
ACM
1305 if (err)
1306 symbol__exit();
1307
1308 return err;
1309}
1310
33974a41
AV
1311static void trace__symbols__exit(struct trace *trace)
1312{
1313 machine__exit(trace->host);
1314 trace->host = NULL;
1315
1316 symbol__exit();
1317}
1318
5e58fcfa 1319static int syscall__alloc_arg_fmts(struct syscall *sc, int nr_args)
13d4ff3e 1320{
5e58fcfa 1321 int idx;
13d4ff3e 1322
332337da
ACM
1323 if (nr_args == 6 && sc->fmt && sc->fmt->nr_args != 0)
1324 nr_args = sc->fmt->nr_args;
1325
5e58fcfa 1326 sc->arg_fmt = calloc(nr_args, sizeof(*sc->arg_fmt));
82d4a110 1327 if (sc->arg_fmt == NULL)
13d4ff3e
ACM
1328 return -1;
1329
5e58fcfa
ACM
1330 for (idx = 0; idx < nr_args; ++idx) {
1331 if (sc->fmt)
82d4a110 1332 sc->arg_fmt[idx] = sc->fmt->arg[idx];
5e58fcfa 1333 }
82d4a110 1334
5e58fcfa
ACM
1335 sc->nr_args = nr_args;
1336 return 0;
1337}
1338
1339static int syscall__set_arg_fmts(struct syscall *sc)
1340{
2c92f982 1341 struct tep_format_field *field, *last_field = NULL;
5e58fcfa
ACM
1342 int idx = 0, len;
1343
1344 for (field = sc->args; field; field = field->next, ++idx) {
7a983a0f
ACM
1345 last_field = field;
1346
5e58fcfa
ACM
1347 if (sc->fmt && sc->fmt->arg[idx].scnprintf)
1348 continue;
1f115cb7 1349
82d4a110 1350 if (strcmp(field->type, "const char *") == 0 &&
12f3ca4f
ACM
1351 (strcmp(field->name, "filename") == 0 ||
1352 strcmp(field->name, "path") == 0 ||
1353 strcmp(field->name, "pathname") == 0))
82d4a110 1354 sc->arg_fmt[idx].scnprintf = SCA_FILENAME;
ce05539f
ACM
1355 else if ((field->flags & TEP_FIELD_IS_POINTER) || strstr(field->name, "addr"))
1356 sc->arg_fmt[idx].scnprintf = SCA_PTR;
d1d438a3 1357 else if (strcmp(field->type, "pid_t") == 0)
82d4a110 1358 sc->arg_fmt[idx].scnprintf = SCA_PID;
ba2f22cf 1359 else if (strcmp(field->type, "umode_t") == 0)
82d4a110 1360 sc->arg_fmt[idx].scnprintf = SCA_MODE_T;
b6565c90
ACM
1361 else if ((strcmp(field->type, "int") == 0 ||
1362 strcmp(field->type, "unsigned int") == 0 ||
1363 strcmp(field->type, "long") == 0) &&
1364 (len = strlen(field->name)) >= 2 &&
1365 strcmp(field->name + len - 2, "fd") == 0) {
1366 /*
1367 * /sys/kernel/tracing/events/syscalls/sys_enter*
1368 * egrep 'field:.*fd;' .../format|sed -r 's/.*field:([a-z ]+) [a-z_]*fd.+/\1/g'|sort|uniq -c
1369 * 65 int
1370 * 23 unsigned int
1371 * 7 unsigned long
1372 */
82d4a110 1373 sc->arg_fmt[idx].scnprintf = SCA_FD;
b6565c90 1374 }
13d4ff3e
ACM
1375 }
1376
7a983a0f
ACM
1377 if (last_field)
1378 sc->args_size = last_field->offset + last_field->size;
1379
13d4ff3e
ACM
1380 return 0;
1381}
1382
514f1c67
ACM
1383static int trace__read_syscall_info(struct trace *trace, int id)
1384{
1385 char tp_name[128];
1386 struct syscall *sc;
fd0db102 1387 const char *name = syscalltbl__name(trace->sctbl, id);
3a531260
ACM
1388
1389 if (name == NULL)
1390 return -1;
514f1c67
ACM
1391
1392 if (id > trace->syscalls.max) {
1393 struct syscall *nsyscalls = realloc(trace->syscalls.table, (id + 1) * sizeof(*sc));
1394
1395 if (nsyscalls == NULL)
1396 return -1;
1397
1398 if (trace->syscalls.max != -1) {
1399 memset(nsyscalls + trace->syscalls.max + 1, 0,
1400 (id - trace->syscalls.max) * sizeof(*sc));
1401 } else {
1402 memset(nsyscalls, 0, (id + 1) * sizeof(*sc));
1403 }
1404
1405 trace->syscalls.table = nsyscalls;
1406 trace->syscalls.max = id;
1407 }
1408
1409 sc = trace->syscalls.table + id;
3a531260 1410 sc->name = name;
2ae3a312 1411
3a531260 1412 sc->fmt = syscall_fmt__find(sc->name);
514f1c67 1413
aec1930b 1414 snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->name);
97978b3e 1415 sc->tp_format = trace_event__tp_format("syscalls", tp_name);
aec1930b 1416
8dd2a131 1417 if (IS_ERR(sc->tp_format) && sc->fmt && sc->fmt->alias) {
aec1930b 1418 snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->fmt->alias);
97978b3e 1419 sc->tp_format = trace_event__tp_format("syscalls", tp_name);
aec1930b 1420 }
514f1c67 1421
5e58fcfa
ACM
1422 if (syscall__alloc_arg_fmts(sc, IS_ERR(sc->tp_format) ? 6 : sc->tp_format->format.nr_fields))
1423 return -1;
1424
8dd2a131 1425 if (IS_ERR(sc->tp_format))
13d4ff3e
ACM
1426 return -1;
1427
f208bd8d 1428 sc->args = sc->tp_format->format.fields;
c42de706
TS
1429 /*
1430 * We need to check and discard the first variable '__syscall_nr'
1431 * or 'nr' that mean the syscall number. It is needless here.
1432 * So drop '__syscall_nr' or 'nr' field but does not exist on older kernels.
1433 */
1434 if (sc->args && (!strcmp(sc->args->name, "__syscall_nr") || !strcmp(sc->args->name, "nr"))) {
f208bd8d
ACM
1435 sc->args = sc->args->next;
1436 --sc->nr_args;
1437 }
1438
5089f20e 1439 sc->is_exit = !strcmp(name, "exit_group") || !strcmp(name, "exit");
6a648b53 1440 sc->is_open = !strcmp(name, "open") || !strcmp(name, "openat");
5089f20e 1441
13d4ff3e 1442 return syscall__set_arg_fmts(sc);
514f1c67
ACM
1443}
1444
d0cc439b
ACM
1445static int trace__validate_ev_qualifier(struct trace *trace)
1446{
8b3ce757 1447 int err = 0, i;
27702bcf 1448 size_t nr_allocated;
d0cc439b
ACM
1449 struct str_node *pos;
1450
8b3ce757
ACM
1451 trace->ev_qualifier_ids.nr = strlist__nr_entries(trace->ev_qualifier);
1452 trace->ev_qualifier_ids.entries = malloc(trace->ev_qualifier_ids.nr *
1453 sizeof(trace->ev_qualifier_ids.entries[0]));
1454
1455 if (trace->ev_qualifier_ids.entries == NULL) {
1456 fputs("Error:\tNot enough memory for allocating events qualifier ids\n",
1457 trace->output);
1458 err = -EINVAL;
1459 goto out;
1460 }
1461
27702bcf 1462 nr_allocated = trace->ev_qualifier_ids.nr;
8b3ce757
ACM
1463 i = 0;
1464
602a1f4d 1465 strlist__for_each_entry(pos, trace->ev_qualifier) {
d0cc439b 1466 const char *sc = pos->s;
27702bcf 1467 int id = syscalltbl__id(trace->sctbl, sc), match_next = -1;
d0cc439b 1468
8b3ce757 1469 if (id < 0) {
27702bcf
ACM
1470 id = syscalltbl__strglobmatch_first(trace->sctbl, sc, &match_next);
1471 if (id >= 0)
1472 goto matches;
1473
d0cc439b
ACM
1474 if (err == 0) {
1475 fputs("Error:\tInvalid syscall ", trace->output);
1476 err = -EINVAL;
1477 } else {
1478 fputs(", ", trace->output);
1479 }
1480
1481 fputs(sc, trace->output);
1482 }
27702bcf 1483matches:
8b3ce757 1484 trace->ev_qualifier_ids.entries[i++] = id;
27702bcf
ACM
1485 if (match_next == -1)
1486 continue;
1487
1488 while (1) {
1489 id = syscalltbl__strglobmatch_next(trace->sctbl, sc, &match_next);
1490 if (id < 0)
1491 break;
1492 if (nr_allocated == trace->ev_qualifier_ids.nr) {
1493 void *entries;
1494
1495 nr_allocated += 8;
1496 entries = realloc(trace->ev_qualifier_ids.entries,
1497 nr_allocated * sizeof(trace->ev_qualifier_ids.entries[0]));
1498 if (entries == NULL) {
1499 err = -ENOMEM;
1500 fputs("\nError:\t Not enough memory for parsing\n", trace->output);
1501 goto out_free;
1502 }
1503 trace->ev_qualifier_ids.entries = entries;
1504 }
1505 trace->ev_qualifier_ids.nr++;
1506 trace->ev_qualifier_ids.entries[i++] = id;
1507 }
d0cc439b
ACM
1508 }
1509
1510 if (err < 0) {
1511 fputs("\nHint:\ttry 'perf list syscalls:sys_enter_*'"
1512 "\nHint:\tand: 'man syscalls'\n", trace->output);
27702bcf 1513out_free:
8b3ce757
ACM
1514 zfree(&trace->ev_qualifier_ids.entries);
1515 trace->ev_qualifier_ids.nr = 0;
d0cc439b 1516 }
8b3ce757 1517out:
d0cc439b
ACM
1518 return err;
1519}
1520
55d43bca
DA
1521/*
1522 * args is to be interpreted as a series of longs but we need to handle
1523 * 8-byte unaligned accesses. args points to raw_data within the event
1524 * and raw_data is guaranteed to be 8-byte unaligned because it is
1525 * preceded by raw_size which is a u32. So we need to copy args to a temp
1526 * variable to read it. Most notably this avoids extended load instructions
1527 * on unaligned addresses
1528 */
325f5091 1529unsigned long syscall_arg__val(struct syscall_arg *arg, u8 idx)
f9f83b33
ACM
1530{
1531 unsigned long val;
325f5091 1532 unsigned char *p = arg->args + sizeof(unsigned long) * idx;
f9f83b33
ACM
1533
1534 memcpy(&val, p, sizeof(val));
1535 return val;
1536}
1537
c51bdfec
ACM
1538static size_t syscall__scnprintf_name(struct syscall *sc, char *bf, size_t size,
1539 struct syscall_arg *arg)
1540{
1541 if (sc->arg_fmt && sc->arg_fmt[arg->idx].name)
1542 return scnprintf(bf, size, "%s: ", sc->arg_fmt[arg->idx].name);
1543
1544 return scnprintf(bf, size, "arg%d: ", arg->idx);
1545}
1546
496fd346
ACM
1547/*
1548 * Check if the value is in fact zero, i.e. mask whatever needs masking, such
1549 * as mount 'flags' argument that needs ignoring some magic flag, see comment
1550 * in tools/perf/trace/beauty/mount_flags.c
1551 */
1552static unsigned long syscall__mask_val(struct syscall *sc, struct syscall_arg *arg, unsigned long val)
1553{
1554 if (sc->arg_fmt && sc->arg_fmt[arg->idx].mask_val)
1555 return sc->arg_fmt[arg->idx].mask_val(arg, val);
1556
1557 return val;
1558}
1559
d032d79e
ACM
1560static size_t syscall__scnprintf_val(struct syscall *sc, char *bf, size_t size,
1561 struct syscall_arg *arg, unsigned long val)
1562{
1563 if (sc->arg_fmt && sc->arg_fmt[arg->idx].scnprintf) {
1564 arg->val = val;
1565 if (sc->arg_fmt[arg->idx].parm)
1566 arg->parm = sc->arg_fmt[arg->idx].parm;
1567 return sc->arg_fmt[arg->idx].scnprintf(bf, size, arg);
1568 }
1569 return scnprintf(bf, size, "%ld", val);
1570}
1571
752fde44 1572static size_t syscall__scnprintf_args(struct syscall *sc, char *bf, size_t size,
7a983a0f
ACM
1573 unsigned char *args, void *augmented_args, int augmented_args_size,
1574 struct trace *trace, struct thread *thread)
514f1c67 1575{
514f1c67 1576 size_t printed = 0;
55d43bca 1577 unsigned long val;
d032d79e
ACM
1578 u8 bit = 1;
1579 struct syscall_arg arg = {
1580 .args = args,
7a983a0f
ACM
1581 .augmented = {
1582 .size = augmented_args_size,
1583 .args = augmented_args,
1584 },
d032d79e
ACM
1585 .idx = 0,
1586 .mask = 0,
1587 .trace = trace,
1588 .thread = thread,
c65c83ff 1589 .show_string_prefix = trace->show_string_prefix,
d032d79e 1590 };
84486caa
ACM
1591 struct thread_trace *ttrace = thread__priv(thread);
1592
1593 /*
1594 * Things like fcntl will set this in its 'cmd' formatter to pick the
1595 * right formatter for the return value (an fd? file flags?), which is
1596 * not needed for syscalls that always return a given type, say an fd.
1597 */
1598 ttrace->ret_scnprintf = NULL;
514f1c67 1599
f208bd8d 1600 if (sc->args != NULL) {
2c92f982 1601 struct tep_format_field *field;
6e7eeb51 1602
f208bd8d 1603 for (field = sc->args; field;
01533e97
ACM
1604 field = field->next, ++arg.idx, bit <<= 1) {
1605 if (arg.mask & bit)
6e7eeb51 1606 continue;
55d43bca 1607
f9f83b33 1608 val = syscall_arg__val(&arg, arg.idx);
496fd346
ACM
1609 /*
1610 * Some syscall args need some mask, most don't and
1611 * return val untouched.
1612 */
1613 val = syscall__mask_val(sc, &arg, val);
55d43bca 1614
4aa58232
ACM
1615 /*
1616 * Suppress this argument if its value is zero and
1617 * and we don't have a string associated in an
1618 * strarray for it.
1619 */
55d43bca 1620 if (val == 0 &&
e7c634fc 1621 !trace->show_zeros &&
82d4a110 1622 !(sc->arg_fmt &&
d47737d5
ACM
1623 (sc->arg_fmt[arg.idx].show_zero ||
1624 sc->arg_fmt[arg.idx].scnprintf == SCA_STRARRAY ||
82d4a110
ACM
1625 sc->arg_fmt[arg.idx].scnprintf == SCA_STRARRAYS) &&
1626 sc->arg_fmt[arg.idx].parm))
22ae5cf1
ACM
1627 continue;
1628
9d6dc178
ACM
1629 printed += scnprintf(bf + printed, size - printed, "%s", printed ? ", " : "");
1630
1631 if (trace->show_arg_names)
1632 printed += scnprintf(bf + printed, size - printed, "%s: ", field->name);
1633
d032d79e 1634 printed += syscall__scnprintf_val(sc, bf + printed, size - printed, &arg, val);
514f1c67 1635 }
4c4d6e51
ACM
1636 } else if (IS_ERR(sc->tp_format)) {
1637 /*
1638 * If we managed to read the tracepoint /format file, then we
1639 * may end up not having any args, like with gettid(), so only
1640 * print the raw args when we didn't manage to read it.
1641 */
332337da 1642 while (arg.idx < sc->nr_args) {
d032d79e
ACM
1643 if (arg.mask & bit)
1644 goto next_arg;
1645 val = syscall_arg__val(&arg, arg.idx);
c51bdfec
ACM
1646 if (printed)
1647 printed += scnprintf(bf + printed, size - printed, ", ");
1648 printed += syscall__scnprintf_name(sc, bf + printed, size - printed, &arg);
d032d79e
ACM
1649 printed += syscall__scnprintf_val(sc, bf + printed, size - printed, &arg, val);
1650next_arg:
1651 ++arg.idx;
1652 bit <<= 1;
514f1c67
ACM
1653 }
1654 }
1655
1656 return printed;
1657}
1658
ba3d7dee 1659typedef int (*tracepoint_handler)(struct trace *trace, struct perf_evsel *evsel,
0c82adcf 1660 union perf_event *event,
ba3d7dee
ACM
1661 struct perf_sample *sample);
1662
1663static struct syscall *trace__syscall_info(struct trace *trace,
bf2575c1 1664 struct perf_evsel *evsel, int id)
ba3d7dee 1665{
ba3d7dee
ACM
1666
1667 if (id < 0) {
adaa18bf
ACM
1668
1669 /*
1670 * XXX: Noticed on x86_64, reproduced as far back as 3.0.36, haven't tried
1671 * before that, leaving at a higher verbosity level till that is
1672 * explained. Reproduced with plain ftrace with:
1673 *
1674 * echo 1 > /t/events/raw_syscalls/sys_exit/enable
1675 * grep "NR -1 " /t/trace_pipe
1676 *
1677 * After generating some load on the machine.
1678 */
1679 if (verbose > 1) {
1680 static u64 n;
1681 fprintf(trace->output, "Invalid syscall %d id, skipping (%s, %" PRIu64 ") ...\n",
1682 id, perf_evsel__name(evsel), ++n);
1683 }
ba3d7dee
ACM
1684 return NULL;
1685 }
1686
1687 if ((id > trace->syscalls.max || trace->syscalls.table[id].name == NULL) &&
1688 trace__read_syscall_info(trace, id))
1689 goto out_cant_read;
1690
1691 if ((id > trace->syscalls.max || trace->syscalls.table[id].name == NULL))
1692 goto out_cant_read;
1693
1694 return &trace->syscalls.table[id];
1695
1696out_cant_read:
bb963e16 1697 if (verbose > 0) {
7c304ee0
ACM
1698 fprintf(trace->output, "Problems reading syscall %d", id);
1699 if (id <= trace->syscalls.max && trace->syscalls.table[id].name != NULL)
1700 fprintf(trace->output, "(%s)", trace->syscalls.table[id].name);
1701 fputs(" information\n", trace->output);
1702 }
ba3d7dee
ACM
1703 return NULL;
1704}
1705
bf2575c1
DA
1706static void thread__update_stats(struct thread_trace *ttrace,
1707 int id, struct perf_sample *sample)
1708{
1709 struct int_node *inode;
1710 struct stats *stats;
1711 u64 duration = 0;
1712
1713 inode = intlist__findnew(ttrace->syscall_stats, id);
1714 if (inode == NULL)
1715 return;
1716
1717 stats = inode->priv;
1718 if (stats == NULL) {
1719 stats = malloc(sizeof(struct stats));
1720 if (stats == NULL)
1721 return;
1722 init_stats(stats);
1723 inode->priv = stats;
1724 }
1725
1726 if (ttrace->entry_time && sample->time > ttrace->entry_time)
1727 duration = sample->time - ttrace->entry_time;
1728
1729 update_stats(stats, duration);
1730}
1731
522283fe 1732static int trace__printf_interrupted_entry(struct trace *trace)
e596663e
ACM
1733{
1734 struct thread_trace *ttrace;
e596663e
ACM
1735 size_t printed;
1736
0a6545bd 1737 if (trace->failure_only || trace->current == NULL)
e596663e
ACM
1738 return 0;
1739
1740 ttrace = thread__priv(trace->current);
1741
1742 if (!ttrace->entry_pending)
1743 return 0;
1744
522283fe 1745 printed = trace__fprintf_entry_head(trace, trace->current, 0, false, ttrace->entry_time, trace->output);
4b8a240e 1746 printed += fprintf(trace->output, ")%-*s ...\n", trace->args_alignment, ttrace->entry_str);
e596663e
ACM
1747 ttrace->entry_pending = false;
1748
5067a8cd
ACM
1749 ++trace->nr_events_printed;
1750
e596663e
ACM
1751 return printed;
1752}
1753
591421e1
ACM
1754static int trace__fprintf_sample(struct trace *trace, struct perf_evsel *evsel,
1755 struct perf_sample *sample, struct thread *thread)
1756{
1757 int printed = 0;
1758
1759 if (trace->print_sample) {
1760 double ts = (double)sample->time / NSEC_PER_MSEC;
1761
1762 printed += fprintf(trace->output, "%22s %10.3f %s %d/%d [%d]\n",
1763 perf_evsel__name(evsel), ts,
1764 thread__comm_str(thread),
1765 sample->pid, sample->tid, sample->cpu);
1766 }
1767
1768 return printed;
1769}
1770
cd26ea6d 1771static void *syscall__augmented_args(struct syscall *sc, struct perf_sample *sample, int *augmented_args_size, bool raw_augmented)
8a041f86
ACM
1772{
1773 void *augmented_args = NULL;
cd26ea6d
ACM
1774 /*
1775 * For now with BPF raw_augmented we hook into raw_syscalls:sys_enter
1776 * and there we get all 6 syscall args plus the tracepoint common
1777 * fields (sizeof(long)) and the syscall_nr (another long). So we check
1778 * if that is the case and if so don't look after the sc->args_size,
1779 * but always after the full raw_syscalls:sys_enter payload, which is
1780 * fixed.
1781 *
1782 * We'll revisit this later to pass s->args_size to the BPF augmenter
1783 * (now tools/perf/examples/bpf/augmented_raw_syscalls.c, so that it
1784 * copies only what we need for each syscall, like what happens when we
1785 * use syscalls:sys_enter_NAME, so that we reduce the kernel/userspace
1786 * traffic to just what is needed for each syscall.
1787 */
1788 int args_size = raw_augmented ? (8 * (int)sizeof(long)) : sc->args_size;
8a041f86 1789
cd26ea6d 1790 *augmented_args_size = sample->raw_size - args_size;
8a041f86 1791 if (*augmented_args_size > 0)
cd26ea6d 1792 augmented_args = sample->raw_data + args_size;
8a041f86
ACM
1793
1794 return augmented_args;
1795}
1796
ba3d7dee 1797static int trace__sys_enter(struct trace *trace, struct perf_evsel *evsel,
0c82adcf 1798 union perf_event *event __maybe_unused,
ba3d7dee
ACM
1799 struct perf_sample *sample)
1800{
752fde44 1801 char *msg;
ba3d7dee 1802 void *args;
4b8a240e 1803 int printed = 0;
2ae3a312 1804 struct thread *thread;
b91fc39f 1805 int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1;
db2da3f8
ACM
1806 int augmented_args_size = 0;
1807 void *augmented_args = NULL;
bf2575c1 1808 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2ae3a312
ACM
1809 struct thread_trace *ttrace;
1810
1811 if (sc == NULL)
1812 return -1;
ba3d7dee 1813
8fb598e5 1814 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
c24ff998 1815 ttrace = thread__trace(thread, trace->output);
2ae3a312 1816 if (ttrace == NULL)
b91fc39f 1817 goto out_put;
ba3d7dee 1818
591421e1
ACM
1819 trace__fprintf_sample(trace, evsel, sample, thread);
1820
77170988 1821 args = perf_evsel__sc_tp_ptr(evsel, args, sample);
752fde44
ACM
1822
1823 if (ttrace->entry_str == NULL) {
e4d44e83 1824 ttrace->entry_str = malloc(trace__entry_str_size);
752fde44 1825 if (!ttrace->entry_str)
b91fc39f 1826 goto out_put;
752fde44
ACM
1827 }
1828
5cf9c84e 1829 if (!(trace->duration_filter || trace->summary_only || trace->min_stack))
522283fe 1830 trace__printf_interrupted_entry(trace);
db2da3f8
ACM
1831 /*
1832 * If this is raw_syscalls.sys_enter, then it always comes with the 6 possible
1833 * arguments, even if the syscall being handled, say "openat", uses only 4 arguments
1834 * this breaks syscall__augmented_args() check for augmented args, as we calculate
1835 * syscall->args_size using each syscalls:sys_enter_NAME tracefs format file,
1836 * so when handling, say the openat syscall, we end up getting 6 args for the
1837 * raw_syscalls:sys_enter event, when we expected just 4, we end up mistakenly
1838 * thinking that the extra 2 u64 args are the augmented filename, so just check
1839 * here and avoid using augmented syscalls when the evsel is the raw_syscalls one.
1840 */
1841 if (evsel != trace->syscalls.events.sys_enter)
cd26ea6d 1842 augmented_args = syscall__augmented_args(sc, sample, &augmented_args_size, trace->raw_augmented_syscalls);
752fde44
ACM
1843 ttrace->entry_time = sample->time;
1844 msg = ttrace->entry_str;
e4d44e83 1845 printed += scnprintf(msg + printed, trace__entry_str_size - printed, "%s(", sc->name);
752fde44 1846
e4d44e83 1847 printed += syscall__scnprintf_args(sc, msg + printed, trace__entry_str_size - printed,
db2da3f8 1848 args, augmented_args, augmented_args_size, trace, thread);
752fde44 1849
5089f20e 1850 if (sc->is_exit) {
0a6545bd 1851 if (!(trace->duration_filter || trace->summary_only || trace->failure_only || trace->min_stack)) {
4b8a240e
ACM
1852 int alignment = 0;
1853
fd2b2975 1854 trace__fprintf_entry_head(trace, thread, 0, false, ttrace->entry_time, trace->output);
4b8a240e
ACM
1855 printed = fprintf(trace->output, "%s)", ttrace->entry_str);
1856 if (trace->args_alignment > printed)
1857 alignment = trace->args_alignment - printed;
1858 fprintf(trace->output, "%*s= ?\n", alignment, " ");
ae9ed035 1859 }
7f4f8001 1860 } else {
752fde44 1861 ttrace->entry_pending = true;
7f4f8001
ACM
1862 /* See trace__vfs_getname & trace__sys_exit */
1863 ttrace->filename.pending_open = false;
1864 }
ba3d7dee 1865
f3b623b8
ACM
1866 if (trace->current != thread) {
1867 thread__put(trace->current);
1868 trace->current = thread__get(thread);
1869 }
b91fc39f
ACM
1870 err = 0;
1871out_put:
1872 thread__put(thread);
1873 return err;
ba3d7dee
ACM
1874}
1875
a98392bb
ACM
1876static int trace__fprintf_sys_enter(struct trace *trace, struct perf_evsel *evsel,
1877 struct perf_sample *sample)
1878{
a98392bb
ACM
1879 struct thread_trace *ttrace;
1880 struct thread *thread;
f3acd886
ACM
1881 int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1;
1882 struct syscall *sc = trace__syscall_info(trace, evsel, id);
a98392bb 1883 char msg[1024];
7a983a0f
ACM
1884 void *args, *augmented_args = NULL;
1885 int augmented_args_size;
a98392bb 1886
a98392bb
ACM
1887 if (sc == NULL)
1888 return -1;
1889
1890 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
1891 ttrace = thread__trace(thread, trace->output);
1892 /*
1893 * We need to get ttrace just to make sure it is there when syscall__scnprintf_args()
1894 * and the rest of the beautifiers accessing it via struct syscall_arg touches it.
1895 */
1896 if (ttrace == NULL)
1897 goto out_put;
1898
f3acd886 1899 args = perf_evsel__sc_tp_ptr(evsel, args, sample);
cd26ea6d 1900 augmented_args = syscall__augmented_args(sc, sample, &augmented_args_size, trace->raw_augmented_syscalls);
7a983a0f 1901 syscall__scnprintf_args(sc, msg, sizeof(msg), args, augmented_args, augmented_args_size, trace, thread);
a98392bb
ACM
1902 fprintf(trace->output, "%s", msg);
1903 err = 0;
1904out_put:
1905 thread__put(thread);
1906 return err;
1907}
1908
5cf9c84e
ACM
1909static int trace__resolve_callchain(struct trace *trace, struct perf_evsel *evsel,
1910 struct perf_sample *sample,
1911 struct callchain_cursor *cursor)
202ff968
ACM
1912{
1913 struct addr_location al;
3a9e9a47
RB
1914 int max_stack = evsel->attr.sample_max_stack ?
1915 evsel->attr.sample_max_stack :
1916 trace->max_stack;
4291bf5c 1917 int err;
5cf9c84e 1918
4291bf5c 1919 if (machine__resolve(trace->host, &al, sample) < 0)
5cf9c84e
ACM
1920 return -1;
1921
4291bf5c
ACM
1922 err = thread__resolve_callchain(al.thread, cursor, evsel, sample, NULL, NULL, max_stack);
1923 addr_location__put(&al);
1924 return err;
5cf9c84e
ACM
1925}
1926
1927static int trace__fprintf_callchain(struct trace *trace, struct perf_sample *sample)
1928{
202ff968 1929 /* TODO: user-configurable print_opts */
e20ab86e
ACM
1930 const unsigned int print_opts = EVSEL__PRINT_SYM |
1931 EVSEL__PRINT_DSO |
1932 EVSEL__PRINT_UNKNOWN_AS_ADDR;
202ff968 1933
d327e60c 1934 return sample__fprintf_callchain(sample, 38, print_opts, &callchain_cursor, trace->output);
202ff968
ACM
1935}
1936
092bd3cd
HB
1937static const char *errno_to_name(struct perf_evsel *evsel, int err)
1938{
1939 struct perf_env *env = perf_evsel__env(evsel);
1940 const char *arch_name = perf_env__arch(env);
1941
1942 return arch_syscalls__strerrno(arch_name, err);
1943}
1944
ba3d7dee 1945static int trace__sys_exit(struct trace *trace, struct perf_evsel *evsel,
0c82adcf 1946 union perf_event *event __maybe_unused,
ba3d7dee
ACM
1947 struct perf_sample *sample)
1948{
2c82c3ad 1949 long ret;
60c907ab 1950 u64 duration = 0;
fd2b2975 1951 bool duration_calculated = false;
2ae3a312 1952 struct thread *thread;
4b8a240e
ACM
1953 int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1, callchain_ret = 0, printed = 0;
1954 int alignment = trace->args_alignment;
bf2575c1 1955 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2ae3a312
ACM
1956 struct thread_trace *ttrace;
1957
1958 if (sc == NULL)
1959 return -1;
ba3d7dee 1960
8fb598e5 1961 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
c24ff998 1962 ttrace = thread__trace(thread, trace->output);
2ae3a312 1963 if (ttrace == NULL)
b91fc39f 1964 goto out_put;
ba3d7dee 1965
591421e1
ACM
1966 trace__fprintf_sample(trace, evsel, sample, thread);
1967
bf2575c1
DA
1968 if (trace->summary)
1969 thread__update_stats(ttrace, id, sample);
1970
77170988 1971 ret = perf_evsel__sc_tp_uint(evsel, ret, sample);
ba3d7dee 1972
6a648b53 1973 if (sc->is_open && ret >= 0 && ttrace->filename.pending_open) {
7f4f8001
ACM
1974 trace__set_fd_pathname(thread, ret, ttrace->filename.name);
1975 ttrace->filename.pending_open = false;
c522739d
ACM
1976 ++trace->stats.vfs_getname;
1977 }
1978
ae9ed035 1979 if (ttrace->entry_time) {
60c907ab 1980 duration = sample->time - ttrace->entry_time;
ae9ed035
ACM
1981 if (trace__filter_duration(trace, duration))
1982 goto out;
fd2b2975 1983 duration_calculated = true;
ae9ed035
ACM
1984 } else if (trace->duration_filter)
1985 goto out;
60c907ab 1986
5cf9c84e
ACM
1987 if (sample->callchain) {
1988 callchain_ret = trace__resolve_callchain(trace, evsel, sample, &callchain_cursor);
1989 if (callchain_ret == 0) {
1990 if (callchain_cursor.nr < trace->min_stack)
1991 goto out;
1992 callchain_ret = 1;
1993 }
1994 }
1995
0a6545bd 1996 if (trace->summary_only || (ret >= 0 && trace->failure_only))
fd2eabaf
DA
1997 goto out;
1998
fd2b2975 1999 trace__fprintf_entry_head(trace, thread, duration, duration_calculated, ttrace->entry_time, trace->output);
752fde44
ACM
2000
2001 if (ttrace->entry_pending) {
4b8a240e 2002 printed = fprintf(trace->output, "%s", ttrace->entry_str);
752fde44 2003 } else {
c24ff998
ACM
2004 fprintf(trace->output, " ... [");
2005 color_fprintf(trace->output, PERF_COLOR_YELLOW, "continued");
2006 fprintf(trace->output, "]: %s()", sc->name);
752fde44
ACM
2007 }
2008
4b8a240e
ACM
2009 printed++; /* the closing ')' */
2010
2011 if (alignment > printed)
2012 alignment -= printed;
2013 else
2014 alignment = 0;
2015
2016 fprintf(trace->output, ")%*s= ", alignment, " ");
2017
da3c9a44 2018 if (sc->fmt == NULL) {
1f63139c
ACM
2019 if (ret < 0)
2020 goto errno_print;
da3c9a44 2021signed_print:
4b8a240e 2022 fprintf(trace->output, "%ld", ret);
1f63139c
ACM
2023 } else if (ret < 0) {
2024errno_print: {
942a91ed 2025 char bf[STRERR_BUFSIZE];
c8b5f2c9 2026 const char *emsg = str_error_r(-ret, bf, sizeof(bf)),
092bd3cd 2027 *e = errno_to_name(evsel, -ret);
ba3d7dee 2028
2c83dfae 2029 fprintf(trace->output, "-1 %s (%s)", e, emsg);
1f63139c 2030 }
da3c9a44 2031 } else if (ret == 0 && sc->fmt->timeout)
2c83dfae 2032 fprintf(trace->output, "0 (Timeout)");
84486caa
ACM
2033 else if (ttrace->ret_scnprintf) {
2034 char bf[1024];
7ee57434
ACM
2035 struct syscall_arg arg = {
2036 .val = ret,
2037 .thread = thread,
2038 .trace = trace,
2039 };
2040 ttrace->ret_scnprintf(bf, sizeof(bf), &arg);
84486caa 2041 ttrace->ret_scnprintf = NULL;
4b8a240e 2042 fprintf(trace->output, "%s", bf);
84486caa 2043 } else if (sc->fmt->hexret)
4b8a240e 2044 fprintf(trace->output, "%#lx", ret);
11c8e39f
ACM
2045 else if (sc->fmt->errpid) {
2046 struct thread *child = machine__find_thread(trace->host, ret, ret);
2047
2048 if (child != NULL) {
4b8a240e 2049 fprintf(trace->output, "%ld", ret);
11c8e39f
ACM
2050 if (child->comm_set)
2051 fprintf(trace->output, " (%s)", thread__comm_str(child));
2052 thread__put(child);
2053 }
2054 } else
da3c9a44 2055 goto signed_print;
ba3d7dee 2056
c24ff998 2057 fputc('\n', trace->output);
566a0885 2058
5067a8cd
ACM
2059 /*
2060 * We only consider an 'event' for the sake of --max-events a non-filtered
2061 * sys_enter + sys_exit and other tracepoint events.
2062 */
2063 if (++trace->nr_events_printed == trace->max_events && trace->max_events != ULONG_MAX)
2064 interrupted = true;
2065
5cf9c84e
ACM
2066 if (callchain_ret > 0)
2067 trace__fprintf_callchain(trace, sample);
2068 else if (callchain_ret < 0)
2069 pr_err("Problem processing %s callchain, skipping...\n", perf_evsel__name(evsel));
ae9ed035 2070out:
752fde44 2071 ttrace->entry_pending = false;
b91fc39f
ACM
2072 err = 0;
2073out_put:
2074 thread__put(thread);
2075 return err;
ba3d7dee
ACM
2076}
2077
c522739d 2078static int trace__vfs_getname(struct trace *trace, struct perf_evsel *evsel,
0c82adcf 2079 union perf_event *event __maybe_unused,
c522739d
ACM
2080 struct perf_sample *sample)
2081{
f994592d
ACM
2082 struct thread *thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2083 struct thread_trace *ttrace;
2084 size_t filename_len, entry_str_len, to_move;
2085 ssize_t remaining_space;
2086 char *pos;
7f4f8001 2087 const char *filename = perf_evsel__rawptr(evsel, sample, "pathname");
f994592d
ACM
2088
2089 if (!thread)
2090 goto out;
2091
2092 ttrace = thread__priv(thread);
2093 if (!ttrace)
ef65e96e 2094 goto out_put;
f994592d 2095
7f4f8001 2096 filename_len = strlen(filename);
39f0e7a8 2097 if (filename_len == 0)
ef65e96e 2098 goto out_put;
7f4f8001
ACM
2099
2100 if (ttrace->filename.namelen < filename_len) {
2101 char *f = realloc(ttrace->filename.name, filename_len + 1);
2102
2103 if (f == NULL)
ef65e96e 2104 goto out_put;
7f4f8001
ACM
2105
2106 ttrace->filename.namelen = filename_len;
2107 ttrace->filename.name = f;
2108 }
2109
2110 strcpy(ttrace->filename.name, filename);
2111 ttrace->filename.pending_open = true;
2112
f994592d 2113 if (!ttrace->filename.ptr)
ef65e96e 2114 goto out_put;
f994592d
ACM
2115
2116 entry_str_len = strlen(ttrace->entry_str);
2117 remaining_space = trace__entry_str_size - entry_str_len - 1; /* \0 */
2118 if (remaining_space <= 0)
ef65e96e 2119 goto out_put;
f994592d 2120
f994592d
ACM
2121 if (filename_len > (size_t)remaining_space) {
2122 filename += filename_len - remaining_space;
2123 filename_len = remaining_space;
2124 }
2125
2126 to_move = entry_str_len - ttrace->filename.entry_str_pos + 1; /* \0 */
2127 pos = ttrace->entry_str + ttrace->filename.entry_str_pos;
2128 memmove(pos + filename_len, pos, to_move);
2129 memcpy(pos, filename, filename_len);
2130
2131 ttrace->filename.ptr = 0;
2132 ttrace->filename.entry_str_pos = 0;
ef65e96e
ACM
2133out_put:
2134 thread__put(thread);
f994592d 2135out:
c522739d
ACM
2136 return 0;
2137}
2138
1302d88e 2139static int trace__sched_stat_runtime(struct trace *trace, struct perf_evsel *evsel,
0c82adcf 2140 union perf_event *event __maybe_unused,
1302d88e
ACM
2141 struct perf_sample *sample)
2142{
2143 u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
2144 double runtime_ms = (double)runtime / NSEC_PER_MSEC;
8fb598e5 2145 struct thread *thread = machine__findnew_thread(trace->host,
314add6b
AH
2146 sample->pid,
2147 sample->tid);
c24ff998 2148 struct thread_trace *ttrace = thread__trace(thread, trace->output);
1302d88e
ACM
2149
2150 if (ttrace == NULL)
2151 goto out_dump;
2152
2153 ttrace->runtime_ms += runtime_ms;
2154 trace->runtime_ms += runtime_ms;
ef65e96e 2155out_put:
b91fc39f 2156 thread__put(thread);
1302d88e
ACM
2157 return 0;
2158
2159out_dump:
c24ff998 2160 fprintf(trace->output, "%s: comm=%s,pid=%u,runtime=%" PRIu64 ",vruntime=%" PRIu64 ")\n",
1302d88e
ACM
2161 evsel->name,
2162 perf_evsel__strval(evsel, sample, "comm"),
2163 (pid_t)perf_evsel__intval(evsel, sample, "pid"),
2164 runtime,
2165 perf_evsel__intval(evsel, sample, "vruntime"));
ef65e96e 2166 goto out_put;
1302d88e
ACM
2167}
2168
923d0c9a
ACM
2169static int bpf_output__printer(enum binary_printer_ops op,
2170 unsigned int val, void *extra __maybe_unused, FILE *fp)
1d6c9407 2171{
1d6c9407
WN
2172 unsigned char ch = (unsigned char)val;
2173
2174 switch (op) {
2175 case BINARY_PRINT_CHAR_DATA:
923d0c9a 2176 return fprintf(fp, "%c", isprint(ch) ? ch : '.');
1d6c9407
WN
2177 case BINARY_PRINT_DATA_BEGIN:
2178 case BINARY_PRINT_LINE_BEGIN:
2179 case BINARY_PRINT_ADDR:
2180 case BINARY_PRINT_NUM_DATA:
2181 case BINARY_PRINT_NUM_PAD:
2182 case BINARY_PRINT_SEP:
2183 case BINARY_PRINT_CHAR_PAD:
2184 case BINARY_PRINT_LINE_END:
2185 case BINARY_PRINT_DATA_END:
2186 default:
2187 break;
2188 }
923d0c9a
ACM
2189
2190 return 0;
1d6c9407
WN
2191}
2192
2193static void bpf_output__fprintf(struct trace *trace,
2194 struct perf_sample *sample)
2195{
923d0c9a
ACM
2196 binary__fprintf(sample->raw_data, sample->raw_size, 8,
2197 bpf_output__printer, NULL, trace->output);
5067a8cd 2198 ++trace->nr_events_printed;
1d6c9407
WN
2199}
2200
14a052df
ACM
2201static int trace__event_handler(struct trace *trace, struct perf_evsel *evsel,
2202 union perf_event *event __maybe_unused,
2203 struct perf_sample *sample)
2204{
a9c5e6c1 2205 struct thread *thread;
7ad35615 2206 int callchain_ret = 0;
a9c5e6c1
ACM
2207 /*
2208 * Check if we called perf_evsel__disable(evsel) due to, for instance,
2209 * this event's max_events having been hit and this is an entry coming
2210 * from the ring buffer that we should discard, since the max events
2211 * have already been considered/printed.
2212 */
2213 if (evsel->disabled)
2214 return 0;
2215
2216 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
7ad35615
ACM
2217
2218 if (sample->callchain) {
2219 callchain_ret = trace__resolve_callchain(trace, evsel, sample, &callchain_cursor);
2220 if (callchain_ret == 0) {
2221 if (callchain_cursor.nr < trace->min_stack)
2222 goto out;
2223 callchain_ret = 1;
2224 }
2225 }
2226
522283fe 2227 trace__printf_interrupted_entry(trace);
14a052df 2228 trace__fprintf_tstamp(trace, sample->time, trace->output);
0808921a 2229
42e4a52d 2230 if (trace->trace_syscalls && trace->show_duration)
0808921a
ACM
2231 fprintf(trace->output, "( ): ");
2232
c4191e55
ACM
2233 if (thread)
2234 trace__fprintf_comm_tid(trace, thread, trace->output);
2235
1cdf618f
ACM
2236 if (evsel == trace->syscalls.events.augmented) {
2237 int id = perf_evsel__sc_tp_uint(evsel, id, sample);
2238 struct syscall *sc = trace__syscall_info(trace, evsel, id);
2239
2240 if (sc) {
c4191e55
ACM
2241 fprintf(trace->output, "%s(", sc->name);
2242 trace__fprintf_sys_enter(trace, evsel, sample);
2243 fputc(')', trace->output);
2244 goto newline;
1cdf618f
ACM
2245 }
2246
2247 /*
2248 * XXX: Not having the associated syscall info or not finding/adding
2249 * the thread should never happen, but if it does...
2250 * fall thru and print it as a bpf_output event.
2251 */
2252 }
2253
0808921a 2254 fprintf(trace->output, "%s:", evsel->name);
14a052df 2255
1d6c9407 2256 if (perf_evsel__is_bpf_output(evsel)) {
1cdf618f 2257 bpf_output__fprintf(trace, sample);
1d6c9407 2258 } else if (evsel->tp_format) {
a98392bb
ACM
2259 if (strncmp(evsel->tp_format->name, "sys_enter_", 10) ||
2260 trace__fprintf_sys_enter(trace, evsel, sample)) {
2261 event_format__fprintf(evsel->tp_format, sample->cpu,
2262 sample->raw_data, sample->raw_size,
2263 trace->output);
5067a8cd 2264 ++trace->nr_events_printed;
a9c5e6c1
ACM
2265
2266 if (evsel->max_events != ULONG_MAX && ++evsel->nr_events_printed == evsel->max_events) {
2267 perf_evsel__disable(evsel);
2268 perf_evsel__close(evsel);
2269 }
a98392bb 2270 }
14a052df
ACM
2271 }
2272
1cdf618f 2273newline:
51125a29 2274 fprintf(trace->output, "\n");
202ff968 2275
7ad35615
ACM
2276 if (callchain_ret > 0)
2277 trace__fprintf_callchain(trace, sample);
2278 else if (callchain_ret < 0)
2279 pr_err("Problem processing %s callchain, skipping...\n", perf_evsel__name(evsel));
2280out:
a937c665 2281 thread__put(thread);
14a052df
ACM
2282 return 0;
2283}
2284
598d02c5
SF
2285static void print_location(FILE *f, struct perf_sample *sample,
2286 struct addr_location *al,
2287 bool print_dso, bool print_sym)
2288{
2289
bb963e16 2290 if ((verbose > 0 || print_dso) && al->map)
598d02c5
SF
2291 fprintf(f, "%s@", al->map->dso->long_name);
2292
bb963e16 2293 if ((verbose > 0 || print_sym) && al->sym)
4414a3c5 2294 fprintf(f, "%s+0x%" PRIx64, al->sym->name,
598d02c5
SF
2295 al->addr - al->sym->start);
2296 else if (al->map)
4414a3c5 2297 fprintf(f, "0x%" PRIx64, al->addr);
598d02c5 2298 else
4414a3c5 2299 fprintf(f, "0x%" PRIx64, sample->addr);
598d02c5
SF
2300}
2301
2302static int trace__pgfault(struct trace *trace,
2303 struct perf_evsel *evsel,
473398a2 2304 union perf_event *event __maybe_unused,
598d02c5
SF
2305 struct perf_sample *sample)
2306{
2307 struct thread *thread;
598d02c5
SF
2308 struct addr_location al;
2309 char map_type = 'd';
a2ea67d7 2310 struct thread_trace *ttrace;
b91fc39f 2311 int err = -1;
1df54290 2312 int callchain_ret = 0;
598d02c5
SF
2313
2314 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
1df54290
ACM
2315
2316 if (sample->callchain) {
2317 callchain_ret = trace__resolve_callchain(trace, evsel, sample, &callchain_cursor);
2318 if (callchain_ret == 0) {
2319 if (callchain_cursor.nr < trace->min_stack)
2320 goto out_put;
2321 callchain_ret = 1;
2322 }
2323 }
2324
a2ea67d7
SF
2325 ttrace = thread__trace(thread, trace->output);
2326 if (ttrace == NULL)
b91fc39f 2327 goto out_put;
a2ea67d7
SF
2328
2329 if (evsel->attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)
2330 ttrace->pfmaj++;
2331 else
2332 ttrace->pfmin++;
2333
2334 if (trace->summary_only)
b91fc39f 2335 goto out;
598d02c5 2336
4546263d 2337 thread__find_symbol(thread, sample->cpumode, sample->ip, &al);
598d02c5 2338
fd2b2975 2339 trace__fprintf_entry_head(trace, thread, 0, true, sample->time, trace->output);
598d02c5
SF
2340
2341 fprintf(trace->output, "%sfault [",
2342 evsel->attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ ?
2343 "maj" : "min");
2344
2345 print_location(trace->output, sample, &al, false, true);
2346
2347 fprintf(trace->output, "] => ");
2348
117d3c24 2349 thread__find_symbol(thread, sample->cpumode, sample->addr, &al);
598d02c5
SF
2350
2351 if (!al.map) {
4546263d 2352 thread__find_symbol(thread, sample->cpumode, sample->addr, &al);
598d02c5
SF
2353
2354 if (al.map)
2355 map_type = 'x';
2356 else
2357 map_type = '?';
2358 }
2359
2360 print_location(trace->output, sample, &al, true, false);
2361
2362 fprintf(trace->output, " (%c%c)\n", map_type, al.level);
0c3a6ef4 2363
1df54290
ACM
2364 if (callchain_ret > 0)
2365 trace__fprintf_callchain(trace, sample);
2366 else if (callchain_ret < 0)
2367 pr_err("Problem processing %s callchain, skipping...\n", perf_evsel__name(evsel));
5067a8cd
ACM
2368
2369 ++trace->nr_events_printed;
b91fc39f
ACM
2370out:
2371 err = 0;
2372out_put:
2373 thread__put(thread);
2374 return err;
598d02c5
SF
2375}
2376
e6001980 2377static void trace__set_base_time(struct trace *trace,
8a07a809 2378 struct perf_evsel *evsel,
e6001980
ACM
2379 struct perf_sample *sample)
2380{
8a07a809
ACM
2381 /*
2382 * BPF events were not setting PERF_SAMPLE_TIME, so be more robust
2383 * and don't use sample->time unconditionally, we may end up having
2384 * some other event in the future without PERF_SAMPLE_TIME for good
2385 * reason, i.e. we may not be interested in its timestamps, just in
2386 * it taking place, picking some piece of information when it
2387 * appears in our event stream (vfs_getname comes to mind).
2388 */
2389 if (trace->base_time == 0 && !trace->full_time &&
2390 (evsel->attr.sample_type & PERF_SAMPLE_TIME))
e6001980
ACM
2391 trace->base_time = sample->time;
2392}
2393
6810fc91 2394static int trace__process_sample(struct perf_tool *tool,
0c82adcf 2395 union perf_event *event,
6810fc91
DA
2396 struct perf_sample *sample,
2397 struct perf_evsel *evsel,
2398 struct machine *machine __maybe_unused)
2399{
2400 struct trace *trace = container_of(tool, struct trace, tool);
aa07df6e 2401 struct thread *thread;
6810fc91
DA
2402 int err = 0;
2403
744a9719 2404 tracepoint_handler handler = evsel->handler;
6810fc91 2405
aa07df6e
DA
2406 thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2407 if (thread && thread__is_filtered(thread))
ef65e96e 2408 goto out;
bdc89661 2409
e6001980 2410 trace__set_base_time(trace, evsel, sample);
6810fc91 2411
3160565f
DA
2412 if (handler) {
2413 ++trace->nr_events;
0c82adcf 2414 handler(trace, evsel, event, sample);
3160565f 2415 }
ef65e96e
ACM
2416out:
2417 thread__put(thread);
6810fc91
DA
2418 return err;
2419}
2420
1e28fe0a 2421static int trace__record(struct trace *trace, int argc, const char **argv)
5e2485b1
DA
2422{
2423 unsigned int rec_argc, i, j;
2424 const char **rec_argv;
2425 const char * const record_args[] = {
2426 "record",
2427 "-R",
2428 "-m", "1024",
2429 "-c", "1",
5e2485b1
DA
2430 };
2431
1e28fe0a
SF
2432 const char * const sc_args[] = { "-e", };
2433 unsigned int sc_args_nr = ARRAY_SIZE(sc_args);
2434 const char * const majpf_args[] = { "-e", "major-faults" };
2435 unsigned int majpf_args_nr = ARRAY_SIZE(majpf_args);
2436 const char * const minpf_args[] = { "-e", "minor-faults" };
2437 unsigned int minpf_args_nr = ARRAY_SIZE(minpf_args);
2438
9aca7f17 2439 /* +1 is for the event string below */
1e28fe0a
SF
2440 rec_argc = ARRAY_SIZE(record_args) + sc_args_nr + 1 +
2441 majpf_args_nr + minpf_args_nr + argc;
5e2485b1
DA
2442 rec_argv = calloc(rec_argc + 1, sizeof(char *));
2443
2444 if (rec_argv == NULL)
2445 return -ENOMEM;
2446
1e28fe0a 2447 j = 0;
5e2485b1 2448 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1e28fe0a
SF
2449 rec_argv[j++] = record_args[i];
2450
e281a960
SF
2451 if (trace->trace_syscalls) {
2452 for (i = 0; i < sc_args_nr; i++)
2453 rec_argv[j++] = sc_args[i];
2454
2455 /* event string may be different for older kernels - e.g., RHEL6 */
2456 if (is_valid_tracepoint("raw_syscalls:sys_enter"))
2457 rec_argv[j++] = "raw_syscalls:sys_enter,raw_syscalls:sys_exit";
2458 else if (is_valid_tracepoint("syscalls:sys_enter"))
2459 rec_argv[j++] = "syscalls:sys_enter,syscalls:sys_exit";
2460 else {
2461 pr_err("Neither raw_syscalls nor syscalls events exist.\n");
c896f85a 2462 free(rec_argv);
e281a960
SF
2463 return -1;
2464 }
9aca7f17 2465 }
9aca7f17 2466
1e28fe0a
SF
2467 if (trace->trace_pgfaults & TRACE_PFMAJ)
2468 for (i = 0; i < majpf_args_nr; i++)
2469 rec_argv[j++] = majpf_args[i];
2470
2471 if (trace->trace_pgfaults & TRACE_PFMIN)
2472 for (i = 0; i < minpf_args_nr; i++)
2473 rec_argv[j++] = minpf_args[i];
2474
2475 for (i = 0; i < (unsigned int)argc; i++)
2476 rec_argv[j++] = argv[i];
5e2485b1 2477
b0ad8ea6 2478 return cmd_record(j, rec_argv);
5e2485b1
DA
2479}
2480
bf2575c1
DA
2481static size_t trace__fprintf_thread_summary(struct trace *trace, FILE *fp);
2482
08c98776 2483static bool perf_evlist__add_vfs_getname(struct perf_evlist *evlist)
c522739d 2484{
ef503831 2485 struct perf_evsel *evsel = perf_evsel__newtp("probe", "vfs_getname");
8dd2a131
JO
2486
2487 if (IS_ERR(evsel))
08c98776 2488 return false;
c522739d
ACM
2489
2490 if (perf_evsel__field(evsel, "pathname") == NULL) {
2491 perf_evsel__delete(evsel);
08c98776 2492 return false;
c522739d
ACM
2493 }
2494
744a9719 2495 evsel->handler = trace__vfs_getname;
c522739d 2496 perf_evlist__add(evlist, evsel);
08c98776 2497 return true;
c522739d
ACM
2498}
2499
0ae537cb 2500static struct perf_evsel *perf_evsel__new_pgfault(u64 config)
598d02c5
SF
2501{
2502 struct perf_evsel *evsel;
2503 struct perf_event_attr attr = {
2504 .type = PERF_TYPE_SOFTWARE,
2505 .mmap_data = 1,
598d02c5
SF
2506 };
2507
2508 attr.config = config;
0524798c 2509 attr.sample_period = 1;
598d02c5
SF
2510
2511 event_attr_init(&attr);
2512
2513 evsel = perf_evsel__new(&attr);
0ae537cb
ACM
2514 if (evsel)
2515 evsel->handler = trace__pgfault;
598d02c5 2516
0ae537cb 2517 return evsel;
598d02c5
SF
2518}
2519
ddbb1b13
ACM
2520static void trace__handle_event(struct trace *trace, union perf_event *event, struct perf_sample *sample)
2521{
2522 const u32 type = event->header.type;
2523 struct perf_evsel *evsel;
2524
ddbb1b13
ACM
2525 if (type != PERF_RECORD_SAMPLE) {
2526 trace__process_event(trace, trace->host, event, sample);
2527 return;
2528 }
2529
2530 evsel = perf_evlist__id2evsel(trace->evlist, sample->id);
2531 if (evsel == NULL) {
2532 fprintf(trace->output, "Unknown tp ID %" PRIu64 ", skipping...\n", sample->id);
2533 return;
2534 }
2535
e6001980
ACM
2536 trace__set_base_time(trace, evsel, sample);
2537
ddbb1b13
ACM
2538 if (evsel->attr.type == PERF_TYPE_TRACEPOINT &&
2539 sample->raw_data == NULL) {
2540 fprintf(trace->output, "%s sample with no payload for tid: %d, cpu %d, raw_size=%d, skipping...\n",
2541 perf_evsel__name(evsel), sample->tid,
2542 sample->cpu, sample->raw_size);
2543 } else {
2544 tracepoint_handler handler = evsel->handler;
2545 handler(trace, evsel, event, sample);
2546 }
5067a8cd
ACM
2547
2548 if (trace->nr_events_printed >= trace->max_events && trace->max_events != ULONG_MAX)
2549 interrupted = true;
ddbb1b13
ACM
2550}
2551
c27366f0
ACM
2552static int trace__add_syscall_newtp(struct trace *trace)
2553{
2554 int ret = -1;
2555 struct perf_evlist *evlist = trace->evlist;
2556 struct perf_evsel *sys_enter, *sys_exit;
2557
63f11c80 2558 sys_enter = perf_evsel__raw_syscall_newtp("sys_enter", trace__sys_enter);
c27366f0
ACM
2559 if (sys_enter == NULL)
2560 goto out;
2561
2562 if (perf_evsel__init_sc_tp_ptr_field(sys_enter, args))
2563 goto out_delete_sys_enter;
2564
63f11c80 2565 sys_exit = perf_evsel__raw_syscall_newtp("sys_exit", trace__sys_exit);
c27366f0
ACM
2566 if (sys_exit == NULL)
2567 goto out_delete_sys_enter;
2568
2569 if (perf_evsel__init_sc_tp_uint_field(sys_exit, ret))
2570 goto out_delete_sys_exit;
2571
08e26396
ACM
2572 perf_evsel__config_callchain(sys_enter, &trace->opts, &callchain_param);
2573 perf_evsel__config_callchain(sys_exit, &trace->opts, &callchain_param);
2574
c27366f0
ACM
2575 perf_evlist__add(evlist, sys_enter);
2576 perf_evlist__add(evlist, sys_exit);
2577
2ddd5c04 2578 if (callchain_param.enabled && !trace->kernel_syscallchains) {
44621819
ACM
2579 /*
2580 * We're interested only in the user space callchain
2581 * leading to the syscall, allow overriding that for
2582 * debugging reasons using --kernel_syscall_callchains
2583 */
2584 sys_exit->attr.exclude_callchain_kernel = 1;
2585 }
2586
8b3ce757
ACM
2587 trace->syscalls.events.sys_enter = sys_enter;
2588 trace->syscalls.events.sys_exit = sys_exit;
c27366f0
ACM
2589
2590 ret = 0;
2591out:
2592 return ret;
2593
2594out_delete_sys_exit:
2595 perf_evsel__delete_priv(sys_exit);
2596out_delete_sys_enter:
2597 perf_evsel__delete_priv(sys_enter);
2598 goto out;
2599}
2600
246fbe03 2601static int trace__set_ev_qualifier_tp_filter(struct trace *trace)
19867b61
ACM
2602{
2603 int err = -1;
b15d0a4c 2604 struct perf_evsel *sys_exit;
19867b61
ACM
2605 char *filter = asprintf_expr_inout_ints("id", !trace->not_ev_qualifier,
2606 trace->ev_qualifier_ids.nr,
2607 trace->ev_qualifier_ids.entries);
2608
2609 if (filter == NULL)
2610 goto out_enomem;
2611
3541c034
MP
2612 if (!perf_evsel__append_tp_filter(trace->syscalls.events.sys_enter,
2613 filter)) {
b15d0a4c 2614 sys_exit = trace->syscalls.events.sys_exit;
3541c034 2615 err = perf_evsel__append_tp_filter(sys_exit, filter);
b15d0a4c 2616 }
19867b61
ACM
2617
2618 free(filter);
2619out:
2620 return err;
2621out_enomem:
2622 errno = ENOMEM;
2623 goto out;
2624}
c27366f0 2625
b27b38ed
ACM
2626#ifdef HAVE_LIBBPF_SUPPORT
2627static int trace__set_ev_qualifier_bpf_filter(struct trace *trace)
2628{
2629 int fd = bpf_map__fd(trace->syscalls.map);
bbab50dd
ACM
2630 struct bpf_map_syscall_entry value = {
2631 .enabled = !trace->not_ev_qualifier,
2632 };
b27b38ed
ACM
2633 int err = 0;
2634 size_t i;
2635
2636 for (i = 0; i < trace->ev_qualifier_ids.nr; ++i) {
2637 int key = trace->ev_qualifier_ids.entries[i];
2638
2639 err = bpf_map_update_elem(fd, &key, &value, BPF_EXIST);
2640 if (err)
2641 break;
2642 }
2643
2644 return err;
2645}
2646
2647static int __trace__init_syscalls_bpf_map(struct trace *trace, bool enabled)
2648{
2649 int fd = bpf_map__fd(trace->syscalls.map);
bbab50dd
ACM
2650 struct bpf_map_syscall_entry value = {
2651 .enabled = enabled,
2652 };
b27b38ed
ACM
2653 int err = 0, key;
2654
2655 for (key = 0; key < trace->sctbl->syscalls.nr_entries; ++key) {
bbab50dd 2656 err = bpf_map_update_elem(fd, &key, &value, BPF_ANY);
b27b38ed
ACM
2657 if (err)
2658 break;
2659 }
2660
2661 return err;
2662}
2663
2664static int trace__init_syscalls_bpf_map(struct trace *trace)
2665{
2666 bool enabled = true;
2667
2668 if (trace->ev_qualifier_ids.nr)
2669 enabled = trace->not_ev_qualifier;
2670
2671 return __trace__init_syscalls_bpf_map(trace, enabled);
2672}
2673#else
2674static int trace__set_ev_qualifier_bpf_filter(struct trace *trace __maybe_unused)
2675{
2676 return 0;
2677}
2678
2679static int trace__init_syscalls_bpf_map(struct trace *trace __maybe_unused)
2680{
2681 return 0;
2682}
2683#endif // HAVE_LIBBPF_SUPPORT
2684
246fbe03
ACM
2685static int trace__set_ev_qualifier_filter(struct trace *trace)
2686{
b27b38ed
ACM
2687 if (trace->syscalls.map)
2688 return trace__set_ev_qualifier_bpf_filter(trace);
246fbe03
ACM
2689 return trace__set_ev_qualifier_tp_filter(trace);
2690}
2691
a9964c43
ACM
2692static int bpf_map__set_filter_pids(struct bpf_map *map __maybe_unused,
2693 size_t npids __maybe_unused, pid_t *pids __maybe_unused)
2694{
2695 int err = 0;
2696#ifdef HAVE_LIBBPF_SUPPORT
2697 bool value = true;
2698 int map_fd = bpf_map__fd(map);
2699 size_t i;
2700
2701 for (i = 0; i < npids; ++i) {
2702 err = bpf_map_update_elem(map_fd, &pids[i], &value, BPF_ANY);
2703 if (err)
2704 break;
2705 }
2706#endif
2707 return err;
2708}
2709
dd1a5037
ACM
2710static int trace__set_filter_loop_pids(struct trace *trace)
2711{
a9964c43 2712 unsigned int nr = 1, err;
dd1a5037
ACM
2713 pid_t pids[32] = {
2714 getpid(),
2715 };
082ab9a1
ACM
2716 struct thread *thread = machine__find_thread(trace->host, pids[0], pids[0]);
2717
2718 while (thread && nr < ARRAY_SIZE(pids)) {
2719 struct thread *parent = machine__find_thread(trace->host, thread->ppid, thread->ppid);
2720
2721 if (parent == NULL)
2722 break;
2723
2724 if (!strcmp(thread__comm_str(parent), "sshd")) {
2725 pids[nr++] = parent->tid;
2726 break;
2727 }
2728 thread = parent;
2729 }
dd1a5037 2730
a9964c43
ACM
2731 err = perf_evlist__set_tp_filter_pids(trace->evlist, nr, pids);
2732 if (!err && trace->filter_pids.map)
2733 err = bpf_map__set_filter_pids(trace->filter_pids.map, nr, pids);
2734
2735 return err;
2736}
2737
2738static int trace__set_filter_pids(struct trace *trace)
2739{
2740 int err = 0;
2741 /*
2742 * Better not use !target__has_task() here because we need to cover the
2743 * case where no threads were specified in the command line, but a
2744 * workload was, and in that case we will fill in the thread_map when
2745 * we fork the workload in perf_evlist__prepare_workload.
2746 */
2747 if (trace->filter_pids.nr > 0) {
2748 err = perf_evlist__set_tp_filter_pids(trace->evlist, trace->filter_pids.nr,
2749 trace->filter_pids.entries);
2750 if (!err && trace->filter_pids.map) {
2751 err = bpf_map__set_filter_pids(trace->filter_pids.map, trace->filter_pids.nr,
2752 trace->filter_pids.entries);
2753 }
2754 } else if (thread_map__pid(trace->evlist->threads, 0) == -1) {
2755 err = trace__set_filter_loop_pids(trace);
2756 }
2757
2758 return err;
dd1a5037
ACM
2759}
2760
7ba61524 2761static int __trace__deliver_event(struct trace *trace, union perf_event *event)
1f44b3e2
JO
2762{
2763 struct perf_evlist *evlist = trace->evlist;
2764 struct perf_sample sample;
2765 int err;
2766
2767 err = perf_evlist__parse_sample(evlist, event, &sample);
2768 if (err)
2769 fprintf(trace->output, "Can't parse sample, err = %d, skipping...\n", err);
2770 else
2771 trace__handle_event(trace, event, &sample);
2772
2773 return 0;
2774}
2775
a761a8d1 2776static int __trace__flush_events(struct trace *trace)
028713aa
JO
2777{
2778 u64 first = ordered_events__first_time(&trace->oe.data);
2779 u64 flush = trace->oe.last - NSEC_PER_SEC;
2780
2781 /* Is there some thing to flush.. */
2782 if (first && first < flush)
2783 return ordered_events__flush_time(&trace->oe.data, flush);
2784
2785 return 0;
2786}
2787
a761a8d1
ACM
2788static int trace__flush_events(struct trace *trace)
2789{
2790 return !trace->sort_events ? 0 : __trace__flush_events(trace);
2791}
2792
7ba61524 2793static int trace__deliver_event(struct trace *trace, union perf_event *event)
028713aa 2794{
028713aa
JO
2795 int err;
2796
a761a8d1
ACM
2797 if (!trace->sort_events)
2798 return __trace__deliver_event(trace, event);
2799
2800 err = perf_evlist__parse_sample_timestamp(trace->evlist, event, &trace->oe.last);
028713aa
JO
2801 if (err && err != -1)
2802 return err;
2803
2804 err = ordered_events__queue(&trace->oe.data, event, trace->oe.last, 0);
2805 if (err)
2806 return err;
2807
7ba61524 2808 return trace__flush_events(trace);
028713aa
JO
2809}
2810
2811static int ordered_events__deliver_event(struct ordered_events *oe,
2812 struct ordered_event *event)
2813{
2814 struct trace *trace = container_of(oe, struct trace, oe.data);
2815
7ba61524 2816 return __trace__deliver_event(trace, event->event);
028713aa
JO
2817}
2818
f15eb531 2819static int trace__run(struct trace *trace, int argc, const char **argv)
514f1c67 2820{
14a052df 2821 struct perf_evlist *evlist = trace->evlist;
0ae537cb 2822 struct perf_evsel *evsel, *pgfault_maj = NULL, *pgfault_min = NULL;
efd5745e
ACM
2823 int err = -1, i;
2824 unsigned long before;
f15eb531 2825 const bool forks = argc > 0;
46fb3c21 2826 bool draining = false;
514f1c67 2827
75b757ca
ACM
2828 trace->live = true;
2829
0df50e0b
ACM
2830 if (!trace->raw_augmented_syscalls) {
2831 if (trace->trace_syscalls && trace__add_syscall_newtp(trace))
2832 goto out_error_raw_syscalls;
514f1c67 2833
0df50e0b
ACM
2834 if (trace->trace_syscalls)
2835 trace->vfs_getname = perf_evlist__add_vfs_getname(evlist);
2836 }
c522739d 2837
0ae537cb
ACM
2838 if ((trace->trace_pgfaults & TRACE_PFMAJ)) {
2839 pgfault_maj = perf_evsel__new_pgfault(PERF_COUNT_SW_PAGE_FAULTS_MAJ);
2840 if (pgfault_maj == NULL)
2841 goto out_error_mem;
08e26396 2842 perf_evsel__config_callchain(pgfault_maj, &trace->opts, &callchain_param);
0ae537cb 2843 perf_evlist__add(evlist, pgfault_maj);
e2726d99 2844 }
598d02c5 2845
0ae537cb
ACM
2846 if ((trace->trace_pgfaults & TRACE_PFMIN)) {
2847 pgfault_min = perf_evsel__new_pgfault(PERF_COUNT_SW_PAGE_FAULTS_MIN);
2848 if (pgfault_min == NULL)
2849 goto out_error_mem;
08e26396 2850 perf_evsel__config_callchain(pgfault_min, &trace->opts, &callchain_param);
0ae537cb
ACM
2851 perf_evlist__add(evlist, pgfault_min);
2852 }
598d02c5 2853
1302d88e 2854 if (trace->sched &&
2cc990ba
ACM
2855 perf_evlist__add_newtp(evlist, "sched", "sched_stat_runtime",
2856 trace__sched_stat_runtime))
2857 goto out_error_sched_stat_runtime;
1302d88e 2858
9ea42ba4
ACM
2859 /*
2860 * If a global cgroup was set, apply it to all the events without an
2861 * explicit cgroup. I.e.:
2862 *
2863 * trace -G A -e sched:*switch
2864 *
2865 * Will set all raw_syscalls:sys_{enter,exit}, pgfault, vfs_getname, etc
2866 * _and_ sched:sched_switch to the 'A' cgroup, while:
2867 *
2868 * trace -e sched:*switch -G A
2869 *
2870 * will only set the sched:sched_switch event to the 'A' cgroup, all the
2871 * other events (raw_syscalls:sys_{enter,exit}, etc are left "without"
2872 * a cgroup (on the root cgroup, sys wide, etc).
2873 *
2874 * Multiple cgroups:
2875 *
2876 * trace -G A -e sched:*switch -G B
2877 *
2878 * the syscall ones go to the 'A' cgroup, the sched:sched_switch goes
2879 * to the 'B' cgroup.
2880 *
2881 * evlist__set_default_cgroup() grabs a reference of the passed cgroup
2882 * only for the evsels still without a cgroup, i.e. evsel->cgroup == NULL.
2883 */
2884 if (trace->cgroup)
2885 evlist__set_default_cgroup(trace->evlist, trace->cgroup);
2886
514f1c67
ACM
2887 err = perf_evlist__create_maps(evlist, &trace->opts.target);
2888 if (err < 0) {
c24ff998 2889 fprintf(trace->output, "Problems parsing the target to trace, check your options!\n");
514f1c67
ACM
2890 goto out_delete_evlist;
2891 }
2892
752fde44
ACM
2893 err = trace__symbols_init(trace, evlist);
2894 if (err < 0) {
c24ff998 2895 fprintf(trace->output, "Problems initializing symbol libraries!\n");
03ad9747 2896 goto out_delete_evlist;
752fde44
ACM
2897 }
2898
75d50117 2899 perf_evlist__config(evlist, &trace->opts, &callchain_param);
fde54b78 2900
f15eb531
NK
2901 signal(SIGCHLD, sig_handler);
2902 signal(SIGINT, sig_handler);
2903
2904 if (forks) {
6ef73ec4 2905 err = perf_evlist__prepare_workload(evlist, &trace->opts.target,
735f7e0b 2906 argv, false, NULL);
f15eb531 2907 if (err < 0) {
c24ff998 2908 fprintf(trace->output, "Couldn't run the workload!\n");
03ad9747 2909 goto out_delete_evlist;
f15eb531
NK
2910 }
2911 }
2912
514f1c67 2913 err = perf_evlist__open(evlist);
a8f23d8f
ACM
2914 if (err < 0)
2915 goto out_error_open;
514f1c67 2916
ba504235
WN
2917 err = bpf__apply_obj_config();
2918 if (err) {
2919 char errbuf[BUFSIZ];
2920
2921 bpf__strerror_apply_obj_config(err, errbuf, sizeof(errbuf));
2922 pr_err("ERROR: Apply config to BPF failed: %s\n",
2923 errbuf);
2924 goto out_error_open;
2925 }
2926
a9964c43 2927 err = trace__set_filter_pids(trace);
94ad89bc
ACM
2928 if (err < 0)
2929 goto out_error_mem;
2930
b27b38ed
ACM
2931 if (trace->syscalls.map)
2932 trace__init_syscalls_bpf_map(trace);
2933
19867b61
ACM
2934 if (trace->ev_qualifier_ids.nr > 0) {
2935 err = trace__set_ev_qualifier_filter(trace);
2936 if (err < 0)
2937 goto out_errno;
19867b61 2938
0df50e0b
ACM
2939 if (trace->syscalls.events.sys_exit) {
2940 pr_debug("event qualifier tracepoint filter: %s\n",
2941 trace->syscalls.events.sys_exit->filter);
2942 }
2e5e5f87 2943 }
19867b61 2944
94ad89bc
ACM
2945 err = perf_evlist__apply_filters(evlist, &evsel);
2946 if (err < 0)
2947 goto out_error_apply_filters;
241b057c 2948
f74b9d3a 2949 err = perf_evlist__mmap(evlist, trace->opts.mmap_pages);
e09b18d4
ACM
2950 if (err < 0)
2951 goto out_error_mmap;
514f1c67 2952
e36b7821 2953 if (!target__none(&trace->opts.target) && !trace->opts.initial_delay)
cb24d01d
ACM
2954 perf_evlist__enable(evlist);
2955
f15eb531
NK
2956 if (forks)
2957 perf_evlist__start_workload(evlist);
2958
e36b7821
AB
2959 if (trace->opts.initial_delay) {
2960 usleep(trace->opts.initial_delay * 1000);
2961 perf_evlist__enable(evlist);
2962 }
2963
e13798c7 2964 trace->multiple_threads = thread_map__pid(evlist->threads, 0) == -1 ||
42052bea
ACM
2965 evlist->threads->nr > 1 ||
2966 perf_evlist__first(evlist)->attr.inherit;
bd3dda9a
ACM
2967
2968 /*
2969 * Now that we already used evsel->attr to ask the kernel to setup the
2970 * events, lets reuse evsel->attr.sample_max_stack as the limit in
2971 * trace__resolve_callchain(), allowing per-event max-stack settings
adba1634 2972 * to override an explicitly set --max-stack global setting.
bd3dda9a
ACM
2973 */
2974 evlist__for_each_entry(evlist, evsel) {
27de9b2b 2975 if (evsel__has_callchain(evsel) &&
bd3dda9a
ACM
2976 evsel->attr.sample_max_stack == 0)
2977 evsel->attr.sample_max_stack = trace->max_stack;
2978 }
514f1c67 2979again:
efd5745e 2980 before = trace->nr_events;
514f1c67
ACM
2981
2982 for (i = 0; i < evlist->nr_mmaps; i++) {
2983 union perf_event *event;
d7f55c62 2984 struct perf_mmap *md;
514f1c67 2985
d7f55c62 2986 md = &evlist->mmap[i];
b9bae2c8 2987 if (perf_mmap__read_init(md) < 0)
d7f55c62
KL
2988 continue;
2989
0019dc87 2990 while ((event = perf_mmap__read_event(md)) != NULL) {
efd5745e 2991 ++trace->nr_events;
514f1c67 2992
7ba61524 2993 err = trace__deliver_event(trace, event);
028713aa
JO
2994 if (err)
2995 goto out_disable;
514f1c67 2996
d6ace3df 2997 perf_mmap__consume(md);
20c5f10e 2998
ba209f85
ACM
2999 if (interrupted)
3000 goto out_disable;
02ac5421
ACM
3001
3002 if (done && !draining) {
3003 perf_evlist__disable(evlist);
3004 draining = true;
3005 }
514f1c67 3006 }
d7f55c62 3007 perf_mmap__read_done(md);
514f1c67
ACM
3008 }
3009
efd5745e 3010 if (trace->nr_events == before) {
ba209f85 3011 int timeout = done ? 100 : -1;
f15eb531 3012
46fb3c21 3013 if (!draining && perf_evlist__poll(evlist, timeout) > 0) {
a9c5e6c1 3014 if (perf_evlist__filter_pollfd(evlist, POLLERR | POLLHUP | POLLNVAL) == 0)
46fb3c21
ACM
3015 draining = true;
3016
ba209f85 3017 goto again;
028713aa 3018 } else {
7ba61524 3019 if (trace__flush_events(trace))
028713aa 3020 goto out_disable;
46fb3c21 3021 }
ba209f85
ACM
3022 } else {
3023 goto again;
f15eb531
NK
3024 }
3025
ba209f85 3026out_disable:
f3b623b8
ACM
3027 thread__zput(trace->current);
3028
ba209f85 3029 perf_evlist__disable(evlist);
514f1c67 3030
a761a8d1
ACM
3031 if (trace->sort_events)
3032 ordered_events__flush(&trace->oe.data, OE_FLUSH__FINAL);
028713aa 3033
c522739d
ACM
3034 if (!err) {
3035 if (trace->summary)
3036 trace__fprintf_thread_summary(trace, trace->output);
3037
3038 if (trace->show_tool_stats) {
3039 fprintf(trace->output, "Stats:\n "
3040 " vfs_getname : %" PRIu64 "\n"
3041 " proc_getname: %" PRIu64 "\n",
3042 trace->stats.vfs_getname,
3043 trace->stats.proc_getname);
3044 }
3045 }
bf2575c1 3046
514f1c67 3047out_delete_evlist:
33974a41
AV
3048 trace__symbols__exit(trace);
3049
514f1c67 3050 perf_evlist__delete(evlist);
9ea42ba4 3051 cgroup__put(trace->cgroup);
14a052df 3052 trace->evlist = NULL;
75b757ca 3053 trace->live = false;
514f1c67 3054 return err;
6ef068cb
ACM
3055{
3056 char errbuf[BUFSIZ];
a8f23d8f 3057
2cc990ba 3058out_error_sched_stat_runtime:
988bdb31 3059 tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "sched", "sched_stat_runtime");
2cc990ba
ACM
3060 goto out_error;
3061
801c67b0 3062out_error_raw_syscalls:
988bdb31 3063 tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "raw_syscalls", "sys_(enter|exit)");
a8f23d8f
ACM
3064 goto out_error;
3065
e09b18d4
ACM
3066out_error_mmap:
3067 perf_evlist__strerror_mmap(evlist, errno, errbuf, sizeof(errbuf));
3068 goto out_error;
3069
a8f23d8f
ACM
3070out_error_open:
3071 perf_evlist__strerror_open(evlist, errno, errbuf, sizeof(errbuf));
3072
3073out_error:
6ef068cb 3074 fprintf(trace->output, "%s\n", errbuf);
87f91868 3075 goto out_delete_evlist;
94ad89bc
ACM
3076
3077out_error_apply_filters:
3078 fprintf(trace->output,
3079 "Failed to set filter \"%s\" on event %s with %d (%s)\n",
3080 evsel->filter, perf_evsel__name(evsel), errno,
c8b5f2c9 3081 str_error_r(errno, errbuf, sizeof(errbuf)));
94ad89bc 3082 goto out_delete_evlist;
514f1c67 3083}
5ed08dae
ACM
3084out_error_mem:
3085 fprintf(trace->output, "Not enough memory to run!\n");
3086 goto out_delete_evlist;
19867b61
ACM
3087
3088out_errno:
3089 fprintf(trace->output, "errno=%d,%s\n", errno, strerror(errno));
3090 goto out_delete_evlist;
a8f23d8f 3091}
514f1c67 3092
6810fc91
DA
3093static int trace__replay(struct trace *trace)
3094{
3095 const struct perf_evsel_str_handler handlers[] = {
c522739d 3096 { "probe:vfs_getname", trace__vfs_getname, },
6810fc91 3097 };
8ceb41d7 3098 struct perf_data data = {
eae8ad80
JO
3099 .file = {
3100 .path = input_name,
3101 },
3102 .mode = PERF_DATA_MODE_READ,
3103 .force = trace->force,
f5fc1412 3104 };
6810fc91 3105 struct perf_session *session;
003824e8 3106 struct perf_evsel *evsel;
6810fc91
DA
3107 int err = -1;
3108
3109 trace->tool.sample = trace__process_sample;
3110 trace->tool.mmap = perf_event__process_mmap;
384c671e 3111 trace->tool.mmap2 = perf_event__process_mmap2;
6810fc91
DA
3112 trace->tool.comm = perf_event__process_comm;
3113 trace->tool.exit = perf_event__process_exit;
3114 trace->tool.fork = perf_event__process_fork;
3115 trace->tool.attr = perf_event__process_attr;
f3b3614a 3116 trace->tool.tracing_data = perf_event__process_tracing_data;
6810fc91 3117 trace->tool.build_id = perf_event__process_build_id;
f3b3614a 3118 trace->tool.namespaces = perf_event__process_namespaces;
6810fc91 3119
0a8cb85c 3120 trace->tool.ordered_events = true;
6810fc91
DA
3121 trace->tool.ordering_requires_timestamps = true;
3122
3123 /* add tid to output */
3124 trace->multiple_threads = true;
3125
8ceb41d7 3126 session = perf_session__new(&data, false, &trace->tool);
6810fc91 3127 if (session == NULL)
52e02834 3128 return -1;
6810fc91 3129
aa07df6e
DA
3130 if (trace->opts.target.pid)
3131 symbol_conf.pid_list_str = strdup(trace->opts.target.pid);
3132
3133 if (trace->opts.target.tid)
3134 symbol_conf.tid_list_str = strdup(trace->opts.target.tid);
3135
0a7e6d1b 3136 if (symbol__init(&session->header.env) < 0)
cb2ffae2
NK
3137 goto out;
3138
8fb598e5
DA
3139 trace->host = &session->machines.host;
3140
6810fc91
DA
3141 err = perf_session__set_tracepoints_handlers(session, handlers);
3142 if (err)
3143 goto out;
3144
003824e8
NK
3145 evsel = perf_evlist__find_tracepoint_by_name(session->evlist,
3146 "raw_syscalls:sys_enter");
9aca7f17
DA
3147 /* older kernels have syscalls tp versus raw_syscalls */
3148 if (evsel == NULL)
3149 evsel = perf_evlist__find_tracepoint_by_name(session->evlist,
3150 "syscalls:sys_enter");
003824e8 3151
e281a960 3152 if (evsel &&
63f11c80 3153 (perf_evsel__init_raw_syscall_tp(evsel, trace__sys_enter) < 0 ||
e281a960 3154 perf_evsel__init_sc_tp_ptr_field(evsel, args))) {
003824e8
NK
3155 pr_err("Error during initialize raw_syscalls:sys_enter event\n");
3156 goto out;
3157 }
3158
3159 evsel = perf_evlist__find_tracepoint_by_name(session->evlist,
3160 "raw_syscalls:sys_exit");
9aca7f17
DA
3161 if (evsel == NULL)
3162 evsel = perf_evlist__find_tracepoint_by_name(session->evlist,
3163 "syscalls:sys_exit");
e281a960 3164 if (evsel &&
63f11c80 3165 (perf_evsel__init_raw_syscall_tp(evsel, trace__sys_exit) < 0 ||
e281a960 3166 perf_evsel__init_sc_tp_uint_field(evsel, ret))) {
003824e8 3167 pr_err("Error during initialize raw_syscalls:sys_exit event\n");
6810fc91
DA
3168 goto out;
3169 }
3170
e5cadb93 3171 evlist__for_each_entry(session->evlist, evsel) {
1e28fe0a
SF
3172 if (evsel->attr.type == PERF_TYPE_SOFTWARE &&
3173 (evsel->attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ ||
3174 evsel->attr.config == PERF_COUNT_SW_PAGE_FAULTS_MIN ||
3175 evsel->attr.config == PERF_COUNT_SW_PAGE_FAULTS))
3176 evsel->handler = trace__pgfault;
3177 }
3178
6810fc91
DA
3179 setup_pager();
3180
b7b61cbe 3181 err = perf_session__process_events(session);
6810fc91
DA
3182 if (err)
3183 pr_err("Failed to process events, error %d", err);
3184
bf2575c1
DA
3185 else if (trace->summary)
3186 trace__fprintf_thread_summary(trace, trace->output);
3187
6810fc91
DA
3188out:
3189 perf_session__delete(session);
3190
3191 return err;
3192}
3193
1302d88e
ACM
3194static size_t trace__fprintf_threads_header(FILE *fp)
3195{
3196 size_t printed;
3197
99ff7150 3198 printed = fprintf(fp, "\n Summary of events:\n\n");
bf2575c1
DA
3199
3200 return printed;
3201}
3202
b535d523
ACM
3203DEFINE_RESORT_RB(syscall_stats, a->msecs > b->msecs,
3204 struct stats *stats;
3205 double msecs;
3206 int syscall;
3207)
3208{
3209 struct int_node *source = rb_entry(nd, struct int_node, rb_node);
3210 struct stats *stats = source->priv;
3211
3212 entry->syscall = source->i;
3213 entry->stats = stats;
3214 entry->msecs = stats ? (u64)stats->n * (avg_stats(stats) / NSEC_PER_MSEC) : 0;
3215}
3216
bf2575c1
DA
3217static size_t thread__dump_stats(struct thread_trace *ttrace,
3218 struct trace *trace, FILE *fp)
3219{
bf2575c1
DA
3220 size_t printed = 0;
3221 struct syscall *sc;
b535d523
ACM
3222 struct rb_node *nd;
3223 DECLARE_RESORT_RB_INTLIST(syscall_stats, ttrace->syscall_stats);
bf2575c1 3224
b535d523 3225 if (syscall_stats == NULL)
bf2575c1
DA
3226 return 0;
3227
3228 printed += fprintf(fp, "\n");
3229
834fd46d
MW
3230 printed += fprintf(fp, " syscall calls total min avg max stddev\n");
3231 printed += fprintf(fp, " (msec) (msec) (msec) (msec) (%%)\n");
3232 printed += fprintf(fp, " --------------- -------- --------- --------- --------- --------- ------\n");
99ff7150 3233
98a91837 3234 resort_rb__for_each_entry(nd, syscall_stats) {
b535d523 3235 struct stats *stats = syscall_stats_entry->stats;
bf2575c1
DA
3236 if (stats) {
3237 double min = (double)(stats->min) / NSEC_PER_MSEC;
3238 double max = (double)(stats->max) / NSEC_PER_MSEC;
3239 double avg = avg_stats(stats);
3240 double pct;
3241 u64 n = (u64) stats->n;
3242
3243 pct = avg ? 100.0 * stddev_stats(stats)/avg : 0.0;
3244 avg /= NSEC_PER_MSEC;
3245
b535d523 3246 sc = &trace->syscalls.table[syscall_stats_entry->syscall];
99ff7150 3247 printed += fprintf(fp, " %-15s", sc->name);
834fd46d 3248 printed += fprintf(fp, " %8" PRIu64 " %9.3f %9.3f %9.3f",
b535d523 3249 n, syscall_stats_entry->msecs, min, avg);
27a778b5 3250 printed += fprintf(fp, " %9.3f %9.2f%%\n", max, pct);
bf2575c1 3251 }
bf2575c1
DA
3252 }
3253
b535d523 3254 resort_rb__delete(syscall_stats);
bf2575c1 3255 printed += fprintf(fp, "\n\n");
1302d88e
ACM
3256
3257 return printed;
3258}
3259
96c14451 3260static size_t trace__fprintf_thread(FILE *fp, struct thread *thread, struct trace *trace)
896cbb56 3261{
96c14451 3262 size_t printed = 0;
89dceb22 3263 struct thread_trace *ttrace = thread__priv(thread);
896cbb56
DA
3264 double ratio;
3265
3266 if (ttrace == NULL)
3267 return 0;
3268
3269 ratio = (double)ttrace->nr_events / trace->nr_events * 100.0;
3270
15e65c69 3271 printed += fprintf(fp, " %s (%d), ", thread__comm_str(thread), thread->tid);
99ff7150 3272 printed += fprintf(fp, "%lu events, ", ttrace->nr_events);
15e65c69 3273 printed += fprintf(fp, "%.1f%%", ratio);
a2ea67d7
SF
3274 if (ttrace->pfmaj)
3275 printed += fprintf(fp, ", %lu majfaults", ttrace->pfmaj);
3276 if (ttrace->pfmin)
3277 printed += fprintf(fp, ", %lu minfaults", ttrace->pfmin);
03548ebf
ACM
3278 if (trace->sched)
3279 printed += fprintf(fp, ", %.3f msec\n", ttrace->runtime_ms);
3280 else if (fputc('\n', fp) != EOF)
3281 ++printed;
3282
bf2575c1 3283 printed += thread__dump_stats(ttrace, trace, fp);
896cbb56 3284
96c14451
ACM
3285 return printed;
3286}
896cbb56 3287
96c14451
ACM
3288static unsigned long thread__nr_events(struct thread_trace *ttrace)
3289{
3290 return ttrace ? ttrace->nr_events : 0;
3291}
3292
3293DEFINE_RESORT_RB(threads, (thread__nr_events(a->thread->priv) < thread__nr_events(b->thread->priv)),
3294 struct thread *thread;
3295)
3296{
3297 entry->thread = rb_entry(nd, struct thread, rb_node);
896cbb56
DA
3298}
3299
1302d88e
ACM
3300static size_t trace__fprintf_thread_summary(struct trace *trace, FILE *fp)
3301{
96c14451
ACM
3302 size_t printed = trace__fprintf_threads_header(fp);
3303 struct rb_node *nd;
91e467bc 3304 int i;
1302d88e 3305
91e467bc
KL
3306 for (i = 0; i < THREADS__TABLE_SIZE; i++) {
3307 DECLARE_RESORT_RB_MACHINE_THREADS(threads, trace->host, i);
96c14451 3308
91e467bc
KL
3309 if (threads == NULL) {
3310 fprintf(fp, "%s", "Error sorting output by nr_events!\n");
3311 return 0;
3312 }
896cbb56 3313
91e467bc
KL
3314 resort_rb__for_each_entry(nd, threads)
3315 printed += trace__fprintf_thread(fp, threads_entry->thread, trace);
96c14451 3316
91e467bc
KL
3317 resort_rb__delete(threads);
3318 }
96c14451 3319 return printed;
1302d88e
ACM
3320}
3321
ae9ed035
ACM
3322static int trace__set_duration(const struct option *opt, const char *str,
3323 int unset __maybe_unused)
3324{
3325 struct trace *trace = opt->value;
3326
3327 trace->duration_filter = atof(str);
3328 return 0;
3329}
3330
6a0b3aba
ACM
3331static int trace__set_filter_pids_from_option(const struct option *opt, const char *str,
3332 int unset __maybe_unused)
f078c385
ACM
3333{
3334 int ret = -1;
3335 size_t i;
3336 struct trace *trace = opt->value;
3337 /*
3338 * FIXME: introduce a intarray class, plain parse csv and create a
3339 * { int nr, int entries[] } struct...
3340 */
3341 struct intlist *list = intlist__new(str);
3342
3343 if (list == NULL)
3344 return -1;
3345
3346 i = trace->filter_pids.nr = intlist__nr_entries(list) + 1;
3347 trace->filter_pids.entries = calloc(i, sizeof(pid_t));
3348
3349 if (trace->filter_pids.entries == NULL)
3350 goto out;
3351
3352 trace->filter_pids.entries[0] = getpid();
3353
3354 for (i = 1; i < trace->filter_pids.nr; ++i)
3355 trace->filter_pids.entries[i] = intlist__entry(list, i - 1)->i;
3356
3357 intlist__delete(list);
3358 ret = 0;
3359out:
3360 return ret;
3361}
3362
c24ff998
ACM
3363static int trace__open_output(struct trace *trace, const char *filename)
3364{
3365 struct stat st;
3366
3367 if (!stat(filename, &st) && st.st_size) {
3368 char oldname[PATH_MAX];
3369
3370 scnprintf(oldname, sizeof(oldname), "%s.old", filename);
3371 unlink(oldname);
3372 rename(filename, oldname);
3373 }
3374
3375 trace->output = fopen(filename, "w");
3376
3377 return trace->output == NULL ? -errno : 0;
3378}
3379
598d02c5
SF
3380static int parse_pagefaults(const struct option *opt, const char *str,
3381 int unset __maybe_unused)
3382{
3383 int *trace_pgfaults = opt->value;
3384
3385 if (strcmp(str, "all") == 0)
3386 *trace_pgfaults |= TRACE_PFMAJ | TRACE_PFMIN;
3387 else if (strcmp(str, "maj") == 0)
3388 *trace_pgfaults |= TRACE_PFMAJ;
3389 else if (strcmp(str, "min") == 0)
3390 *trace_pgfaults |= TRACE_PFMIN;
3391 else
3392 return -1;
3393
3394 return 0;
3395}
3396
14a052df
ACM
3397static void evlist__set_evsel_handler(struct perf_evlist *evlist, void *handler)
3398{
3399 struct perf_evsel *evsel;
3400
e5cadb93 3401 evlist__for_each_entry(evlist, evsel)
14a052df
ACM
3402 evsel->handler = handler;
3403}
3404
d32855fa
ACM
3405static int evlist__set_syscall_tp_fields(struct perf_evlist *evlist)
3406{
3407 struct perf_evsel *evsel;
3408
3409 evlist__for_each_entry(evlist, evsel) {
3410 if (evsel->priv || !evsel->tp_format)
3411 continue;
3412
3413 if (strcmp(evsel->tp_format->system, "syscalls"))
3414 continue;
3415
3416 if (perf_evsel__init_syscall_tp(evsel))
3417 return -1;
3418
3419 if (!strncmp(evsel->tp_format->name, "sys_enter_", 10)) {
3420 struct syscall_tp *sc = evsel->priv;
3421
3422 if (__tp_field__init_ptr(&sc->args, sc->id.offset + sizeof(u64)))
3423 return -1;
3424 } else if (!strncmp(evsel->tp_format->name, "sys_exit_", 9)) {
3425 struct syscall_tp *sc = evsel->priv;
3426
3427 if (__tp_field__init_uint(&sc->ret, sizeof(u64), sc->id.offset + sizeof(u64), evsel->needs_swap))
3428 return -1;
3429 }
3430 }
3431
3432 return 0;
3433}
3434
017037ff
ACM
3435/*
3436 * XXX: Hackish, just splitting the combined -e+--event (syscalls
3437 * (raw_syscalls:{sys_{enter,exit}} + events (tracepoints, HW, SW, etc) to use
3438 * existing facilities unchanged (trace->ev_qualifier + parse_options()).
3439 *
3440 * It'd be better to introduce a parse_options() variant that would return a
3441 * list with the terms it didn't match to an event...
3442 */
3443static int trace__parse_events_option(const struct option *opt, const char *str,
3444 int unset __maybe_unused)
3445{
3446 struct trace *trace = (struct trace *)opt->value;
3447 const char *s = str;
3448 char *sep = NULL, *lists[2] = { NULL, NULL, };
27702bcf 3449 int len = strlen(str) + 1, err = -1, list, idx;
017037ff
ACM
3450 char *strace_groups_dir = system_path(STRACE_GROUPS_DIR);
3451 char group_name[PATH_MAX];
f932184e 3452 struct syscall_fmt *fmt;
017037ff
ACM
3453
3454 if (strace_groups_dir == NULL)
3455 return -1;
3456
3457 if (*s == '!') {
3458 ++s;
3459 trace->not_ev_qualifier = true;
3460 }
3461
3462 while (1) {
3463 if ((sep = strchr(s, ',')) != NULL)
3464 *sep = '\0';
3465
3466 list = 0;
27702bcf
ACM
3467 if (syscalltbl__id(trace->sctbl, s) >= 0 ||
3468 syscalltbl__strglobmatch_first(trace->sctbl, s, &idx) >= 0) {
017037ff 3469 list = 1;
f932184e
ACM
3470 goto do_concat;
3471 }
3472
3473 fmt = syscall_fmt__find_by_alias(s);
3474 if (fmt != NULL) {
3475 list = 1;
3476 s = fmt->name;
017037ff
ACM
3477 } else {
3478 path__join(group_name, sizeof(group_name), strace_groups_dir, s);
3479 if (access(group_name, R_OK) == 0)
3480 list = 1;
3481 }
f932184e 3482do_concat:
017037ff
ACM
3483 if (lists[list]) {
3484 sprintf(lists[list] + strlen(lists[list]), ",%s", s);
3485 } else {
3486 lists[list] = malloc(len);
3487 if (lists[list] == NULL)
3488 goto out;
3489 strcpy(lists[list], s);
3490 }
3491
3492 if (!sep)
3493 break;
3494
3495 *sep = ',';
3496 s = sep + 1;
3497 }
3498
3499 if (lists[1] != NULL) {
3500 struct strlist_config slist_config = {
3501 .dirname = strace_groups_dir,
3502 };
3503
3504 trace->ev_qualifier = strlist__new(lists[1], &slist_config);
3505 if (trace->ev_qualifier == NULL) {
3506 fputs("Not enough memory to parse event qualifier", trace->output);
3507 goto out;
3508 }
3509
3510 if (trace__validate_ev_qualifier(trace))
3511 goto out;
b912885a 3512 trace->trace_syscalls = true;
017037ff
ACM
3513 }
3514
3515 err = 0;
3516
3517 if (lists[0]) {
3518 struct option o = OPT_CALLBACK('e', "event", &trace->evlist, "event",
3519 "event selector. use 'perf list' to list available events",
3520 parse_events_option);
3521 err = parse_events_option(&o, lists[0], 0);
3522 }
3523out:
3524 if (sep)
3525 *sep = ',';
3526
3527 return err;
3528}
3529
9ea42ba4
ACM
3530static int trace__parse_cgroups(const struct option *opt, const char *str, int unset)
3531{
3532 struct trace *trace = opt->value;
3533
3534 if (!list_empty(&trace->evlist->entries))
3535 return parse_cgroups(opt, str, unset);
3536
3537 trace->cgroup = evlist__findnew_cgroup(trace->evlist, str);
3538
3539 return 0;
3540}
3541
744fafc7
ACM
3542static struct bpf_map *bpf__find_map_by_name(const char *name)
3543{
3544 struct bpf_object *obj, *tmp;
3545
3546 bpf_object__for_each_safe(obj, tmp) {
3547 struct bpf_map *map = bpf_object__find_map_by_name(obj, name);
3548 if (map)
3549 return map;
3550
3551 }
3552
3553 return NULL;
3554}
3555
3556static void trace__set_bpf_map_filtered_pids(struct trace *trace)
3557{
3558 trace->filter_pids.map = bpf__find_map_by_name("pids_filtered");
3559}
3560
b27b38ed
ACM
3561static void trace__set_bpf_map_syscalls(struct trace *trace)
3562{
3563 trace->syscalls.map = bpf__find_map_by_name("syscalls");
3564}
3565
ac96287c
ACM
3566static int trace__config(const char *var, const char *value, void *arg)
3567{
e7c634fc 3568 struct trace *trace = arg;
ac96287c
ACM
3569 int err = 0;
3570
3571 if (!strcmp(var, "trace.add_events")) {
ac96287c
ACM
3572 struct option o = OPT_CALLBACK('e', "event", &trace->evlist, "event",
3573 "event selector. use 'perf list' to list available events",
3574 parse_events_option);
3575 err = parse_events_option(&o, value, 0);
b036146f
ACM
3576 } else if (!strcmp(var, "trace.show_timestamp")) {
3577 trace->show_tstamp = perf_config_bool(var, value);
42e4a52d
ACM
3578 } else if (!strcmp(var, "trace.show_duration")) {
3579 trace->show_duration = perf_config_bool(var, value);
9d6dc178
ACM
3580 } else if (!strcmp(var, "trace.show_arg_names")) {
3581 trace->show_arg_names = perf_config_bool(var, value);
3582 if (!trace->show_arg_names)
3583 trace->show_zeros = true;
e7c634fc 3584 } else if (!strcmp(var, "trace.show_zeros")) {
9d6dc178
ACM
3585 bool new_show_zeros = perf_config_bool(var, value);
3586 if (!trace->show_arg_names && !new_show_zeros) {
3587 pr_warning("trace.show_zeros has to be set when trace.show_arg_names=no\n");
3588 goto out;
3589 }
3590 trace->show_zeros = new_show_zeros;
c65c83ff
ACM
3591 } else if (!strcmp(var, "trace.show_prefix")) {
3592 trace->show_string_prefix = perf_config_bool(var, value);
d32de87e
ACM
3593 } else if (!strcmp(var, "trace.no_inherit")) {
3594 trace->opts.no_inherit = perf_config_bool(var, value);
9ed45d59
ACM
3595 } else if (!strcmp(var, "trace.args_alignment")) {
3596 int args_alignment = 0;
3597 if (perf_config_int(&args_alignment, var, value) == 0)
3598 trace->args_alignment = args_alignment;
ac96287c 3599 }
9d6dc178 3600out:
ac96287c
ACM
3601 return err;
3602}
3603
b0ad8ea6 3604int cmd_trace(int argc, const char **argv)
514f1c67 3605{
6fdd9cb7 3606 const char *trace_usage[] = {
f15eb531
NK
3607 "perf trace [<options>] [<command>]",
3608 "perf trace [<options>] -- <command> [<options>]",
5e2485b1
DA
3609 "perf trace record [<options>] [<command>]",
3610 "perf trace record [<options>] -- <command> [<options>]",
514f1c67
ACM
3611 NULL
3612 };
3613 struct trace trace = {
514f1c67
ACM
3614 .syscalls = {
3615 . max = -1,
3616 },
3617 .opts = {
3618 .target = {
3619 .uid = UINT_MAX,
3620 .uses_mmap = true,
3621 },
3622 .user_freq = UINT_MAX,
3623 .user_interval = ULLONG_MAX,
509051ea 3624 .no_buffering = true,
38d5447d 3625 .mmap_pages = UINT_MAX,
514f1c67 3626 },
007d66a0 3627 .output = stderr,
50c95cbd 3628 .show_comm = true,
b036146f 3629 .show_tstamp = true,
42e4a52d 3630 .show_duration = true,
9d6dc178 3631 .show_arg_names = true,
9ed45d59 3632 .args_alignment = 70,
b912885a 3633 .trace_syscalls = false,
44621819 3634 .kernel_syscallchains = false,
05614993 3635 .max_stack = UINT_MAX,
5067a8cd 3636 .max_events = ULONG_MAX,
514f1c67 3637 };
c24ff998 3638 const char *output_name = NULL;
514f1c67 3639 const struct option trace_options[] = {
017037ff
ACM
3640 OPT_CALLBACK('e', "event", &trace, "event",
3641 "event/syscall selector. use 'perf list' to list available events",
3642 trace__parse_events_option),
50c95cbd
ACM
3643 OPT_BOOLEAN(0, "comm", &trace.show_comm,
3644 "show the thread COMM next to its id"),
c522739d 3645 OPT_BOOLEAN(0, "tool_stats", &trace.show_tool_stats, "show tool stats"),
017037ff
ACM
3646 OPT_CALLBACK(0, "expr", &trace, "expr", "list of syscalls/events to trace",
3647 trace__parse_events_option),
c24ff998 3648 OPT_STRING('o', "output", &output_name, "file", "output file name"),
6810fc91 3649 OPT_STRING('i', "input", &input_name, "file", "Analyze events in file"),
514f1c67
ACM
3650 OPT_STRING('p', "pid", &trace.opts.target.pid, "pid",
3651 "trace events on existing process id"),
ac9be8ee 3652 OPT_STRING('t', "tid", &trace.opts.target.tid, "tid",
514f1c67 3653 "trace events on existing thread id"),
fa0e4ffe 3654 OPT_CALLBACK(0, "filter-pids", &trace, "CSV list of pids",
6a0b3aba 3655 "pids to filter (by the kernel)", trace__set_filter_pids_from_option),
ac9be8ee 3656 OPT_BOOLEAN('a', "all-cpus", &trace.opts.target.system_wide,
514f1c67 3657 "system-wide collection from all CPUs"),
ac9be8ee 3658 OPT_STRING('C', "cpu", &trace.opts.target.cpu_list, "cpu",
514f1c67 3659 "list of cpus to monitor"),
6810fc91 3660 OPT_BOOLEAN(0, "no-inherit", &trace.opts.no_inherit,
514f1c67 3661 "child tasks do not inherit counters"),
994a1f78
JO
3662 OPT_CALLBACK('m', "mmap-pages", &trace.opts.mmap_pages, "pages",
3663 "number of mmap data pages",
3664 perf_evlist__parse_mmap_pages),
ac9be8ee 3665 OPT_STRING('u', "uid", &trace.opts.target.uid_str, "user",
514f1c67 3666 "user to profile"),
ae9ed035
ACM
3667 OPT_CALLBACK(0, "duration", &trace, "float",
3668 "show only events with duration > N.M ms",
3669 trace__set_duration),
1302d88e 3670 OPT_BOOLEAN(0, "sched", &trace.sched, "show blocking scheduler events"),
7c304ee0 3671 OPT_INCR('v', "verbose", &verbose, "be more verbose"),
4bb09192
DA
3672 OPT_BOOLEAN('T', "time", &trace.full_time,
3673 "Show full timestamp, not time relative to first start"),
0a6545bd
ACM
3674 OPT_BOOLEAN(0, "failure", &trace.failure_only,
3675 "Show only syscalls that failed"),
fd2eabaf
DA
3676 OPT_BOOLEAN('s', "summary", &trace.summary_only,
3677 "Show only syscall summary with statistics"),
3678 OPT_BOOLEAN('S', "with-summary", &trace.summary,
3679 "Show all syscalls and summary with statistics"),
598d02c5
SF
3680 OPT_CALLBACK_DEFAULT('F', "pf", &trace.trace_pgfaults, "all|maj|min",
3681 "Trace pagefaults", parse_pagefaults, "maj"),
e281a960 3682 OPT_BOOLEAN(0, "syscalls", &trace.trace_syscalls, "Trace syscalls"),
e366a6d8 3683 OPT_BOOLEAN('f', "force", &trace.force, "don't complain, do it"),
566a0885
MW
3684 OPT_CALLBACK(0, "call-graph", &trace.opts,
3685 "record_mode[,record_size]", record_callchain_help,
3686 &record_parse_callchain_opt),
44621819
ACM
3687 OPT_BOOLEAN(0, "kernel-syscall-graph", &trace.kernel_syscallchains,
3688 "Show the kernel callchains on the syscall exit path"),
5067a8cd
ACM
3689 OPT_ULONG(0, "max-events", &trace.max_events,
3690 "Set the maximum number of events to print, exit after that is reached. "),
5cf9c84e
ACM
3691 OPT_UINTEGER(0, "min-stack", &trace.min_stack,
3692 "Set the minimum stack depth when parsing the callchain, "
3693 "anything below the specified depth will be ignored."),
c6d4a494
ACM
3694 OPT_UINTEGER(0, "max-stack", &trace.max_stack,
3695 "Set the maximum stack depth when parsing the callchain, "
3696 "anything beyond the specified depth will be ignored. "
4cb93446 3697 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
a761a8d1
ACM
3698 OPT_BOOLEAN(0, "sort-events", &trace.sort_events,
3699 "Sort batch of events before processing, use if getting out of order events"),
591421e1
ACM
3700 OPT_BOOLEAN(0, "print-sample", &trace.print_sample,
3701 "print the PERF_RECORD_SAMPLE PERF_SAMPLE_ info, for debugging"),
3fcb10e4 3702 OPT_UINTEGER(0, "proc-map-timeout", &proc_map_timeout,
9d9cad76 3703 "per thread proc mmap processing timeout in ms"),
9ea42ba4
ACM
3704 OPT_CALLBACK('G', "cgroup", &trace, "name", "monitor event in cgroup name only",
3705 trace__parse_cgroups),
e36b7821
AB
3706 OPT_UINTEGER('D', "delay", &trace.opts.initial_delay,
3707 "ms to wait before starting measurement after program "
3708 "start"),
514f1c67
ACM
3709 OPT_END()
3710 };
ccd62a89 3711 bool __maybe_unused max_stack_user_set = true;
f3e459d1 3712 bool mmap_pages_user_set = true;
78e890ea 3713 struct perf_evsel *evsel;
6fdd9cb7 3714 const char * const trace_subcommands[] = { "record", NULL };
78e890ea 3715 int err = -1;
32caf0d1 3716 char bf[BUFSIZ];
514f1c67 3717
4d08cb80
ACM
3718 signal(SIGSEGV, sighandler_dump_stack);
3719 signal(SIGFPE, sighandler_dump_stack);
3720
14a052df 3721 trace.evlist = perf_evlist__new();
fd0db102 3722 trace.sctbl = syscalltbl__new();
14a052df 3723
fd0db102 3724 if (trace.evlist == NULL || trace.sctbl == NULL) {
14a052df 3725 pr_err("Not enough memory to run!\n");
ff8f695c 3726 err = -ENOMEM;
14a052df
ACM
3727 goto out;
3728 }
3729
ac96287c
ACM
3730 err = perf_config(trace__config, &trace);
3731 if (err)
3732 goto out;
3733
6fdd9cb7
YS
3734 argc = parse_options_subcommand(argc, argv, trace_options, trace_subcommands,
3735 trace_usage, PARSE_OPT_STOP_AT_NON_OPTION);
fd2eabaf 3736
9ea42ba4
ACM
3737 if ((nr_cgroups || trace.cgroup) && !trace.opts.target.system_wide) {
3738 usage_with_options_msg(trace_usage, trace_options,
3739 "cgroup monitoring only available in system-wide mode");
3740 }
3741
78e890ea
ACM
3742 evsel = bpf__setup_output_event(trace.evlist, "__augmented_syscalls__");
3743 if (IS_ERR(evsel)) {
3744 bpf__strerror_setup_output_event(trace.evlist, PTR_ERR(evsel), bf, sizeof(bf));
e0b6d2ef
ACM
3745 pr_err("ERROR: Setup trace syscalls enter failed: %s\n", bf);
3746 goto out;
3747 }
3748
744fafc7 3749 if (evsel) {
d3d1c4bd 3750 trace.syscalls.events.augmented = evsel;
744fafc7 3751 trace__set_bpf_map_filtered_pids(&trace);
b27b38ed 3752 trace__set_bpf_map_syscalls(&trace);
744fafc7 3753 }
d3d1c4bd 3754
d7888573
WN
3755 err = bpf__setup_stdout(trace.evlist);
3756 if (err) {
3757 bpf__strerror_setup_stdout(trace.evlist, err, bf, sizeof(bf));
3758 pr_err("ERROR: Setup BPF stdout failed: %s\n", bf);
3759 goto out;
3760 }
3761
59247e33
ACM
3762 err = -1;
3763
598d02c5
SF
3764 if (trace.trace_pgfaults) {
3765 trace.opts.sample_address = true;
3766 trace.opts.sample_time = true;
3767 }
3768
f3e459d1
ACM
3769 if (trace.opts.mmap_pages == UINT_MAX)
3770 mmap_pages_user_set = false;
3771
05614993 3772 if (trace.max_stack == UINT_MAX) {
029c75e5 3773 trace.max_stack = input_name ? PERF_MAX_STACK_DEPTH : sysctl__max_stack();
05614993
ACM
3774 max_stack_user_set = false;
3775 }
3776
3777#ifdef HAVE_DWARF_UNWIND_SUPPORT
75d50117 3778 if ((trace.min_stack || max_stack_user_set) && !callchain_param.enabled) {
05614993 3779 record_opts__parse_callchain(&trace.opts, &callchain_param, "dwarf", false);
75d50117 3780 }
05614993
ACM
3781#endif
3782
2ddd5c04 3783 if (callchain_param.enabled) {
f3e459d1
ACM
3784 if (!mmap_pages_user_set && geteuid() == 0)
3785 trace.opts.mmap_pages = perf_event_mlock_kb_in_pages() * 4;
3786
566a0885 3787 symbol_conf.use_callchain = true;
f3e459d1 3788 }
566a0885 3789
d32855fa 3790 if (trace.evlist->nr_entries > 0) {
14a052df 3791 evlist__set_evsel_handler(trace.evlist, trace__event_handler);
d32855fa
ACM
3792 if (evlist__set_syscall_tp_fields(trace.evlist)) {
3793 perror("failed to set syscalls:* tracepoint fields");
3794 goto out;
3795 }
3796 }
14a052df 3797
a761a8d1
ACM
3798 if (trace.sort_events) {
3799 ordered_events__init(&trace.oe.data, ordered_events__deliver_event, &trace);
3800 ordered_events__set_copy_on_queue(&trace.oe.data, true);
3801 }
028713aa 3802
b1a9e253
ACM
3803 /*
3804 * If we are augmenting syscalls, then combine what we put in the
3805 * __augmented_syscalls__ BPF map with what is in the
3806 * syscalls:sys_exit_FOO tracepoints, i.e. just like we do without BPF,
3807 * combining raw_syscalls:sys_enter with raw_syscalls:sys_exit.
3808 *
3809 * We'll switch to look at two BPF maps, one for sys_enter and the
3810 * other for sys_exit when we start augmenting the sys_exit paths with
3811 * buffers that are being copied from kernel to userspace, think 'read'
3812 * syscall.
3813 */
3814 if (trace.syscalls.events.augmented) {
3815 evsel = trace.syscalls.events.augmented;
3816
3817 if (perf_evsel__init_augmented_syscall_tp(evsel) ||
3818 perf_evsel__init_augmented_syscall_tp_args(evsel))
3819 goto out;
3820 evsel->handler = trace__sys_enter;
3821
3822 evlist__for_each_entry(trace.evlist, evsel) {
cd26ea6d
ACM
3823 bool raw_syscalls_sys_exit = strcmp(perf_evsel__name(evsel), "raw_syscalls:sys_exit") == 0;
3824
3825 if (raw_syscalls_sys_exit) {
3826 trace.raw_augmented_syscalls = true;
3827 goto init_augmented_syscall_tp;
3828 }
3829
3830 if (strstarts(perf_evsel__name(evsel), "syscalls:sys_exit_")) {
3831init_augmented_syscall_tp:
b1a9e253
ACM
3832 perf_evsel__init_augmented_syscall_tp(evsel);
3833 perf_evsel__init_augmented_syscall_tp_ret(evsel);
3834 evsel->handler = trace__sys_exit;
3835 }
3836 }
3837 }
3838
1e28fe0a
SF
3839 if ((argc >= 1) && (strcmp(argv[0], "record") == 0))
3840 return trace__record(&trace, argc-1, &argv[1]);
3841
3842 /* summary_only implies summary option, but don't overwrite summary if set */
3843 if (trace.summary_only)
3844 trace.summary = trace.summary_only;
3845
726f3234
ACM
3846 if (!trace.trace_syscalls && !trace.trace_pgfaults &&
3847 trace.evlist->nr_entries == 0 /* Was --events used? */) {
b912885a 3848 trace.trace_syscalls = true;
59247e33
ACM
3849 }
3850
c24ff998
ACM
3851 if (output_name != NULL) {
3852 err = trace__open_output(&trace, output_name);
3853 if (err < 0) {
3854 perror("failed to create output file");
3855 goto out;
3856 }
3857 }
3858
602ad878 3859 err = target__validate(&trace.opts.target);
32caf0d1 3860 if (err) {
602ad878 3861 target__strerror(&trace.opts.target, err, bf, sizeof(bf));
c24ff998
ACM
3862 fprintf(trace.output, "%s", bf);
3863 goto out_close;
32caf0d1
NK
3864 }
3865
602ad878 3866 err = target__parse_uid(&trace.opts.target);
514f1c67 3867 if (err) {
602ad878 3868 target__strerror(&trace.opts.target, err, bf, sizeof(bf));
c24ff998
ACM
3869 fprintf(trace.output, "%s", bf);
3870 goto out_close;
514f1c67
ACM
3871 }
3872
602ad878 3873 if (!argc && target__none(&trace.opts.target))
ee76120e
NK
3874 trace.opts.target.system_wide = true;
3875
6810fc91
DA
3876 if (input_name)
3877 err = trace__replay(&trace);
3878 else
3879 err = trace__run(&trace, argc, argv);
1302d88e 3880
c24ff998
ACM
3881out_close:
3882 if (output_name != NULL)
3883 fclose(trace.output);
3884out:
1302d88e 3885 return err;
514f1c67 3886}