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