Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/perf/builtin-trace.c
26278 views
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 <[email protected]>
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
17
#include "util/record.h"
18
#include <api/fs/tracing_path.h>
19
#ifdef HAVE_LIBBPF_SUPPORT
20
#include <bpf/bpf.h>
21
#include <bpf/libbpf.h>
22
#include <bpf/btf.h>
23
#endif
24
#include "util/bpf_map.h"
25
#include "util/rlimit.h"
26
#include "builtin.h"
27
#include "util/cgroup.h"
28
#include "util/color.h"
29
#include "util/config.h"
30
#include "util/debug.h"
31
#include "util/dso.h"
32
#include "util/env.h"
33
#include "util/event.h"
34
#include "util/evsel.h"
35
#include "util/evsel_fprintf.h"
36
#include "util/synthetic-events.h"
37
#include "util/evlist.h"
38
#include "util/evswitch.h"
39
#include "util/hashmap.h"
40
#include "util/mmap.h"
41
#include <subcmd/pager.h>
42
#include <subcmd/exec-cmd.h>
43
#include "util/machine.h"
44
#include "util/map.h"
45
#include "util/symbol.h"
46
#include "util/path.h"
47
#include "util/session.h"
48
#include "util/thread.h"
49
#include <subcmd/parse-options.h>
50
#include "util/strlist.h"
51
#include "util/intlist.h"
52
#include "util/thread_map.h"
53
#include "util/stat.h"
54
#include "util/tool.h"
55
#include "util/trace.h"
56
#include "util/util.h"
57
#include "trace/beauty/beauty.h"
58
#include "trace-event.h"
59
#include "util/parse-events.h"
60
#include "util/tracepoint.h"
61
#include "callchain.h"
62
#include "print_binary.h"
63
#include "string2.h"
64
#include "syscalltbl.h"
65
#include "../perf.h"
66
#include "trace_augment.h"
67
#include "dwarf-regs.h"
68
69
#include <errno.h>
70
#include <inttypes.h>
71
#include <poll.h>
72
#include <signal.h>
73
#include <stdlib.h>
74
#include <string.h>
75
#include <linux/err.h>
76
#include <linux/filter.h>
77
#include <linux/kernel.h>
78
#include <linux/list_sort.h>
79
#include <linux/random.h>
80
#include <linux/stringify.h>
81
#include <linux/time64.h>
82
#include <linux/zalloc.h>
83
#include <fcntl.h>
84
#include <sys/sysmacros.h>
85
86
#include <linux/ctype.h>
87
#include <perf/mmap.h>
88
#include <tools/libc_compat.h>
89
90
#ifdef HAVE_LIBTRACEEVENT
91
#include <event-parse.h>
92
#endif
93
94
#ifndef O_CLOEXEC
95
# define O_CLOEXEC 02000000
96
#endif
97
98
#ifndef F_LINUX_SPECIFIC_BASE
99
# define F_LINUX_SPECIFIC_BASE 1024
100
#endif
101
102
#define RAW_SYSCALL_ARGS_NUM 6
103
104
/*
105
* strtoul: Go from a string to a value, i.e. for msr: MSR_FS_BASE to 0xc0000100
106
*
107
* We have to explicitely mark the direction of the flow of data, if from the
108
* kernel to user space or the other way around, since the BPF collector we
109
* have so far copies only from user to kernel space, mark the arguments that
110
* go that direction, so that we don´t end up collecting the previous contents
111
* for syscall args that goes from kernel to user space.
112
*/
113
struct syscall_arg_fmt {
114
size_t (*scnprintf)(char *bf, size_t size, struct syscall_arg *arg);
115
bool (*strtoul)(char *bf, size_t size, struct syscall_arg *arg, u64 *val);
116
unsigned long (*mask_val)(struct syscall_arg *arg, unsigned long val);
117
void *parm;
118
const char *name;
119
u16 nr_entries; // for arrays
120
bool from_user;
121
bool show_zero;
122
#ifdef HAVE_LIBBPF_SUPPORT
123
const struct btf_type *type;
124
int type_id; /* used in btf_dump */
125
#endif
126
};
127
128
struct syscall_fmt {
129
const char *name;
130
const char *alias;
131
struct {
132
const char *sys_enter,
133
*sys_exit;
134
} bpf_prog_name;
135
struct syscall_arg_fmt arg[RAW_SYSCALL_ARGS_NUM];
136
u8 nr_args;
137
bool errpid;
138
bool timeout;
139
bool hexret;
140
};
141
142
struct trace {
143
struct perf_env host_env;
144
struct perf_tool tool;
145
struct {
146
/** Sorted sycall numbers used by the trace. */
147
struct syscall **table;
148
/** Size of table. */
149
size_t table_size;
150
struct {
151
struct evsel *sys_enter,
152
*sys_exit,
153
*bpf_output;
154
} events;
155
} syscalls;
156
#ifdef HAVE_LIBBPF_SUPPORT
157
struct btf *btf;
158
#endif
159
struct record_opts opts;
160
struct evlist *evlist;
161
struct machine *host;
162
struct thread *current;
163
struct cgroup *cgroup;
164
u64 base_time;
165
FILE *output;
166
unsigned long nr_events;
167
unsigned long nr_events_printed;
168
unsigned long max_events;
169
struct evswitch evswitch;
170
struct strlist *ev_qualifier;
171
struct {
172
size_t nr;
173
int *entries;
174
} ev_qualifier_ids;
175
struct {
176
size_t nr;
177
pid_t *entries;
178
struct bpf_map *map;
179
} filter_pids;
180
/*
181
* TODO: The map is from an ID (aka system call number) to struct
182
* syscall_stats. If there is >1 e_machine, such as i386 and x86-64
183
* processes, then the stats here will gather wrong the statistics for
184
* the non EM_HOST system calls. A fix would be to add the e_machine
185
* into the key, but this would make the code inconsistent with the
186
* per-thread version.
187
*/
188
struct hashmap *syscall_stats;
189
double duration_filter;
190
double runtime_ms;
191
unsigned long pfmaj, pfmin;
192
struct {
193
u64 vfs_getname,
194
proc_getname;
195
} stats;
196
unsigned int max_stack;
197
unsigned int min_stack;
198
enum trace_summary_mode summary_mode;
199
int raw_augmented_syscalls_args_size;
200
bool raw_augmented_syscalls;
201
bool fd_path_disabled;
202
bool sort_events;
203
bool not_ev_qualifier;
204
bool live;
205
bool full_time;
206
bool sched;
207
bool multiple_threads;
208
bool summary;
209
bool summary_only;
210
bool errno_summary;
211
bool failure_only;
212
bool show_comm;
213
bool print_sample;
214
bool show_tool_stats;
215
bool trace_syscalls;
216
bool libtraceevent_print;
217
bool kernel_syscallchains;
218
s16 args_alignment;
219
bool show_tstamp;
220
bool show_duration;
221
bool show_zeros;
222
bool show_arg_names;
223
bool show_string_prefix;
224
bool force;
225
bool vfs_getname;
226
bool force_btf;
227
bool summary_bpf;
228
int trace_pgfaults;
229
char *perfconfig_events;
230
struct {
231
struct ordered_events data;
232
u64 last;
233
} oe;
234
const char *uid_str;
235
};
236
237
static void trace__load_vmlinux_btf(struct trace *trace __maybe_unused)
238
{
239
#ifdef HAVE_LIBBPF_SUPPORT
240
if (trace->btf != NULL)
241
return;
242
243
trace->btf = btf__load_vmlinux_btf();
244
if (verbose > 0) {
245
fprintf(trace->output, trace->btf ? "vmlinux BTF loaded\n" :
246
"Failed to load vmlinux BTF\n");
247
}
248
#endif
249
}
250
251
struct tp_field {
252
int offset;
253
union {
254
u64 (*integer)(struct tp_field *field, struct perf_sample *sample);
255
void *(*pointer)(struct tp_field *field, struct perf_sample *sample);
256
};
257
};
258
259
#define TP_UINT_FIELD(bits) \
260
static u64 tp_field__u##bits(struct tp_field *field, struct perf_sample *sample) \
261
{ \
262
u##bits value; \
263
memcpy(&value, sample->raw_data + field->offset, sizeof(value)); \
264
return value; \
265
}
266
267
TP_UINT_FIELD(8);
268
TP_UINT_FIELD(16);
269
TP_UINT_FIELD(32);
270
TP_UINT_FIELD(64);
271
272
#define TP_UINT_FIELD__SWAPPED(bits) \
273
static u64 tp_field__swapped_u##bits(struct tp_field *field, struct perf_sample *sample) \
274
{ \
275
u##bits value; \
276
memcpy(&value, sample->raw_data + field->offset, sizeof(value)); \
277
return bswap_##bits(value);\
278
}
279
280
TP_UINT_FIELD__SWAPPED(16);
281
TP_UINT_FIELD__SWAPPED(32);
282
TP_UINT_FIELD__SWAPPED(64);
283
284
static int __tp_field__init_uint(struct tp_field *field, int size, int offset, bool needs_swap)
285
{
286
field->offset = offset;
287
288
switch (size) {
289
case 1:
290
field->integer = tp_field__u8;
291
break;
292
case 2:
293
field->integer = needs_swap ? tp_field__swapped_u16 : tp_field__u16;
294
break;
295
case 4:
296
field->integer = needs_swap ? tp_field__swapped_u32 : tp_field__u32;
297
break;
298
case 8:
299
field->integer = needs_swap ? tp_field__swapped_u64 : tp_field__u64;
300
break;
301
default:
302
return -1;
303
}
304
305
return 0;
306
}
307
308
static int tp_field__init_uint(struct tp_field *field, struct tep_format_field *format_field, bool needs_swap)
309
{
310
return __tp_field__init_uint(field, format_field->size, format_field->offset, needs_swap);
311
}
312
313
static void *tp_field__ptr(struct tp_field *field, struct perf_sample *sample)
314
{
315
return sample->raw_data + field->offset;
316
}
317
318
static int __tp_field__init_ptr(struct tp_field *field, int offset)
319
{
320
field->offset = offset;
321
field->pointer = tp_field__ptr;
322
return 0;
323
}
324
325
static int tp_field__init_ptr(struct tp_field *field, struct tep_format_field *format_field)
326
{
327
return __tp_field__init_ptr(field, format_field->offset);
328
}
329
330
struct syscall_tp {
331
struct tp_field id;
332
union {
333
struct tp_field args, ret;
334
};
335
};
336
337
/*
338
* The evsel->priv as used by 'perf trace'
339
* sc: for raw_syscalls:sys_{enter,exit} and syscalls:sys_{enter,exit}_SYSCALLNAME
340
* fmt: for all the other tracepoints
341
*/
342
struct evsel_trace {
343
struct syscall_tp sc;
344
struct syscall_arg_fmt *fmt;
345
};
346
347
static struct evsel_trace *evsel_trace__new(void)
348
{
349
return zalloc(sizeof(struct evsel_trace));
350
}
351
352
static void evsel_trace__delete(struct evsel_trace *et)
353
{
354
if (et == NULL)
355
return;
356
357
zfree(&et->fmt);
358
free(et);
359
}
360
361
/*
362
* Used with raw_syscalls:sys_{enter,exit} and with the
363
* syscalls:sys_{enter,exit}_SYSCALL tracepoints
364
*/
365
static inline struct syscall_tp *__evsel__syscall_tp(struct evsel *evsel)
366
{
367
struct evsel_trace *et = evsel->priv;
368
369
return &et->sc;
370
}
371
372
static struct syscall_tp *evsel__syscall_tp(struct evsel *evsel)
373
{
374
if (evsel->priv == NULL) {
375
evsel->priv = evsel_trace__new();
376
if (evsel->priv == NULL)
377
return NULL;
378
}
379
380
return __evsel__syscall_tp(evsel);
381
}
382
383
/*
384
* Used with all the other tracepoints.
385
*/
386
static inline struct syscall_arg_fmt *__evsel__syscall_arg_fmt(struct evsel *evsel)
387
{
388
struct evsel_trace *et = evsel->priv;
389
390
return et->fmt;
391
}
392
393
static struct syscall_arg_fmt *evsel__syscall_arg_fmt(struct evsel *evsel)
394
{
395
struct evsel_trace *et = evsel->priv;
396
397
if (evsel->priv == NULL) {
398
et = evsel->priv = evsel_trace__new();
399
400
if (et == NULL)
401
return NULL;
402
}
403
404
if (et->fmt == NULL) {
405
const struct tep_event *tp_format = evsel__tp_format(evsel);
406
407
if (tp_format == NULL)
408
goto out_delete;
409
410
et->fmt = calloc(tp_format->format.nr_fields, sizeof(struct syscall_arg_fmt));
411
if (et->fmt == NULL)
412
goto out_delete;
413
}
414
415
return __evsel__syscall_arg_fmt(evsel);
416
417
out_delete:
418
evsel_trace__delete(evsel->priv);
419
evsel->priv = NULL;
420
return NULL;
421
}
422
423
static int evsel__init_tp_uint_field(struct evsel *evsel, struct tp_field *field, const char *name)
424
{
425
struct tep_format_field *format_field = evsel__field(evsel, name);
426
427
if (format_field == NULL)
428
return -1;
429
430
return tp_field__init_uint(field, format_field, evsel->needs_swap);
431
}
432
433
#define perf_evsel__init_sc_tp_uint_field(evsel, name) \
434
({ struct syscall_tp *sc = __evsel__syscall_tp(evsel);\
435
evsel__init_tp_uint_field(evsel, &sc->name, #name); })
436
437
static int evsel__init_tp_ptr_field(struct evsel *evsel, struct tp_field *field, const char *name)
438
{
439
struct tep_format_field *format_field = evsel__field(evsel, name);
440
441
if (format_field == NULL)
442
return -1;
443
444
return tp_field__init_ptr(field, format_field);
445
}
446
447
#define perf_evsel__init_sc_tp_ptr_field(evsel, name) \
448
({ struct syscall_tp *sc = __evsel__syscall_tp(evsel);\
449
evsel__init_tp_ptr_field(evsel, &sc->name, #name); })
450
451
static void evsel__delete_priv(struct evsel *evsel)
452
{
453
zfree(&evsel->priv);
454
evsel__delete(evsel);
455
}
456
457
static int evsel__init_syscall_tp(struct evsel *evsel)
458
{
459
struct syscall_tp *sc = evsel__syscall_tp(evsel);
460
461
if (sc != NULL) {
462
if (evsel__init_tp_uint_field(evsel, &sc->id, "__syscall_nr") &&
463
evsel__init_tp_uint_field(evsel, &sc->id, "nr"))
464
return -ENOENT;
465
466
return 0;
467
}
468
469
return -ENOMEM;
470
}
471
472
static int evsel__init_augmented_syscall_tp(struct evsel *evsel, struct evsel *tp)
473
{
474
struct syscall_tp *sc = evsel__syscall_tp(evsel);
475
476
if (sc != NULL) {
477
struct tep_format_field *syscall_id = evsel__field(tp, "id");
478
if (syscall_id == NULL)
479
syscall_id = evsel__field(tp, "__syscall_nr");
480
if (syscall_id == NULL ||
481
__tp_field__init_uint(&sc->id, syscall_id->size, syscall_id->offset, evsel->needs_swap))
482
return -EINVAL;
483
484
return 0;
485
}
486
487
return -ENOMEM;
488
}
489
490
static int evsel__init_augmented_syscall_tp_args(struct evsel *evsel)
491
{
492
struct syscall_tp *sc = __evsel__syscall_tp(evsel);
493
494
return __tp_field__init_ptr(&sc->args, sc->id.offset + sizeof(u64));
495
}
496
497
static int evsel__init_augmented_syscall_tp_ret(struct evsel *evsel)
498
{
499
struct syscall_tp *sc = __evsel__syscall_tp(evsel);
500
501
return __tp_field__init_uint(&sc->ret, sizeof(u64), sc->id.offset + sizeof(u64), evsel->needs_swap);
502
}
503
504
static int evsel__init_raw_syscall_tp(struct evsel *evsel, void *handler)
505
{
506
if (evsel__syscall_tp(evsel) != NULL) {
507
if (perf_evsel__init_sc_tp_uint_field(evsel, id))
508
return -ENOENT;
509
510
evsel->handler = handler;
511
return 0;
512
}
513
514
return -ENOMEM;
515
}
516
517
static struct evsel *perf_evsel__raw_syscall_newtp(const char *direction, void *handler)
518
{
519
struct evsel *evsel = evsel__newtp("raw_syscalls", direction);
520
521
/* older kernel (e.g., RHEL6) use syscalls:{enter,exit} */
522
if (IS_ERR(evsel))
523
evsel = evsel__newtp("syscalls", direction);
524
525
if (IS_ERR(evsel))
526
return NULL;
527
528
if (evsel__init_raw_syscall_tp(evsel, handler))
529
goto out_delete;
530
531
return evsel;
532
533
out_delete:
534
evsel__delete_priv(evsel);
535
return NULL;
536
}
537
538
#define perf_evsel__sc_tp_uint(evsel, name, sample) \
539
({ struct syscall_tp *fields = __evsel__syscall_tp(evsel); \
540
fields->name.integer(&fields->name, sample); })
541
542
#define perf_evsel__sc_tp_ptr(evsel, name, sample) \
543
({ struct syscall_tp *fields = __evsel__syscall_tp(evsel); \
544
fields->name.pointer(&fields->name, sample); })
545
546
size_t strarray__scnprintf_suffix(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_suffix, int val)
547
{
548
int idx = val - sa->offset;
549
550
if (idx < 0 || idx >= sa->nr_entries || sa->entries[idx] == NULL) {
551
size_t printed = scnprintf(bf, size, intfmt, val);
552
if (show_suffix)
553
printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sa->prefix);
554
return printed;
555
}
556
557
return scnprintf(bf, size, "%s%s", sa->entries[idx], show_suffix ? sa->prefix : "");
558
}
559
560
size_t strarray__scnprintf(struct strarray *sa, char *bf, size_t size, const char *intfmt, bool show_prefix, int val)
561
{
562
int idx = val - sa->offset;
563
564
if (idx < 0 || idx >= sa->nr_entries || sa->entries[idx] == NULL) {
565
size_t printed = scnprintf(bf, size, intfmt, val);
566
if (show_prefix)
567
printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sa->prefix);
568
return printed;
569
}
570
571
return scnprintf(bf, size, "%s%s", show_prefix ? sa->prefix : "", sa->entries[idx]);
572
}
573
574
static size_t __syscall_arg__scnprintf_strarray(char *bf, size_t size,
575
const char *intfmt,
576
struct syscall_arg *arg)
577
{
578
return strarray__scnprintf(arg->parm, bf, size, intfmt, arg->show_string_prefix, arg->val);
579
}
580
581
static size_t syscall_arg__scnprintf_strarray(char *bf, size_t size,
582
struct syscall_arg *arg)
583
{
584
return __syscall_arg__scnprintf_strarray(bf, size, "%d", arg);
585
}
586
587
#define SCA_STRARRAY syscall_arg__scnprintf_strarray
588
589
bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
590
{
591
return strarray__strtoul(arg->parm, bf, size, ret);
592
}
593
594
bool syscall_arg__strtoul_strarray_flags(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
595
{
596
return strarray__strtoul_flags(arg->parm, bf, size, ret);
597
}
598
599
bool syscall_arg__strtoul_strarrays(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
600
{
601
return strarrays__strtoul(arg->parm, bf, size, ret);
602
}
603
604
size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct syscall_arg *arg)
605
{
606
return strarray__scnprintf_flags(arg->parm, bf, size, arg->show_string_prefix, arg->val);
607
}
608
609
size_t strarrays__scnprintf(struct strarrays *sas, char *bf, size_t size, const char *intfmt, bool show_prefix, int val)
610
{
611
size_t printed;
612
int i;
613
614
for (i = 0; i < sas->nr_entries; ++i) {
615
struct strarray *sa = sas->entries[i];
616
int idx = val - sa->offset;
617
618
if (idx >= 0 && idx < sa->nr_entries) {
619
if (sa->entries[idx] == NULL)
620
break;
621
return scnprintf(bf, size, "%s%s", show_prefix ? sa->prefix : "", sa->entries[idx]);
622
}
623
}
624
625
printed = scnprintf(bf, size, intfmt, val);
626
if (show_prefix)
627
printed += scnprintf(bf + printed, size - printed, " /* %s??? */", sas->entries[0]->prefix);
628
return printed;
629
}
630
631
bool strarray__strtoul(struct strarray *sa, char *bf, size_t size, u64 *ret)
632
{
633
int i;
634
635
for (i = 0; i < sa->nr_entries; ++i) {
636
if (sa->entries[i] && strncmp(sa->entries[i], bf, size) == 0 && sa->entries[i][size] == '\0') {
637
*ret = sa->offset + i;
638
return true;
639
}
640
}
641
642
return false;
643
}
644
645
bool strarray__strtoul_flags(struct strarray *sa, char *bf, size_t size, u64 *ret)
646
{
647
u64 val = 0;
648
char *tok = bf, *sep, *end;
649
650
*ret = 0;
651
652
while (size != 0) {
653
int toklen = size;
654
655
sep = memchr(tok, '|', size);
656
if (sep != NULL) {
657
size -= sep - tok + 1;
658
659
end = sep - 1;
660
while (end > tok && isspace(*end))
661
--end;
662
663
toklen = end - tok + 1;
664
}
665
666
while (isspace(*tok))
667
++tok;
668
669
if (isalpha(*tok) || *tok == '_') {
670
if (!strarray__strtoul(sa, tok, toklen, &val))
671
return false;
672
} else
673
val = strtoul(tok, NULL, 0);
674
675
*ret |= (1 << (val - 1));
676
677
if (sep == NULL)
678
break;
679
tok = sep + 1;
680
}
681
682
return true;
683
}
684
685
bool strarrays__strtoul(struct strarrays *sas, char *bf, size_t size, u64 *ret)
686
{
687
int i;
688
689
for (i = 0; i < sas->nr_entries; ++i) {
690
struct strarray *sa = sas->entries[i];
691
692
if (strarray__strtoul(sa, bf, size, ret))
693
return true;
694
}
695
696
return false;
697
}
698
699
size_t syscall_arg__scnprintf_strarrays(char *bf, size_t size,
700
struct syscall_arg *arg)
701
{
702
return strarrays__scnprintf(arg->parm, bf, size, "%d", arg->show_string_prefix, arg->val);
703
}
704
705
#ifndef AT_FDCWD
706
#define AT_FDCWD -100
707
#endif
708
709
static size_t syscall_arg__scnprintf_fd_at(char *bf, size_t size,
710
struct syscall_arg *arg)
711
{
712
int fd = arg->val;
713
const char *prefix = "AT_FD";
714
715
if (fd == AT_FDCWD)
716
return scnprintf(bf, size, "%s%s", arg->show_string_prefix ? prefix : "", "CWD");
717
718
return syscall_arg__scnprintf_fd(bf, size, arg);
719
}
720
721
#define SCA_FDAT syscall_arg__scnprintf_fd_at
722
723
static size_t syscall_arg__scnprintf_close_fd(char *bf, size_t size,
724
struct syscall_arg *arg);
725
726
#define SCA_CLOSE_FD syscall_arg__scnprintf_close_fd
727
728
size_t syscall_arg__scnprintf_hex(char *bf, size_t size, struct syscall_arg *arg)
729
{
730
return scnprintf(bf, size, "%#lx", arg->val);
731
}
732
733
size_t syscall_arg__scnprintf_ptr(char *bf, size_t size, struct syscall_arg *arg)
734
{
735
if (arg->val == 0)
736
return scnprintf(bf, size, "NULL");
737
return syscall_arg__scnprintf_hex(bf, size, arg);
738
}
739
740
size_t syscall_arg__scnprintf_int(char *bf, size_t size, struct syscall_arg *arg)
741
{
742
return scnprintf(bf, size, "%d", arg->val);
743
}
744
745
size_t syscall_arg__scnprintf_long(char *bf, size_t size, struct syscall_arg *arg)
746
{
747
return scnprintf(bf, size, "%ld", arg->val);
748
}
749
750
static size_t syscall_arg__scnprintf_char_array(char *bf, size_t size, struct syscall_arg *arg)
751
{
752
// XXX Hey, maybe for sched:sched_switch prev/next comm fields we can
753
// fill missing comms using thread__set_comm()...
754
// here or in a special syscall_arg__scnprintf_pid_sched_tp...
755
return scnprintf(bf, size, "\"%-.*s\"", arg->fmt->nr_entries ?: arg->len, arg->val);
756
}
757
758
#define SCA_CHAR_ARRAY syscall_arg__scnprintf_char_array
759
760
static const char *bpf_cmd[] = {
761
"MAP_CREATE", "MAP_LOOKUP_ELEM", "MAP_UPDATE_ELEM", "MAP_DELETE_ELEM",
762
"MAP_GET_NEXT_KEY", "PROG_LOAD", "OBJ_PIN", "OBJ_GET", "PROG_ATTACH",
763
"PROG_DETACH", "PROG_TEST_RUN", "PROG_GET_NEXT_ID", "MAP_GET_NEXT_ID",
764
"PROG_GET_FD_BY_ID", "MAP_GET_FD_BY_ID", "OBJ_GET_INFO_BY_FD",
765
"PROG_QUERY", "RAW_TRACEPOINT_OPEN", "BTF_LOAD", "BTF_GET_FD_BY_ID",
766
"TASK_FD_QUERY", "MAP_LOOKUP_AND_DELETE_ELEM", "MAP_FREEZE",
767
"BTF_GET_NEXT_ID", "MAP_LOOKUP_BATCH", "MAP_LOOKUP_AND_DELETE_BATCH",
768
"MAP_UPDATE_BATCH", "MAP_DELETE_BATCH", "LINK_CREATE", "LINK_UPDATE",
769
"LINK_GET_FD_BY_ID", "LINK_GET_NEXT_ID", "ENABLE_STATS", "ITER_CREATE",
770
"LINK_DETACH", "PROG_BIND_MAP",
771
};
772
static DEFINE_STRARRAY(bpf_cmd, "BPF_");
773
774
static const char *fsmount_flags[] = {
775
[1] = "CLOEXEC",
776
};
777
static DEFINE_STRARRAY(fsmount_flags, "FSMOUNT_");
778
779
#include "trace/beauty/generated/fsconfig_arrays.c"
780
781
static DEFINE_STRARRAY(fsconfig_cmds, "FSCONFIG_");
782
783
static const char *epoll_ctl_ops[] = { "ADD", "DEL", "MOD", };
784
static DEFINE_STRARRAY_OFFSET(epoll_ctl_ops, "EPOLL_CTL_", 1);
785
786
static const char *itimers[] = { "REAL", "VIRTUAL", "PROF", };
787
static DEFINE_STRARRAY(itimers, "ITIMER_");
788
789
static const char *keyctl_options[] = {
790
"GET_KEYRING_ID", "JOIN_SESSION_KEYRING", "UPDATE", "REVOKE", "CHOWN",
791
"SETPERM", "DESCRIBE", "CLEAR", "LINK", "UNLINK", "SEARCH", "READ",
792
"INSTANTIATE", "NEGATE", "SET_REQKEY_KEYRING", "SET_TIMEOUT",
793
"ASSUME_AUTHORITY", "GET_SECURITY", "SESSION_TO_PARENT", "REJECT",
794
"INSTANTIATE_IOV", "INVALIDATE", "GET_PERSISTENT",
795
};
796
static DEFINE_STRARRAY(keyctl_options, "KEYCTL_");
797
798
static const char *whences[] = { "SET", "CUR", "END",
799
#ifdef SEEK_DATA
800
"DATA",
801
#endif
802
#ifdef SEEK_HOLE
803
"HOLE",
804
#endif
805
};
806
static DEFINE_STRARRAY(whences, "SEEK_");
807
808
static const char *fcntl_cmds[] = {
809
"DUPFD", "GETFD", "SETFD", "GETFL", "SETFL", "GETLK", "SETLK",
810
"SETLKW", "SETOWN", "GETOWN", "SETSIG", "GETSIG", "GETLK64",
811
"SETLK64", "SETLKW64", "SETOWN_EX", "GETOWN_EX",
812
"GETOWNER_UIDS",
813
};
814
static DEFINE_STRARRAY(fcntl_cmds, "F_");
815
816
static const char *fcntl_linux_specific_cmds[] = {
817
"SETLEASE", "GETLEASE", "NOTIFY", "DUPFD_QUERY", [5] = "CANCELLK", "DUPFD_CLOEXEC",
818
"SETPIPE_SZ", "GETPIPE_SZ", "ADD_SEALS", "GET_SEALS",
819
"GET_RW_HINT", "SET_RW_HINT", "GET_FILE_RW_HINT", "SET_FILE_RW_HINT",
820
};
821
822
static DEFINE_STRARRAY_OFFSET(fcntl_linux_specific_cmds, "F_", F_LINUX_SPECIFIC_BASE);
823
824
static struct strarray *fcntl_cmds_arrays[] = {
825
&strarray__fcntl_cmds,
826
&strarray__fcntl_linux_specific_cmds,
827
};
828
829
static DEFINE_STRARRAYS(fcntl_cmds_arrays);
830
831
static const char *rlimit_resources[] = {
832
"CPU", "FSIZE", "DATA", "STACK", "CORE", "RSS", "NPROC", "NOFILE",
833
"MEMLOCK", "AS", "LOCKS", "SIGPENDING", "MSGQUEUE", "NICE", "RTPRIO",
834
"RTTIME",
835
};
836
static DEFINE_STRARRAY(rlimit_resources, "RLIMIT_");
837
838
static const char *sighow[] = { "BLOCK", "UNBLOCK", "SETMASK", };
839
static DEFINE_STRARRAY(sighow, "SIG_");
840
841
static const char *clockid[] = {
842
"REALTIME", "MONOTONIC", "PROCESS_CPUTIME_ID", "THREAD_CPUTIME_ID",
843
"MONOTONIC_RAW", "REALTIME_COARSE", "MONOTONIC_COARSE", "BOOTTIME",
844
"REALTIME_ALARM", "BOOTTIME_ALARM", "SGI_CYCLE", "TAI"
845
};
846
static DEFINE_STRARRAY(clockid, "CLOCK_");
847
848
static size_t syscall_arg__scnprintf_access_mode(char *bf, size_t size,
849
struct syscall_arg *arg)
850
{
851
bool show_prefix = arg->show_string_prefix;
852
const char *suffix = "_OK";
853
size_t printed = 0;
854
int mode = arg->val;
855
856
if (mode == F_OK) /* 0 */
857
return scnprintf(bf, size, "F%s", show_prefix ? suffix : "");
858
#define P_MODE(n) \
859
if (mode & n##_OK) { \
860
printed += scnprintf(bf + printed, size - printed, "%s%s", #n, show_prefix ? suffix : ""); \
861
mode &= ~n##_OK; \
862
}
863
864
P_MODE(R);
865
P_MODE(W);
866
P_MODE(X);
867
#undef P_MODE
868
869
if (mode)
870
printed += scnprintf(bf + printed, size - printed, "|%#x", mode);
871
872
return printed;
873
}
874
875
#define SCA_ACCMODE syscall_arg__scnprintf_access_mode
876
877
static size_t syscall_arg__scnprintf_filename(char *bf, size_t size,
878
struct syscall_arg *arg);
879
880
#define SCA_FILENAME syscall_arg__scnprintf_filename
881
882
// 'argname' is just documentational at this point, to remove the previous comment with that info
883
#define SCA_FILENAME_FROM_USER(argname) \
884
{ .scnprintf = SCA_FILENAME, \
885
.from_user = true, }
886
887
static size_t syscall_arg__scnprintf_buf(char *bf, size_t size, struct syscall_arg *arg);
888
889
#define SCA_BUF syscall_arg__scnprintf_buf
890
891
static size_t syscall_arg__scnprintf_pipe_flags(char *bf, size_t size,
892
struct syscall_arg *arg)
893
{
894
bool show_prefix = arg->show_string_prefix;
895
const char *prefix = "O_";
896
int printed = 0, flags = arg->val;
897
898
#define P_FLAG(n) \
899
if (flags & O_##n) { \
900
printed += scnprintf(bf + printed, size - printed, "%s%s%s", printed ? "|" : "", show_prefix ? prefix : "", #n); \
901
flags &= ~O_##n; \
902
}
903
904
P_FLAG(CLOEXEC);
905
P_FLAG(NONBLOCK);
906
#undef P_FLAG
907
908
if (flags)
909
printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags);
910
911
return printed;
912
}
913
914
#define SCA_PIPE_FLAGS syscall_arg__scnprintf_pipe_flags
915
916
#ifndef GRND_NONBLOCK
917
#define GRND_NONBLOCK 0x0001
918
#endif
919
#ifndef GRND_RANDOM
920
#define GRND_RANDOM 0x0002
921
#endif
922
923
static size_t syscall_arg__scnprintf_getrandom_flags(char *bf, size_t size,
924
struct syscall_arg *arg)
925
{
926
bool show_prefix = arg->show_string_prefix;
927
const char *prefix = "GRND_";
928
int printed = 0, flags = arg->val;
929
930
#define P_FLAG(n) \
931
if (flags & GRND_##n) { \
932
printed += scnprintf(bf + printed, size - printed, "%s%s%s", printed ? "|" : "", show_prefix ? prefix : "", #n); \
933
flags &= ~GRND_##n; \
934
}
935
936
P_FLAG(RANDOM);
937
P_FLAG(NONBLOCK);
938
#undef P_FLAG
939
940
if (flags)
941
printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags);
942
943
return printed;
944
}
945
946
#define SCA_GETRANDOM_FLAGS syscall_arg__scnprintf_getrandom_flags
947
948
#ifdef HAVE_LIBBPF_SUPPORT
949
static void syscall_arg_fmt__cache_btf_enum(struct syscall_arg_fmt *arg_fmt, struct btf *btf, char *type)
950
{
951
int id;
952
953
type = strstr(type, "enum ");
954
if (type == NULL)
955
return;
956
957
type += 5; // skip "enum " to get the enumeration name
958
959
id = btf__find_by_name(btf, type);
960
if (id < 0)
961
return;
962
963
arg_fmt->type = btf__type_by_id(btf, id);
964
}
965
966
static bool syscall_arg__strtoul_btf_enum(char *bf, size_t size, struct syscall_arg *arg, u64 *val)
967
{
968
const struct btf_type *bt = arg->fmt->type;
969
struct btf *btf = arg->trace->btf;
970
struct btf_enum *be = btf_enum(bt);
971
972
for (int i = 0; i < btf_vlen(bt); ++i, ++be) {
973
const char *name = btf__name_by_offset(btf, be->name_off);
974
int max_len = max(size, strlen(name));
975
976
if (strncmp(name, bf, max_len) == 0) {
977
*val = be->val;
978
return true;
979
}
980
}
981
982
return false;
983
}
984
985
static bool syscall_arg__strtoul_btf_type(char *bf, size_t size, struct syscall_arg *arg, u64 *val)
986
{
987
const struct btf_type *bt;
988
char *type = arg->type_name;
989
struct btf *btf;
990
991
trace__load_vmlinux_btf(arg->trace);
992
993
btf = arg->trace->btf;
994
if (btf == NULL)
995
return false;
996
997
if (arg->fmt->type == NULL) {
998
// See if this is an enum
999
syscall_arg_fmt__cache_btf_enum(arg->fmt, btf, type);
1000
}
1001
1002
// Now let's see if we have a BTF type resolved
1003
bt = arg->fmt->type;
1004
if (bt == NULL)
1005
return false;
1006
1007
// If it is an enum:
1008
if (btf_is_enum(arg->fmt->type))
1009
return syscall_arg__strtoul_btf_enum(bf, size, arg, val);
1010
1011
return false;
1012
}
1013
1014
static size_t btf_enum_scnprintf(const struct btf_type *type, struct btf *btf, char *bf, size_t size, int val)
1015
{
1016
struct btf_enum *be = btf_enum(type);
1017
const int nr_entries = btf_vlen(type);
1018
1019
for (int i = 0; i < nr_entries; ++i, ++be) {
1020
if (be->val == val) {
1021
return scnprintf(bf, size, "%s",
1022
btf__name_by_offset(btf, be->name_off));
1023
}
1024
}
1025
1026
return 0;
1027
}
1028
1029
struct trace_btf_dump_snprintf_ctx {
1030
char *bf;
1031
size_t printed, size;
1032
};
1033
1034
static void trace__btf_dump_snprintf(void *vctx, const char *fmt, va_list args)
1035
{
1036
struct trace_btf_dump_snprintf_ctx *ctx = vctx;
1037
1038
ctx->printed += vscnprintf(ctx->bf + ctx->printed, ctx->size - ctx->printed, fmt, args);
1039
}
1040
1041
static size_t btf_struct_scnprintf(const struct btf_type *type, struct btf *btf, char *bf, size_t size, struct syscall_arg *arg)
1042
{
1043
struct trace_btf_dump_snprintf_ctx ctx = {
1044
.bf = bf,
1045
.size = size,
1046
};
1047
struct augmented_arg *augmented_arg = arg->augmented.args;
1048
int type_id = arg->fmt->type_id, consumed;
1049
struct btf_dump *btf_dump;
1050
1051
LIBBPF_OPTS(btf_dump_opts, dump_opts);
1052
LIBBPF_OPTS(btf_dump_type_data_opts, dump_data_opts);
1053
1054
if (arg == NULL || arg->augmented.args == NULL)
1055
return 0;
1056
1057
dump_data_opts.compact = true;
1058
dump_data_opts.skip_names = !arg->trace->show_arg_names;
1059
1060
btf_dump = btf_dump__new(btf, trace__btf_dump_snprintf, &ctx, &dump_opts);
1061
if (btf_dump == NULL)
1062
return 0;
1063
1064
/* pretty print the struct data here */
1065
if (btf_dump__dump_type_data(btf_dump, type_id, arg->augmented.args->value, type->size, &dump_data_opts) == 0)
1066
return 0;
1067
1068
consumed = sizeof(*augmented_arg) + augmented_arg->size;
1069
arg->augmented.args = ((void *)arg->augmented.args) + consumed;
1070
arg->augmented.size -= consumed;
1071
1072
btf_dump__free(btf_dump);
1073
1074
return ctx.printed;
1075
}
1076
1077
static size_t trace__btf_scnprintf(struct trace *trace, struct syscall_arg *arg, char *bf,
1078
size_t size, int val, char *type)
1079
{
1080
struct syscall_arg_fmt *arg_fmt = arg->fmt;
1081
1082
if (trace->btf == NULL)
1083
return 0;
1084
1085
if (arg_fmt->type == NULL) {
1086
// Check if this is an enum and if we have the BTF type for it.
1087
syscall_arg_fmt__cache_btf_enum(arg_fmt, trace->btf, type);
1088
}
1089
1090
// Did we manage to find a BTF type for the syscall/tracepoint argument?
1091
if (arg_fmt->type == NULL)
1092
return 0;
1093
1094
if (btf_is_enum(arg_fmt->type))
1095
return btf_enum_scnprintf(arg_fmt->type, trace->btf, bf, size, val);
1096
else if (btf_is_struct(arg_fmt->type) || btf_is_union(arg_fmt->type))
1097
return btf_struct_scnprintf(arg_fmt->type, trace->btf, bf, size, arg);
1098
1099
return 0;
1100
}
1101
1102
#else // HAVE_LIBBPF_SUPPORT
1103
static size_t trace__btf_scnprintf(struct trace *trace __maybe_unused, struct syscall_arg *arg __maybe_unused,
1104
char *bf __maybe_unused, size_t size __maybe_unused, int val __maybe_unused,
1105
char *type __maybe_unused)
1106
{
1107
return 0;
1108
}
1109
1110
static bool syscall_arg__strtoul_btf_type(char *bf __maybe_unused, size_t size __maybe_unused,
1111
struct syscall_arg *arg __maybe_unused, u64 *val __maybe_unused)
1112
{
1113
return false;
1114
}
1115
#endif // HAVE_LIBBPF_SUPPORT
1116
1117
#define STUL_BTF_TYPE syscall_arg__strtoul_btf_type
1118
1119
#define STRARRAY(name, array) \
1120
{ .scnprintf = SCA_STRARRAY, \
1121
.strtoul = STUL_STRARRAY, \
1122
.parm = &strarray__##array, \
1123
.show_zero = true, }
1124
1125
#define STRARRAY_FLAGS(name, array) \
1126
{ .scnprintf = SCA_STRARRAY_FLAGS, \
1127
.strtoul = STUL_STRARRAY_FLAGS, \
1128
.parm = &strarray__##array, \
1129
.show_zero = true, }
1130
1131
#include "trace/beauty/eventfd.c"
1132
#include "trace/beauty/futex_op.c"
1133
#include "trace/beauty/futex_val3.c"
1134
#include "trace/beauty/mmap.c"
1135
#include "trace/beauty/mode_t.c"
1136
#include "trace/beauty/msg_flags.c"
1137
#include "trace/beauty/open_flags.c"
1138
#include "trace/beauty/perf_event_open.c"
1139
#include "trace/beauty/pid.c"
1140
#include "trace/beauty/sched_policy.c"
1141
#include "trace/beauty/seccomp.c"
1142
#include "trace/beauty/signum.c"
1143
#include "trace/beauty/socket_type.c"
1144
#include "trace/beauty/waitid_options.c"
1145
1146
static const struct syscall_fmt syscall_fmts[] = {
1147
{ .name = "access",
1148
.arg = { [1] = { .scnprintf = SCA_ACCMODE, /* mode */ }, }, },
1149
{ .name = "arch_prctl",
1150
.arg = { [0] = { .scnprintf = SCA_X86_ARCH_PRCTL_CODE, /* code */ },
1151
[1] = { .scnprintf = SCA_PTR, /* arg2 */ }, }, },
1152
{ .name = "bind",
1153
.arg = { [0] = { .scnprintf = SCA_INT, /* fd */ },
1154
[1] = SCA_SOCKADDR_FROM_USER(umyaddr),
1155
[2] = { .scnprintf = SCA_INT, /* addrlen */ }, }, },
1156
{ .name = "bpf",
1157
.arg = { [0] = STRARRAY(cmd, bpf_cmd),
1158
[1] = { .from_user = true /* attr */, }, } },
1159
{ .name = "brk", .hexret = true,
1160
.arg = { [0] = { .scnprintf = SCA_PTR, /* brk */ }, }, },
1161
{ .name = "clock_gettime",
1162
.arg = { [0] = STRARRAY(clk_id, clockid), }, },
1163
{ .name = "clock_nanosleep",
1164
.arg = { [2] = SCA_TIMESPEC_FROM_USER(req), }, },
1165
{ .name = "clone", .errpid = true, .nr_args = 5,
1166
.arg = { [0] = { .name = "flags", .scnprintf = SCA_CLONE_FLAGS, },
1167
[1] = { .name = "child_stack", .scnprintf = SCA_HEX, },
1168
[2] = { .name = "parent_tidptr", .scnprintf = SCA_HEX, },
1169
[3] = { .name = "child_tidptr", .scnprintf = SCA_HEX, },
1170
[4] = { .name = "tls", .scnprintf = SCA_HEX, }, }, },
1171
{ .name = "close",
1172
.arg = { [0] = { .scnprintf = SCA_CLOSE_FD, /* fd */ }, }, },
1173
{ .name = "connect",
1174
.arg = { [0] = { .scnprintf = SCA_INT, /* fd */ },
1175
[1] = SCA_SOCKADDR_FROM_USER(servaddr),
1176
[2] = { .scnprintf = SCA_INT, /* addrlen */ }, }, },
1177
{ .name = "epoll_ctl",
1178
.arg = { [1] = STRARRAY(op, epoll_ctl_ops), }, },
1179
{ .name = "eventfd2",
1180
.arg = { [1] = { .scnprintf = SCA_EFD_FLAGS, /* flags */ }, }, },
1181
{ .name = "faccessat",
1182
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dirfd */ },
1183
[1] = SCA_FILENAME_FROM_USER(pathname),
1184
[2] = { .scnprintf = SCA_ACCMODE, /* mode */ }, }, },
1185
{ .name = "faccessat2",
1186
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dirfd */ },
1187
[1] = SCA_FILENAME_FROM_USER(pathname),
1188
[2] = { .scnprintf = SCA_ACCMODE, /* mode */ },
1189
[3] = { .scnprintf = SCA_FACCESSAT2_FLAGS, /* flags */ }, }, },
1190
{ .name = "fchmodat",
1191
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1192
{ .name = "fchownat",
1193
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1194
{ .name = "fcntl",
1195
.arg = { [1] = { .scnprintf = SCA_FCNTL_CMD, /* cmd */
1196
.strtoul = STUL_STRARRAYS,
1197
.parm = &strarrays__fcntl_cmds_arrays,
1198
.show_zero = true, },
1199
[2] = { .scnprintf = SCA_FCNTL_ARG, /* arg */ }, }, },
1200
{ .name = "flock",
1201
.arg = { [1] = { .scnprintf = SCA_FLOCK, /* cmd */ }, }, },
1202
{ .name = "fsconfig",
1203
.arg = { [1] = STRARRAY(cmd, fsconfig_cmds), }, },
1204
{ .name = "fsmount",
1205
.arg = { [1] = STRARRAY_FLAGS(flags, fsmount_flags),
1206
[2] = { .scnprintf = SCA_FSMOUNT_ATTR_FLAGS, /* attr_flags */ }, }, },
1207
{ .name = "fspick",
1208
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
1209
[1] = SCA_FILENAME_FROM_USER(path),
1210
[2] = { .scnprintf = SCA_FSPICK_FLAGS, /* flags */ }, }, },
1211
{ .name = "fstat", .alias = "newfstat", },
1212
{ .name = "futex",
1213
.arg = { [1] = { .scnprintf = SCA_FUTEX_OP, /* op */ },
1214
[5] = { .scnprintf = SCA_FUTEX_VAL3, /* val3 */ }, }, },
1215
{ .name = "futimesat",
1216
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1217
{ .name = "getitimer",
1218
.arg = { [0] = STRARRAY(which, itimers), }, },
1219
{ .name = "getpid", .errpid = true, },
1220
{ .name = "getpgid", .errpid = true, },
1221
{ .name = "getppid", .errpid = true, },
1222
{ .name = "getrandom",
1223
.arg = { [2] = { .scnprintf = SCA_GETRANDOM_FLAGS, /* flags */ }, }, },
1224
{ .name = "getrlimit",
1225
.arg = { [0] = STRARRAY(resource, rlimit_resources), }, },
1226
{ .name = "getsockopt",
1227
.arg = { [1] = STRARRAY(level, socket_level), }, },
1228
{ .name = "gettid", .errpid = true, },
1229
{ .name = "ioctl",
1230
.arg = {
1231
#if defined(__i386__) || defined(__x86_64__)
1232
/*
1233
* FIXME: Make this available to all arches.
1234
*/
1235
[1] = { .scnprintf = SCA_IOCTL_CMD, /* cmd */ },
1236
[2] = { .scnprintf = SCA_HEX, /* arg */ }, }, },
1237
#else
1238
[2] = { .scnprintf = SCA_HEX, /* arg */ }, }, },
1239
#endif
1240
{ .name = "kcmp", .nr_args = 5,
1241
.arg = { [0] = { .name = "pid1", .scnprintf = SCA_PID, },
1242
[1] = { .name = "pid2", .scnprintf = SCA_PID, },
1243
[2] = { .name = "type", .scnprintf = SCA_KCMP_TYPE, },
1244
[3] = { .name = "idx1", .scnprintf = SCA_KCMP_IDX, },
1245
[4] = { .name = "idx2", .scnprintf = SCA_KCMP_IDX, }, }, },
1246
{ .name = "keyctl",
1247
.arg = { [0] = STRARRAY(option, keyctl_options), }, },
1248
{ .name = "kill",
1249
.arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1250
{ .name = "linkat",
1251
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1252
{ .name = "lseek",
1253
.arg = { [2] = STRARRAY(whence, whences), }, },
1254
{ .name = "lstat", .alias = "newlstat", },
1255
{ .name = "madvise",
1256
.arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
1257
[2] = { .scnprintf = SCA_MADV_BHV, /* behavior */ }, }, },
1258
{ .name = "mkdirat",
1259
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1260
{ .name = "mknodat",
1261
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
1262
{ .name = "mmap", .hexret = true,
1263
/* The standard mmap maps to old_mmap on s390x */
1264
#if defined(__s390x__)
1265
.alias = "old_mmap",
1266
#endif
1267
.arg = { [2] = { .scnprintf = SCA_MMAP_PROT, .show_zero = true, /* prot */ },
1268
[3] = { .scnprintf = SCA_MMAP_FLAGS, /* flags */
1269
.strtoul = STUL_STRARRAY_FLAGS,
1270
.parm = &strarray__mmap_flags, },
1271
[5] = { .scnprintf = SCA_HEX, /* offset */ }, }, },
1272
{ .name = "mount",
1273
.arg = { [0] = SCA_FILENAME_FROM_USER(devname),
1274
[3] = { .scnprintf = SCA_MOUNT_FLAGS, /* flags */
1275
.mask_val = SCAMV_MOUNT_FLAGS, /* flags */ }, }, },
1276
{ .name = "move_mount",
1277
.arg = { [0] = { .scnprintf = SCA_FDAT, /* from_dfd */ },
1278
[1] = SCA_FILENAME_FROM_USER(pathname),
1279
[2] = { .scnprintf = SCA_FDAT, /* to_dfd */ },
1280
[3] = SCA_FILENAME_FROM_USER(pathname),
1281
[4] = { .scnprintf = SCA_MOVE_MOUNT_FLAGS, /* flags */ }, }, },
1282
{ .name = "mprotect",
1283
.arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
1284
[2] = { .scnprintf = SCA_MMAP_PROT, .show_zero = true, /* prot */ }, }, },
1285
{ .name = "mq_unlink",
1286
.arg = { [0] = SCA_FILENAME_FROM_USER(u_name), }, },
1287
{ .name = "mremap", .hexret = true,
1288
.arg = { [3] = { .scnprintf = SCA_MREMAP_FLAGS, /* flags */ }, }, },
1289
{ .name = "name_to_handle_at",
1290
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1291
{ .name = "nanosleep",
1292
.arg = { [0] = SCA_TIMESPEC_FROM_USER(req), }, },
1293
{ .name = "newfstatat", .alias = "fstatat",
1294
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dirfd */ },
1295
[1] = SCA_FILENAME_FROM_USER(pathname),
1296
[3] = { .scnprintf = SCA_FS_AT_FLAGS, /* flags */ }, }, },
1297
{ .name = "open",
1298
.arg = { [1] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1299
{ .name = "open_by_handle_at",
1300
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
1301
[2] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1302
{ .name = "openat",
1303
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
1304
[2] = { .scnprintf = SCA_OPEN_FLAGS, /* flags */ }, }, },
1305
{ .name = "perf_event_open",
1306
.arg = { [0] = SCA_PERF_ATTR_FROM_USER(attr),
1307
[2] = { .scnprintf = SCA_INT, /* cpu */ },
1308
[3] = { .scnprintf = SCA_FD, /* group_fd */ },
1309
[4] = { .scnprintf = SCA_PERF_FLAGS, /* flags */ }, }, },
1310
{ .name = "pipe2",
1311
.arg = { [1] = { .scnprintf = SCA_PIPE_FLAGS, /* flags */ }, }, },
1312
{ .name = "pkey_alloc",
1313
.arg = { [1] = { .scnprintf = SCA_PKEY_ALLOC_ACCESS_RIGHTS, /* access_rights */ }, }, },
1314
{ .name = "pkey_free",
1315
.arg = { [0] = { .scnprintf = SCA_INT, /* key */ }, }, },
1316
{ .name = "pkey_mprotect",
1317
.arg = { [0] = { .scnprintf = SCA_HEX, /* start */ },
1318
[2] = { .scnprintf = SCA_MMAP_PROT, .show_zero = true, /* prot */ },
1319
[3] = { .scnprintf = SCA_INT, /* pkey */ }, }, },
1320
{ .name = "poll", .timeout = true, },
1321
{ .name = "ppoll", .timeout = true, },
1322
{ .name = "prctl",
1323
.arg = { [0] = { .scnprintf = SCA_PRCTL_OPTION, /* option */
1324
.strtoul = STUL_STRARRAY,
1325
.parm = &strarray__prctl_options, },
1326
[1] = { .scnprintf = SCA_PRCTL_ARG2, /* arg2 */ },
1327
[2] = { .scnprintf = SCA_PRCTL_ARG3, /* arg3 */ }, }, },
1328
{ .name = "pread", .alias = "pread64", },
1329
{ .name = "preadv", .alias = "pread", },
1330
{ .name = "prlimit64",
1331
.arg = { [1] = STRARRAY(resource, rlimit_resources),
1332
[2] = { .from_user = true /* new_rlim */, }, }, },
1333
{ .name = "pwrite", .alias = "pwrite64", },
1334
{ .name = "readlinkat",
1335
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1336
{ .name = "recvfrom",
1337
.arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1338
{ .name = "recvmmsg",
1339
.arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1340
{ .name = "recvmsg",
1341
.arg = { [2] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1342
{ .name = "renameat",
1343
.arg = { [0] = { .scnprintf = SCA_FDAT, /* olddirfd */ },
1344
[2] = { .scnprintf = SCA_FDAT, /* newdirfd */ }, }, },
1345
{ .name = "renameat2",
1346
.arg = { [0] = { .scnprintf = SCA_FDAT, /* olddirfd */ },
1347
[2] = { .scnprintf = SCA_FDAT, /* newdirfd */ },
1348
[4] = { .scnprintf = SCA_RENAMEAT2_FLAGS, /* flags */ }, }, },
1349
{ .name = "rseq",
1350
.arg = { [0] = { .from_user = true /* rseq */, }, }, },
1351
{ .name = "rt_sigaction",
1352
.arg = { [0] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1353
{ .name = "rt_sigprocmask",
1354
.arg = { [0] = STRARRAY(how, sighow), }, },
1355
{ .name = "rt_sigqueueinfo",
1356
.arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1357
{ .name = "rt_tgsigqueueinfo",
1358
.arg = { [2] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1359
{ .name = "sched_setscheduler",
1360
.arg = { [1] = { .scnprintf = SCA_SCHED_POLICY, /* policy */ }, }, },
1361
{ .name = "seccomp",
1362
.arg = { [0] = { .scnprintf = SCA_SECCOMP_OP, /* op */ },
1363
[1] = { .scnprintf = SCA_SECCOMP_FLAGS, /* flags */ }, }, },
1364
{ .name = "select", .timeout = true, },
1365
{ .name = "sendfile", .alias = "sendfile64", },
1366
{ .name = "sendmmsg",
1367
.arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1368
{ .name = "sendmsg",
1369
.arg = { [2] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ }, }, },
1370
{ .name = "sendto",
1371
.arg = { [3] = { .scnprintf = SCA_MSG_FLAGS, /* flags */ },
1372
[4] = SCA_SOCKADDR_FROM_USER(addr), }, },
1373
{ .name = "set_robust_list",
1374
.arg = { [0] = { .from_user = true /* head */, }, }, },
1375
{ .name = "set_tid_address", .errpid = true, },
1376
{ .name = "setitimer",
1377
.arg = { [0] = STRARRAY(which, itimers), }, },
1378
{ .name = "setrlimit",
1379
.arg = { [0] = STRARRAY(resource, rlimit_resources),
1380
[1] = { .from_user = true /* rlim */, }, }, },
1381
{ .name = "setsockopt",
1382
.arg = { [1] = STRARRAY(level, socket_level), }, },
1383
{ .name = "socket",
1384
.arg = { [0] = STRARRAY(family, socket_families),
1385
[1] = { .scnprintf = SCA_SK_TYPE, /* type */ },
1386
[2] = { .scnprintf = SCA_SK_PROTO, /* protocol */ }, }, },
1387
{ .name = "socketpair",
1388
.arg = { [0] = STRARRAY(family, socket_families),
1389
[1] = { .scnprintf = SCA_SK_TYPE, /* type */ },
1390
[2] = { .scnprintf = SCA_SK_PROTO, /* protocol */ }, }, },
1391
{ .name = "stat", .alias = "newstat", },
1392
{ .name = "statx",
1393
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fdat */ },
1394
[2] = { .scnprintf = SCA_FS_AT_FLAGS, /* flags */ } ,
1395
[3] = { .scnprintf = SCA_STATX_MASK, /* mask */ }, }, },
1396
{ .name = "swapoff",
1397
.arg = { [0] = SCA_FILENAME_FROM_USER(specialfile), }, },
1398
{ .name = "swapon",
1399
.arg = { [0] = SCA_FILENAME_FROM_USER(specialfile), }, },
1400
{ .name = "symlinkat",
1401
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ }, }, },
1402
{ .name = "sync_file_range",
1403
.arg = { [3] = { .scnprintf = SCA_SYNC_FILE_RANGE_FLAGS, /* flags */ }, }, },
1404
{ .name = "tgkill",
1405
.arg = { [2] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1406
{ .name = "tkill",
1407
.arg = { [1] = { .scnprintf = SCA_SIGNUM, /* sig */ }, }, },
1408
{ .name = "umount2", .alias = "umount",
1409
.arg = { [0] = SCA_FILENAME_FROM_USER(name), }, },
1410
{ .name = "uname", .alias = "newuname", },
1411
{ .name = "unlinkat",
1412
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dfd */ },
1413
[1] = SCA_FILENAME_FROM_USER(pathname),
1414
[2] = { .scnprintf = SCA_FS_AT_FLAGS, /* flags */ }, }, },
1415
{ .name = "utimensat",
1416
.arg = { [0] = { .scnprintf = SCA_FDAT, /* dirfd */ }, }, },
1417
{ .name = "wait4", .errpid = true,
1418
.arg = { [2] = { .scnprintf = SCA_WAITID_OPTIONS, /* options */ }, }, },
1419
{ .name = "waitid", .errpid = true,
1420
.arg = { [3] = { .scnprintf = SCA_WAITID_OPTIONS, /* options */ }, }, },
1421
{ .name = "write",
1422
.arg = { [1] = { .scnprintf = SCA_BUF /* buf */, .from_user = true, }, }, },
1423
};
1424
1425
static int syscall_fmt__cmp(const void *name, const void *fmtp)
1426
{
1427
const struct syscall_fmt *fmt = fmtp;
1428
return strcmp(name, fmt->name);
1429
}
1430
1431
static const struct syscall_fmt *__syscall_fmt__find(const struct syscall_fmt *fmts,
1432
const int nmemb,
1433
const char *name)
1434
{
1435
return bsearch(name, fmts, nmemb, sizeof(struct syscall_fmt), syscall_fmt__cmp);
1436
}
1437
1438
static const struct syscall_fmt *syscall_fmt__find(const char *name)
1439
{
1440
const int nmemb = ARRAY_SIZE(syscall_fmts);
1441
return __syscall_fmt__find(syscall_fmts, nmemb, name);
1442
}
1443
1444
static const struct syscall_fmt *__syscall_fmt__find_by_alias(const struct syscall_fmt *fmts,
1445
const int nmemb, const char *alias)
1446
{
1447
int i;
1448
1449
for (i = 0; i < nmemb; ++i) {
1450
if (fmts[i].alias && strcmp(fmts[i].alias, alias) == 0)
1451
return &fmts[i];
1452
}
1453
1454
return NULL;
1455
}
1456
1457
static const struct syscall_fmt *syscall_fmt__find_by_alias(const char *alias)
1458
{
1459
const int nmemb = ARRAY_SIZE(syscall_fmts);
1460
return __syscall_fmt__find_by_alias(syscall_fmts, nmemb, alias);
1461
}
1462
1463
/**
1464
* struct syscall
1465
*/
1466
struct syscall {
1467
/** @e_machine: The ELF machine associated with the entry. */
1468
int e_machine;
1469
/** @id: id value from the tracepoint, the system call number. */
1470
int id;
1471
struct tep_event *tp_format;
1472
int nr_args;
1473
/**
1474
* @args_size: sum of the sizes of the syscall arguments, anything
1475
* after that is augmented stuff: pathname for openat, etc.
1476
*/
1477
1478
int args_size;
1479
struct {
1480
struct bpf_program *sys_enter,
1481
*sys_exit;
1482
} bpf_prog;
1483
/** @is_exit: is this "exit" or "exit_group"? */
1484
bool is_exit;
1485
/**
1486
* @is_open: is this "open" or "openat"? To associate the fd returned in
1487
* sys_exit with the pathname in sys_enter.
1488
*/
1489
bool is_open;
1490
/**
1491
* @nonexistent: Name lookup failed. Just a hole in the syscall table,
1492
* syscall id not allocated.
1493
*/
1494
bool nonexistent;
1495
bool use_btf;
1496
struct tep_format_field *args;
1497
const char *name;
1498
const struct syscall_fmt *fmt;
1499
struct syscall_arg_fmt *arg_fmt;
1500
};
1501
1502
/*
1503
* We need to have this 'calculated' boolean because in some cases we really
1504
* don't know what is the duration of a syscall, for instance, when we start
1505
* a session and some threads are waiting for a syscall to finish, say 'poll',
1506
* in which case all we can do is to print "( ? ) for duration and for the
1507
* start timestamp.
1508
*/
1509
static size_t fprintf_duration(unsigned long t, bool calculated, FILE *fp)
1510
{
1511
double duration = (double)t / NSEC_PER_MSEC;
1512
size_t printed = fprintf(fp, "(");
1513
1514
if (!calculated)
1515
printed += fprintf(fp, " ");
1516
else if (duration >= 1.0)
1517
printed += color_fprintf(fp, PERF_COLOR_RED, "%6.3f ms", duration);
1518
else if (duration >= 0.01)
1519
printed += color_fprintf(fp, PERF_COLOR_YELLOW, "%6.3f ms", duration);
1520
else
1521
printed += color_fprintf(fp, PERF_COLOR_NORMAL, "%6.3f ms", duration);
1522
return printed + fprintf(fp, "): ");
1523
}
1524
1525
/**
1526
* filename.ptr: The filename char pointer that will be vfs_getname'd
1527
* filename.entry_str_pos: Where to insert the string translated from
1528
* filename.ptr by the vfs_getname tracepoint/kprobe.
1529
* ret_scnprintf: syscall args may set this to a different syscall return
1530
* formatter, for instance, fcntl may return fds, file flags, etc.
1531
*/
1532
struct thread_trace {
1533
u64 entry_time;
1534
bool entry_pending;
1535
unsigned long nr_events;
1536
unsigned long pfmaj, pfmin;
1537
char *entry_str;
1538
double runtime_ms;
1539
size_t (*ret_scnprintf)(char *bf, size_t size, struct syscall_arg *arg);
1540
struct {
1541
unsigned long ptr;
1542
short int entry_str_pos;
1543
bool pending_open;
1544
unsigned int namelen;
1545
char *name;
1546
} filename;
1547
struct {
1548
int max;
1549
struct file *table;
1550
} files;
1551
1552
struct hashmap *syscall_stats;
1553
};
1554
1555
static size_t syscall_id_hash(long key, void *ctx __maybe_unused)
1556
{
1557
return key;
1558
}
1559
1560
static bool syscall_id_equal(long key1, long key2, void *ctx __maybe_unused)
1561
{
1562
return key1 == key2;
1563
}
1564
1565
static struct hashmap *alloc_syscall_stats(void)
1566
{
1567
return hashmap__new(syscall_id_hash, syscall_id_equal, NULL);
1568
}
1569
1570
static void delete_syscall_stats(struct hashmap *syscall_stats)
1571
{
1572
struct hashmap_entry *pos;
1573
size_t bkt;
1574
1575
if (syscall_stats == NULL)
1576
return;
1577
1578
hashmap__for_each_entry(syscall_stats, pos, bkt)
1579
zfree(&pos->pvalue);
1580
hashmap__free(syscall_stats);
1581
}
1582
1583
static struct thread_trace *thread_trace__new(struct trace *trace)
1584
{
1585
struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace));
1586
1587
if (ttrace) {
1588
ttrace->files.max = -1;
1589
if (trace->summary) {
1590
ttrace->syscall_stats = alloc_syscall_stats();
1591
if (IS_ERR(ttrace->syscall_stats))
1592
zfree(&ttrace);
1593
}
1594
}
1595
1596
return ttrace;
1597
}
1598
1599
static void thread_trace__free_files(struct thread_trace *ttrace);
1600
1601
static void thread_trace__delete(void *pttrace)
1602
{
1603
struct thread_trace *ttrace = pttrace;
1604
1605
if (!ttrace)
1606
return;
1607
1608
delete_syscall_stats(ttrace->syscall_stats);
1609
ttrace->syscall_stats = NULL;
1610
thread_trace__free_files(ttrace);
1611
zfree(&ttrace->entry_str);
1612
free(ttrace);
1613
}
1614
1615
static struct thread_trace *thread__trace(struct thread *thread, struct trace *trace)
1616
{
1617
struct thread_trace *ttrace;
1618
1619
if (thread == NULL)
1620
goto fail;
1621
1622
if (thread__priv(thread) == NULL)
1623
thread__set_priv(thread, thread_trace__new(trace));
1624
1625
if (thread__priv(thread) == NULL)
1626
goto fail;
1627
1628
ttrace = thread__priv(thread);
1629
++ttrace->nr_events;
1630
1631
return ttrace;
1632
fail:
1633
color_fprintf(trace->output, PERF_COLOR_RED,
1634
"WARNING: not enough memory, dropping samples!\n");
1635
return NULL;
1636
}
1637
1638
1639
void syscall_arg__set_ret_scnprintf(struct syscall_arg *arg,
1640
size_t (*ret_scnprintf)(char *bf, size_t size, struct syscall_arg *arg))
1641
{
1642
struct thread_trace *ttrace = thread__priv(arg->thread);
1643
1644
ttrace->ret_scnprintf = ret_scnprintf;
1645
}
1646
1647
#define TRACE_PFMAJ (1 << 0)
1648
#define TRACE_PFMIN (1 << 1)
1649
1650
static const size_t trace__entry_str_size = 2048;
1651
1652
static void thread_trace__free_files(struct thread_trace *ttrace)
1653
{
1654
for (int i = 0; i <= ttrace->files.max; ++i) {
1655
struct file *file = ttrace->files.table + i;
1656
zfree(&file->pathname);
1657
}
1658
1659
zfree(&ttrace->files.table);
1660
ttrace->files.max = -1;
1661
}
1662
1663
static struct file *thread_trace__files_entry(struct thread_trace *ttrace, int fd)
1664
{
1665
if (fd < 0)
1666
return NULL;
1667
1668
if (fd > ttrace->files.max) {
1669
struct file *nfiles = realloc(ttrace->files.table, (fd + 1) * sizeof(struct file));
1670
1671
if (nfiles == NULL)
1672
return NULL;
1673
1674
if (ttrace->files.max != -1) {
1675
memset(nfiles + ttrace->files.max + 1, 0,
1676
(fd - ttrace->files.max) * sizeof(struct file));
1677
} else {
1678
memset(nfiles, 0, (fd + 1) * sizeof(struct file));
1679
}
1680
1681
ttrace->files.table = nfiles;
1682
ttrace->files.max = fd;
1683
}
1684
1685
return ttrace->files.table + fd;
1686
}
1687
1688
struct file *thread__files_entry(struct thread *thread, int fd)
1689
{
1690
return thread_trace__files_entry(thread__priv(thread), fd);
1691
}
1692
1693
static int trace__set_fd_pathname(struct thread *thread, int fd, const char *pathname)
1694
{
1695
struct thread_trace *ttrace = thread__priv(thread);
1696
struct file *file = thread_trace__files_entry(ttrace, fd);
1697
1698
if (file != NULL) {
1699
struct stat st;
1700
1701
if (stat(pathname, &st) == 0)
1702
file->dev_maj = major(st.st_rdev);
1703
file->pathname = strdup(pathname);
1704
if (file->pathname)
1705
return 0;
1706
}
1707
1708
return -1;
1709
}
1710
1711
static int thread__read_fd_path(struct thread *thread, int fd)
1712
{
1713
char linkname[PATH_MAX], pathname[PATH_MAX];
1714
struct stat st;
1715
int ret;
1716
1717
if (thread__pid(thread) == thread__tid(thread)) {
1718
scnprintf(linkname, sizeof(linkname),
1719
"/proc/%d/fd/%d", thread__pid(thread), fd);
1720
} else {
1721
scnprintf(linkname, sizeof(linkname),
1722
"/proc/%d/task/%d/fd/%d",
1723
thread__pid(thread), thread__tid(thread), fd);
1724
}
1725
1726
if (lstat(linkname, &st) < 0 || st.st_size + 1 > (off_t)sizeof(pathname))
1727
return -1;
1728
1729
ret = readlink(linkname, pathname, sizeof(pathname));
1730
1731
if (ret < 0 || ret > st.st_size)
1732
return -1;
1733
1734
pathname[ret] = '\0';
1735
return trace__set_fd_pathname(thread, fd, pathname);
1736
}
1737
1738
static const char *thread__fd_path(struct thread *thread, int fd,
1739
struct trace *trace)
1740
{
1741
struct thread_trace *ttrace = thread__priv(thread);
1742
1743
if (ttrace == NULL || trace->fd_path_disabled)
1744
return NULL;
1745
1746
if (fd < 0)
1747
return NULL;
1748
1749
if ((fd > ttrace->files.max || ttrace->files.table[fd].pathname == NULL)) {
1750
if (!trace->live)
1751
return NULL;
1752
++trace->stats.proc_getname;
1753
if (thread__read_fd_path(thread, fd))
1754
return NULL;
1755
}
1756
1757
return ttrace->files.table[fd].pathname;
1758
}
1759
1760
size_t syscall_arg__scnprintf_fd(char *bf, size_t size, struct syscall_arg *arg)
1761
{
1762
int fd = arg->val;
1763
size_t printed = scnprintf(bf, size, "%d", fd);
1764
const char *path = thread__fd_path(arg->thread, fd, arg->trace);
1765
1766
if (path)
1767
printed += scnprintf(bf + printed, size - printed, "<%s>", path);
1768
1769
return printed;
1770
}
1771
1772
size_t pid__scnprintf_fd(struct trace *trace, pid_t pid, int fd, char *bf, size_t size)
1773
{
1774
size_t printed = scnprintf(bf, size, "%d", fd);
1775
struct thread *thread = machine__find_thread(trace->host, pid, pid);
1776
1777
if (thread) {
1778
const char *path = thread__fd_path(thread, fd, trace);
1779
1780
if (path)
1781
printed += scnprintf(bf + printed, size - printed, "<%s>", path);
1782
1783
thread__put(thread);
1784
}
1785
1786
return printed;
1787
}
1788
1789
static size_t syscall_arg__scnprintf_close_fd(char *bf, size_t size,
1790
struct syscall_arg *arg)
1791
{
1792
int fd = arg->val;
1793
size_t printed = syscall_arg__scnprintf_fd(bf, size, arg);
1794
struct thread_trace *ttrace = thread__priv(arg->thread);
1795
1796
if (ttrace && fd >= 0 && fd <= ttrace->files.max)
1797
zfree(&ttrace->files.table[fd].pathname);
1798
1799
return printed;
1800
}
1801
1802
static void thread__set_filename_pos(struct thread *thread, const char *bf,
1803
unsigned long ptr)
1804
{
1805
struct thread_trace *ttrace = thread__priv(thread);
1806
1807
ttrace->filename.ptr = ptr;
1808
ttrace->filename.entry_str_pos = bf - ttrace->entry_str;
1809
}
1810
1811
static size_t syscall_arg__scnprintf_augmented_string(struct syscall_arg *arg, char *bf, size_t size)
1812
{
1813
struct augmented_arg *augmented_arg = arg->augmented.args;
1814
size_t printed = scnprintf(bf, size, "\"%.*s\"", augmented_arg->size, augmented_arg->value);
1815
/*
1816
* So that the next arg with a payload can consume its augmented arg, i.e. for rename* syscalls
1817
* we would have two strings, each prefixed by its size.
1818
*/
1819
int consumed = sizeof(*augmented_arg) + augmented_arg->size;
1820
1821
arg->augmented.args = ((void *)arg->augmented.args) + consumed;
1822
arg->augmented.size -= consumed;
1823
1824
return printed;
1825
}
1826
1827
static size_t syscall_arg__scnprintf_filename(char *bf, size_t size,
1828
struct syscall_arg *arg)
1829
{
1830
unsigned long ptr = arg->val;
1831
1832
if (arg->augmented.args)
1833
return syscall_arg__scnprintf_augmented_string(arg, bf, size);
1834
1835
if (!arg->trace->vfs_getname)
1836
return scnprintf(bf, size, "%#x", ptr);
1837
1838
thread__set_filename_pos(arg->thread, bf, ptr);
1839
return 0;
1840
}
1841
1842
#define MAX_CONTROL_CHAR 31
1843
#define MAX_ASCII 127
1844
1845
static size_t syscall_arg__scnprintf_buf(char *bf, size_t size, struct syscall_arg *arg)
1846
{
1847
struct augmented_arg *augmented_arg = arg->augmented.args;
1848
unsigned char *orig = (unsigned char *)augmented_arg->value;
1849
size_t printed = 0;
1850
int consumed;
1851
1852
if (augmented_arg == NULL)
1853
return 0;
1854
1855
for (int j = 0; j < augmented_arg->size; ++j) {
1856
bool control_char = orig[j] <= MAX_CONTROL_CHAR || orig[j] >= MAX_ASCII;
1857
/* print control characters (0~31 and 127), and non-ascii characters in \(digits) */
1858
printed += scnprintf(bf + printed, size - printed, control_char ? "\\%d" : "%c", (int)orig[j]);
1859
}
1860
1861
consumed = sizeof(*augmented_arg) + augmented_arg->size;
1862
arg->augmented.args = ((void *)arg->augmented.args) + consumed;
1863
arg->augmented.size -= consumed;
1864
1865
return printed;
1866
}
1867
1868
static bool trace__filter_duration(struct trace *trace, double t)
1869
{
1870
return t < (trace->duration_filter * NSEC_PER_MSEC);
1871
}
1872
1873
static size_t __trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp)
1874
{
1875
double ts = (double)(tstamp - trace->base_time) / NSEC_PER_MSEC;
1876
1877
return fprintf(fp, "%10.3f ", ts);
1878
}
1879
1880
/*
1881
* We're handling tstamp=0 as an undefined tstamp, i.e. like when we are
1882
* using ttrace->entry_time for a thread that receives a sys_exit without
1883
* first having received a sys_enter ("poll" issued before tracing session
1884
* starts, lost sys_enter exit due to ring buffer overflow).
1885
*/
1886
static size_t trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp)
1887
{
1888
if (tstamp > 0)
1889
return __trace__fprintf_tstamp(trace, tstamp, fp);
1890
1891
return fprintf(fp, " ? ");
1892
}
1893
1894
static pid_t workload_pid = -1;
1895
static volatile sig_atomic_t done = false;
1896
static volatile sig_atomic_t interrupted = false;
1897
1898
static void sighandler_interrupt(int sig __maybe_unused)
1899
{
1900
done = interrupted = true;
1901
}
1902
1903
static void sighandler_chld(int sig __maybe_unused, siginfo_t *info,
1904
void *context __maybe_unused)
1905
{
1906
if (info->si_pid == workload_pid)
1907
done = true;
1908
}
1909
1910
static size_t trace__fprintf_comm_tid(struct trace *trace, struct thread *thread, FILE *fp)
1911
{
1912
size_t printed = 0;
1913
1914
if (trace->multiple_threads) {
1915
if (trace->show_comm)
1916
printed += fprintf(fp, "%.14s/", thread__comm_str(thread));
1917
printed += fprintf(fp, "%d ", thread__tid(thread));
1918
}
1919
1920
return printed;
1921
}
1922
1923
static size_t trace__fprintf_entry_head(struct trace *trace, struct thread *thread,
1924
u64 duration, bool duration_calculated, u64 tstamp, FILE *fp)
1925
{
1926
size_t printed = 0;
1927
1928
if (trace->show_tstamp)
1929
printed = trace__fprintf_tstamp(trace, tstamp, fp);
1930
if (trace->show_duration)
1931
printed += fprintf_duration(duration, duration_calculated, fp);
1932
return printed + trace__fprintf_comm_tid(trace, thread, fp);
1933
}
1934
1935
static int trace__process_event(struct trace *trace, struct machine *machine,
1936
union perf_event *event, struct perf_sample *sample)
1937
{
1938
int ret = 0;
1939
1940
switch (event->header.type) {
1941
case PERF_RECORD_LOST:
1942
color_fprintf(trace->output, PERF_COLOR_RED,
1943
"LOST %" PRIu64 " events!\n", (u64)event->lost.lost);
1944
ret = machine__process_lost_event(machine, event, sample);
1945
break;
1946
default:
1947
ret = machine__process_event(machine, event, sample);
1948
break;
1949
}
1950
1951
return ret;
1952
}
1953
1954
static int trace__tool_process(const struct perf_tool *tool,
1955
union perf_event *event,
1956
struct perf_sample *sample,
1957
struct machine *machine)
1958
{
1959
struct trace *trace = container_of(tool, struct trace, tool);
1960
return trace__process_event(trace, machine, event, sample);
1961
}
1962
1963
static char *trace__machine__resolve_kernel_addr(void *vmachine, unsigned long long *addrp, char **modp)
1964
{
1965
struct machine *machine = vmachine;
1966
1967
if (machine->kptr_restrict_warned)
1968
return NULL;
1969
1970
if (symbol_conf.kptr_restrict) {
1971
pr_warning("Kernel address maps (/proc/{kallsyms,modules}) are restricted.\n\n"
1972
"Check /proc/sys/kernel/kptr_restrict and /proc/sys/kernel/perf_event_paranoid.\n\n"
1973
"Kernel samples will not be resolved.\n");
1974
machine->kptr_restrict_warned = true;
1975
return NULL;
1976
}
1977
1978
return machine__resolve_kernel_addr(vmachine, addrp, modp);
1979
}
1980
1981
static int trace__symbols_init(struct trace *trace, int argc, const char **argv,
1982
struct evlist *evlist)
1983
{
1984
int err = symbol__init(NULL);
1985
1986
if (err)
1987
return err;
1988
1989
perf_env__init(&trace->host_env);
1990
err = perf_env__set_cmdline(&trace->host_env, argc, argv);
1991
if (err)
1992
goto out;
1993
1994
trace->host = machine__new_host(&trace->host_env);
1995
if (trace->host == NULL) {
1996
err = -ENOMEM;
1997
goto out;
1998
}
1999
thread__set_priv_destructor(thread_trace__delete);
2000
2001
err = trace_event__register_resolver(trace->host, trace__machine__resolve_kernel_addr);
2002
if (err < 0)
2003
goto out;
2004
2005
err = __machine__synthesize_threads(trace->host, &trace->tool, &trace->opts.target,
2006
evlist->core.threads, trace__tool_process,
2007
true, false, 1);
2008
out:
2009
if (err) {
2010
perf_env__exit(&trace->host_env);
2011
symbol__exit();
2012
}
2013
return err;
2014
}
2015
2016
static void trace__symbols__exit(struct trace *trace)
2017
{
2018
machine__exit(trace->host);
2019
trace->host = NULL;
2020
2021
perf_env__exit(&trace->host_env);
2022
symbol__exit();
2023
}
2024
2025
static int syscall__alloc_arg_fmts(struct syscall *sc, int nr_args)
2026
{
2027
int idx;
2028
2029
if (nr_args == RAW_SYSCALL_ARGS_NUM && sc->fmt && sc->fmt->nr_args != 0)
2030
nr_args = sc->fmt->nr_args;
2031
2032
sc->arg_fmt = calloc(nr_args, sizeof(*sc->arg_fmt));
2033
if (sc->arg_fmt == NULL)
2034
return -1;
2035
2036
for (idx = 0; idx < nr_args; ++idx) {
2037
if (sc->fmt)
2038
sc->arg_fmt[idx] = sc->fmt->arg[idx];
2039
}
2040
2041
sc->nr_args = nr_args;
2042
return 0;
2043
}
2044
2045
static const struct syscall_arg_fmt syscall_arg_fmts__by_name[] = {
2046
{ .name = "msr", .scnprintf = SCA_X86_MSR, .strtoul = STUL_X86_MSR, },
2047
{ .name = "vector", .scnprintf = SCA_X86_IRQ_VECTORS, .strtoul = STUL_X86_IRQ_VECTORS, },
2048
};
2049
2050
static int syscall_arg_fmt__cmp(const void *name, const void *fmtp)
2051
{
2052
const struct syscall_arg_fmt *fmt = fmtp;
2053
return strcmp(name, fmt->name);
2054
}
2055
2056
static const struct syscall_arg_fmt *
2057
__syscall_arg_fmt__find_by_name(const struct syscall_arg_fmt *fmts, const int nmemb,
2058
const char *name)
2059
{
2060
return bsearch(name, fmts, nmemb, sizeof(struct syscall_arg_fmt), syscall_arg_fmt__cmp);
2061
}
2062
2063
static const struct syscall_arg_fmt *syscall_arg_fmt__find_by_name(const char *name)
2064
{
2065
const int nmemb = ARRAY_SIZE(syscall_arg_fmts__by_name);
2066
return __syscall_arg_fmt__find_by_name(syscall_arg_fmts__by_name, nmemb, name);
2067
}
2068
2069
static struct tep_format_field *
2070
syscall_arg_fmt__init_array(struct syscall_arg_fmt *arg, struct tep_format_field *field,
2071
bool *use_btf)
2072
{
2073
struct tep_format_field *last_field = NULL;
2074
int len;
2075
2076
for (; field; field = field->next, ++arg) {
2077
last_field = field;
2078
2079
if (arg->scnprintf)
2080
continue;
2081
2082
len = strlen(field->name);
2083
2084
// As far as heuristics (or intention) goes this seems to hold true, and makes sense!
2085
if ((field->flags & TEP_FIELD_IS_POINTER) && strstarts(field->type, "const "))
2086
arg->from_user = true;
2087
2088
if (strcmp(field->type, "const char *") == 0 &&
2089
((len >= 4 && strcmp(field->name + len - 4, "name") == 0) ||
2090
strstr(field->name, "path") != NULL)) {
2091
arg->scnprintf = SCA_FILENAME;
2092
} else if ((field->flags & TEP_FIELD_IS_POINTER) || strstr(field->name, "addr"))
2093
arg->scnprintf = SCA_PTR;
2094
else if (strcmp(field->type, "pid_t") == 0)
2095
arg->scnprintf = SCA_PID;
2096
else if (strcmp(field->type, "umode_t") == 0)
2097
arg->scnprintf = SCA_MODE_T;
2098
else if ((field->flags & TEP_FIELD_IS_ARRAY) && strstr(field->type, "char")) {
2099
arg->scnprintf = SCA_CHAR_ARRAY;
2100
arg->nr_entries = field->arraylen;
2101
} else if ((strcmp(field->type, "int") == 0 ||
2102
strcmp(field->type, "unsigned int") == 0 ||
2103
strcmp(field->type, "long") == 0) &&
2104
len >= 2 && strcmp(field->name + len - 2, "fd") == 0) {
2105
/*
2106
* /sys/kernel/tracing/events/syscalls/sys_enter*
2107
* grep -E 'field:.*fd;' .../format|sed -r 's/.*field:([a-z ]+) [a-z_]*fd.+/\1/g'|sort|uniq -c
2108
* 65 int
2109
* 23 unsigned int
2110
* 7 unsigned long
2111
*/
2112
arg->scnprintf = SCA_FD;
2113
} else if (strstr(field->type, "enum") && use_btf != NULL) {
2114
*use_btf = true;
2115
arg->strtoul = STUL_BTF_TYPE;
2116
} else {
2117
const struct syscall_arg_fmt *fmt =
2118
syscall_arg_fmt__find_by_name(field->name);
2119
2120
if (fmt) {
2121
arg->scnprintf = fmt->scnprintf;
2122
arg->strtoul = fmt->strtoul;
2123
}
2124
}
2125
}
2126
2127
return last_field;
2128
}
2129
2130
static int syscall__set_arg_fmts(struct syscall *sc)
2131
{
2132
struct tep_format_field *last_field = syscall_arg_fmt__init_array(sc->arg_fmt, sc->args,
2133
&sc->use_btf);
2134
2135
if (last_field)
2136
sc->args_size = last_field->offset + last_field->size;
2137
2138
return 0;
2139
}
2140
2141
static int syscall__read_info(struct syscall *sc, struct trace *trace)
2142
{
2143
char tp_name[128];
2144
const char *name;
2145
int err;
2146
2147
if (sc->nonexistent)
2148
return -EEXIST;
2149
2150
if (sc->name) {
2151
/* Info already read. */
2152
return 0;
2153
}
2154
2155
name = syscalltbl__name(sc->e_machine, sc->id);
2156
if (name == NULL) {
2157
sc->nonexistent = true;
2158
return -EEXIST;
2159
}
2160
2161
sc->name = name;
2162
sc->fmt = syscall_fmt__find(sc->name);
2163
2164
snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->name);
2165
sc->tp_format = trace_event__tp_format("syscalls", tp_name);
2166
2167
if (IS_ERR(sc->tp_format) && sc->fmt && sc->fmt->alias) {
2168
snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->fmt->alias);
2169
sc->tp_format = trace_event__tp_format("syscalls", tp_name);
2170
}
2171
2172
/*
2173
* Fails to read trace point format via sysfs node, so the trace point
2174
* doesn't exist. Set the 'nonexistent' flag as true.
2175
*/
2176
if (IS_ERR(sc->tp_format)) {
2177
sc->nonexistent = true;
2178
err = PTR_ERR(sc->tp_format);
2179
sc->tp_format = NULL;
2180
return err;
2181
}
2182
2183
/*
2184
* The tracepoint format contains __syscall_nr field, so it's one more
2185
* than the actual number of syscall arguments.
2186
*/
2187
if (syscall__alloc_arg_fmts(sc, sc->tp_format->format.nr_fields - 1))
2188
return -ENOMEM;
2189
2190
sc->args = sc->tp_format->format.fields;
2191
/*
2192
* We need to check and discard the first variable '__syscall_nr'
2193
* or 'nr' that mean the syscall number. It is needless here.
2194
* So drop '__syscall_nr' or 'nr' field but does not exist on older kernels.
2195
*/
2196
if (sc->args && (!strcmp(sc->args->name, "__syscall_nr") || !strcmp(sc->args->name, "nr"))) {
2197
sc->args = sc->args->next;
2198
--sc->nr_args;
2199
}
2200
2201
sc->is_exit = !strcmp(name, "exit_group") || !strcmp(name, "exit");
2202
sc->is_open = !strcmp(name, "open") || !strcmp(name, "openat");
2203
2204
err = syscall__set_arg_fmts(sc);
2205
2206
/* after calling syscall__set_arg_fmts() we'll know whether use_btf is true */
2207
if (sc->use_btf)
2208
trace__load_vmlinux_btf(trace);
2209
2210
return err;
2211
}
2212
2213
static int evsel__init_tp_arg_scnprintf(struct evsel *evsel, bool *use_btf)
2214
{
2215
struct syscall_arg_fmt *fmt = evsel__syscall_arg_fmt(evsel);
2216
2217
if (fmt != NULL) {
2218
const struct tep_event *tp_format = evsel__tp_format(evsel);
2219
2220
if (tp_format) {
2221
syscall_arg_fmt__init_array(fmt, tp_format->format.fields, use_btf);
2222
return 0;
2223
}
2224
}
2225
2226
return -ENOMEM;
2227
}
2228
2229
static int intcmp(const void *a, const void *b)
2230
{
2231
const int *one = a, *another = b;
2232
2233
return *one - *another;
2234
}
2235
2236
static int trace__validate_ev_qualifier(struct trace *trace)
2237
{
2238
int err = 0;
2239
bool printed_invalid_prefix = false;
2240
struct str_node *pos;
2241
size_t nr_used = 0, nr_allocated = strlist__nr_entries(trace->ev_qualifier);
2242
2243
trace->ev_qualifier_ids.entries = malloc(nr_allocated *
2244
sizeof(trace->ev_qualifier_ids.entries[0]));
2245
2246
if (trace->ev_qualifier_ids.entries == NULL) {
2247
fputs("Error:\tNot enough memory for allocating events qualifier ids\n",
2248
trace->output);
2249
err = -EINVAL;
2250
goto out;
2251
}
2252
2253
strlist__for_each_entry(pos, trace->ev_qualifier) {
2254
const char *sc = pos->s;
2255
/*
2256
* TODO: Assume more than the validation/warnings are all for
2257
* the same binary type as perf.
2258
*/
2259
int id = syscalltbl__id(EM_HOST, sc), match_next = -1;
2260
2261
if (id < 0) {
2262
id = syscalltbl__strglobmatch_first(EM_HOST, sc, &match_next);
2263
if (id >= 0)
2264
goto matches;
2265
2266
if (!printed_invalid_prefix) {
2267
pr_debug("Skipping unknown syscalls: ");
2268
printed_invalid_prefix = true;
2269
} else {
2270
pr_debug(", ");
2271
}
2272
2273
pr_debug("%s", sc);
2274
continue;
2275
}
2276
matches:
2277
trace->ev_qualifier_ids.entries[nr_used++] = id;
2278
if (match_next == -1)
2279
continue;
2280
2281
while (1) {
2282
id = syscalltbl__strglobmatch_next(EM_HOST, sc, &match_next);
2283
if (id < 0)
2284
break;
2285
if (nr_allocated == nr_used) {
2286
void *entries;
2287
2288
nr_allocated += 8;
2289
entries = realloc(trace->ev_qualifier_ids.entries,
2290
nr_allocated * sizeof(trace->ev_qualifier_ids.entries[0]));
2291
if (entries == NULL) {
2292
err = -ENOMEM;
2293
fputs("\nError:\t Not enough memory for parsing\n", trace->output);
2294
goto out_free;
2295
}
2296
trace->ev_qualifier_ids.entries = entries;
2297
}
2298
trace->ev_qualifier_ids.entries[nr_used++] = id;
2299
}
2300
}
2301
2302
trace->ev_qualifier_ids.nr = nr_used;
2303
qsort(trace->ev_qualifier_ids.entries, nr_used, sizeof(int), intcmp);
2304
out:
2305
if (printed_invalid_prefix)
2306
pr_debug("\n");
2307
return err;
2308
out_free:
2309
zfree(&trace->ev_qualifier_ids.entries);
2310
trace->ev_qualifier_ids.nr = 0;
2311
goto out;
2312
}
2313
2314
static __maybe_unused bool trace__syscall_enabled(struct trace *trace, int id)
2315
{
2316
bool in_ev_qualifier;
2317
2318
if (trace->ev_qualifier_ids.nr == 0)
2319
return true;
2320
2321
in_ev_qualifier = bsearch(&id, trace->ev_qualifier_ids.entries,
2322
trace->ev_qualifier_ids.nr, sizeof(int), intcmp) != NULL;
2323
2324
if (in_ev_qualifier)
2325
return !trace->not_ev_qualifier;
2326
2327
return trace->not_ev_qualifier;
2328
}
2329
2330
/*
2331
* args is to be interpreted as a series of longs but we need to handle
2332
* 8-byte unaligned accesses. args points to raw_data within the event
2333
* and raw_data is guaranteed to be 8-byte unaligned because it is
2334
* preceded by raw_size which is a u32. So we need to copy args to a temp
2335
* variable to read it. Most notably this avoids extended load instructions
2336
* on unaligned addresses
2337
*/
2338
unsigned long syscall_arg__val(struct syscall_arg *arg, u8 idx)
2339
{
2340
unsigned long val;
2341
unsigned char *p = arg->args + sizeof(unsigned long) * idx;
2342
2343
memcpy(&val, p, sizeof(val));
2344
return val;
2345
}
2346
2347
static size_t syscall__scnprintf_name(struct syscall *sc, char *bf, size_t size,
2348
struct syscall_arg *arg)
2349
{
2350
if (sc->arg_fmt && sc->arg_fmt[arg->idx].name)
2351
return scnprintf(bf, size, "%s: ", sc->arg_fmt[arg->idx].name);
2352
2353
return scnprintf(bf, size, "arg%d: ", arg->idx);
2354
}
2355
2356
/*
2357
* Check if the value is in fact zero, i.e. mask whatever needs masking, such
2358
* as mount 'flags' argument that needs ignoring some magic flag, see comment
2359
* in tools/perf/trace/beauty/mount_flags.c
2360
*/
2361
static unsigned long syscall_arg_fmt__mask_val(struct syscall_arg_fmt *fmt, struct syscall_arg *arg, unsigned long val)
2362
{
2363
if (fmt && fmt->mask_val)
2364
return fmt->mask_val(arg, val);
2365
2366
return val;
2367
}
2368
2369
static size_t syscall_arg_fmt__scnprintf_val(struct syscall_arg_fmt *fmt, char *bf, size_t size,
2370
struct syscall_arg *arg, unsigned long val)
2371
{
2372
if (fmt && fmt->scnprintf) {
2373
arg->val = val;
2374
if (fmt->parm)
2375
arg->parm = fmt->parm;
2376
return fmt->scnprintf(bf, size, arg);
2377
}
2378
return scnprintf(bf, size, "%ld", val);
2379
}
2380
2381
static size_t syscall__scnprintf_args(struct syscall *sc, char *bf, size_t size,
2382
unsigned char *args, void *augmented_args, int augmented_args_size,
2383
struct trace *trace, struct thread *thread)
2384
{
2385
size_t printed = 0, btf_printed;
2386
unsigned long val;
2387
u8 bit = 1;
2388
struct syscall_arg arg = {
2389
.args = args,
2390
.augmented = {
2391
.size = augmented_args_size,
2392
.args = augmented_args,
2393
},
2394
.idx = 0,
2395
.mask = 0,
2396
.trace = trace,
2397
.thread = thread,
2398
.show_string_prefix = trace->show_string_prefix,
2399
};
2400
struct thread_trace *ttrace = thread__priv(thread);
2401
void *default_scnprintf;
2402
2403
/*
2404
* Things like fcntl will set this in its 'cmd' formatter to pick the
2405
* right formatter for the return value (an fd? file flags?), which is
2406
* not needed for syscalls that always return a given type, say an fd.
2407
*/
2408
ttrace->ret_scnprintf = NULL;
2409
2410
if (sc->args != NULL) {
2411
struct tep_format_field *field;
2412
2413
for (field = sc->args; field;
2414
field = field->next, ++arg.idx, bit <<= 1) {
2415
if (arg.mask & bit)
2416
continue;
2417
2418
arg.fmt = &sc->arg_fmt[arg.idx];
2419
val = syscall_arg__val(&arg, arg.idx);
2420
/*
2421
* Some syscall args need some mask, most don't and
2422
* return val untouched.
2423
*/
2424
val = syscall_arg_fmt__mask_val(&sc->arg_fmt[arg.idx], &arg, val);
2425
2426
/*
2427
* Suppress this argument if its value is zero and show_zero
2428
* property isn't set.
2429
*
2430
* If it has a BTF type, then override the zero suppression knob
2431
* as the common case is for zero in an enum to have an associated entry.
2432
*/
2433
if (val == 0 && !trace->show_zeros &&
2434
!(sc->arg_fmt && sc->arg_fmt[arg.idx].show_zero) &&
2435
!(sc->arg_fmt && sc->arg_fmt[arg.idx].strtoul == STUL_BTF_TYPE))
2436
continue;
2437
2438
printed += scnprintf(bf + printed, size - printed, "%s", printed ? ", " : "");
2439
2440
if (trace->show_arg_names)
2441
printed += scnprintf(bf + printed, size - printed, "%s: ", field->name);
2442
2443
default_scnprintf = sc->arg_fmt[arg.idx].scnprintf;
2444
2445
if (trace->force_btf || default_scnprintf == NULL || default_scnprintf == SCA_PTR) {
2446
btf_printed = trace__btf_scnprintf(trace, &arg, bf + printed,
2447
size - printed, val, field->type);
2448
if (btf_printed) {
2449
printed += btf_printed;
2450
continue;
2451
}
2452
}
2453
2454
printed += syscall_arg_fmt__scnprintf_val(&sc->arg_fmt[arg.idx],
2455
bf + printed, size - printed, &arg, val);
2456
}
2457
} else if (IS_ERR(sc->tp_format)) {
2458
/*
2459
* If we managed to read the tracepoint /format file, then we
2460
* may end up not having any args, like with gettid(), so only
2461
* print the raw args when we didn't manage to read it.
2462
*/
2463
while (arg.idx < sc->nr_args) {
2464
if (arg.mask & bit)
2465
goto next_arg;
2466
val = syscall_arg__val(&arg, arg.idx);
2467
if (printed)
2468
printed += scnprintf(bf + printed, size - printed, ", ");
2469
printed += syscall__scnprintf_name(sc, bf + printed, size - printed, &arg);
2470
printed += syscall_arg_fmt__scnprintf_val(&sc->arg_fmt[arg.idx], bf + printed, size - printed, &arg, val);
2471
next_arg:
2472
++arg.idx;
2473
bit <<= 1;
2474
}
2475
}
2476
2477
return printed;
2478
}
2479
2480
static struct syscall *syscall__new(int e_machine, int id)
2481
{
2482
struct syscall *sc = zalloc(sizeof(*sc));
2483
2484
if (!sc)
2485
return NULL;
2486
2487
sc->e_machine = e_machine;
2488
sc->id = id;
2489
return sc;
2490
}
2491
2492
static void syscall__delete(struct syscall *sc)
2493
{
2494
if (!sc)
2495
return;
2496
2497
free(sc->arg_fmt);
2498
free(sc);
2499
}
2500
2501
static int syscall__bsearch_cmp(const void *key, const void *entry)
2502
{
2503
const struct syscall *a = key, *b = *((const struct syscall **)entry);
2504
2505
if (a->e_machine != b->e_machine)
2506
return a->e_machine - b->e_machine;
2507
2508
return a->id - b->id;
2509
}
2510
2511
static int syscall__cmp(const void *va, const void *vb)
2512
{
2513
const struct syscall *a = *((const struct syscall **)va);
2514
const struct syscall *b = *((const struct syscall **)vb);
2515
2516
if (a->e_machine != b->e_machine)
2517
return a->e_machine - b->e_machine;
2518
2519
return a->id - b->id;
2520
}
2521
2522
static struct syscall *trace__find_syscall(struct trace *trace, int e_machine, int id)
2523
{
2524
struct syscall key = {
2525
.e_machine = e_machine,
2526
.id = id,
2527
};
2528
struct syscall *sc, **tmp;
2529
2530
if (trace->syscalls.table) {
2531
struct syscall **sc_entry = bsearch(&key, trace->syscalls.table,
2532
trace->syscalls.table_size,
2533
sizeof(trace->syscalls.table[0]),
2534
syscall__bsearch_cmp);
2535
2536
if (sc_entry)
2537
return *sc_entry;
2538
}
2539
2540
sc = syscall__new(e_machine, id);
2541
if (!sc)
2542
return NULL;
2543
2544
tmp = reallocarray(trace->syscalls.table, trace->syscalls.table_size + 1,
2545
sizeof(trace->syscalls.table[0]));
2546
if (!tmp) {
2547
syscall__delete(sc);
2548
return NULL;
2549
}
2550
2551
trace->syscalls.table = tmp;
2552
trace->syscalls.table[trace->syscalls.table_size++] = sc;
2553
qsort(trace->syscalls.table, trace->syscalls.table_size, sizeof(trace->syscalls.table[0]),
2554
syscall__cmp);
2555
return sc;
2556
}
2557
2558
typedef int (*tracepoint_handler)(struct trace *trace, struct evsel *evsel,
2559
union perf_event *event,
2560
struct perf_sample *sample);
2561
2562
static struct syscall *trace__syscall_info(struct trace *trace, struct evsel *evsel,
2563
int e_machine, int id)
2564
{
2565
struct syscall *sc;
2566
int err = 0;
2567
2568
if (id < 0) {
2569
2570
/*
2571
* XXX: Noticed on x86_64, reproduced as far back as 3.0.36, haven't tried
2572
* before that, leaving at a higher verbosity level till that is
2573
* explained. Reproduced with plain ftrace with:
2574
*
2575
* echo 1 > /t/events/raw_syscalls/sys_exit/enable
2576
* grep "NR -1 " /t/trace_pipe
2577
*
2578
* After generating some load on the machine.
2579
*/
2580
if (verbose > 1) {
2581
static u64 n;
2582
fprintf(trace->output, "Invalid syscall %d id, skipping (%s, %" PRIu64 ") ...\n",
2583
id, evsel__name(evsel), ++n);
2584
}
2585
return NULL;
2586
}
2587
2588
err = -EINVAL;
2589
2590
sc = trace__find_syscall(trace, e_machine, id);
2591
if (sc)
2592
err = syscall__read_info(sc, trace);
2593
2594
if (err && verbose > 0) {
2595
char sbuf[STRERR_BUFSIZE];
2596
2597
fprintf(trace->output, "Problems reading syscall %d: %d (%s)", id, -err,
2598
str_error_r(-err, sbuf, sizeof(sbuf)));
2599
if (sc && sc->name)
2600
fprintf(trace->output, "(%s)", sc->name);
2601
fputs(" information\n", trace->output);
2602
}
2603
return err ? NULL : sc;
2604
}
2605
2606
struct syscall_stats {
2607
struct stats stats;
2608
u64 nr_failures;
2609
int max_errno;
2610
u32 *errnos;
2611
};
2612
2613
static void thread__update_stats(struct thread *thread, struct thread_trace *ttrace,
2614
int id, struct perf_sample *sample, long err,
2615
struct trace *trace)
2616
{
2617
struct hashmap *syscall_stats = ttrace->syscall_stats;
2618
struct syscall_stats *stats = NULL;
2619
u64 duration = 0;
2620
2621
if (trace->summary_bpf)
2622
return;
2623
2624
if (trace->summary_mode == SUMMARY__BY_TOTAL)
2625
syscall_stats = trace->syscall_stats;
2626
2627
if (!hashmap__find(syscall_stats, id, &stats)) {
2628
stats = zalloc(sizeof(*stats));
2629
if (stats == NULL)
2630
return;
2631
2632
init_stats(&stats->stats);
2633
if (hashmap__add(syscall_stats, id, stats) < 0) {
2634
free(stats);
2635
return;
2636
}
2637
}
2638
2639
if (ttrace->entry_time && sample->time > ttrace->entry_time)
2640
duration = sample->time - ttrace->entry_time;
2641
2642
update_stats(&stats->stats, duration);
2643
2644
if (err < 0) {
2645
++stats->nr_failures;
2646
2647
if (!trace->errno_summary)
2648
return;
2649
2650
err = -err;
2651
if (err > stats->max_errno) {
2652
u32 *new_errnos = realloc(stats->errnos, err * sizeof(u32));
2653
2654
if (new_errnos) {
2655
memset(new_errnos + stats->max_errno, 0, (err - stats->max_errno) * sizeof(u32));
2656
} else {
2657
pr_debug("Not enough memory for errno stats for thread \"%s\"(%d/%d), results will be incomplete\n",
2658
thread__comm_str(thread), thread__pid(thread),
2659
thread__tid(thread));
2660
return;
2661
}
2662
2663
stats->errnos = new_errnos;
2664
stats->max_errno = err;
2665
}
2666
2667
++stats->errnos[err - 1];
2668
}
2669
}
2670
2671
static int trace__printf_interrupted_entry(struct trace *trace)
2672
{
2673
struct thread_trace *ttrace;
2674
size_t printed;
2675
int len;
2676
2677
if (trace->failure_only || trace->current == NULL)
2678
return 0;
2679
2680
ttrace = thread__priv(trace->current);
2681
2682
if (!ttrace->entry_pending)
2683
return 0;
2684
2685
printed = trace__fprintf_entry_head(trace, trace->current, 0, false, ttrace->entry_time, trace->output);
2686
printed += len = fprintf(trace->output, "%s)", ttrace->entry_str);
2687
2688
if (len < trace->args_alignment - 4)
2689
printed += fprintf(trace->output, "%-*s", trace->args_alignment - 4 - len, " ");
2690
2691
printed += fprintf(trace->output, " ...\n");
2692
2693
ttrace->entry_pending = false;
2694
++trace->nr_events_printed;
2695
2696
return printed;
2697
}
2698
2699
static int trace__fprintf_sample(struct trace *trace, struct evsel *evsel,
2700
struct perf_sample *sample, struct thread *thread)
2701
{
2702
int printed = 0;
2703
2704
if (trace->print_sample) {
2705
double ts = (double)sample->time / NSEC_PER_MSEC;
2706
2707
printed += fprintf(trace->output, "%22s %10.3f %s %d/%d [%d]\n",
2708
evsel__name(evsel), ts,
2709
thread__comm_str(thread),
2710
sample->pid, sample->tid, sample->cpu);
2711
}
2712
2713
return printed;
2714
}
2715
2716
static void *syscall__augmented_args(struct syscall *sc, struct perf_sample *sample, int *augmented_args_size, int raw_augmented_args_size)
2717
{
2718
/*
2719
* For now with BPF raw_augmented we hook into raw_syscalls:sys_enter
2720
* and there we get all 6 syscall args plus the tracepoint common fields
2721
* that gets calculated at the start and the syscall_nr (another long).
2722
* So we check if that is the case and if so don't look after the
2723
* sc->args_size but always after the full raw_syscalls:sys_enter payload,
2724
* which is fixed.
2725
*
2726
* We'll revisit this later to pass s->args_size to the BPF augmenter
2727
* (now tools/perf/examples/bpf/augmented_raw_syscalls.c, so that it
2728
* copies only what we need for each syscall, like what happens when we
2729
* use syscalls:sys_enter_NAME, so that we reduce the kernel/userspace
2730
* traffic to just what is needed for each syscall.
2731
*/
2732
int args_size = raw_augmented_args_size ?: sc->args_size;
2733
2734
*augmented_args_size = sample->raw_size - args_size;
2735
if (*augmented_args_size > 0) {
2736
static uintptr_t argbuf[1024]; /* assuming single-threaded */
2737
2738
if ((size_t)(*augmented_args_size) > sizeof(argbuf))
2739
return NULL;
2740
2741
/*
2742
* The perf ring-buffer is 8-byte aligned but sample->raw_data
2743
* is not because it's preceded by u32 size. Later, beautifier
2744
* will use the augmented args with stricter alignments like in
2745
* some struct. To make sure it's aligned, let's copy the args
2746
* into a static buffer as it's single-threaded for now.
2747
*/
2748
memcpy(argbuf, sample->raw_data + args_size, *augmented_args_size);
2749
2750
return argbuf;
2751
}
2752
return NULL;
2753
}
2754
2755
static int trace__sys_enter(struct trace *trace, struct evsel *evsel,
2756
union perf_event *event __maybe_unused,
2757
struct perf_sample *sample)
2758
{
2759
char *msg;
2760
void *args;
2761
int printed = 0;
2762
struct thread *thread;
2763
int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1;
2764
int augmented_args_size = 0, e_machine;
2765
void *augmented_args = NULL;
2766
struct syscall *sc;
2767
struct thread_trace *ttrace;
2768
2769
thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2770
e_machine = thread__e_machine(thread, trace->host);
2771
sc = trace__syscall_info(trace, evsel, e_machine, id);
2772
if (sc == NULL)
2773
goto out_put;
2774
ttrace = thread__trace(thread, trace);
2775
if (ttrace == NULL)
2776
goto out_put;
2777
2778
trace__fprintf_sample(trace, evsel, sample, thread);
2779
2780
args = perf_evsel__sc_tp_ptr(evsel, args, sample);
2781
2782
if (ttrace->entry_str == NULL) {
2783
ttrace->entry_str = malloc(trace__entry_str_size);
2784
if (!ttrace->entry_str)
2785
goto out_put;
2786
}
2787
2788
if (!(trace->duration_filter || trace->summary_only || trace->min_stack))
2789
trace__printf_interrupted_entry(trace);
2790
/*
2791
* If this is raw_syscalls.sys_enter, then it always comes with the 6 possible
2792
* arguments, even if the syscall being handled, say "openat", uses only 4 arguments
2793
* this breaks syscall__augmented_args() check for augmented args, as we calculate
2794
* syscall->args_size using each syscalls:sys_enter_NAME tracefs format file,
2795
* so when handling, say the openat syscall, we end up getting 6 args for the
2796
* raw_syscalls:sys_enter event, when we expected just 4, we end up mistakenly
2797
* thinking that the extra 2 u64 args are the augmented filename, so just check
2798
* here and avoid using augmented syscalls when the evsel is the raw_syscalls one.
2799
*/
2800
if (evsel != trace->syscalls.events.sys_enter)
2801
augmented_args = syscall__augmented_args(sc, sample, &augmented_args_size, trace->raw_augmented_syscalls_args_size);
2802
ttrace->entry_time = sample->time;
2803
msg = ttrace->entry_str;
2804
printed += scnprintf(msg + printed, trace__entry_str_size - printed, "%s(", sc->name);
2805
2806
printed += syscall__scnprintf_args(sc, msg + printed, trace__entry_str_size - printed,
2807
args, augmented_args, augmented_args_size, trace, thread);
2808
2809
if (sc->is_exit) {
2810
if (!(trace->duration_filter || trace->summary_only || trace->failure_only || trace->min_stack)) {
2811
int alignment = 0;
2812
2813
trace__fprintf_entry_head(trace, thread, 0, false, ttrace->entry_time, trace->output);
2814
printed = fprintf(trace->output, "%s)", ttrace->entry_str);
2815
if (trace->args_alignment > printed)
2816
alignment = trace->args_alignment - printed;
2817
fprintf(trace->output, "%*s= ?\n", alignment, " ");
2818
}
2819
} else {
2820
ttrace->entry_pending = true;
2821
/* See trace__vfs_getname & trace__sys_exit */
2822
ttrace->filename.pending_open = false;
2823
}
2824
2825
if (trace->current != thread) {
2826
thread__put(trace->current);
2827
trace->current = thread__get(thread);
2828
}
2829
err = 0;
2830
out_put:
2831
thread__put(thread);
2832
return err;
2833
}
2834
2835
static int trace__fprintf_sys_enter(struct trace *trace, struct evsel *evsel,
2836
struct perf_sample *sample)
2837
{
2838
struct thread_trace *ttrace;
2839
struct thread *thread;
2840
int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1;
2841
struct syscall *sc;
2842
char msg[1024];
2843
void *args, *augmented_args = NULL;
2844
int augmented_args_size, e_machine;
2845
size_t printed = 0;
2846
2847
2848
thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2849
e_machine = thread__e_machine(thread, trace->host);
2850
sc = trace__syscall_info(trace, evsel, e_machine, id);
2851
if (sc == NULL)
2852
goto out_put;
2853
ttrace = thread__trace(thread, trace);
2854
/*
2855
* We need to get ttrace just to make sure it is there when syscall__scnprintf_args()
2856
* and the rest of the beautifiers accessing it via struct syscall_arg touches it.
2857
*/
2858
if (ttrace == NULL)
2859
goto out_put;
2860
2861
args = perf_evsel__sc_tp_ptr(evsel, args, sample);
2862
augmented_args = syscall__augmented_args(sc, sample, &augmented_args_size, trace->raw_augmented_syscalls_args_size);
2863
printed += syscall__scnprintf_args(sc, msg, sizeof(msg), args, augmented_args, augmented_args_size, trace, thread);
2864
fprintf(trace->output, "%.*s", (int)printed, msg);
2865
err = 0;
2866
out_put:
2867
thread__put(thread);
2868
return err;
2869
}
2870
2871
static int trace__resolve_callchain(struct trace *trace, struct evsel *evsel,
2872
struct perf_sample *sample,
2873
struct callchain_cursor *cursor)
2874
{
2875
struct addr_location al;
2876
int max_stack = evsel->core.attr.sample_max_stack ?
2877
evsel->core.attr.sample_max_stack :
2878
trace->max_stack;
2879
int err = -1;
2880
2881
addr_location__init(&al);
2882
if (machine__resolve(trace->host, &al, sample) < 0)
2883
goto out;
2884
2885
err = thread__resolve_callchain(al.thread, cursor, evsel, sample, NULL, NULL, max_stack);
2886
out:
2887
addr_location__exit(&al);
2888
return err;
2889
}
2890
2891
static int trace__fprintf_callchain(struct trace *trace, struct perf_sample *sample)
2892
{
2893
/* TODO: user-configurable print_opts */
2894
const unsigned int print_opts = EVSEL__PRINT_SYM |
2895
EVSEL__PRINT_DSO |
2896
EVSEL__PRINT_UNKNOWN_AS_ADDR;
2897
2898
return sample__fprintf_callchain(sample, 38, print_opts, get_tls_callchain_cursor(), symbol_conf.bt_stop_list, trace->output);
2899
}
2900
2901
static int trace__sys_exit(struct trace *trace, struct evsel *evsel,
2902
union perf_event *event __maybe_unused,
2903
struct perf_sample *sample)
2904
{
2905
long ret;
2906
u64 duration = 0;
2907
bool duration_calculated = false;
2908
struct thread *thread;
2909
int id = perf_evsel__sc_tp_uint(evsel, id, sample), err = -1, callchain_ret = 0, printed = 0;
2910
int alignment = trace->args_alignment, e_machine;
2911
struct syscall *sc;
2912
struct thread_trace *ttrace;
2913
2914
thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
2915
e_machine = thread__e_machine(thread, trace->host);
2916
sc = trace__syscall_info(trace, evsel, e_machine, id);
2917
if (sc == NULL)
2918
goto out_put;
2919
ttrace = thread__trace(thread, trace);
2920
if (ttrace == NULL)
2921
goto out_put;
2922
2923
trace__fprintf_sample(trace, evsel, sample, thread);
2924
2925
ret = perf_evsel__sc_tp_uint(evsel, ret, sample);
2926
2927
if (trace->summary)
2928
thread__update_stats(thread, ttrace, id, sample, ret, trace);
2929
2930
if (!trace->fd_path_disabled && sc->is_open && ret >= 0 && ttrace->filename.pending_open) {
2931
trace__set_fd_pathname(thread, ret, ttrace->filename.name);
2932
ttrace->filename.pending_open = false;
2933
++trace->stats.vfs_getname;
2934
}
2935
2936
if (ttrace->entry_time) {
2937
duration = sample->time - ttrace->entry_time;
2938
if (trace__filter_duration(trace, duration))
2939
goto out;
2940
duration_calculated = true;
2941
} else if (trace->duration_filter)
2942
goto out;
2943
2944
if (sample->callchain) {
2945
struct callchain_cursor *cursor = get_tls_callchain_cursor();
2946
2947
callchain_ret = trace__resolve_callchain(trace, evsel, sample, cursor);
2948
if (callchain_ret == 0) {
2949
if (cursor->nr < trace->min_stack)
2950
goto out;
2951
callchain_ret = 1;
2952
}
2953
}
2954
2955
if (trace->summary_only || (ret >= 0 && trace->failure_only))
2956
goto out;
2957
2958
trace__fprintf_entry_head(trace, thread, duration, duration_calculated, ttrace->entry_time, trace->output);
2959
2960
if (ttrace->entry_pending) {
2961
printed = fprintf(trace->output, "%s", ttrace->entry_str);
2962
} else {
2963
printed += fprintf(trace->output, " ... [");
2964
color_fprintf(trace->output, PERF_COLOR_YELLOW, "continued");
2965
printed += 9;
2966
printed += fprintf(trace->output, "]: %s()", sc->name);
2967
}
2968
2969
printed++; /* the closing ')' */
2970
2971
if (alignment > printed)
2972
alignment -= printed;
2973
else
2974
alignment = 0;
2975
2976
fprintf(trace->output, ")%*s= ", alignment, " ");
2977
2978
if (sc->fmt == NULL) {
2979
if (ret < 0)
2980
goto errno_print;
2981
signed_print:
2982
fprintf(trace->output, "%ld", ret);
2983
} else if (ret < 0) {
2984
errno_print: {
2985
char bf[STRERR_BUFSIZE];
2986
struct perf_env *env = evsel__env(evsel) ?: &trace->host_env;
2987
const char *emsg = str_error_r(-ret, bf, sizeof(bf));
2988
const char *e = perf_env__arch_strerrno(env, err);
2989
2990
fprintf(trace->output, "-1 %s (%s)", e, emsg);
2991
}
2992
} else if (ret == 0 && sc->fmt->timeout)
2993
fprintf(trace->output, "0 (Timeout)");
2994
else if (ttrace->ret_scnprintf) {
2995
char bf[1024];
2996
struct syscall_arg arg = {
2997
.val = ret,
2998
.thread = thread,
2999
.trace = trace,
3000
};
3001
ttrace->ret_scnprintf(bf, sizeof(bf), &arg);
3002
ttrace->ret_scnprintf = NULL;
3003
fprintf(trace->output, "%s", bf);
3004
} else if (sc->fmt->hexret)
3005
fprintf(trace->output, "%#lx", ret);
3006
else if (sc->fmt->errpid) {
3007
struct thread *child = machine__find_thread(trace->host, ret, ret);
3008
3009
fprintf(trace->output, "%ld", ret);
3010
if (child != NULL) {
3011
if (thread__comm_set(child))
3012
fprintf(trace->output, " (%s)", thread__comm_str(child));
3013
thread__put(child);
3014
}
3015
} else
3016
goto signed_print;
3017
3018
fputc('\n', trace->output);
3019
3020
/*
3021
* We only consider an 'event' for the sake of --max-events a non-filtered
3022
* sys_enter + sys_exit and other tracepoint events.
3023
*/
3024
if (++trace->nr_events_printed == trace->max_events && trace->max_events != ULONG_MAX)
3025
interrupted = true;
3026
3027
if (callchain_ret > 0)
3028
trace__fprintf_callchain(trace, sample);
3029
else if (callchain_ret < 0)
3030
pr_err("Problem processing %s callchain, skipping...\n", evsel__name(evsel));
3031
out:
3032
ttrace->entry_pending = false;
3033
err = 0;
3034
out_put:
3035
thread__put(thread);
3036
return err;
3037
}
3038
3039
static int trace__vfs_getname(struct trace *trace, struct evsel *evsel,
3040
union perf_event *event __maybe_unused,
3041
struct perf_sample *sample)
3042
{
3043
struct thread *thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
3044
struct thread_trace *ttrace;
3045
size_t filename_len, entry_str_len, to_move;
3046
ssize_t remaining_space;
3047
char *pos;
3048
const char *filename = evsel__rawptr(evsel, sample, "pathname");
3049
3050
if (!thread)
3051
goto out;
3052
3053
ttrace = thread__priv(thread);
3054
if (!ttrace)
3055
goto out_put;
3056
3057
filename_len = strlen(filename);
3058
if (filename_len == 0)
3059
goto out_put;
3060
3061
if (ttrace->filename.namelen < filename_len) {
3062
char *f = realloc(ttrace->filename.name, filename_len + 1);
3063
3064
if (f == NULL)
3065
goto out_put;
3066
3067
ttrace->filename.namelen = filename_len;
3068
ttrace->filename.name = f;
3069
}
3070
3071
strcpy(ttrace->filename.name, filename);
3072
ttrace->filename.pending_open = true;
3073
3074
if (!ttrace->filename.ptr)
3075
goto out_put;
3076
3077
entry_str_len = strlen(ttrace->entry_str);
3078
remaining_space = trace__entry_str_size - entry_str_len - 1; /* \0 */
3079
if (remaining_space <= 0)
3080
goto out_put;
3081
3082
if (filename_len > (size_t)remaining_space) {
3083
filename += filename_len - remaining_space;
3084
filename_len = remaining_space;
3085
}
3086
3087
to_move = entry_str_len - ttrace->filename.entry_str_pos + 1; /* \0 */
3088
pos = ttrace->entry_str + ttrace->filename.entry_str_pos;
3089
memmove(pos + filename_len, pos, to_move);
3090
memcpy(pos, filename, filename_len);
3091
3092
ttrace->filename.ptr = 0;
3093
ttrace->filename.entry_str_pos = 0;
3094
out_put:
3095
thread__put(thread);
3096
out:
3097
return 0;
3098
}
3099
3100
static int trace__sched_stat_runtime(struct trace *trace, struct evsel *evsel,
3101
union perf_event *event __maybe_unused,
3102
struct perf_sample *sample)
3103
{
3104
u64 runtime = evsel__intval(evsel, sample, "runtime");
3105
double runtime_ms = (double)runtime / NSEC_PER_MSEC;
3106
struct thread *thread = machine__findnew_thread(trace->host,
3107
sample->pid,
3108
sample->tid);
3109
struct thread_trace *ttrace = thread__trace(thread, trace);
3110
3111
if (ttrace == NULL)
3112
goto out_dump;
3113
3114
ttrace->runtime_ms += runtime_ms;
3115
trace->runtime_ms += runtime_ms;
3116
out_put:
3117
thread__put(thread);
3118
return 0;
3119
3120
out_dump:
3121
fprintf(trace->output, "%s: comm=%s,pid=%u,runtime=%" PRIu64 ",vruntime=%" PRIu64 ")\n",
3122
evsel->name,
3123
evsel__strval(evsel, sample, "comm"),
3124
(pid_t)evsel__intval(evsel, sample, "pid"),
3125
runtime,
3126
evsel__intval(evsel, sample, "vruntime"));
3127
goto out_put;
3128
}
3129
3130
static int bpf_output__printer(enum binary_printer_ops op,
3131
unsigned int val, void *extra __maybe_unused, FILE *fp)
3132
{
3133
unsigned char ch = (unsigned char)val;
3134
3135
switch (op) {
3136
case BINARY_PRINT_CHAR_DATA:
3137
return fprintf(fp, "%c", isprint(ch) ? ch : '.');
3138
case BINARY_PRINT_DATA_BEGIN:
3139
case BINARY_PRINT_LINE_BEGIN:
3140
case BINARY_PRINT_ADDR:
3141
case BINARY_PRINT_NUM_DATA:
3142
case BINARY_PRINT_NUM_PAD:
3143
case BINARY_PRINT_SEP:
3144
case BINARY_PRINT_CHAR_PAD:
3145
case BINARY_PRINT_LINE_END:
3146
case BINARY_PRINT_DATA_END:
3147
default:
3148
break;
3149
}
3150
3151
return 0;
3152
}
3153
3154
static void bpf_output__fprintf(struct trace *trace,
3155
struct perf_sample *sample)
3156
{
3157
binary__fprintf(sample->raw_data, sample->raw_size, 8,
3158
bpf_output__printer, NULL, trace->output);
3159
++trace->nr_events_printed;
3160
}
3161
3162
static size_t trace__fprintf_tp_fields(struct trace *trace, struct evsel *evsel, struct perf_sample *sample,
3163
struct thread *thread, void *augmented_args, int augmented_args_size)
3164
{
3165
char bf[2048];
3166
size_t size = sizeof(bf);
3167
const struct tep_event *tp_format = evsel__tp_format(evsel);
3168
struct tep_format_field *field = tp_format ? tp_format->format.fields : NULL;
3169
struct syscall_arg_fmt *arg = __evsel__syscall_arg_fmt(evsel);
3170
size_t printed = 0, btf_printed;
3171
unsigned long val;
3172
u8 bit = 1;
3173
struct syscall_arg syscall_arg = {
3174
.augmented = {
3175
.size = augmented_args_size,
3176
.args = augmented_args,
3177
},
3178
.idx = 0,
3179
.mask = 0,
3180
.trace = trace,
3181
.thread = thread,
3182
.show_string_prefix = trace->show_string_prefix,
3183
};
3184
3185
for (; field && arg; field = field->next, ++syscall_arg.idx, bit <<= 1, ++arg) {
3186
if (syscall_arg.mask & bit)
3187
continue;
3188
3189
syscall_arg.len = 0;
3190
syscall_arg.fmt = arg;
3191
if (field->flags & TEP_FIELD_IS_ARRAY) {
3192
int offset = field->offset;
3193
3194
if (field->flags & TEP_FIELD_IS_DYNAMIC) {
3195
offset = format_field__intval(field, sample, evsel->needs_swap);
3196
syscall_arg.len = offset >> 16;
3197
offset &= 0xffff;
3198
if (tep_field_is_relative(field->flags))
3199
offset += field->offset + field->size;
3200
}
3201
3202
val = (uintptr_t)(sample->raw_data + offset);
3203
} else
3204
val = format_field__intval(field, sample, evsel->needs_swap);
3205
/*
3206
* Some syscall args need some mask, most don't and
3207
* return val untouched.
3208
*/
3209
val = syscall_arg_fmt__mask_val(arg, &syscall_arg, val);
3210
3211
/* Suppress this argument if its value is zero and show_zero property isn't set. */
3212
if (val == 0 && !trace->show_zeros && !arg->show_zero && arg->strtoul != STUL_BTF_TYPE)
3213
continue;
3214
3215
printed += scnprintf(bf + printed, size - printed, "%s", printed ? ", " : "");
3216
3217
if (trace->show_arg_names)
3218
printed += scnprintf(bf + printed, size - printed, "%s: ", field->name);
3219
3220
btf_printed = trace__btf_scnprintf(trace, &syscall_arg, bf + printed, size - printed, val, field->type);
3221
if (btf_printed) {
3222
printed += btf_printed;
3223
continue;
3224
}
3225
3226
printed += syscall_arg_fmt__scnprintf_val(arg, bf + printed, size - printed, &syscall_arg, val);
3227
}
3228
3229
return fprintf(trace->output, "%.*s", (int)printed, bf);
3230
}
3231
3232
static int trace__event_handler(struct trace *trace, struct evsel *evsel,
3233
union perf_event *event __maybe_unused,
3234
struct perf_sample *sample)
3235
{
3236
struct thread *thread;
3237
int callchain_ret = 0;
3238
3239
if (evsel->nr_events_printed >= evsel->max_events)
3240
return 0;
3241
3242
thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
3243
3244
if (sample->callchain) {
3245
struct callchain_cursor *cursor = get_tls_callchain_cursor();
3246
3247
callchain_ret = trace__resolve_callchain(trace, evsel, sample, cursor);
3248
if (callchain_ret == 0) {
3249
if (cursor->nr < trace->min_stack)
3250
goto out;
3251
callchain_ret = 1;
3252
}
3253
}
3254
3255
trace__printf_interrupted_entry(trace);
3256
trace__fprintf_tstamp(trace, sample->time, trace->output);
3257
3258
if (trace->trace_syscalls && trace->show_duration)
3259
fprintf(trace->output, "( ): ");
3260
3261
if (thread)
3262
trace__fprintf_comm_tid(trace, thread, trace->output);
3263
3264
if (evsel == trace->syscalls.events.bpf_output) {
3265
int id = perf_evsel__sc_tp_uint(evsel, id, sample);
3266
int e_machine = thread ? thread__e_machine(thread, trace->host) : EM_HOST;
3267
struct syscall *sc = trace__syscall_info(trace, evsel, e_machine, id);
3268
3269
if (sc) {
3270
fprintf(trace->output, "%s(", sc->name);
3271
trace__fprintf_sys_enter(trace, evsel, sample);
3272
fputc(')', trace->output);
3273
goto newline;
3274
}
3275
3276
/*
3277
* XXX: Not having the associated syscall info or not finding/adding
3278
* the thread should never happen, but if it does...
3279
* fall thru and print it as a bpf_output event.
3280
*/
3281
}
3282
3283
fprintf(trace->output, "%s(", evsel->name);
3284
3285
if (evsel__is_bpf_output(evsel)) {
3286
bpf_output__fprintf(trace, sample);
3287
} else {
3288
const struct tep_event *tp_format = evsel__tp_format(evsel);
3289
3290
if (tp_format && (strncmp(tp_format->name, "sys_enter_", 10) ||
3291
trace__fprintf_sys_enter(trace, evsel, sample))) {
3292
if (trace->libtraceevent_print) {
3293
event_format__fprintf(tp_format, sample->cpu,
3294
sample->raw_data, sample->raw_size,
3295
trace->output);
3296
} else {
3297
trace__fprintf_tp_fields(trace, evsel, sample, thread, NULL, 0);
3298
}
3299
}
3300
}
3301
3302
newline:
3303
fprintf(trace->output, ")\n");
3304
3305
if (callchain_ret > 0)
3306
trace__fprintf_callchain(trace, sample);
3307
else if (callchain_ret < 0)
3308
pr_err("Problem processing %s callchain, skipping...\n", evsel__name(evsel));
3309
3310
++trace->nr_events_printed;
3311
3312
if (evsel->max_events != ULONG_MAX && ++evsel->nr_events_printed == evsel->max_events) {
3313
evsel__disable(evsel);
3314
evsel__close(evsel);
3315
}
3316
out:
3317
thread__put(thread);
3318
return 0;
3319
}
3320
3321
static void print_location(FILE *f, struct perf_sample *sample,
3322
struct addr_location *al,
3323
bool print_dso, bool print_sym)
3324
{
3325
3326
if ((verbose > 0 || print_dso) && al->map)
3327
fprintf(f, "%s@", dso__long_name(map__dso(al->map)));
3328
3329
if ((verbose > 0 || print_sym) && al->sym)
3330
fprintf(f, "%s+0x%" PRIx64, al->sym->name,
3331
al->addr - al->sym->start);
3332
else if (al->map)
3333
fprintf(f, "0x%" PRIx64, al->addr);
3334
else
3335
fprintf(f, "0x%" PRIx64, sample->addr);
3336
}
3337
3338
static int trace__pgfault(struct trace *trace,
3339
struct evsel *evsel,
3340
union perf_event *event __maybe_unused,
3341
struct perf_sample *sample)
3342
{
3343
struct thread *thread;
3344
struct addr_location al;
3345
char map_type = 'd';
3346
struct thread_trace *ttrace;
3347
int err = -1;
3348
int callchain_ret = 0;
3349
3350
addr_location__init(&al);
3351
thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
3352
3353
if (sample->callchain) {
3354
struct callchain_cursor *cursor = get_tls_callchain_cursor();
3355
3356
callchain_ret = trace__resolve_callchain(trace, evsel, sample, cursor);
3357
if (callchain_ret == 0) {
3358
if (cursor->nr < trace->min_stack)
3359
goto out_put;
3360
callchain_ret = 1;
3361
}
3362
}
3363
3364
ttrace = thread__trace(thread, trace);
3365
if (ttrace == NULL)
3366
goto out_put;
3367
3368
if (evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ) {
3369
ttrace->pfmaj++;
3370
trace->pfmaj++;
3371
} else {
3372
ttrace->pfmin++;
3373
trace->pfmin++;
3374
}
3375
3376
if (trace->summary_only)
3377
goto out;
3378
3379
thread__find_symbol(thread, sample->cpumode, sample->ip, &al);
3380
3381
trace__fprintf_entry_head(trace, thread, 0, true, sample->time, trace->output);
3382
3383
fprintf(trace->output, "%sfault [",
3384
evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ ?
3385
"maj" : "min");
3386
3387
print_location(trace->output, sample, &al, false, true);
3388
3389
fprintf(trace->output, "] => ");
3390
3391
thread__find_symbol(thread, sample->cpumode, sample->addr, &al);
3392
3393
if (!al.map) {
3394
thread__find_symbol(thread, sample->cpumode, sample->addr, &al);
3395
3396
if (al.map)
3397
map_type = 'x';
3398
else
3399
map_type = '?';
3400
}
3401
3402
print_location(trace->output, sample, &al, true, false);
3403
3404
fprintf(trace->output, " (%c%c)\n", map_type, al.level);
3405
3406
if (callchain_ret > 0)
3407
trace__fprintf_callchain(trace, sample);
3408
else if (callchain_ret < 0)
3409
pr_err("Problem processing %s callchain, skipping...\n", evsel__name(evsel));
3410
3411
++trace->nr_events_printed;
3412
out:
3413
err = 0;
3414
out_put:
3415
thread__put(thread);
3416
addr_location__exit(&al);
3417
return err;
3418
}
3419
3420
static void trace__set_base_time(struct trace *trace,
3421
struct evsel *evsel,
3422
struct perf_sample *sample)
3423
{
3424
/*
3425
* BPF events were not setting PERF_SAMPLE_TIME, so be more robust
3426
* and don't use sample->time unconditionally, we may end up having
3427
* some other event in the future without PERF_SAMPLE_TIME for good
3428
* reason, i.e. we may not be interested in its timestamps, just in
3429
* it taking place, picking some piece of information when it
3430
* appears in our event stream (vfs_getname comes to mind).
3431
*/
3432
if (trace->base_time == 0 && !trace->full_time &&
3433
(evsel->core.attr.sample_type & PERF_SAMPLE_TIME))
3434
trace->base_time = sample->time;
3435
}
3436
3437
static int trace__process_sample(const struct perf_tool *tool,
3438
union perf_event *event,
3439
struct perf_sample *sample,
3440
struct evsel *evsel,
3441
struct machine *machine __maybe_unused)
3442
{
3443
struct trace *trace = container_of(tool, struct trace, tool);
3444
struct thread *thread;
3445
int err = 0;
3446
3447
tracepoint_handler handler = evsel->handler;
3448
3449
thread = machine__findnew_thread(trace->host, sample->pid, sample->tid);
3450
if (thread && thread__is_filtered(thread))
3451
goto out;
3452
3453
trace__set_base_time(trace, evsel, sample);
3454
3455
if (handler) {
3456
++trace->nr_events;
3457
handler(trace, evsel, event, sample);
3458
}
3459
out:
3460
thread__put(thread);
3461
return err;
3462
}
3463
3464
static int trace__record(struct trace *trace, int argc, const char **argv)
3465
{
3466
unsigned int rec_argc, i, j;
3467
const char **rec_argv;
3468
const char * const record_args[] = {
3469
"record",
3470
"-R",
3471
"-m", "1024",
3472
"-c", "1",
3473
};
3474
pid_t pid = getpid();
3475
char *filter = asprintf__tp_filter_pids(1, &pid);
3476
const char * const sc_args[] = { "-e", };
3477
unsigned int sc_args_nr = ARRAY_SIZE(sc_args);
3478
const char * const majpf_args[] = { "-e", "major-faults" };
3479
unsigned int majpf_args_nr = ARRAY_SIZE(majpf_args);
3480
const char * const minpf_args[] = { "-e", "minor-faults" };
3481
unsigned int minpf_args_nr = ARRAY_SIZE(minpf_args);
3482
int err = -1;
3483
3484
/* +3 is for the event string below and the pid filter */
3485
rec_argc = ARRAY_SIZE(record_args) + sc_args_nr + 3 +
3486
majpf_args_nr + minpf_args_nr + argc;
3487
rec_argv = calloc(rec_argc + 1, sizeof(char *));
3488
3489
if (rec_argv == NULL || filter == NULL)
3490
goto out_free;
3491
3492
j = 0;
3493
for (i = 0; i < ARRAY_SIZE(record_args); i++)
3494
rec_argv[j++] = record_args[i];
3495
3496
if (trace->trace_syscalls) {
3497
for (i = 0; i < sc_args_nr; i++)
3498
rec_argv[j++] = sc_args[i];
3499
3500
/* event string may be different for older kernels - e.g., RHEL6 */
3501
if (is_valid_tracepoint("raw_syscalls:sys_enter"))
3502
rec_argv[j++] = "raw_syscalls:sys_enter,raw_syscalls:sys_exit";
3503
else if (is_valid_tracepoint("syscalls:sys_enter"))
3504
rec_argv[j++] = "syscalls:sys_enter,syscalls:sys_exit";
3505
else {
3506
pr_err("Neither raw_syscalls nor syscalls events exist.\n");
3507
goto out_free;
3508
}
3509
}
3510
3511
rec_argv[j++] = "--filter";
3512
rec_argv[j++] = filter;
3513
3514
if (trace->trace_pgfaults & TRACE_PFMAJ)
3515
for (i = 0; i < majpf_args_nr; i++)
3516
rec_argv[j++] = majpf_args[i];
3517
3518
if (trace->trace_pgfaults & TRACE_PFMIN)
3519
for (i = 0; i < minpf_args_nr; i++)
3520
rec_argv[j++] = minpf_args[i];
3521
3522
for (i = 0; i < (unsigned int)argc; i++)
3523
rec_argv[j++] = argv[i];
3524
3525
err = cmd_record(j, rec_argv);
3526
out_free:
3527
free(filter);
3528
free(rec_argv);
3529
return err;
3530
}
3531
3532
static size_t trace__fprintf_thread_summary(struct trace *trace, FILE *fp);
3533
static size_t trace__fprintf_total_summary(struct trace *trace, FILE *fp);
3534
3535
static bool evlist__add_vfs_getname(struct evlist *evlist)
3536
{
3537
bool found = false;
3538
struct evsel *evsel, *tmp;
3539
struct parse_events_error err;
3540
int ret;
3541
3542
parse_events_error__init(&err);
3543
ret = parse_events(evlist, "probe:vfs_getname*", &err);
3544
parse_events_error__exit(&err);
3545
if (ret)
3546
return false;
3547
3548
evlist__for_each_entry_safe(evlist, evsel, tmp) {
3549
if (!strstarts(evsel__name(evsel), "probe:vfs_getname"))
3550
continue;
3551
3552
if (evsel__field(evsel, "pathname")) {
3553
evsel->handler = trace__vfs_getname;
3554
found = true;
3555
continue;
3556
}
3557
3558
list_del_init(&evsel->core.node);
3559
evsel->evlist = NULL;
3560
evsel__delete(evsel);
3561
}
3562
3563
return found;
3564
}
3565
3566
static struct evsel *evsel__new_pgfault(u64 config)
3567
{
3568
struct evsel *evsel;
3569
struct perf_event_attr attr = {
3570
.type = PERF_TYPE_SOFTWARE,
3571
.mmap_data = 1,
3572
};
3573
3574
attr.config = config;
3575
attr.sample_period = 1;
3576
3577
event_attr_init(&attr);
3578
3579
evsel = evsel__new(&attr);
3580
if (evsel)
3581
evsel->handler = trace__pgfault;
3582
3583
return evsel;
3584
}
3585
3586
static void evlist__free_syscall_tp_fields(struct evlist *evlist)
3587
{
3588
struct evsel *evsel;
3589
3590
evlist__for_each_entry(evlist, evsel) {
3591
evsel_trace__delete(evsel->priv);
3592
evsel->priv = NULL;
3593
}
3594
}
3595
3596
static void trace__handle_event(struct trace *trace, union perf_event *event, struct perf_sample *sample)
3597
{
3598
const u32 type = event->header.type;
3599
struct evsel *evsel;
3600
3601
if (type != PERF_RECORD_SAMPLE) {
3602
trace__process_event(trace, trace->host, event, sample);
3603
return;
3604
}
3605
3606
evsel = evlist__id2evsel(trace->evlist, sample->id);
3607
if (evsel == NULL) {
3608
fprintf(trace->output, "Unknown tp ID %" PRIu64 ", skipping...\n", sample->id);
3609
return;
3610
}
3611
3612
if (evswitch__discard(&trace->evswitch, evsel))
3613
return;
3614
3615
trace__set_base_time(trace, evsel, sample);
3616
3617
if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT &&
3618
sample->raw_data == NULL) {
3619
fprintf(trace->output, "%s sample with no payload for tid: %d, cpu %d, raw_size=%d, skipping...\n",
3620
evsel__name(evsel), sample->tid,
3621
sample->cpu, sample->raw_size);
3622
} else {
3623
tracepoint_handler handler = evsel->handler;
3624
handler(trace, evsel, event, sample);
3625
}
3626
3627
if (trace->nr_events_printed >= trace->max_events && trace->max_events != ULONG_MAX)
3628
interrupted = true;
3629
}
3630
3631
static int trace__add_syscall_newtp(struct trace *trace)
3632
{
3633
int ret = -1;
3634
struct evlist *evlist = trace->evlist;
3635
struct evsel *sys_enter, *sys_exit;
3636
3637
sys_enter = perf_evsel__raw_syscall_newtp("sys_enter", trace__sys_enter);
3638
if (sys_enter == NULL)
3639
goto out;
3640
3641
if (perf_evsel__init_sc_tp_ptr_field(sys_enter, args))
3642
goto out_delete_sys_enter;
3643
3644
sys_exit = perf_evsel__raw_syscall_newtp("sys_exit", trace__sys_exit);
3645
if (sys_exit == NULL)
3646
goto out_delete_sys_enter;
3647
3648
if (perf_evsel__init_sc_tp_uint_field(sys_exit, ret))
3649
goto out_delete_sys_exit;
3650
3651
evsel__config_callchain(sys_enter, &trace->opts, &callchain_param);
3652
evsel__config_callchain(sys_exit, &trace->opts, &callchain_param);
3653
3654
evlist__add(evlist, sys_enter);
3655
evlist__add(evlist, sys_exit);
3656
3657
if (callchain_param.enabled && !trace->kernel_syscallchains) {
3658
/*
3659
* We're interested only in the user space callchain
3660
* leading to the syscall, allow overriding that for
3661
* debugging reasons using --kernel_syscall_callchains
3662
*/
3663
sys_exit->core.attr.exclude_callchain_kernel = 1;
3664
}
3665
3666
trace->syscalls.events.sys_enter = sys_enter;
3667
trace->syscalls.events.sys_exit = sys_exit;
3668
3669
ret = 0;
3670
out:
3671
return ret;
3672
3673
out_delete_sys_exit:
3674
evsel__delete_priv(sys_exit);
3675
out_delete_sys_enter:
3676
evsel__delete_priv(sys_enter);
3677
goto out;
3678
}
3679
3680
static int trace__set_ev_qualifier_tp_filter(struct trace *trace)
3681
{
3682
int err = -1;
3683
struct evsel *sys_exit;
3684
char *filter = asprintf_expr_inout_ints("id", !trace->not_ev_qualifier,
3685
trace->ev_qualifier_ids.nr,
3686
trace->ev_qualifier_ids.entries);
3687
3688
if (filter == NULL)
3689
goto out_enomem;
3690
3691
if (!evsel__append_tp_filter(trace->syscalls.events.sys_enter, filter)) {
3692
sys_exit = trace->syscalls.events.sys_exit;
3693
err = evsel__append_tp_filter(sys_exit, filter);
3694
}
3695
3696
free(filter);
3697
out:
3698
return err;
3699
out_enomem:
3700
errno = ENOMEM;
3701
goto out;
3702
}
3703
3704
#ifdef HAVE_LIBBPF_SUPPORT
3705
3706
static struct bpf_program *unaugmented_prog;
3707
3708
static int syscall_arg_fmt__cache_btf_struct(struct syscall_arg_fmt *arg_fmt, struct btf *btf, char *type)
3709
{
3710
int id;
3711
3712
if (arg_fmt->type != NULL)
3713
return -1;
3714
3715
id = btf__find_by_name(btf, type);
3716
if (id < 0)
3717
return -1;
3718
3719
arg_fmt->type = btf__type_by_id(btf, id);
3720
arg_fmt->type_id = id;
3721
3722
return 0;
3723
}
3724
3725
static struct bpf_program *trace__find_syscall_bpf_prog(struct trace *trace __maybe_unused,
3726
struct syscall *sc,
3727
const char *prog_name, const char *type)
3728
{
3729
struct bpf_program *prog;
3730
3731
if (prog_name == NULL) {
3732
char default_prog_name[256];
3733
scnprintf(default_prog_name, sizeof(default_prog_name), "tp/syscalls/sys_%s_%s", type, sc->name);
3734
prog = augmented_syscalls__find_by_title(default_prog_name);
3735
if (prog != NULL)
3736
goto out_found;
3737
if (sc->fmt && sc->fmt->alias) {
3738
scnprintf(default_prog_name, sizeof(default_prog_name), "tp/syscalls/sys_%s_%s", type, sc->fmt->alias);
3739
prog = augmented_syscalls__find_by_title(default_prog_name);
3740
if (prog != NULL)
3741
goto out_found;
3742
}
3743
goto out_unaugmented;
3744
}
3745
3746
prog = augmented_syscalls__find_by_title(prog_name);
3747
3748
if (prog != NULL) {
3749
out_found:
3750
return prog;
3751
}
3752
3753
pr_debug("Couldn't find BPF prog \"%s\" to associate with syscalls:sys_%s_%s, not augmenting it\n",
3754
prog_name, type, sc->name);
3755
out_unaugmented:
3756
return unaugmented_prog;
3757
}
3758
3759
static void trace__init_syscall_bpf_progs(struct trace *trace, int e_machine, int id)
3760
{
3761
struct syscall *sc = trace__syscall_info(trace, NULL, e_machine, id);
3762
3763
if (sc == NULL)
3764
return;
3765
3766
sc->bpf_prog.sys_enter = trace__find_syscall_bpf_prog(trace, sc, sc->fmt ? sc->fmt->bpf_prog_name.sys_enter : NULL, "enter");
3767
sc->bpf_prog.sys_exit = trace__find_syscall_bpf_prog(trace, sc, sc->fmt ? sc->fmt->bpf_prog_name.sys_exit : NULL, "exit");
3768
}
3769
3770
static int trace__bpf_prog_sys_enter_fd(struct trace *trace, int e_machine, int id)
3771
{
3772
struct syscall *sc = trace__syscall_info(trace, NULL, e_machine, id);
3773
return sc ? bpf_program__fd(sc->bpf_prog.sys_enter) : bpf_program__fd(unaugmented_prog);
3774
}
3775
3776
static int trace__bpf_prog_sys_exit_fd(struct trace *trace, int e_machine, int id)
3777
{
3778
struct syscall *sc = trace__syscall_info(trace, NULL, e_machine, id);
3779
return sc ? bpf_program__fd(sc->bpf_prog.sys_exit) : bpf_program__fd(unaugmented_prog);
3780
}
3781
3782
static int trace__bpf_sys_enter_beauty_map(struct trace *trace, int e_machine, int key, unsigned int *beauty_array)
3783
{
3784
struct tep_format_field *field;
3785
struct syscall *sc = trace__syscall_info(trace, NULL, e_machine, key);
3786
const struct btf_type *bt;
3787
char *struct_offset, *tmp, name[32];
3788
bool can_augment = false;
3789
int i, cnt;
3790
3791
if (sc == NULL)
3792
return -1;
3793
3794
trace__load_vmlinux_btf(trace);
3795
if (trace->btf == NULL)
3796
return -1;
3797
3798
for (i = 0, field = sc->args; field; ++i, field = field->next) {
3799
// XXX We're only collecting pointer payloads _from_ user space
3800
if (!sc->arg_fmt[i].from_user)
3801
continue;
3802
3803
struct_offset = strstr(field->type, "struct ");
3804
if (struct_offset == NULL)
3805
struct_offset = strstr(field->type, "union ");
3806
else
3807
struct_offset++; // "union" is shorter
3808
3809
if (field->flags & TEP_FIELD_IS_POINTER && struct_offset) { /* struct or union (think BPF's attr arg) */
3810
struct_offset += 6;
3811
3812
/* for 'struct foo *', we only want 'foo' */
3813
for (tmp = struct_offset, cnt = 0; *tmp != ' ' && *tmp != '\0'; ++tmp, ++cnt) {
3814
}
3815
3816
strncpy(name, struct_offset, cnt);
3817
name[cnt] = '\0';
3818
3819
/* cache struct's btf_type and type_id */
3820
if (syscall_arg_fmt__cache_btf_struct(&sc->arg_fmt[i], trace->btf, name))
3821
continue;
3822
3823
bt = sc->arg_fmt[i].type;
3824
beauty_array[i] = bt->size;
3825
can_augment = true;
3826
} else if (field->flags & TEP_FIELD_IS_POINTER && /* string */
3827
strcmp(field->type, "const char *") == 0 &&
3828
(strstr(field->name, "name") ||
3829
strstr(field->name, "path") ||
3830
strstr(field->name, "file") ||
3831
strstr(field->name, "root") ||
3832
strstr(field->name, "key") ||
3833
strstr(field->name, "special") ||
3834
strstr(field->name, "type") ||
3835
strstr(field->name, "description"))) {
3836
beauty_array[i] = 1;
3837
can_augment = true;
3838
} else if (field->flags & TEP_FIELD_IS_POINTER && /* buffer */
3839
strstr(field->type, "char *") &&
3840
(strstr(field->name, "buf") ||
3841
strstr(field->name, "val") ||
3842
strstr(field->name, "msg"))) {
3843
int j;
3844
struct tep_format_field *field_tmp;
3845
3846
/* find the size of the buffer that appears in pairs with buf */
3847
for (j = 0, field_tmp = sc->args; field_tmp; ++j, field_tmp = field_tmp->next) {
3848
if (!(field_tmp->flags & TEP_FIELD_IS_POINTER) && /* only integers */
3849
(strstr(field_tmp->name, "count") ||
3850
strstr(field_tmp->name, "siz") || /* size, bufsiz */
3851
(strstr(field_tmp->name, "len") && strcmp(field_tmp->name, "filename")))) {
3852
/* filename's got 'len' in it, we don't want that */
3853
beauty_array[i] = -(j + 1);
3854
can_augment = true;
3855
break;
3856
}
3857
}
3858
}
3859
}
3860
3861
if (can_augment)
3862
return 0;
3863
3864
return -1;
3865
}
3866
3867
static struct bpf_program *trace__find_usable_bpf_prog_entry(struct trace *trace,
3868
struct syscall *sc)
3869
{
3870
struct tep_format_field *field, *candidate_field;
3871
/*
3872
* We're only interested in syscalls that have a pointer:
3873
*/
3874
for (field = sc->args; field; field = field->next) {
3875
if (field->flags & TEP_FIELD_IS_POINTER)
3876
goto try_to_find_pair;
3877
}
3878
3879
return NULL;
3880
3881
try_to_find_pair:
3882
for (int i = 0, num_idx = syscalltbl__num_idx(sc->e_machine); i < num_idx; ++i) {
3883
int id = syscalltbl__id_at_idx(sc->e_machine, i);
3884
struct syscall *pair = trace__syscall_info(trace, NULL, sc->e_machine, id);
3885
struct bpf_program *pair_prog;
3886
bool is_candidate = false;
3887
3888
if (pair == NULL || pair->id == sc->id ||
3889
pair->bpf_prog.sys_enter == unaugmented_prog)
3890
continue;
3891
3892
for (field = sc->args, candidate_field = pair->args;
3893
field && candidate_field; field = field->next, candidate_field = candidate_field->next) {
3894
bool is_pointer = field->flags & TEP_FIELD_IS_POINTER,
3895
candidate_is_pointer = candidate_field->flags & TEP_FIELD_IS_POINTER;
3896
3897
if (is_pointer) {
3898
if (!candidate_is_pointer) {
3899
// The candidate just doesn't copies our pointer arg, might copy other pointers we want.
3900
continue;
3901
}
3902
} else {
3903
if (candidate_is_pointer) {
3904
// The candidate might copy a pointer we don't have, skip it.
3905
goto next_candidate;
3906
}
3907
continue;
3908
}
3909
3910
if (strcmp(field->type, candidate_field->type))
3911
goto next_candidate;
3912
3913
/*
3914
* This is limited in the BPF program but sys_write
3915
* uses "const char *" for its "buf" arg so we need to
3916
* use some heuristic that is kinda future proof...
3917
*/
3918
if (strcmp(field->type, "const char *") == 0 &&
3919
!(strstr(field->name, "name") ||
3920
strstr(field->name, "path") ||
3921
strstr(field->name, "file") ||
3922
strstr(field->name, "root") ||
3923
strstr(field->name, "description")))
3924
goto next_candidate;
3925
3926
is_candidate = true;
3927
}
3928
3929
if (!is_candidate)
3930
goto next_candidate;
3931
3932
/*
3933
* Check if the tentative pair syscall augmenter has more pointers, if it has,
3934
* then it may be collecting that and we then can't use it, as it would collect
3935
* more than what is common to the two syscalls.
3936
*/
3937
if (candidate_field) {
3938
for (candidate_field = candidate_field->next; candidate_field; candidate_field = candidate_field->next)
3939
if (candidate_field->flags & TEP_FIELD_IS_POINTER)
3940
goto next_candidate;
3941
}
3942
3943
pair_prog = pair->bpf_prog.sys_enter;
3944
/*
3945
* If the pair isn't enabled, then its bpf_prog.sys_enter will not
3946
* have been searched for, so search it here and if it returns the
3947
* unaugmented one, then ignore it, otherwise we'll reuse that BPF
3948
* program for a filtered syscall on a non-filtered one.
3949
*
3950
* For instance, we have "!syscalls:sys_enter_renameat" and that is
3951
* useful for "renameat2".
3952
*/
3953
if (pair_prog == NULL) {
3954
pair_prog = trace__find_syscall_bpf_prog(trace, pair, pair->fmt ? pair->fmt->bpf_prog_name.sys_enter : NULL, "enter");
3955
if (pair_prog == unaugmented_prog)
3956
goto next_candidate;
3957
}
3958
3959
pr_debug("Reusing \"%s\" BPF sys_enter augmenter for \"%s\"\n", pair->name,
3960
sc->name);
3961
return pair_prog;
3962
next_candidate:
3963
continue;
3964
}
3965
3966
return NULL;
3967
}
3968
3969
static int trace__init_syscalls_bpf_prog_array_maps(struct trace *trace, int e_machine)
3970
{
3971
int map_enter_fd;
3972
int map_exit_fd;
3973
int beauty_map_fd;
3974
int err = 0;
3975
unsigned int beauty_array[6];
3976
3977
if (augmented_syscalls__get_map_fds(&map_enter_fd, &map_exit_fd, &beauty_map_fd) < 0)
3978
return -1;
3979
3980
unaugmented_prog = augmented_syscalls__unaugmented();
3981
3982
for (int i = 0, num_idx = syscalltbl__num_idx(e_machine); i < num_idx; ++i) {
3983
int prog_fd, key = syscalltbl__id_at_idx(e_machine, i);
3984
3985
if (!trace__syscall_enabled(trace, key))
3986
continue;
3987
3988
trace__init_syscall_bpf_progs(trace, e_machine, key);
3989
3990
// It'll get at least the "!raw_syscalls:unaugmented"
3991
prog_fd = trace__bpf_prog_sys_enter_fd(trace, e_machine, key);
3992
err = bpf_map_update_elem(map_enter_fd, &key, &prog_fd, BPF_ANY);
3993
if (err)
3994
break;
3995
prog_fd = trace__bpf_prog_sys_exit_fd(trace, e_machine, key);
3996
err = bpf_map_update_elem(map_exit_fd, &key, &prog_fd, BPF_ANY);
3997
if (err)
3998
break;
3999
4000
/* use beauty_map to tell BPF how many bytes to collect, set beauty_map's value here */
4001
memset(beauty_array, 0, sizeof(beauty_array));
4002
err = trace__bpf_sys_enter_beauty_map(trace, e_machine, key, (unsigned int *)beauty_array);
4003
if (err)
4004
continue;
4005
err = bpf_map_update_elem(beauty_map_fd, &key, beauty_array, BPF_ANY);
4006
if (err)
4007
break;
4008
}
4009
4010
/*
4011
* Now lets do a second pass looking for enabled syscalls without
4012
* an augmenter that have a signature that is a superset of another
4013
* syscall with an augmenter so that we can auto-reuse it.
4014
*
4015
* I.e. if we have an augmenter for the "open" syscall that has
4016
* this signature:
4017
*
4018
* int open(const char *pathname, int flags, mode_t mode);
4019
*
4020
* I.e. that will collect just the first string argument, then we
4021
* can reuse it for the 'creat' syscall, that has this signature:
4022
*
4023
* int creat(const char *pathname, mode_t mode);
4024
*
4025
* and for:
4026
*
4027
* int stat(const char *pathname, struct stat *statbuf);
4028
* int lstat(const char *pathname, struct stat *statbuf);
4029
*
4030
* Because the 'open' augmenter will collect the first arg as a string,
4031
* and leave alone all the other args, which already helps with
4032
* beautifying 'stat' and 'lstat''s pathname arg.
4033
*
4034
* Then, in time, when 'stat' gets an augmenter that collects both
4035
* first and second arg (this one on the raw_syscalls:sys_exit prog
4036
* array tail call, then that one will be used.
4037
*/
4038
for (int i = 0, num_idx = syscalltbl__num_idx(e_machine); i < num_idx; ++i) {
4039
int key = syscalltbl__id_at_idx(e_machine, i);
4040
struct syscall *sc = trace__syscall_info(trace, NULL, e_machine, key);
4041
struct bpf_program *pair_prog;
4042
int prog_fd;
4043
4044
if (sc == NULL || sc->bpf_prog.sys_enter == NULL)
4045
continue;
4046
4047
/*
4048
* For now we're just reusing the sys_enter prog, and if it
4049
* already has an augmenter, we don't need to find one.
4050
*/
4051
if (sc->bpf_prog.sys_enter != unaugmented_prog)
4052
continue;
4053
4054
/*
4055
* Look at all the other syscalls for one that has a signature
4056
* that is close enough that we can share:
4057
*/
4058
pair_prog = trace__find_usable_bpf_prog_entry(trace, sc);
4059
if (pair_prog == NULL)
4060
continue;
4061
4062
sc->bpf_prog.sys_enter = pair_prog;
4063
4064
/*
4065
* Update the BPF_MAP_TYPE_PROG_SHARED for raw_syscalls:sys_enter
4066
* with the fd for the program we're reusing:
4067
*/
4068
prog_fd = bpf_program__fd(sc->bpf_prog.sys_enter);
4069
err = bpf_map_update_elem(map_enter_fd, &key, &prog_fd, BPF_ANY);
4070
if (err)
4071
break;
4072
}
4073
4074
return err;
4075
}
4076
#else // !HAVE_LIBBPF_SUPPORT
4077
static int trace__init_syscalls_bpf_prog_array_maps(struct trace *trace __maybe_unused,
4078
int e_machine __maybe_unused)
4079
{
4080
return -1;
4081
}
4082
#endif // HAVE_LIBBPF_SUPPORT
4083
4084
static int trace__set_ev_qualifier_filter(struct trace *trace)
4085
{
4086
if (trace->syscalls.events.sys_enter)
4087
return trace__set_ev_qualifier_tp_filter(trace);
4088
return 0;
4089
}
4090
4091
static int trace__set_filter_loop_pids(struct trace *trace)
4092
{
4093
unsigned int nr = 1, err;
4094
pid_t pids[32] = {
4095
getpid(),
4096
};
4097
struct thread *thread = machine__find_thread(trace->host, pids[0], pids[0]);
4098
4099
while (thread && nr < ARRAY_SIZE(pids)) {
4100
struct thread *parent = machine__find_thread(trace->host,
4101
thread__ppid(thread),
4102
thread__ppid(thread));
4103
4104
if (parent == NULL)
4105
break;
4106
4107
if (!strcmp(thread__comm_str(parent), "sshd") ||
4108
strstarts(thread__comm_str(parent), "gnome-terminal")) {
4109
pids[nr++] = thread__tid(parent);
4110
thread__put(parent);
4111
break;
4112
}
4113
thread__put(thread);
4114
thread = parent;
4115
}
4116
thread__put(thread);
4117
4118
err = evlist__append_tp_filter_pids(trace->evlist, nr, pids);
4119
if (!err)
4120
err = augmented_syscalls__set_filter_pids(nr, pids);
4121
4122
return err;
4123
}
4124
4125
static int trace__set_filter_pids(struct trace *trace)
4126
{
4127
int err = 0;
4128
/*
4129
* Better not use !target__has_task() here because we need to cover the
4130
* case where no threads were specified in the command line, but a
4131
* workload was, and in that case we will fill in the thread_map when
4132
* we fork the workload in evlist__prepare_workload.
4133
*/
4134
if (trace->filter_pids.nr > 0) {
4135
err = evlist__append_tp_filter_pids(trace->evlist, trace->filter_pids.nr,
4136
trace->filter_pids.entries);
4137
if (!err) {
4138
err = augmented_syscalls__set_filter_pids(trace->filter_pids.nr,
4139
trace->filter_pids.entries);
4140
}
4141
} else if (perf_thread_map__pid(trace->evlist->core.threads, 0) == -1) {
4142
err = trace__set_filter_loop_pids(trace);
4143
}
4144
4145
return err;
4146
}
4147
4148
static int __trace__deliver_event(struct trace *trace, union perf_event *event)
4149
{
4150
struct evlist *evlist = trace->evlist;
4151
struct perf_sample sample;
4152
int err;
4153
4154
perf_sample__init(&sample, /*all=*/false);
4155
err = evlist__parse_sample(evlist, event, &sample);
4156
if (err)
4157
fprintf(trace->output, "Can't parse sample, err = %d, skipping...\n", err);
4158
else
4159
trace__handle_event(trace, event, &sample);
4160
4161
perf_sample__exit(&sample);
4162
return 0;
4163
}
4164
4165
static int __trace__flush_events(struct trace *trace)
4166
{
4167
u64 first = ordered_events__first_time(&trace->oe.data);
4168
u64 flush = trace->oe.last - NSEC_PER_SEC;
4169
4170
/* Is there some thing to flush.. */
4171
if (first && first < flush)
4172
return ordered_events__flush_time(&trace->oe.data, flush);
4173
4174
return 0;
4175
}
4176
4177
static int trace__flush_events(struct trace *trace)
4178
{
4179
return !trace->sort_events ? 0 : __trace__flush_events(trace);
4180
}
4181
4182
static int trace__deliver_event(struct trace *trace, union perf_event *event)
4183
{
4184
int err;
4185
4186
if (!trace->sort_events)
4187
return __trace__deliver_event(trace, event);
4188
4189
err = evlist__parse_sample_timestamp(trace->evlist, event, &trace->oe.last);
4190
if (err && err != -1)
4191
return err;
4192
4193
err = ordered_events__queue(&trace->oe.data, event, trace->oe.last, 0, NULL);
4194
if (err)
4195
return err;
4196
4197
return trace__flush_events(trace);
4198
}
4199
4200
static int ordered_events__deliver_event(struct ordered_events *oe,
4201
struct ordered_event *event)
4202
{
4203
struct trace *trace = container_of(oe, struct trace, oe.data);
4204
4205
return __trace__deliver_event(trace, event->event);
4206
}
4207
4208
static struct syscall_arg_fmt *evsel__find_syscall_arg_fmt_by_name(struct evsel *evsel, char *arg,
4209
char **type)
4210
{
4211
struct syscall_arg_fmt *fmt = __evsel__syscall_arg_fmt(evsel);
4212
const struct tep_event *tp_format;
4213
4214
if (!fmt)
4215
return NULL;
4216
4217
tp_format = evsel__tp_format(evsel);
4218
if (!tp_format)
4219
return NULL;
4220
4221
for (const struct tep_format_field *field = tp_format->format.fields; field;
4222
field = field->next, ++fmt) {
4223
if (strcmp(field->name, arg) == 0) {
4224
*type = field->type;
4225
return fmt;
4226
}
4227
}
4228
4229
return NULL;
4230
}
4231
4232
static int trace__expand_filter(struct trace *trace, struct evsel *evsel)
4233
{
4234
char *tok, *left = evsel->filter, *new_filter = evsel->filter;
4235
4236
while ((tok = strpbrk(left, "=<>!")) != NULL) {
4237
char *right = tok + 1, *right_end;
4238
4239
if (*right == '=')
4240
++right;
4241
4242
while (isspace(*right))
4243
++right;
4244
4245
if (*right == '\0')
4246
break;
4247
4248
while (!isalpha(*left))
4249
if (++left == tok) {
4250
/*
4251
* Bail out, can't find the name of the argument that is being
4252
* used in the filter, let it try to set this filter, will fail later.
4253
*/
4254
return 0;
4255
}
4256
4257
right_end = right + 1;
4258
while (isalnum(*right_end) || *right_end == '_' || *right_end == '|')
4259
++right_end;
4260
4261
if (isalpha(*right)) {
4262
struct syscall_arg_fmt *fmt;
4263
int left_size = tok - left,
4264
right_size = right_end - right;
4265
char arg[128], *type;
4266
4267
while (isspace(left[left_size - 1]))
4268
--left_size;
4269
4270
scnprintf(arg, sizeof(arg), "%.*s", left_size, left);
4271
4272
fmt = evsel__find_syscall_arg_fmt_by_name(evsel, arg, &type);
4273
if (fmt == NULL) {
4274
pr_err("\"%s\" not found in \"%s\", can't set filter \"%s\"\n",
4275
arg, evsel->name, evsel->filter);
4276
return -1;
4277
}
4278
4279
pr_debug2("trying to expand \"%s\" \"%.*s\" \"%.*s\" -> ",
4280
arg, (int)(right - tok), tok, right_size, right);
4281
4282
if (fmt->strtoul) {
4283
u64 val;
4284
struct syscall_arg syscall_arg = {
4285
.trace = trace,
4286
.fmt = fmt,
4287
.type_name = type,
4288
.parm = fmt->parm,
4289
};
4290
4291
if (fmt->strtoul(right, right_size, &syscall_arg, &val)) {
4292
char *n, expansion[19];
4293
int expansion_lenght = scnprintf(expansion, sizeof(expansion), "%#" PRIx64, val);
4294
int expansion_offset = right - new_filter;
4295
4296
pr_debug("%s", expansion);
4297
4298
if (asprintf(&n, "%.*s%s%s", expansion_offset, new_filter, expansion, right_end) < 0) {
4299
pr_debug(" out of memory!\n");
4300
free(new_filter);
4301
return -1;
4302
}
4303
if (new_filter != evsel->filter)
4304
free(new_filter);
4305
left = n + expansion_offset + expansion_lenght;
4306
new_filter = n;
4307
} else {
4308
pr_err("\"%.*s\" not found for \"%s\" in \"%s\", can't set filter \"%s\"\n",
4309
right_size, right, arg, evsel->name, evsel->filter);
4310
return -1;
4311
}
4312
} else {
4313
pr_err("No resolver (strtoul) for \"%s\" in \"%s\", can't set filter \"%s\"\n",
4314
arg, evsel->name, evsel->filter);
4315
return -1;
4316
}
4317
4318
pr_debug("\n");
4319
} else {
4320
left = right_end;
4321
}
4322
}
4323
4324
if (new_filter != evsel->filter) {
4325
pr_debug("New filter for %s: %s\n", evsel->name, new_filter);
4326
evsel__set_filter(evsel, new_filter);
4327
free(new_filter);
4328
}
4329
4330
return 0;
4331
}
4332
4333
static int trace__expand_filters(struct trace *trace, struct evsel **err_evsel)
4334
{
4335
struct evlist *evlist = trace->evlist;
4336
struct evsel *evsel;
4337
4338
evlist__for_each_entry(evlist, evsel) {
4339
if (evsel->filter == NULL)
4340
continue;
4341
4342
if (trace__expand_filter(trace, evsel)) {
4343
*err_evsel = evsel;
4344
return -1;
4345
}
4346
}
4347
4348
return 0;
4349
}
4350
4351
static int trace__run(struct trace *trace, int argc, const char **argv)
4352
{
4353
struct evlist *evlist = trace->evlist;
4354
struct evsel *evsel, *pgfault_maj = NULL, *pgfault_min = NULL;
4355
int err = -1, i;
4356
unsigned long before;
4357
const bool forks = argc > 0;
4358
bool draining = false;
4359
4360
trace->live = true;
4361
4362
if (trace->summary_bpf) {
4363
if (trace_prepare_bpf_summary(trace->summary_mode) < 0)
4364
goto out_delete_evlist;
4365
4366
if (trace->summary_only)
4367
goto create_maps;
4368
}
4369
4370
if (!trace->raw_augmented_syscalls) {
4371
if (trace->trace_syscalls && trace__add_syscall_newtp(trace))
4372
goto out_error_raw_syscalls;
4373
4374
if (trace->trace_syscalls)
4375
trace->vfs_getname = evlist__add_vfs_getname(evlist);
4376
}
4377
4378
if ((trace->trace_pgfaults & TRACE_PFMAJ)) {
4379
pgfault_maj = evsel__new_pgfault(PERF_COUNT_SW_PAGE_FAULTS_MAJ);
4380
if (pgfault_maj == NULL)
4381
goto out_error_mem;
4382
evsel__config_callchain(pgfault_maj, &trace->opts, &callchain_param);
4383
evlist__add(evlist, pgfault_maj);
4384
}
4385
4386
if ((trace->trace_pgfaults & TRACE_PFMIN)) {
4387
pgfault_min = evsel__new_pgfault(PERF_COUNT_SW_PAGE_FAULTS_MIN);
4388
if (pgfault_min == NULL)
4389
goto out_error_mem;
4390
evsel__config_callchain(pgfault_min, &trace->opts, &callchain_param);
4391
evlist__add(evlist, pgfault_min);
4392
}
4393
4394
/* Enable ignoring missing threads when -p option is defined. */
4395
trace->opts.ignore_missing_thread = trace->opts.target.pid;
4396
4397
if (trace->sched &&
4398
evlist__add_newtp(evlist, "sched", "sched_stat_runtime", trace__sched_stat_runtime))
4399
goto out_error_sched_stat_runtime;
4400
/*
4401
* If a global cgroup was set, apply it to all the events without an
4402
* explicit cgroup. I.e.:
4403
*
4404
* trace -G A -e sched:*switch
4405
*
4406
* Will set all raw_syscalls:sys_{enter,exit}, pgfault, vfs_getname, etc
4407
* _and_ sched:sched_switch to the 'A' cgroup, while:
4408
*
4409
* trace -e sched:*switch -G A
4410
*
4411
* will only set the sched:sched_switch event to the 'A' cgroup, all the
4412
* other events (raw_syscalls:sys_{enter,exit}, etc are left "without"
4413
* a cgroup (on the root cgroup, sys wide, etc).
4414
*
4415
* Multiple cgroups:
4416
*
4417
* trace -G A -e sched:*switch -G B
4418
*
4419
* the syscall ones go to the 'A' cgroup, the sched:sched_switch goes
4420
* to the 'B' cgroup.
4421
*
4422
* evlist__set_default_cgroup() grabs a reference of the passed cgroup
4423
* only for the evsels still without a cgroup, i.e. evsel->cgroup == NULL.
4424
*/
4425
if (trace->cgroup)
4426
evlist__set_default_cgroup(trace->evlist, trace->cgroup);
4427
4428
create_maps:
4429
err = evlist__create_maps(evlist, &trace->opts.target);
4430
if (err < 0) {
4431
fprintf(trace->output, "Problems parsing the target to trace, check your options!\n");
4432
goto out_delete_evlist;
4433
}
4434
4435
err = trace__symbols_init(trace, argc, argv, evlist);
4436
if (err < 0) {
4437
fprintf(trace->output, "Problems initializing symbol libraries!\n");
4438
goto out_delete_evlist;
4439
}
4440
4441
if (trace->summary_mode == SUMMARY__BY_TOTAL && !trace->summary_bpf) {
4442
trace->syscall_stats = alloc_syscall_stats();
4443
if (trace->syscall_stats == NULL)
4444
goto out_delete_evlist;
4445
}
4446
4447
evlist__config(evlist, &trace->opts, &callchain_param);
4448
4449
if (forks) {
4450
err = evlist__prepare_workload(evlist, &trace->opts.target, argv, false, NULL);
4451
if (err < 0) {
4452
fprintf(trace->output, "Couldn't run the workload!\n");
4453
goto out_delete_evlist;
4454
}
4455
workload_pid = evlist->workload.pid;
4456
}
4457
4458
err = evlist__open(evlist);
4459
if (err < 0)
4460
goto out_error_open;
4461
4462
augmented_syscalls__setup_bpf_output();
4463
4464
err = trace__set_filter_pids(trace);
4465
if (err < 0)
4466
goto out_error_mem;
4467
4468
/*
4469
* TODO: Initialize for all host binary machine types, not just
4470
* those matching the perf binary.
4471
*/
4472
trace__init_syscalls_bpf_prog_array_maps(trace, EM_HOST);
4473
4474
if (trace->ev_qualifier_ids.nr > 0) {
4475
err = trace__set_ev_qualifier_filter(trace);
4476
if (err < 0)
4477
goto out_errno;
4478
4479
if (trace->syscalls.events.sys_exit) {
4480
pr_debug("event qualifier tracepoint filter: %s\n",
4481
trace->syscalls.events.sys_exit->filter);
4482
}
4483
}
4484
4485
/*
4486
* If the "close" syscall is not traced, then we will not have the
4487
* opportunity to, in syscall_arg__scnprintf_close_fd() invalidate the
4488
* fd->pathname table and were ending up showing the last value set by
4489
* syscalls opening a pathname and associating it with a descriptor or
4490
* reading it from /proc/pid/fd/ in cases where that doesn't make
4491
* sense.
4492
*
4493
* So just disable this beautifier (SCA_FD, SCA_FDAT) when 'close' is
4494
* not in use.
4495
*/
4496
/* TODO: support for more than just perf binary machine type close. */
4497
trace->fd_path_disabled = !trace__syscall_enabled(trace, syscalltbl__id(EM_HOST, "close"));
4498
4499
err = trace__expand_filters(trace, &evsel);
4500
if (err)
4501
goto out_delete_evlist;
4502
err = evlist__apply_filters(evlist, &evsel, &trace->opts.target);
4503
if (err < 0)
4504
goto out_error_apply_filters;
4505
4506
if (!trace->summary_only || !trace->summary_bpf) {
4507
err = evlist__mmap(evlist, trace->opts.mmap_pages);
4508
if (err < 0)
4509
goto out_error_mmap;
4510
}
4511
4512
if (!target__none(&trace->opts.target) && !trace->opts.target.initial_delay)
4513
evlist__enable(evlist);
4514
4515
if (forks)
4516
evlist__start_workload(evlist);
4517
4518
if (trace->opts.target.initial_delay) {
4519
usleep(trace->opts.target.initial_delay * 1000);
4520
evlist__enable(evlist);
4521
}
4522
4523
if (trace->summary_bpf)
4524
trace_start_bpf_summary();
4525
4526
trace->multiple_threads = perf_thread_map__pid(evlist->core.threads, 0) == -1 ||
4527
perf_thread_map__nr(evlist->core.threads) > 1 ||
4528
evlist__first(evlist)->core.attr.inherit;
4529
4530
/*
4531
* Now that we already used evsel->core.attr to ask the kernel to setup the
4532
* events, lets reuse evsel->core.attr.sample_max_stack as the limit in
4533
* trace__resolve_callchain(), allowing per-event max-stack settings
4534
* to override an explicitly set --max-stack global setting.
4535
*/
4536
evlist__for_each_entry(evlist, evsel) {
4537
if (evsel__has_callchain(evsel) &&
4538
evsel->core.attr.sample_max_stack == 0)
4539
evsel->core.attr.sample_max_stack = trace->max_stack;
4540
}
4541
again:
4542
before = trace->nr_events;
4543
4544
for (i = 0; i < evlist->core.nr_mmaps; i++) {
4545
union perf_event *event;
4546
struct mmap *md;
4547
4548
md = &evlist->mmap[i];
4549
if (perf_mmap__read_init(&md->core) < 0)
4550
continue;
4551
4552
while ((event = perf_mmap__read_event(&md->core)) != NULL) {
4553
++trace->nr_events;
4554
4555
err = trace__deliver_event(trace, event);
4556
if (err)
4557
goto out_disable;
4558
4559
perf_mmap__consume(&md->core);
4560
4561
if (interrupted)
4562
goto out_disable;
4563
4564
if (done && !draining) {
4565
evlist__disable(evlist);
4566
draining = true;
4567
}
4568
}
4569
perf_mmap__read_done(&md->core);
4570
}
4571
4572
if (trace->nr_events == before) {
4573
int timeout = done ? 100 : -1;
4574
4575
if (!draining && evlist__poll(evlist, timeout) > 0) {
4576
if (evlist__filter_pollfd(evlist, POLLERR | POLLHUP | POLLNVAL) == 0)
4577
draining = true;
4578
4579
goto again;
4580
} else {
4581
if (trace__flush_events(trace))
4582
goto out_disable;
4583
}
4584
} else {
4585
goto again;
4586
}
4587
4588
out_disable:
4589
thread__zput(trace->current);
4590
4591
evlist__disable(evlist);
4592
4593
if (trace->summary_bpf)
4594
trace_end_bpf_summary();
4595
4596
if (trace->sort_events)
4597
ordered_events__flush(&trace->oe.data, OE_FLUSH__FINAL);
4598
4599
if (!err) {
4600
if (trace->summary) {
4601
if (trace->summary_bpf)
4602
trace_print_bpf_summary(trace->output);
4603
else if (trace->summary_mode == SUMMARY__BY_TOTAL)
4604
trace__fprintf_total_summary(trace, trace->output);
4605
else
4606
trace__fprintf_thread_summary(trace, trace->output);
4607
}
4608
4609
if (trace->show_tool_stats) {
4610
fprintf(trace->output, "Stats:\n "
4611
" vfs_getname : %" PRIu64 "\n"
4612
" proc_getname: %" PRIu64 "\n",
4613
trace->stats.vfs_getname,
4614
trace->stats.proc_getname);
4615
}
4616
}
4617
4618
out_delete_evlist:
4619
trace_cleanup_bpf_summary();
4620
delete_syscall_stats(trace->syscall_stats);
4621
trace__symbols__exit(trace);
4622
evlist__free_syscall_tp_fields(evlist);
4623
evlist__delete(evlist);
4624
cgroup__put(trace->cgroup);
4625
trace->evlist = NULL;
4626
trace->live = false;
4627
return err;
4628
{
4629
char errbuf[BUFSIZ];
4630
4631
out_error_sched_stat_runtime:
4632
tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "sched", "sched_stat_runtime");
4633
goto out_error;
4634
4635
out_error_raw_syscalls:
4636
tracing_path__strerror_open_tp(errno, errbuf, sizeof(errbuf), "raw_syscalls", "sys_(enter|exit)");
4637
goto out_error;
4638
4639
out_error_mmap:
4640
evlist__strerror_mmap(evlist, errno, errbuf, sizeof(errbuf));
4641
goto out_error;
4642
4643
out_error_open:
4644
evlist__strerror_open(evlist, errno, errbuf, sizeof(errbuf));
4645
4646
out_error:
4647
fprintf(trace->output, "%s\n", errbuf);
4648
goto out_delete_evlist;
4649
4650
out_error_apply_filters:
4651
fprintf(trace->output,
4652
"Failed to set filter \"%s\" on event %s with %d (%s)\n",
4653
evsel->filter, evsel__name(evsel), errno,
4654
str_error_r(errno, errbuf, sizeof(errbuf)));
4655
goto out_delete_evlist;
4656
}
4657
out_error_mem:
4658
fprintf(trace->output, "Not enough memory to run!\n");
4659
goto out_delete_evlist;
4660
4661
out_errno:
4662
fprintf(trace->output, "errno=%d,%s\n", errno, strerror(errno));
4663
goto out_delete_evlist;
4664
}
4665
4666
static int trace__replay(struct trace *trace)
4667
{
4668
const struct evsel_str_handler handlers[] = {
4669
{ "probe:vfs_getname", trace__vfs_getname, },
4670
};
4671
struct perf_data data = {
4672
.path = input_name,
4673
.mode = PERF_DATA_MODE_READ,
4674
.force = trace->force,
4675
};
4676
struct perf_session *session;
4677
struct evsel *evsel;
4678
int err = -1;
4679
4680
perf_tool__init(&trace->tool, /*ordered_events=*/true);
4681
trace->tool.sample = trace__process_sample;
4682
trace->tool.mmap = perf_event__process_mmap;
4683
trace->tool.mmap2 = perf_event__process_mmap2;
4684
trace->tool.comm = perf_event__process_comm;
4685
trace->tool.exit = perf_event__process_exit;
4686
trace->tool.fork = perf_event__process_fork;
4687
trace->tool.attr = perf_event__process_attr;
4688
trace->tool.tracing_data = perf_event__process_tracing_data;
4689
trace->tool.build_id = perf_event__process_build_id;
4690
trace->tool.namespaces = perf_event__process_namespaces;
4691
4692
trace->tool.ordered_events = true;
4693
trace->tool.ordering_requires_timestamps = true;
4694
4695
/* add tid to output */
4696
trace->multiple_threads = true;
4697
4698
session = perf_session__new(&data, &trace->tool);
4699
if (IS_ERR(session))
4700
return PTR_ERR(session);
4701
4702
if (trace->opts.target.pid)
4703
symbol_conf.pid_list_str = strdup(trace->opts.target.pid);
4704
4705
if (trace->opts.target.tid)
4706
symbol_conf.tid_list_str = strdup(trace->opts.target.tid);
4707
4708
if (symbol__init(perf_session__env(session)) < 0)
4709
goto out;
4710
4711
trace->host = &session->machines.host;
4712
4713
err = perf_session__set_tracepoints_handlers(session, handlers);
4714
if (err)
4715
goto out;
4716
4717
evsel = evlist__find_tracepoint_by_name(session->evlist, "raw_syscalls:sys_enter");
4718
trace->syscalls.events.sys_enter = evsel;
4719
/* older kernels have syscalls tp versus raw_syscalls */
4720
if (evsel == NULL)
4721
evsel = evlist__find_tracepoint_by_name(session->evlist, "syscalls:sys_enter");
4722
4723
if (evsel &&
4724
(evsel__init_raw_syscall_tp(evsel, trace__sys_enter) < 0 ||
4725
perf_evsel__init_sc_tp_ptr_field(evsel, args))) {
4726
pr_err("Error during initialize raw_syscalls:sys_enter event\n");
4727
goto out;
4728
}
4729
4730
evsel = evlist__find_tracepoint_by_name(session->evlist, "raw_syscalls:sys_exit");
4731
trace->syscalls.events.sys_exit = evsel;
4732
if (evsel == NULL)
4733
evsel = evlist__find_tracepoint_by_name(session->evlist, "syscalls:sys_exit");
4734
if (evsel &&
4735
(evsel__init_raw_syscall_tp(evsel, trace__sys_exit) < 0 ||
4736
perf_evsel__init_sc_tp_uint_field(evsel, ret))) {
4737
pr_err("Error during initialize raw_syscalls:sys_exit event\n");
4738
goto out;
4739
}
4740
4741
evlist__for_each_entry(session->evlist, evsel) {
4742
if (evsel->core.attr.type == PERF_TYPE_SOFTWARE &&
4743
(evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MAJ ||
4744
evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS_MIN ||
4745
evsel->core.attr.config == PERF_COUNT_SW_PAGE_FAULTS))
4746
evsel->handler = trace__pgfault;
4747
}
4748
4749
if (trace->summary_mode == SUMMARY__BY_TOTAL) {
4750
trace->syscall_stats = alloc_syscall_stats();
4751
if (trace->syscall_stats == NULL)
4752
goto out;
4753
}
4754
4755
setup_pager();
4756
4757
err = perf_session__process_events(session);
4758
if (err)
4759
pr_err("Failed to process events, error %d", err);
4760
4761
else if (trace->summary)
4762
trace__fprintf_thread_summary(trace, trace->output);
4763
4764
out:
4765
delete_syscall_stats(trace->syscall_stats);
4766
perf_session__delete(session);
4767
4768
return err;
4769
}
4770
4771
static size_t trace__fprintf_summary_header(FILE *fp)
4772
{
4773
size_t printed;
4774
4775
printed = fprintf(fp, "\n Summary of events:\n\n");
4776
4777
return printed;
4778
}
4779
4780
struct syscall_entry {
4781
struct syscall_stats *stats;
4782
double msecs;
4783
int syscall;
4784
};
4785
4786
static int entry_cmp(const void *e1, const void *e2)
4787
{
4788
const struct syscall_entry *entry1 = e1;
4789
const struct syscall_entry *entry2 = e2;
4790
4791
return entry1->msecs > entry2->msecs ? -1 : 1;
4792
}
4793
4794
static struct syscall_entry *syscall__sort_stats(struct hashmap *syscall_stats)
4795
{
4796
struct syscall_entry *entry;
4797
struct hashmap_entry *pos;
4798
unsigned bkt, i, nr;
4799
4800
nr = syscall_stats->sz;
4801
entry = malloc(nr * sizeof(*entry));
4802
if (entry == NULL)
4803
return NULL;
4804
4805
i = 0;
4806
hashmap__for_each_entry(syscall_stats, pos, bkt) {
4807
struct syscall_stats *ss = pos->pvalue;
4808
struct stats *st = &ss->stats;
4809
4810
entry[i].stats = ss;
4811
entry[i].msecs = (u64)st->n * (avg_stats(st) / NSEC_PER_MSEC);
4812
entry[i].syscall = pos->key;
4813
i++;
4814
}
4815
assert(i == nr);
4816
4817
qsort(entry, nr, sizeof(*entry), entry_cmp);
4818
return entry;
4819
}
4820
4821
static size_t syscall__dump_stats(struct trace *trace, int e_machine, FILE *fp,
4822
struct hashmap *syscall_stats)
4823
{
4824
size_t printed = 0;
4825
struct syscall *sc;
4826
struct syscall_entry *entries;
4827
4828
entries = syscall__sort_stats(syscall_stats);
4829
if (entries == NULL)
4830
return 0;
4831
4832
printed += fprintf(fp, "\n");
4833
4834
printed += fprintf(fp, " syscall calls errors total min avg max stddev\n");
4835
printed += fprintf(fp, " (msec) (msec) (msec) (msec) (%%)\n");
4836
printed += fprintf(fp, " --------------- -------- ------ -------- --------- --------- --------- ------\n");
4837
4838
for (size_t i = 0; i < syscall_stats->sz; i++) {
4839
struct syscall_entry *entry = &entries[i];
4840
struct syscall_stats *stats = entry->stats;
4841
4842
if (stats) {
4843
double min = (double)(stats->stats.min) / NSEC_PER_MSEC;
4844
double max = (double)(stats->stats.max) / NSEC_PER_MSEC;
4845
double avg = avg_stats(&stats->stats);
4846
double pct;
4847
u64 n = (u64)stats->stats.n;
4848
4849
pct = avg ? 100.0 * stddev_stats(&stats->stats) / avg : 0.0;
4850
avg /= NSEC_PER_MSEC;
4851
4852
sc = trace__syscall_info(trace, /*evsel=*/NULL, e_machine, entry->syscall);
4853
if (!sc)
4854
continue;
4855
4856
printed += fprintf(fp, " %-15s", sc->name);
4857
printed += fprintf(fp, " %8" PRIu64 " %6" PRIu64 " %9.3f %9.3f %9.3f",
4858
n, stats->nr_failures, entry->msecs, min, avg);
4859
printed += fprintf(fp, " %9.3f %9.2f%%\n", max, pct);
4860
4861
if (trace->errno_summary && stats->nr_failures) {
4862
int e;
4863
4864
for (e = 0; e < stats->max_errno; ++e) {
4865
if (stats->errnos[e] != 0)
4866
fprintf(fp, "\t\t\t\t%s: %d\n", perf_env__arch_strerrno(trace->host->env, e + 1), stats->errnos[e]);
4867
}
4868
}
4869
}
4870
}
4871
4872
free(entries);
4873
printed += fprintf(fp, "\n\n");
4874
4875
return printed;
4876
}
4877
4878
static size_t thread__dump_stats(struct thread_trace *ttrace,
4879
struct trace *trace, int e_machine, FILE *fp)
4880
{
4881
return syscall__dump_stats(trace, e_machine, fp, ttrace->syscall_stats);
4882
}
4883
4884
static size_t system__dump_stats(struct trace *trace, int e_machine, FILE *fp)
4885
{
4886
return syscall__dump_stats(trace, e_machine, fp, trace->syscall_stats);
4887
}
4888
4889
static size_t trace__fprintf_thread(FILE *fp, struct thread *thread, struct trace *trace)
4890
{
4891
size_t printed = 0;
4892
struct thread_trace *ttrace = thread__priv(thread);
4893
int e_machine = thread__e_machine(thread, trace->host);
4894
double ratio;
4895
4896
if (ttrace == NULL)
4897
return 0;
4898
4899
ratio = (double)ttrace->nr_events / trace->nr_events * 100.0;
4900
4901
printed += fprintf(fp, " %s (%d), ", thread__comm_str(thread), thread__tid(thread));
4902
printed += fprintf(fp, "%lu events, ", ttrace->nr_events);
4903
printed += fprintf(fp, "%.1f%%", ratio);
4904
if (ttrace->pfmaj)
4905
printed += fprintf(fp, ", %lu majfaults", ttrace->pfmaj);
4906
if (ttrace->pfmin)
4907
printed += fprintf(fp, ", %lu minfaults", ttrace->pfmin);
4908
if (trace->sched)
4909
printed += fprintf(fp, ", %.3f msec\n", ttrace->runtime_ms);
4910
else if (fputc('\n', fp) != EOF)
4911
++printed;
4912
4913
printed += thread__dump_stats(ttrace, trace, e_machine, fp);
4914
4915
return printed;
4916
}
4917
4918
static unsigned long thread__nr_events(struct thread_trace *ttrace)
4919
{
4920
return ttrace ? ttrace->nr_events : 0;
4921
}
4922
4923
static int trace_nr_events_cmp(void *priv __maybe_unused,
4924
const struct list_head *la,
4925
const struct list_head *lb)
4926
{
4927
struct thread_list *a = list_entry(la, struct thread_list, list);
4928
struct thread_list *b = list_entry(lb, struct thread_list, list);
4929
unsigned long a_nr_events = thread__nr_events(thread__priv(a->thread));
4930
unsigned long b_nr_events = thread__nr_events(thread__priv(b->thread));
4931
4932
if (a_nr_events != b_nr_events)
4933
return a_nr_events < b_nr_events ? -1 : 1;
4934
4935
/* Identical number of threads, place smaller tids first. */
4936
return thread__tid(a->thread) < thread__tid(b->thread)
4937
? -1
4938
: (thread__tid(a->thread) > thread__tid(b->thread) ? 1 : 0);
4939
}
4940
4941
static size_t trace__fprintf_thread_summary(struct trace *trace, FILE *fp)
4942
{
4943
size_t printed = trace__fprintf_summary_header(fp);
4944
LIST_HEAD(threads);
4945
4946
if (machine__thread_list(trace->host, &threads) == 0) {
4947
struct thread_list *pos;
4948
4949
list_sort(NULL, &threads, trace_nr_events_cmp);
4950
4951
list_for_each_entry(pos, &threads, list)
4952
printed += trace__fprintf_thread(fp, pos->thread, trace);
4953
}
4954
thread_list__delete(&threads);
4955
return printed;
4956
}
4957
4958
static size_t trace__fprintf_total_summary(struct trace *trace, FILE *fp)
4959
{
4960
size_t printed = trace__fprintf_summary_header(fp);
4961
4962
printed += fprintf(fp, " total, ");
4963
printed += fprintf(fp, "%lu events", trace->nr_events);
4964
4965
if (trace->pfmaj)
4966
printed += fprintf(fp, ", %lu majfaults", trace->pfmaj);
4967
if (trace->pfmin)
4968
printed += fprintf(fp, ", %lu minfaults", trace->pfmin);
4969
if (trace->sched)
4970
printed += fprintf(fp, ", %.3f msec\n", trace->runtime_ms);
4971
else if (fputc('\n', fp) != EOF)
4972
++printed;
4973
4974
/* TODO: get all system e_machines. */
4975
printed += system__dump_stats(trace, EM_HOST, fp);
4976
4977
return printed;
4978
}
4979
4980
static int trace__set_duration(const struct option *opt, const char *str,
4981
int unset __maybe_unused)
4982
{
4983
struct trace *trace = opt->value;
4984
4985
trace->duration_filter = atof(str);
4986
return 0;
4987
}
4988
4989
static int trace__set_filter_pids_from_option(const struct option *opt, const char *str,
4990
int unset __maybe_unused)
4991
{
4992
int ret = -1;
4993
size_t i;
4994
struct trace *trace = opt->value;
4995
/*
4996
* FIXME: introduce a intarray class, plain parse csv and create a
4997
* { int nr, int entries[] } struct...
4998
*/
4999
struct intlist *list = intlist__new(str);
5000
5001
if (list == NULL)
5002
return -1;
5003
5004
i = trace->filter_pids.nr = intlist__nr_entries(list) + 1;
5005
trace->filter_pids.entries = calloc(i, sizeof(pid_t));
5006
5007
if (trace->filter_pids.entries == NULL)
5008
goto out;
5009
5010
trace->filter_pids.entries[0] = getpid();
5011
5012
for (i = 1; i < trace->filter_pids.nr; ++i)
5013
trace->filter_pids.entries[i] = intlist__entry(list, i - 1)->i;
5014
5015
intlist__delete(list);
5016
ret = 0;
5017
out:
5018
return ret;
5019
}
5020
5021
static int trace__open_output(struct trace *trace, const char *filename)
5022
{
5023
struct stat st;
5024
5025
if (!stat(filename, &st) && st.st_size) {
5026
char oldname[PATH_MAX];
5027
5028
scnprintf(oldname, sizeof(oldname), "%s.old", filename);
5029
unlink(oldname);
5030
rename(filename, oldname);
5031
}
5032
5033
trace->output = fopen(filename, "w");
5034
5035
return trace->output == NULL ? -errno : 0;
5036
}
5037
5038
static int parse_pagefaults(const struct option *opt, const char *str,
5039
int unset __maybe_unused)
5040
{
5041
int *trace_pgfaults = opt->value;
5042
5043
if (strcmp(str, "all") == 0)
5044
*trace_pgfaults |= TRACE_PFMAJ | TRACE_PFMIN;
5045
else if (strcmp(str, "maj") == 0)
5046
*trace_pgfaults |= TRACE_PFMAJ;
5047
else if (strcmp(str, "min") == 0)
5048
*trace_pgfaults |= TRACE_PFMIN;
5049
else
5050
return -1;
5051
5052
return 0;
5053
}
5054
5055
static void evlist__set_default_evsel_handler(struct evlist *evlist, void *handler)
5056
{
5057
struct evsel *evsel;
5058
5059
evlist__for_each_entry(evlist, evsel) {
5060
if (evsel->handler == NULL)
5061
evsel->handler = handler;
5062
}
5063
}
5064
5065
static void evsel__set_syscall_arg_fmt(struct evsel *evsel, const char *name)
5066
{
5067
struct syscall_arg_fmt *fmt = evsel__syscall_arg_fmt(evsel);
5068
5069
if (fmt) {
5070
const struct syscall_fmt *scfmt = syscall_fmt__find(name);
5071
5072
if (scfmt) {
5073
const struct tep_event *tp_format = evsel__tp_format(evsel);
5074
5075
if (tp_format) {
5076
int skip = 0;
5077
5078
if (strcmp(tp_format->format.fields->name, "__syscall_nr") == 0 ||
5079
strcmp(tp_format->format.fields->name, "nr") == 0)
5080
++skip;
5081
5082
memcpy(fmt + skip, scfmt->arg,
5083
(tp_format->format.nr_fields - skip) * sizeof(*fmt));
5084
}
5085
}
5086
}
5087
}
5088
5089
static int evlist__set_syscall_tp_fields(struct evlist *evlist, bool *use_btf)
5090
{
5091
struct evsel *evsel;
5092
5093
evlist__for_each_entry(evlist, evsel) {
5094
const struct tep_event *tp_format;
5095
5096
if (evsel->priv)
5097
continue;
5098
5099
tp_format = evsel__tp_format(evsel);
5100
if (!tp_format)
5101
continue;
5102
5103
if (strcmp(tp_format->system, "syscalls")) {
5104
evsel__init_tp_arg_scnprintf(evsel, use_btf);
5105
continue;
5106
}
5107
5108
if (evsel__init_syscall_tp(evsel))
5109
return -1;
5110
5111
if (!strncmp(tp_format->name, "sys_enter_", 10)) {
5112
struct syscall_tp *sc = __evsel__syscall_tp(evsel);
5113
5114
if (__tp_field__init_ptr(&sc->args, sc->id.offset + sizeof(u64)))
5115
return -1;
5116
5117
evsel__set_syscall_arg_fmt(evsel,
5118
tp_format->name + sizeof("sys_enter_") - 1);
5119
} else if (!strncmp(tp_format->name, "sys_exit_", 9)) {
5120
struct syscall_tp *sc = __evsel__syscall_tp(evsel);
5121
5122
if (__tp_field__init_uint(&sc->ret, sizeof(u64),
5123
sc->id.offset + sizeof(u64),
5124
evsel->needs_swap))
5125
return -1;
5126
5127
evsel__set_syscall_arg_fmt(evsel,
5128
tp_format->name + sizeof("sys_exit_") - 1);
5129
}
5130
}
5131
5132
return 0;
5133
}
5134
5135
/*
5136
* XXX: Hackish, just splitting the combined -e+--event (syscalls
5137
* (raw_syscalls:{sys_{enter,exit}} + events (tracepoints, HW, SW, etc) to use
5138
* existing facilities unchanged (trace->ev_qualifier + parse_options()).
5139
*
5140
* It'd be better to introduce a parse_options() variant that would return a
5141
* list with the terms it didn't match to an event...
5142
*/
5143
static int trace__parse_events_option(const struct option *opt, const char *str,
5144
int unset __maybe_unused)
5145
{
5146
struct trace *trace = (struct trace *)opt->value;
5147
const char *s = str;
5148
char *sep = NULL, *lists[2] = { NULL, NULL, };
5149
int len = strlen(str) + 1, err = -1, list, idx;
5150
char *strace_groups_dir = system_path(STRACE_GROUPS_DIR);
5151
char group_name[PATH_MAX];
5152
const struct syscall_fmt *fmt;
5153
5154
if (strace_groups_dir == NULL)
5155
return -1;
5156
5157
if (*s == '!') {
5158
++s;
5159
trace->not_ev_qualifier = true;
5160
}
5161
5162
while (1) {
5163
if ((sep = strchr(s, ',')) != NULL)
5164
*sep = '\0';
5165
5166
list = 0;
5167
/* TODO: support for more than just perf binary machine type syscalls. */
5168
if (syscalltbl__id(EM_HOST, s) >= 0 ||
5169
syscalltbl__strglobmatch_first(EM_HOST, s, &idx) >= 0) {
5170
list = 1;
5171
goto do_concat;
5172
}
5173
5174
fmt = syscall_fmt__find_by_alias(s);
5175
if (fmt != NULL) {
5176
list = 1;
5177
s = fmt->name;
5178
} else {
5179
path__join(group_name, sizeof(group_name), strace_groups_dir, s);
5180
if (access(group_name, R_OK) == 0)
5181
list = 1;
5182
}
5183
do_concat:
5184
if (lists[list]) {
5185
sprintf(lists[list] + strlen(lists[list]), ",%s", s);
5186
} else {
5187
lists[list] = malloc(len);
5188
if (lists[list] == NULL)
5189
goto out;
5190
strcpy(lists[list], s);
5191
}
5192
5193
if (!sep)
5194
break;
5195
5196
*sep = ',';
5197
s = sep + 1;
5198
}
5199
5200
if (lists[1] != NULL) {
5201
struct strlist_config slist_config = {
5202
.dirname = strace_groups_dir,
5203
};
5204
5205
trace->ev_qualifier = strlist__new(lists[1], &slist_config);
5206
if (trace->ev_qualifier == NULL) {
5207
fputs("Not enough memory to parse event qualifier", trace->output);
5208
goto out;
5209
}
5210
5211
if (trace__validate_ev_qualifier(trace))
5212
goto out;
5213
trace->trace_syscalls = true;
5214
}
5215
5216
err = 0;
5217
5218
if (lists[0]) {
5219
struct parse_events_option_args parse_events_option_args = {
5220
.evlistp = &trace->evlist,
5221
};
5222
struct option o = {
5223
.value = &parse_events_option_args,
5224
};
5225
err = parse_events_option(&o, lists[0], 0);
5226
}
5227
out:
5228
free(strace_groups_dir);
5229
free(lists[0]);
5230
free(lists[1]);
5231
if (sep)
5232
*sep = ',';
5233
5234
return err;
5235
}
5236
5237
static int trace__parse_cgroups(const struct option *opt, const char *str, int unset)
5238
{
5239
struct trace *trace = opt->value;
5240
5241
if (!list_empty(&trace->evlist->core.entries)) {
5242
struct option o = {
5243
.value = &trace->evlist,
5244
};
5245
return parse_cgroups(&o, str, unset);
5246
}
5247
trace->cgroup = evlist__findnew_cgroup(trace->evlist, str);
5248
5249
return 0;
5250
}
5251
5252
static int trace__parse_summary_mode(const struct option *opt, const char *str,
5253
int unset __maybe_unused)
5254
{
5255
struct trace *trace = opt->value;
5256
5257
if (!strcmp(str, "thread")) {
5258
trace->summary_mode = SUMMARY__BY_THREAD;
5259
} else if (!strcmp(str, "total")) {
5260
trace->summary_mode = SUMMARY__BY_TOTAL;
5261
} else if (!strcmp(str, "cgroup")) {
5262
trace->summary_mode = SUMMARY__BY_CGROUP;
5263
} else {
5264
pr_err("Unknown summary mode: %s\n", str);
5265
return -1;
5266
}
5267
5268
return 0;
5269
}
5270
5271
static int trace__config(const char *var, const char *value, void *arg)
5272
{
5273
struct trace *trace = arg;
5274
int err = 0;
5275
5276
if (!strcmp(var, "trace.add_events")) {
5277
trace->perfconfig_events = strdup(value);
5278
if (trace->perfconfig_events == NULL) {
5279
pr_err("Not enough memory for %s\n", "trace.add_events");
5280
return -1;
5281
}
5282
} else if (!strcmp(var, "trace.show_timestamp")) {
5283
trace->show_tstamp = perf_config_bool(var, value);
5284
} else if (!strcmp(var, "trace.show_duration")) {
5285
trace->show_duration = perf_config_bool(var, value);
5286
} else if (!strcmp(var, "trace.show_arg_names")) {
5287
trace->show_arg_names = perf_config_bool(var, value);
5288
if (!trace->show_arg_names)
5289
trace->show_zeros = true;
5290
} else if (!strcmp(var, "trace.show_zeros")) {
5291
bool new_show_zeros = perf_config_bool(var, value);
5292
if (!trace->show_arg_names && !new_show_zeros) {
5293
pr_warning("trace.show_zeros has to be set when trace.show_arg_names=no\n");
5294
goto out;
5295
}
5296
trace->show_zeros = new_show_zeros;
5297
} else if (!strcmp(var, "trace.show_prefix")) {
5298
trace->show_string_prefix = perf_config_bool(var, value);
5299
} else if (!strcmp(var, "trace.no_inherit")) {
5300
trace->opts.no_inherit = perf_config_bool(var, value);
5301
} else if (!strcmp(var, "trace.args_alignment")) {
5302
int args_alignment = 0;
5303
if (perf_config_int(&args_alignment, var, value) == 0)
5304
trace->args_alignment = args_alignment;
5305
} else if (!strcmp(var, "trace.tracepoint_beautifiers")) {
5306
if (strcasecmp(value, "libtraceevent") == 0)
5307
trace->libtraceevent_print = true;
5308
else if (strcasecmp(value, "libbeauty") == 0)
5309
trace->libtraceevent_print = false;
5310
}
5311
out:
5312
return err;
5313
}
5314
5315
static void trace__exit(struct trace *trace)
5316
{
5317
thread__zput(trace->current);
5318
strlist__delete(trace->ev_qualifier);
5319
zfree(&trace->ev_qualifier_ids.entries);
5320
if (trace->syscalls.table) {
5321
for (size_t i = 0; i < trace->syscalls.table_size; i++)
5322
syscall__delete(trace->syscalls.table[i]);
5323
zfree(&trace->syscalls.table);
5324
}
5325
zfree(&trace->perfconfig_events);
5326
evlist__delete(trace->evlist);
5327
trace->evlist = NULL;
5328
ordered_events__free(&trace->oe.data);
5329
#ifdef HAVE_LIBBPF_SUPPORT
5330
btf__free(trace->btf);
5331
trace->btf = NULL;
5332
#endif
5333
}
5334
5335
int cmd_trace(int argc, const char **argv)
5336
{
5337
const char *trace_usage[] = {
5338
"perf trace [<options>] [<command>]",
5339
"perf trace [<options>] -- <command> [<options>]",
5340
"perf trace record [<options>] [<command>]",
5341
"perf trace record [<options>] -- <command> [<options>]",
5342
NULL
5343
};
5344
struct trace trace = {
5345
.opts = {
5346
.target = {
5347
.uses_mmap = true,
5348
},
5349
.user_freq = UINT_MAX,
5350
.user_interval = ULLONG_MAX,
5351
.no_buffering = true,
5352
.mmap_pages = UINT_MAX,
5353
},
5354
.output = stderr,
5355
.show_comm = true,
5356
.show_tstamp = true,
5357
.show_duration = true,
5358
.show_arg_names = true,
5359
.args_alignment = 70,
5360
.trace_syscalls = false,
5361
.kernel_syscallchains = false,
5362
.max_stack = UINT_MAX,
5363
.max_events = ULONG_MAX,
5364
};
5365
const char *output_name = NULL;
5366
const struct option trace_options[] = {
5367
OPT_CALLBACK('e', "event", &trace, "event",
5368
"event/syscall selector. use 'perf list' to list available events",
5369
trace__parse_events_option),
5370
OPT_CALLBACK(0, "filter", &trace.evlist, "filter",
5371
"event filter", parse_filter),
5372
OPT_BOOLEAN(0, "comm", &trace.show_comm,
5373
"show the thread COMM next to its id"),
5374
OPT_BOOLEAN(0, "tool_stats", &trace.show_tool_stats, "show tool stats"),
5375
OPT_CALLBACK(0, "expr", &trace, "expr", "list of syscalls/events to trace",
5376
trace__parse_events_option),
5377
OPT_STRING('o', "output", &output_name, "file", "output file name"),
5378
OPT_STRING('i', "input", &input_name, "file", "Analyze events in file"),
5379
OPT_STRING('p', "pid", &trace.opts.target.pid, "pid",
5380
"trace events on existing process id"),
5381
OPT_STRING('t', "tid", &trace.opts.target.tid, "tid",
5382
"trace events on existing thread id"),
5383
OPT_CALLBACK(0, "filter-pids", &trace, "CSV list of pids",
5384
"pids to filter (by the kernel)", trace__set_filter_pids_from_option),
5385
OPT_BOOLEAN('a', "all-cpus", &trace.opts.target.system_wide,
5386
"system-wide collection from all CPUs"),
5387
OPT_STRING('C', "cpu", &trace.opts.target.cpu_list, "cpu",
5388
"list of cpus to monitor"),
5389
OPT_BOOLEAN(0, "no-inherit", &trace.opts.no_inherit,
5390
"child tasks do not inherit counters"),
5391
OPT_CALLBACK('m', "mmap-pages", &trace.opts.mmap_pages, "pages",
5392
"number of mmap data pages", evlist__parse_mmap_pages),
5393
OPT_STRING('u', "uid", &trace.uid_str, "user", "user to profile"),
5394
OPT_CALLBACK(0, "duration", &trace, "float",
5395
"show only events with duration > N.M ms",
5396
trace__set_duration),
5397
OPT_BOOLEAN(0, "sched", &trace.sched, "show blocking scheduler events"),
5398
OPT_INCR('v', "verbose", &verbose, "be more verbose"),
5399
OPT_BOOLEAN('T', "time", &trace.full_time,
5400
"Show full timestamp, not time relative to first start"),
5401
OPT_BOOLEAN(0, "failure", &trace.failure_only,
5402
"Show only syscalls that failed"),
5403
OPT_BOOLEAN('s', "summary", &trace.summary_only,
5404
"Show only syscall summary with statistics"),
5405
OPT_BOOLEAN('S', "with-summary", &trace.summary,
5406
"Show all syscalls and summary with statistics"),
5407
OPT_BOOLEAN(0, "errno-summary", &trace.errno_summary,
5408
"Show errno stats per syscall, use with -s or -S"),
5409
OPT_CALLBACK(0, "summary-mode", &trace, "mode",
5410
"How to show summary: select thread (default), total or cgroup",
5411
trace__parse_summary_mode),
5412
OPT_CALLBACK_DEFAULT('F', "pf", &trace.trace_pgfaults, "all|maj|min",
5413
"Trace pagefaults", parse_pagefaults, "maj"),
5414
OPT_BOOLEAN(0, "syscalls", &trace.trace_syscalls, "Trace syscalls"),
5415
OPT_BOOLEAN('f', "force", &trace.force, "don't complain, do it"),
5416
OPT_CALLBACK(0, "call-graph", &trace.opts,
5417
"record_mode[,record_size]", record_callchain_help,
5418
&record_parse_callchain_opt),
5419
OPT_BOOLEAN(0, "libtraceevent_print", &trace.libtraceevent_print,
5420
"Use libtraceevent to print the tracepoint arguments."),
5421
OPT_BOOLEAN(0, "kernel-syscall-graph", &trace.kernel_syscallchains,
5422
"Show the kernel callchains on the syscall exit path"),
5423
OPT_ULONG(0, "max-events", &trace.max_events,
5424
"Set the maximum number of events to print, exit after that is reached. "),
5425
OPT_UINTEGER(0, "min-stack", &trace.min_stack,
5426
"Set the minimum stack depth when parsing the callchain, "
5427
"anything below the specified depth will be ignored."),
5428
OPT_UINTEGER(0, "max-stack", &trace.max_stack,
5429
"Set the maximum stack depth when parsing the callchain, "
5430
"anything beyond the specified depth will be ignored. "
5431
"Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
5432
OPT_BOOLEAN(0, "sort-events", &trace.sort_events,
5433
"Sort batch of events before processing, use if getting out of order events"),
5434
OPT_BOOLEAN(0, "print-sample", &trace.print_sample,
5435
"print the PERF_RECORD_SAMPLE PERF_SAMPLE_ info, for debugging"),
5436
OPT_UINTEGER(0, "proc-map-timeout", &proc_map_timeout,
5437
"per thread proc mmap processing timeout in ms"),
5438
OPT_CALLBACK('G', "cgroup", &trace, "name", "monitor event in cgroup name only",
5439
trace__parse_cgroups),
5440
OPT_INTEGER('D', "delay", &trace.opts.target.initial_delay,
5441
"ms to wait before starting measurement after program "
5442
"start"),
5443
OPT_BOOLEAN(0, "force-btf", &trace.force_btf, "Prefer btf_dump general pretty printer"
5444
"to customized ones"),
5445
OPT_BOOLEAN(0, "bpf-summary", &trace.summary_bpf, "Summary syscall stats in BPF"),
5446
OPTS_EVSWITCH(&trace.evswitch),
5447
OPT_END()
5448
};
5449
bool __maybe_unused max_stack_user_set = true;
5450
bool mmap_pages_user_set = true;
5451
struct evsel *evsel;
5452
const char * const trace_subcommands[] = { "record", NULL };
5453
int err = -1;
5454
char bf[BUFSIZ];
5455
struct sigaction sigchld_act;
5456
5457
signal(SIGSEGV, sighandler_dump_stack);
5458
signal(SIGFPE, sighandler_dump_stack);
5459
signal(SIGINT, sighandler_interrupt);
5460
5461
memset(&sigchld_act, 0, sizeof(sigchld_act));
5462
sigchld_act.sa_flags = SA_SIGINFO;
5463
sigchld_act.sa_sigaction = sighandler_chld;
5464
sigaction(SIGCHLD, &sigchld_act, NULL);
5465
5466
ordered_events__init(&trace.oe.data, ordered_events__deliver_event, &trace);
5467
ordered_events__set_copy_on_queue(&trace.oe.data, true);
5468
5469
trace.evlist = evlist__new();
5470
5471
if (trace.evlist == NULL) {
5472
pr_err("Not enough memory to run!\n");
5473
err = -ENOMEM;
5474
goto out;
5475
}
5476
5477
/*
5478
* Parsing .perfconfig may entail creating a BPF event, that may need
5479
* to create BPF maps, so bump RLIM_MEMLOCK as the default 64K setting
5480
* is too small. This affects just this process, not touching the
5481
* global setting. If it fails we'll get something in 'perf trace -v'
5482
* to help diagnose the problem.
5483
*/
5484
rlimit__bump_memlock();
5485
5486
err = perf_config(trace__config, &trace);
5487
if (err)
5488
goto out;
5489
5490
argc = parse_options_subcommand(argc, argv, trace_options, trace_subcommands,
5491
trace_usage, PARSE_OPT_STOP_AT_NON_OPTION);
5492
5493
/*
5494
* Here we already passed thru trace__parse_events_option() and it has
5495
* already figured out if -e syscall_name, if not but if --event
5496
* foo:bar was used, the user is interested _just_ in those, say,
5497
* tracepoint events, not in the strace-like syscall-name-based mode.
5498
*
5499
* This is important because we need to check if strace-like mode is
5500
* needed to decided if we should filter out the eBPF
5501
* __augmented_syscalls__ code, if it is in the mix, say, via
5502
* .perfconfig trace.add_events, and filter those out.
5503
*/
5504
if (!trace.trace_syscalls && !trace.trace_pgfaults &&
5505
trace.evlist->core.nr_entries == 0 /* Was --events used? */) {
5506
trace.trace_syscalls = true;
5507
}
5508
/*
5509
* Now that we have --verbose figured out, lets see if we need to parse
5510
* events from .perfconfig, so that if those events fail parsing, say some
5511
* BPF program fails, then we'll be able to use --verbose to see what went
5512
* wrong in more detail.
5513
*/
5514
if (trace.perfconfig_events != NULL) {
5515
struct parse_events_error parse_err;
5516
5517
parse_events_error__init(&parse_err);
5518
err = parse_events(trace.evlist, trace.perfconfig_events, &parse_err);
5519
if (err)
5520
parse_events_error__print(&parse_err, trace.perfconfig_events);
5521
parse_events_error__exit(&parse_err);
5522
if (err)
5523
goto out;
5524
}
5525
5526
if ((nr_cgroups || trace.cgroup) && !trace.opts.target.system_wide) {
5527
usage_with_options_msg(trace_usage, trace_options,
5528
"cgroup monitoring only available in system-wide mode");
5529
}
5530
5531
if (!trace.trace_syscalls)
5532
goto skip_augmentation;
5533
5534
if ((argc >= 1) && (strcmp(argv[0], "record") == 0)) {
5535
pr_debug("Syscall augmentation fails with record, disabling augmentation");
5536
goto skip_augmentation;
5537
}
5538
5539
if (trace.summary_bpf) {
5540
if (!trace.opts.target.system_wide) {
5541
/* TODO: Add filters in the BPF to support other targets. */
5542
pr_err("Error: --bpf-summary only works for system-wide mode.\n");
5543
goto out;
5544
}
5545
if (trace.summary_only)
5546
goto skip_augmentation;
5547
}
5548
5549
err = augmented_syscalls__prepare();
5550
if (err < 0)
5551
goto skip_augmentation;
5552
5553
trace__add_syscall_newtp(&trace);
5554
5555
err = augmented_syscalls__create_bpf_output(trace.evlist);
5556
if (err == 0)
5557
trace.syscalls.events.bpf_output = evlist__last(trace.evlist);
5558
5559
skip_augmentation:
5560
err = -1;
5561
5562
if (trace.trace_pgfaults) {
5563
trace.opts.sample_address = true;
5564
trace.opts.sample_time = true;
5565
}
5566
5567
if (trace.opts.mmap_pages == UINT_MAX)
5568
mmap_pages_user_set = false;
5569
5570
if (trace.max_stack == UINT_MAX) {
5571
trace.max_stack = input_name ? PERF_MAX_STACK_DEPTH : sysctl__max_stack();
5572
max_stack_user_set = false;
5573
}
5574
5575
#ifdef HAVE_DWARF_UNWIND_SUPPORT
5576
if ((trace.min_stack || max_stack_user_set) && !callchain_param.enabled) {
5577
record_opts__parse_callchain(&trace.opts, &callchain_param, "dwarf", false);
5578
}
5579
#endif
5580
5581
if (callchain_param.enabled) {
5582
if (!mmap_pages_user_set && geteuid() == 0)
5583
trace.opts.mmap_pages = perf_event_mlock_kb_in_pages() * 4;
5584
5585
symbol_conf.use_callchain = true;
5586
}
5587
5588
if (trace.evlist->core.nr_entries > 0) {
5589
bool use_btf = false;
5590
5591
evlist__set_default_evsel_handler(trace.evlist, trace__event_handler);
5592
if (evlist__set_syscall_tp_fields(trace.evlist, &use_btf)) {
5593
perror("failed to set syscalls:* tracepoint fields");
5594
goto out;
5595
}
5596
5597
if (use_btf)
5598
trace__load_vmlinux_btf(&trace);
5599
}
5600
5601
/*
5602
* If we are augmenting syscalls, then combine what we put in the
5603
* __augmented_syscalls__ BPF map with what is in the
5604
* syscalls:sys_exit_FOO tracepoints, i.e. just like we do without BPF,
5605
* combining raw_syscalls:sys_enter with raw_syscalls:sys_exit.
5606
*
5607
* We'll switch to look at two BPF maps, one for sys_enter and the
5608
* other for sys_exit when we start augmenting the sys_exit paths with
5609
* buffers that are being copied from kernel to userspace, think 'read'
5610
* syscall.
5611
*/
5612
if (trace.syscalls.events.bpf_output) {
5613
evlist__for_each_entry(trace.evlist, evsel) {
5614
bool raw_syscalls_sys_exit = evsel__name_is(evsel, "raw_syscalls:sys_exit");
5615
5616
if (raw_syscalls_sys_exit) {
5617
trace.raw_augmented_syscalls = true;
5618
goto init_augmented_syscall_tp;
5619
}
5620
5621
if (trace.syscalls.events.bpf_output->priv == NULL &&
5622
strstr(evsel__name(evsel), "syscalls:sys_enter")) {
5623
struct evsel *augmented = trace.syscalls.events.bpf_output;
5624
if (evsel__init_augmented_syscall_tp(augmented, evsel) ||
5625
evsel__init_augmented_syscall_tp_args(augmented))
5626
goto out;
5627
/*
5628
* Augmented is __augmented_syscalls__ BPF_OUTPUT event
5629
* Above we made sure we can get from the payload the tp fields
5630
* that we get from syscalls:sys_enter tracefs format file.
5631
*/
5632
augmented->handler = trace__sys_enter;
5633
/*
5634
* Now we do the same for the *syscalls:sys_enter event so that
5635
* if we handle it directly, i.e. if the BPF prog returns 0 so
5636
* as not to filter it, then we'll handle it just like we would
5637
* for the BPF_OUTPUT one:
5638
*/
5639
if (evsel__init_augmented_syscall_tp(evsel, evsel) ||
5640
evsel__init_augmented_syscall_tp_args(evsel))
5641
goto out;
5642
evsel->handler = trace__sys_enter;
5643
}
5644
5645
if (strstarts(evsel__name(evsel), "syscalls:sys_exit_")) {
5646
struct syscall_tp *sc;
5647
init_augmented_syscall_tp:
5648
if (evsel__init_augmented_syscall_tp(evsel, evsel))
5649
goto out;
5650
sc = __evsel__syscall_tp(evsel);
5651
/*
5652
* For now with BPF raw_augmented we hook into
5653
* raw_syscalls:sys_enter and there we get all
5654
* 6 syscall args plus the tracepoint common
5655
* fields and the syscall_nr (another long).
5656
* So we check if that is the case and if so
5657
* don't look after the sc->args_size but
5658
* always after the full raw_syscalls:sys_enter
5659
* payload, which is fixed.
5660
*
5661
* We'll revisit this later to pass
5662
* s->args_size to the BPF augmenter (now
5663
* tools/perf/examples/bpf/augmented_raw_syscalls.c,
5664
* so that it copies only what we need for each
5665
* syscall, like what happens when we use
5666
* syscalls:sys_enter_NAME, so that we reduce
5667
* the kernel/userspace traffic to just what is
5668
* needed for each syscall.
5669
*/
5670
if (trace.raw_augmented_syscalls)
5671
trace.raw_augmented_syscalls_args_size = (6 + 1) * sizeof(long) + sc->id.offset;
5672
evsel__init_augmented_syscall_tp_ret(evsel);
5673
evsel->handler = trace__sys_exit;
5674
}
5675
}
5676
}
5677
5678
if ((argc >= 1) && (strcmp(argv[0], "record") == 0)) {
5679
err = trace__record(&trace, argc-1, &argv[1]);
5680
goto out;
5681
}
5682
5683
/* Using just --errno-summary will trigger --summary */
5684
if (trace.errno_summary && !trace.summary && !trace.summary_only)
5685
trace.summary_only = true;
5686
5687
/* summary_only implies summary option, but don't overwrite summary if set */
5688
if (trace.summary_only)
5689
trace.summary = trace.summary_only;
5690
5691
/* Keep exited threads, otherwise information might be lost for summary */
5692
if (trace.summary) {
5693
symbol_conf.keep_exited_threads = true;
5694
if (trace.summary_mode == SUMMARY__NONE)
5695
trace.summary_mode = SUMMARY__BY_THREAD;
5696
5697
if (!trace.summary_bpf && trace.summary_mode == SUMMARY__BY_CGROUP) {
5698
pr_err("Error: --summary-mode=cgroup only works with --bpf-summary\n");
5699
err = -EINVAL;
5700
goto out;
5701
}
5702
}
5703
5704
if (output_name != NULL) {
5705
err = trace__open_output(&trace, output_name);
5706
if (err < 0) {
5707
perror("failed to create output file");
5708
goto out;
5709
}
5710
}
5711
5712
err = evswitch__init(&trace.evswitch, trace.evlist, stderr);
5713
if (err)
5714
goto out_close;
5715
5716
err = target__validate(&trace.opts.target);
5717
if (err) {
5718
target__strerror(&trace.opts.target, err, bf, sizeof(bf));
5719
fprintf(trace.output, "%s", bf);
5720
goto out_close;
5721
}
5722
5723
if (trace.uid_str) {
5724
uid_t uid = parse_uid(trace.uid_str);
5725
5726
if (uid == UINT_MAX) {
5727
ui__error("Invalid User: %s", trace.uid_str);
5728
err = -EINVAL;
5729
goto out_close;
5730
}
5731
err = parse_uid_filter(trace.evlist, uid);
5732
if (err)
5733
goto out_close;
5734
5735
trace.opts.target.system_wide = true;
5736
}
5737
5738
if (!argc && target__none(&trace.opts.target))
5739
trace.opts.target.system_wide = true;
5740
5741
if (input_name)
5742
err = trace__replay(&trace);
5743
else
5744
err = trace__run(&trace, argc, argv);
5745
5746
out_close:
5747
if (output_name != NULL)
5748
fclose(trace.output);
5749
out:
5750
trace__exit(&trace);
5751
augmented_syscalls__cleanup();
5752
return err;
5753
}
5754
5755