blob: 9434367af1668a91fc266db8453f7cb6759a746c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002#include "builtin.h"
3
Arnaldo Carvalho de Melo0f31c012019-08-21 14:00:17 -03004#include "util/counts.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02005#include "util/debug.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -03006#include "util/dso.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06007#include <subcmd/exec-cmd.h>
Andrea Gelminib7eead82010-08-05 15:51:38 +02008#include "util/header.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06009#include <subcmd/parse-options.h>
Stephane Eranianfc36f942015-08-31 18:41:10 +020010#include "util/perf_regs.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020011#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "util/tool.h"
Arnaldo Carvalho de Melo1101f692019-01-27 13:42:37 +010013#include "util/map.h"
Arnaldo Carvalho de Melo97b9d862019-08-22 17:10:08 -030014#include "util/srcline.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020015#include "util/symbol.h"
16#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010017#include "util/trace-event.h"
David Ahern1424dc92011-03-09 22:23:28 -070018#include "util/evlist.h"
19#include "util/evsel.h"
Arnaldo Carvalho de Meloca125272019-09-24 15:41:51 -030020#include "util/evsel_fprintf.h"
Arnaldo Carvalho de Melod2360442019-08-15 10:37:24 -030021#include "util/evswitch.h"
Feng Tang36385be2012-09-07 16:42:24 +080022#include "util/sort.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020023#include "util/data.h"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030024#include "util/auxtrace.h"
Jiri Olsacfc88742016-01-05 22:09:06 +010025#include "util/cpumap.h"
26#include "util/thread_map.h"
27#include "util/stat.h"
Andi Kleen4bd1bef2017-11-17 13:43:00 -080028#include "util/color.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030029#include "util/string2.h"
Adrian Huntere2167082016-06-23 16:40:58 +030030#include "util/thread-stack.h"
David Aherna91f4c42016-11-29 10:15:43 -070031#include "util/time-utils.h"
Jiri Olsa06c3f2a2017-12-06 18:45:35 +010032#include "util/path.h"
Kan Liang6b9bae62020-12-16 10:57:57 -080033#include "util/event.h"
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030034#include "ui/ui.h"
Arnaldo Carvalho de Melofea01392017-04-17 16:23:22 -030035#include "print_binary.h"
Andi Kleen3ab481a2019-03-05 06:47:45 -080036#include "archinsn.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100037#include <linux/bitmap.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030038#include <linux/kernel.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030039#include <linux/stringify.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030040#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030041#include <linux/zalloc.h>
Andi Kleen3ab481a2019-03-05 06:47:45 -080042#include <sys/utsname.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010043#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010044#include "util/mem-events.h"
Andi Kleen48d02a12017-02-23 15:46:34 -080045#include "util/dump-insn.h"
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -030046#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030047#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030048#include <inttypes.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030049#include <signal.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030050#include <sys/param.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030051#include <sys/types.h>
52#include <sys/stat.h>
Arnaldo Carvalho de Melobafae982018-01-22 16:42:16 -030053#include <fcntl.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030054#include <unistd.h>
Andi Kleenb585ebd2018-09-20 11:05:36 -070055#include <subcmd/pager.h>
Jiri Olsa453fa032019-07-21 13:24:43 +020056#include <perf/evlist.h>
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053057#include <linux/err.h>
Adrian Hunter291961f2021-06-27 16:18:09 +030058#include "util/dlfilter.h"
Arnaldo Carvalho de Meloaeb00b12019-08-22 15:40:29 -030059#include "util/record.h"
Arnaldo Carvalho de Melo2da39f12019-08-27 11:51:18 -030060#include "util/util.h"
Arnaldo Carvalho de Meloc1a604d2019-08-29 15:20:59 -030061#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020062
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030063#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030064
Tom Zanussi956ffd02009-11-25 01:15:46 -060065static char const *script_name;
66static char const *generate_script_lang;
Andi Kleen90b10f42019-03-14 15:50:00 -070067static bool reltime;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +010068static bool deltatime;
Andi Kleen90b10f42019-03-14 15:50:00 -070069static u64 initial_time;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +010070static u64 previous_time;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020071static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020072static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020073static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070074static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090075static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010076static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030077static bool print_flags;
Anton Blanchard5d67be92011-07-04 21:57:50 +100078static const char *cpu_list;
79static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010080static struct perf_stat_config stat_config;
Andi Kleen48d02a12017-02-23 15:46:34 -080081static int max_blocks;
Andi Kleen3ab481a2019-03-05 06:47:45 -080082static bool native_arch;
Adrian Hunter291961f2021-06-27 16:18:09 +030083static struct dlfilter *dlfilter;
Adrian Hunter3d032a22021-06-27 16:18:12 +030084static int dlargc;
85static char **dlargv;
Tom Zanussi956ffd02009-11-25 01:15:46 -060086
Adrian Hunter44cbe722015-09-25 16:15:50 +030087unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030088
David Ahern745f43e2011-03-09 22:23:26 -070089enum perf_output_field {
Jiri Olsa60e5eeb2020-08-05 11:34:43 +020090 PERF_OUTPUT_COMM = 1ULL << 0,
91 PERF_OUTPUT_TID = 1ULL << 1,
92 PERF_OUTPUT_PID = 1ULL << 2,
93 PERF_OUTPUT_TIME = 1ULL << 3,
94 PERF_OUTPUT_CPU = 1ULL << 4,
95 PERF_OUTPUT_EVNAME = 1ULL << 5,
96 PERF_OUTPUT_TRACE = 1ULL << 6,
97 PERF_OUTPUT_IP = 1ULL << 7,
98 PERF_OUTPUT_SYM = 1ULL << 8,
99 PERF_OUTPUT_DSO = 1ULL << 9,
100 PERF_OUTPUT_ADDR = 1ULL << 10,
101 PERF_OUTPUT_SYMOFFSET = 1ULL << 11,
102 PERF_OUTPUT_SRCLINE = 1ULL << 12,
103 PERF_OUTPUT_PERIOD = 1ULL << 13,
104 PERF_OUTPUT_IREGS = 1ULL << 14,
105 PERF_OUTPUT_BRSTACK = 1ULL << 15,
106 PERF_OUTPUT_BRSTACKSYM = 1ULL << 16,
107 PERF_OUTPUT_DATA_SRC = 1ULL << 17,
108 PERF_OUTPUT_WEIGHT = 1ULL << 18,
109 PERF_OUTPUT_BPF_OUTPUT = 1ULL << 19,
110 PERF_OUTPUT_CALLINDENT = 1ULL << 20,
111 PERF_OUTPUT_INSN = 1ULL << 21,
112 PERF_OUTPUT_INSNLEN = 1ULL << 22,
113 PERF_OUTPUT_BRSTACKINSN = 1ULL << 23,
114 PERF_OUTPUT_BRSTACKOFF = 1ULL << 24,
115 PERF_OUTPUT_SYNTH = 1ULL << 25,
116 PERF_OUTPUT_PHYS_ADDR = 1ULL << 26,
117 PERF_OUTPUT_UREGS = 1ULL << 27,
118 PERF_OUTPUT_METRIC = 1ULL << 28,
119 PERF_OUTPUT_MISC = 1ULL << 29,
120 PERF_OUTPUT_SRCCODE = 1ULL << 30,
121 PERF_OUTPUT_IPC = 1ULL << 31,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200122 PERF_OUTPUT_TOD = 1ULL << 32,
Kan Liang6b9bae62020-12-16 10:57:57 -0800123 PERF_OUTPUT_DATA_PAGE_SIZE = 1ULL << 33,
Stephane Eranianc513de82021-01-05 11:57:50 -0800124 PERF_OUTPUT_CODE_PAGE_SIZE = 1ULL << 34,
Kan Liang6ea5d1a2021-09-29 08:38:14 -0700125 PERF_OUTPUT_INS_LAT = 1ULL << 35,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200126};
127
128struct perf_script {
129 struct perf_tool tool;
130 struct perf_session *session;
131 bool show_task_events;
132 bool show_mmap_events;
133 bool show_switch_events;
134 bool show_namespace_events;
135 bool show_lost_events;
136 bool show_round_events;
137 bool show_bpf_events;
138 bool show_cgroup_events;
139 bool show_text_poke_events;
140 bool allocated;
141 bool per_event_dump;
142 bool stitch_lbr;
143 struct evswitch evswitch;
144 struct perf_cpu_map *cpus;
145 struct perf_thread_map *threads;
146 int name_width;
147 const char *time_str;
148 struct perf_time_interval *ptime_range;
149 int range_size;
150 int range_num;
David Ahern745f43e2011-03-09 22:23:26 -0700151};
152
153struct output_option {
154 const char *str;
155 enum perf_output_field field;
156} all_output_options[] = {
157 {.str = "comm", .field = PERF_OUTPUT_COMM},
158 {.str = "tid", .field = PERF_OUTPUT_TID},
159 {.str = "pid", .field = PERF_OUTPUT_PID},
160 {.str = "time", .field = PERF_OUTPUT_TIME},
161 {.str = "cpu", .field = PERF_OUTPUT_CPU},
162 {.str = "event", .field = PERF_OUTPUT_EVNAME},
163 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -0600164 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -0700165 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -0600166 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -0600167 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900168 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +0200169 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200170 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +0200171 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Andi Kleenb1491ac2017-09-05 11:40:57 -0700172 {.str = "uregs", .field = PERF_OUTPUT_UREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200173 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
174 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100175 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
176 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +0000177 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +0300178 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
Andi Kleen224e2c92016-10-07 16:42:27 +0300179 {.str = "insn", .field = PERF_OUTPUT_INSN},
180 {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
Andi Kleen48d02a12017-02-23 15:46:34 -0800181 {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
Mark Santaniello106dacd2017-06-19 09:38:25 -0700182 {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
Adrian Hunter47e78082017-05-26 11:17:22 +0300183 {.str = "synth", .field = PERF_OUTPUT_SYNTH},
Kan Liang49d58f02017-08-29 13:11:11 -0400184 {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800185 {.str = "metric", .field = PERF_OUTPUT_METRIC},
Jiri Olsa28a0b392018-01-07 17:03:52 +0100186 {.str = "misc", .field = PERF_OUTPUT_MISC},
Andi Kleendd2e18e2018-12-03 16:18:48 -0800187 {.str = "srccode", .field = PERF_OUTPUT_SRCCODE},
Adrian Hunter68fb45b2019-05-20 14:37:14 +0300188 {.str = "ipc", .field = PERF_OUTPUT_IPC},
Jiri Olsae534bfb2020-08-05 11:34:44 +0200189 {.str = "tod", .field = PERF_OUTPUT_TOD},
Kan Liang6b9bae62020-12-16 10:57:57 -0800190 {.str = "data_page_size", .field = PERF_OUTPUT_DATA_PAGE_SIZE},
Stephane Eranianc513de82021-01-05 11:57:50 -0800191 {.str = "code_page_size", .field = PERF_OUTPUT_CODE_PAGE_SIZE},
Kan Liang6ea5d1a2021-09-29 08:38:14 -0700192 {.str = "ins_lat", .field = PERF_OUTPUT_INS_LAT},
David Ahern745f43e2011-03-09 22:23:26 -0700193};
194
Adrian Hunter14057202017-06-21 13:17:19 +0300195enum {
196 OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
Jin Yao8adc0a02020-12-09 08:58:28 +0800197 OUTPUT_TYPE_OTHER,
Adrian Hunter14057202017-06-21 13:17:19 +0300198 OUTPUT_TYPE_MAX
199};
200
David Ahern745f43e2011-03-09 22:23:26 -0700201/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600202static struct {
203 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600204 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400205 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600206 u64 fields;
207 u64 invalid_fields;
Andi Kleen4b6ac812019-02-24 07:37:12 -0800208 u64 user_set_fields;
Adrian Hunterb5164082020-05-27 21:02:50 +0300209 u64 user_unset_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300210} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700211
David Ahern2c9e45f72011-03-17 10:03:21 -0600212 [PERF_TYPE_HARDWARE] = {
213 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700214
David Ahern2c9e45f72011-03-17 10:03:21 -0600215 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
216 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600217 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530218 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
219 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600220
Wang Nan30372f02016-02-24 11:20:45 +0000221 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600222 },
223
224 [PERF_TYPE_SOFTWARE] = {
225 .user_set = false,
226
227 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
228 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600229 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530230 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
231 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
232 PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600233
234 .invalid_fields = PERF_OUTPUT_TRACE,
235 },
236
237 [PERF_TYPE_TRACEPOINT] = {
238 .user_set = false,
239
240 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
241 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000242 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600243 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700244
Seeteena Thoufeekfad76d42018-06-08 16:32:28 +0530245 [PERF_TYPE_HW_CACHE] = {
246 .user_set = false,
247
248 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
249 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
250 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
251 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
252 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
253
254 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
255 },
256
Arun Sharma0817a6a2011-04-14 10:38:18 -0700257 [PERF_TYPE_RAW] = {
258 .user_set = false,
259
260 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
261 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600262 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530263 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
264 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
265 PERF_OUTPUT_ADDR | PERF_OUTPUT_DATA_SRC |
Kan Liang6b9bae62020-12-16 10:57:57 -0800266 PERF_OUTPUT_WEIGHT | PERF_OUTPUT_PHYS_ADDR |
Kan Liang6ea5d1a2021-09-29 08:38:14 -0700267 PERF_OUTPUT_DATA_PAGE_SIZE | PERF_OUTPUT_CODE_PAGE_SIZE |
268 PERF_OUTPUT_INS_LAT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700269
Wang Nan30372f02016-02-24 11:20:45 +0000270 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700271 },
Wang Nan27cfef02015-12-08 02:25:43 +0000272
273 [PERF_TYPE_BREAKPOINT] = {
274 .user_set = false,
275
276 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
277 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
278 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530279 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
280 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
Wang Nan27cfef02015-12-08 02:25:43 +0000281
Wang Nan30372f02016-02-24 11:20:45 +0000282 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000283 },
Adrian Hunter14057202017-06-21 13:17:19 +0300284
285 [OUTPUT_TYPE_SYNTH] = {
286 .user_set = false,
287
288 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
289 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
290 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530291 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
292 PERF_OUTPUT_DSO | PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300293
294 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
295 },
Jin Yao8adc0a02020-12-09 08:58:28 +0800296
297 [OUTPUT_TYPE_OTHER] = {
298 .user_set = false,
299
300 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
301 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
302 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
303 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
304 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
305
306 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
307 },
David Ahern1424dc92011-03-09 22:23:28 -0700308};
David Ahern745f43e2011-03-09 22:23:26 -0700309
Jiri Olsa32dcd022019-07-21 13:23:51 +0200310struct evsel_script {
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300311 char *filename;
312 FILE *fp;
313 u64 samples;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800314 /* For metric output */
315 u64 val;
316 int gnum;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300317};
318
Jiri Olsa32dcd022019-07-21 13:23:51 +0200319static inline struct evsel_script *evsel_script(struct evsel *evsel)
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800320{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200321 return (struct evsel_script *)evsel->priv;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800322}
323
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -0300324static struct evsel_script *evsel_script__new(struct evsel *evsel, struct perf_data *data)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300325{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200326 struct evsel_script *es = zalloc(sizeof(*es));
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300327
328 if (es != NULL) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300329 if (asprintf(&es->filename, "%s.%s.dump", data->file.path, evsel__name(evsel)) < 0)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300330 goto out_free;
331 es->fp = fopen(es->filename, "w");
332 if (es->fp == NULL)
333 goto out_free_filename;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300334 }
335
336 return es;
337out_free_filename:
338 zfree(&es->filename);
339out_free:
340 free(es);
341 return NULL;
342}
343
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -0300344static void evsel_script__delete(struct evsel_script *es)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300345{
346 zfree(&es->filename);
347 fclose(es->fp);
348 es->fp = NULL;
349 free(es);
350}
351
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -0300352static int evsel_script__fprintf(struct evsel_script *es, FILE *fp)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300353{
354 struct stat st;
355
356 fstat(fileno(es->fp), &st);
357 return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
358 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
359}
360
Adrian Hunter14057202017-06-21 13:17:19 +0300361static inline int output_type(unsigned int type)
362{
363 switch (type) {
364 case PERF_TYPE_SYNTH:
365 return OUTPUT_TYPE_SYNTH;
366 default:
Jin Yao8adc0a02020-12-09 08:58:28 +0800367 if (type < PERF_TYPE_MAX)
368 return type;
Adrian Hunter14057202017-06-21 13:17:19 +0300369 }
Jin Yao8adc0a02020-12-09 08:58:28 +0800370
371 return OUTPUT_TYPE_OTHER;
Adrian Hunter14057202017-06-21 13:17:19 +0300372}
373
David Ahern2c9e45f72011-03-17 10:03:21 -0600374static bool output_set_by_user(void)
375{
376 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300377 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600378 if (output[j].user_set)
379 return true;
380 }
381 return false;
382}
David Ahern745f43e2011-03-09 22:23:26 -0700383
David Ahern9cbdb702011-04-06 21:54:20 -0600384static const char *output_field2str(enum perf_output_field field)
385{
386 int i, imax = ARRAY_SIZE(all_output_options);
387 const char *str = "";
388
389 for (i = 0; i < imax; ++i) {
390 if (all_output_options[i].field == field) {
391 str = all_output_options[i].str;
392 break;
393 }
394 }
395 return str;
396}
397
Adrian Hunter14057202017-06-21 13:17:19 +0300398#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700399
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300400static int evsel__do_check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
401 enum perf_output_field field, bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700402{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200403 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300404 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600405 const char *evname;
406
407 if (attr->sample_type & sample_type)
408 return 0;
409
Andi Kleen4b6ac812019-02-24 07:37:12 -0800410 if (output[type].user_set_fields & field) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300411 if (allow_user_set)
412 return 0;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300413 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600414 pr_err("Samples for '%s' event do not have %s attribute set. "
415 "Cannot print '%s' field.\n",
416 evname, sample_msg, output_field2str(field));
417 return -1;
418 }
419
420 /* user did not ask for it explicitly so remove from the default list */
421 output[type].fields &= ~field;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300422 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600423 pr_debug("Samples for '%s' event do not have %s attribute set. "
424 "Skipping '%s' field.\n",
425 evname, sample_msg, output_field2str(field));
426
427 return 0;
428}
429
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300430static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
431 enum perf_output_field field)
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300432{
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300433 return evsel__do_check_stype(evsel, sample_type, sample_msg, field, false);
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300434}
435
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300436static int evsel__check_attr(struct evsel *evsel, struct perf_session *session)
David Ahern9cbdb702011-04-06 21:54:20 -0600437{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200438 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300439 bool allow_user_set;
440
Jiri Olsae099eba2016-01-05 22:09:09 +0100441 if (perf_header__has_feat(&session->header, HEADER_STAT))
442 return 0;
443
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300444 allow_user_set = perf_header__has_feat(&session->header,
445 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600446
David Ahern1424dc92011-03-09 22:23:28 -0700447 if (PRINT_FIELD(TRACE) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300448 !perf_session__has_traces(session, "record -R"))
David Ahern1424dc92011-03-09 22:23:28 -0700449 return -EINVAL;
450
David Ahern787bef12011-05-27 14:28:43 -0600451 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300452 if (evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP", PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700453 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700454 }
David Ahern7cec0922011-05-30 13:08:23 -0600455
456 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300457 evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR", PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600458 return -EINVAL;
459
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100460 if (PRINT_FIELD(DATA_SRC) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300461 evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC", PERF_OUTPUT_DATA_SRC))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100462 return -EINVAL;
463
464 if (PRINT_FIELD(WEIGHT) &&
Kan Liang27730c82021-09-29 08:38:13 -0700465 evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT_TYPE, "WEIGHT", PERF_OUTPUT_WEIGHT))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100466 return -EINVAL;
467
Andi Kleen37fed3d2018-09-18 05:32:09 -0700468 if (PRINT_FIELD(SYM) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300469 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
David Ahern7cec0922011-05-30 13:08:23 -0600470 pr_err("Display of symbols requested but neither sample IP nor "
Andi Kleen37fed3d2018-09-18 05:32:09 -0700471 "sample address\navailable. Hence, no addresses to convert "
David Ahern7cec0922011-05-30 13:08:23 -0600472 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600473 return -EINVAL;
474 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900475 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
476 pr_err("Display of offsets requested but symbol is not"
477 "selected.\n");
478 return -EINVAL;
479 }
Andi Kleen37fed3d2018-09-18 05:32:09 -0700480 if (PRINT_FIELD(DSO) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300481 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
Andi Kleen37fed3d2018-09-18 05:32:09 -0700482 pr_err("Display of DSO requested but no address to convert.\n");
David Ahern610723f2011-05-27 14:28:44 -0600483 return -EINVAL;
484 }
Andi Kleendd2e18e2018-12-03 16:18:48 -0800485 if ((PRINT_FIELD(SRCLINE) || PRINT_FIELD(SRCCODE)) && !PRINT_FIELD(IP)) {
Adrian Huntercc8fae12013-12-06 09:42:57 +0200486 pr_err("Display of source line number requested but sample IP is not\n"
487 "selected. Hence, no address to lookup the source line number.\n");
488 return -EINVAL;
489 }
Adrian Hunter0cd032d2019-11-27 11:53:21 +0200490 if (PRINT_FIELD(BRSTACKINSN) && !allow_user_set &&
Arnaldo Carvalho de Melo92c7d7c2020-06-17 09:31:25 -0300491 !(evlist__combined_branch_type(session->evlist) & PERF_SAMPLE_BRANCH_ANY)) {
Andi Kleen48d02a12017-02-23 15:46:34 -0800492 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
493 "Hint: run 'perf record -b ...'\n");
494 return -EINVAL;
495 }
David Ahern1424dc92011-03-09 22:23:28 -0700496 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300497 evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID", PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700498 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700499
500 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300501 evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME", PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700502 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700503
504 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300505 evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU", PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700506 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600507
Stephane Eranianfc36f942015-08-31 18:41:10 +0200508 if (PRINT_FIELD(IREGS) &&
Adrian Hunteradd07cc2020-06-30 16:39:34 +0300509 evsel__do_check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS", PERF_OUTPUT_IREGS, allow_user_set))
Stephane Eranianfc36f942015-08-31 18:41:10 +0200510 return -EINVAL;
511
Andi Kleenb1491ac2017-09-05 11:40:57 -0700512 if (PRINT_FIELD(UREGS) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300513 evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS", PERF_OUTPUT_UREGS))
Andi Kleenb1491ac2017-09-05 11:40:57 -0700514 return -EINVAL;
515
Kan Liang49d58f02017-08-29 13:11:11 -0400516 if (PRINT_FIELD(PHYS_ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300517 evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR", PERF_OUTPUT_PHYS_ADDR))
Kan Liang49d58f02017-08-29 13:11:11 -0400518 return -EINVAL;
519
Kan Liang6b9bae62020-12-16 10:57:57 -0800520 if (PRINT_FIELD(DATA_PAGE_SIZE) &&
521 evsel__check_stype(evsel, PERF_SAMPLE_DATA_PAGE_SIZE, "DATA_PAGE_SIZE", PERF_OUTPUT_DATA_PAGE_SIZE))
522 return -EINVAL;
523
Stephane Eranianc513de82021-01-05 11:57:50 -0800524 if (PRINT_FIELD(CODE_PAGE_SIZE) &&
525 evsel__check_stype(evsel, PERF_SAMPLE_CODE_PAGE_SIZE, "CODE_PAGE_SIZE", PERF_OUTPUT_CODE_PAGE_SIZE))
526 return -EINVAL;
527
Kan Liang6ea5d1a2021-09-29 08:38:14 -0700528 if (PRINT_FIELD(INS_LAT) &&
529 evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT_STRUCT, "WEIGHT_STRUCT", PERF_OUTPUT_INS_LAT))
530 return -EINVAL;
531
David Ahern9cbdb702011-04-06 21:54:20 -0600532 return 0;
533}
534
Adrian Hunter7ea95722013-11-01 15:51:30 +0200535static void set_print_ip_opts(struct perf_event_attr *attr)
536{
Adrian Hunter14057202017-06-21 13:17:19 +0300537 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200538
539 output[type].print_ip_opts = 0;
540 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300541 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200542
543 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300544 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200545
546 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300547 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200548
549 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300550 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200551
552 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300553 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200554}
555
Adrian Hunterff6f41f2021-09-11 16:30:53 +0300556static struct evsel *find_first_output_type(struct evlist *evlist,
557 unsigned int type)
558{
559 struct evsel *evsel;
560
561 evlist__for_each_entry(evlist, evsel) {
562 if (output_type(evsel->core.attr.type) == (int)type)
563 return evsel;
564 }
565 return NULL;
566}
567
David Ahern9cbdb702011-04-06 21:54:20 -0600568/*
569 * verify all user requested events exist and the samples
570 * have the expected data
571 */
572static int perf_session__check_output_opt(struct perf_session *session)
573{
Jiri Olsae534bfb2020-08-05 11:34:44 +0200574 bool tod = false;
He Kuang40f20e52016-05-16 04:51:19 +0000575 unsigned int j;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200576 struct evsel *evsel;
David Ahern9cbdb702011-04-06 21:54:20 -0600577
Adrian Hunter14057202017-06-21 13:17:19 +0300578 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
Adrian Hunterff6f41f2021-09-11 16:30:53 +0300579 evsel = find_first_output_type(session->evlist, j);
David Ahern9cbdb702011-04-06 21:54:20 -0600580
581 /*
582 * even if fields is set to 0 (ie., show nothing) event must
583 * exist if user explicitly includes it on the command line
584 */
Adrian Hunter14057202017-06-21 13:17:19 +0300585 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
586 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600587 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300588 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600589 event_type(j));
590 return -1;
591 }
592
593 if (evsel && output[j].fields &&
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300594 evsel__check_attr(evsel, session))
David Ahern9cbdb702011-04-06 21:54:20 -0600595 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400596
597 if (evsel == NULL)
598 continue;
599
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200600 set_print_ip_opts(&evsel->core.attr);
Jiri Olsae534bfb2020-08-05 11:34:44 +0200601 tod |= output[j].fields & PERF_OUTPUT_TOD;
David Ahern1424dc92011-03-09 22:23:28 -0700602 }
603
Adrian Hunter98526ee2014-07-31 09:00:59 +0300604 if (!no_callchain) {
605 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000606 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300607
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300608 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000609 not_pipe = true;
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300610 if (evsel__has_callchain(evsel)) {
Adrian Hunter98526ee2014-07-31 09:00:59 +0300611 use_callchain = true;
612 break;
613 }
614 }
He Kuang71ac8992016-08-04 11:25:43 +0000615 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300616 symbol_conf.use_callchain = false;
617 }
618
David Ahern80b8b492013-11-19 21:07:37 -0700619 /*
620 * set default for tracepoints to print symbols only
621 * if callchains are present
622 */
623 if (symbol_conf.use_callchain &&
624 !output[PERF_TYPE_TRACEPOINT].user_set) {
David Ahern80b8b492013-11-19 21:07:37 -0700625 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700626
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300627 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200628 if (evsel->core.attr.type != j)
He Kuang40f20e52016-05-16 04:51:19 +0000629 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700630
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300631 if (evsel__has_callchain(evsel)) {
He Kuang40f20e52016-05-16 04:51:19 +0000632 output[j].fields |= PERF_OUTPUT_IP;
633 output[j].fields |= PERF_OUTPUT_SYM;
Sandipan Das7903a702018-05-17 12:03:26 +0530634 output[j].fields |= PERF_OUTPUT_SYMOFFSET;
He Kuang40f20e52016-05-16 04:51:19 +0000635 output[j].fields |= PERF_OUTPUT_DSO;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200636 set_print_ip_opts(&evsel->core.attr);
He Kuang40f20e52016-05-16 04:51:19 +0000637 goto out;
638 }
David Ahern80b8b492013-11-19 21:07:37 -0700639 }
640 }
641
Jiri Olsae534bfb2020-08-05 11:34:44 +0200642 if (tod && !session->header.env.clock.enabled) {
643 pr_err("Can't provide 'tod' time, missing clock data. "
644 "Please record with -k/--clockid option.\n");
645 return -1;
646 }
David Ahern80b8b492013-11-19 21:07:37 -0700647out:
David Ahern1424dc92011-03-09 22:23:28 -0700648 return 0;
649}
David Ahern745f43e2011-03-09 22:23:26 -0700650
Milian Wolff9add8fe2018-11-07 23:34:37 +0100651static int perf_sample__fprintf_regs(struct regs_dump *regs, uint64_t mask,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200652 FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200653{
Andi Kleenb1491ac2017-09-05 11:40:57 -0700654 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300655 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700656
657 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300658 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700659
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300660 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700661
662 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
663 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300664 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700665 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300666
667 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700668}
669
Jiri Olsae534bfb2020-08-05 11:34:44 +0200670#define DEFAULT_TOD_FMT "%F %H:%M:%S"
671
672static char*
673tod_scnprintf(struct perf_script *script, char *buf, int buflen,
674 u64 timestamp)
675{
676 u64 tod_ns, clockid_ns;
677 struct perf_env *env;
678 unsigned long nsec;
679 struct tm ltime;
680 char date[64];
681 time_t sec;
682
683 buf[0] = '\0';
684 if (buflen < 64 || !script)
685 return buf;
686
687 env = &script->session->header.env;
688 if (!env->clock.enabled) {
689 scnprintf(buf, buflen, "disabled");
690 return buf;
691 }
692
693 clockid_ns = env->clock.clockid_ns;
694 tod_ns = env->clock.tod_ns;
695
696 if (timestamp > clockid_ns)
697 tod_ns += timestamp - clockid_ns;
698 else
699 tod_ns -= clockid_ns - timestamp;
700
701 sec = (time_t) (tod_ns / NSEC_PER_SEC);
702 nsec = tod_ns - sec * NSEC_PER_SEC;
703
704 if (localtime_r(&sec, &ltime) == NULL) {
705 scnprintf(buf, buflen, "failed");
706 } else {
707 strftime(date, sizeof(date), DEFAULT_TOD_FMT, &ltime);
708
709 if (symbol_conf.nanosecs) {
710 snprintf(buf, buflen, "%s.%09lu", date, nsec);
711 } else {
712 snprintf(buf, buflen, "%s.%06lu",
713 date, nsec / NSEC_PER_USEC);
714 }
715 }
716
717 return buf;
718}
719
Milian Wolff9add8fe2018-11-07 23:34:37 +0100720static int perf_sample__fprintf_iregs(struct perf_sample *sample,
721 struct perf_event_attr *attr, FILE *fp)
722{
723 return perf_sample__fprintf_regs(&sample->intr_regs,
724 attr->sample_regs_intr, fp);
725}
726
727static int perf_sample__fprintf_uregs(struct perf_sample *sample,
728 struct perf_event_attr *attr, FILE *fp)
729{
730 return perf_sample__fprintf_regs(&sample->user_regs,
731 attr->sample_regs_user, fp);
732}
733
Jiri Olsae534bfb2020-08-05 11:34:44 +0200734static int perf_sample__fprintf_start(struct perf_script *script,
735 struct perf_sample *sample,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300736 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200737 struct evsel *evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +0100738 u32 type, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700739{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200740 struct perf_event_attr *attr = &evsel->core.attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700741 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700742 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300743 int printed = 0;
Jiri Olsae534bfb2020-08-05 11:34:44 +0200744 char tstr[128];
David Ahernc70c94b2011-03-09 22:23:25 -0700745
David Ahern745f43e2011-03-09 22:23:26 -0700746 if (PRINT_FIELD(COMM)) {
Adrian Hunterfc183802020-09-09 11:49:22 +0300747 const char *comm = thread ? thread__comm_str(thread) : ":-1";
748
David Ahern745f43e2011-03-09 22:23:26 -0700749 if (latency_format)
Adrian Hunterfc183802020-09-09 11:49:22 +0300750 printed += fprintf(fp, "%8.8s ", comm);
Arnaldo Carvalho de Melob8798332018-06-04 10:34:20 -0300751 else if (PRINT_FIELD(IP) && evsel__has_callchain(evsel) && symbol_conf.use_callchain)
Adrian Hunterfc183802020-09-09 11:49:22 +0300752 printed += fprintf(fp, "%s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700753 else
Adrian Hunterfc183802020-09-09 11:49:22 +0300754 printed += fprintf(fp, "%16s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700755 }
David Ahernc70c94b2011-03-09 22:23:25 -0700756
David Ahern745f43e2011-03-09 22:23:26 -0700757 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300758 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700759 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300760 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700761 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300762 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700763
David Ahern745f43e2011-03-09 22:23:26 -0700764 if (PRINT_FIELD(CPU)) {
765 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300766 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700767 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300768 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700769 }
David Ahernc70c94b2011-03-09 22:23:25 -0700770
Jiri Olsa28a0b392018-01-07 17:03:52 +0100771 if (PRINT_FIELD(MISC)) {
772 int ret = 0;
773
774 #define has(m) \
775 (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
776
777 if (has(KERNEL))
778 ret += fprintf(fp, "K");
779 if (has(USER))
780 ret += fprintf(fp, "U");
781 if (has(HYPERVISOR))
782 ret += fprintf(fp, "H");
783 if (has(GUEST_KERNEL))
784 ret += fprintf(fp, "G");
785 if (has(GUEST_USER))
786 ret += fprintf(fp, "g");
787
788 switch (type) {
789 case PERF_RECORD_MMAP:
790 case PERF_RECORD_MMAP2:
791 if (has(MMAP_DATA))
792 ret += fprintf(fp, "M");
793 break;
794 case PERF_RECORD_COMM:
795 if (has(COMM_EXEC))
796 ret += fprintf(fp, "E");
797 break;
798 case PERF_RECORD_SWITCH:
799 case PERF_RECORD_SWITCH_CPU_WIDE:
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300800 if (has(SWITCH_OUT)) {
Jiri Olsa28a0b392018-01-07 17:03:52 +0100801 ret += fprintf(fp, "S");
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300802 if (sample->misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT)
803 ret += fprintf(fp, "p");
804 }
Jiri Olsa28a0b392018-01-07 17:03:52 +0100805 default:
806 break;
807 }
808
809 #undef has
810
811 ret += fprintf(fp, "%*s", 6 - ret, " ");
812 printed += ret;
813 }
814
Jiri Olsae534bfb2020-08-05 11:34:44 +0200815 if (PRINT_FIELD(TOD)) {
816 tod_scnprintf(script, tstr, sizeof(tstr), sample->time);
817 printed += fprintf(fp, "%s ", tstr);
818 }
819
David Ahern745f43e2011-03-09 22:23:26 -0700820 if (PRINT_FIELD(TIME)) {
Andi Kleen90b10f42019-03-14 15:50:00 -0700821 u64 t = sample->time;
822 if (reltime) {
823 if (!initial_time)
824 initial_time = sample->time;
825 t = sample->time - initial_time;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +0100826 } else if (deltatime) {
827 if (previous_time)
828 t = sample->time - previous_time;
829 else {
830 t = 0;
831 }
832 previous_time = sample->time;
Andi Kleen90b10f42019-03-14 15:50:00 -0700833 }
834 nsecs = t;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300835 secs = nsecs / NSEC_PER_SEC;
836 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900837
Andi Kleen52bab882019-03-05 06:47:47 -0800838 if (symbol_conf.nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300839 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900840 else {
841 char sample_time[32];
Andi Kleen90b10f42019-03-14 15:50:00 -0700842 timestamp__scnprintf_usec(t, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300843 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900844 }
David Ahern745f43e2011-03-09 22:23:26 -0700845 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300846
847 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700848}
849
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200850static inline char
851mispred_str(struct branch_entry *br)
852{
853 if (!(br->flags.mispred || br->flags.predicted))
854 return '-';
855
856 return br->flags.predicted ? 'P' : 'M';
857}
858
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300859static int perf_sample__fprintf_brstack(struct perf_sample *sample,
860 struct thread *thread,
861 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200862{
863 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800864 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700865 struct addr_location alf, alt;
866 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300867 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200868
869 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300870 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200871
872 for (i = 0; i < br->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -0800873 from = entries[i].from;
874 to = entries[i].to;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700875
876 if (PRINT_FIELD(DSO)) {
877 memset(&alf, 0, sizeof(alf));
878 memset(&alt, 0, sizeof(alt));
Adrian Hunter692d0e62018-11-06 23:07:12 +0200879 thread__find_map_fb(thread, sample->cpumode, from, &alf);
880 thread__find_map_fb(thread, sample->cpumode, to, &alt);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700881 }
882
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300883 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700884 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300885 printed += fprintf(fp, "(");
886 printed += map__fprintf_dsoname(alf.map, fp);
887 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700888 }
889
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300890 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700891 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300892 printed += fprintf(fp, "(");
893 printed += map__fprintf_dsoname(alt.map, fp);
894 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700895 }
896
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300897 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800898 mispred_str(entries + i),
899 entries[i].flags.in_tx ? 'X' : '-',
900 entries[i].flags.abort ? 'A' : '-',
901 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200902 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300903
904 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200905}
906
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300907static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
908 struct thread *thread,
909 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200910{
911 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800912 struct branch_entry *entries = perf_sample__branch_entries(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200913 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200914 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300915 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200916
917 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300918 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200919
920 for (i = 0; i < br->nr; i++) {
921
922 memset(&alf, 0, sizeof(alf));
923 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800924 from = entries[i].from;
925 to = entries[i].to;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200926
Adrian Hunter692d0e62018-11-06 23:07:12 +0200927 thread__find_symbol_fb(thread, sample->cpumode, from, &alf);
928 thread__find_symbol_fb(thread, sample->cpumode, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200929
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300930 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700931 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300932 printed += fprintf(fp, "(");
933 printed += map__fprintf_dsoname(alf.map, fp);
934 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700935 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300936 printed += fprintf(fp, "%c", '/');
937 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700938 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300939 printed += fprintf(fp, "(");
940 printed += map__fprintf_dsoname(alt.map, fp);
941 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700942 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300943 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800944 mispred_str(entries + i),
945 entries[i].flags.in_tx ? 'X' : '-',
946 entries[i].flags.abort ? 'A' : '-',
947 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200948 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300949
950 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200951}
952
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300953static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
954 struct thread *thread,
955 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700956{
957 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800958 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700959 struct addr_location alf, alt;
960 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300961 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700962
963 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300964 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700965
966 for (i = 0; i < br->nr; i++) {
967
968 memset(&alf, 0, sizeof(alf));
969 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800970 from = entries[i].from;
971 to = entries[i].to;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700972
Adrian Hunter692d0e62018-11-06 23:07:12 +0200973 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300974 !alf.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700975 from = map__map_ip(alf.map, from);
976
Adrian Hunter692d0e62018-11-06 23:07:12 +0200977 if (thread__find_map_fb(thread, sample->cpumode, to, &alt) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300978 !alt.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700979 to = map__map_ip(alt.map, to);
980
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300981 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700982 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300983 printed += fprintf(fp, "(");
984 printed += map__fprintf_dsoname(alf.map, fp);
985 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700986 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300987 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700988 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300989 printed += fprintf(fp, "(");
990 printed += map__fprintf_dsoname(alt.map, fp);
991 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700992 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300993 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800994 mispred_str(entries + i),
995 entries[i].flags.in_tx ? 'X' : '-',
996 entries[i].flags.abort ? 'A' : '-',
997 entries[i].flags.cycles);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700998 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300999
1000 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -07001001}
Andi Kleen48d02a12017-02-23 15:46:34 -08001002#define MAXBB 16384UL
1003
1004static int grab_bb(u8 *buffer, u64 start, u64 end,
1005 struct machine *machine, struct thread *thread,
1006 bool *is64bit, u8 *cpumode, bool last)
1007{
1008 long offset, len;
1009 struct addr_location al;
1010 bool kernel;
1011
1012 if (!start || !end)
1013 return 0;
1014
1015 kernel = machine__kernel_ip(machine, start);
1016 if (kernel)
1017 *cpumode = PERF_RECORD_MISC_KERNEL;
1018 else
1019 *cpumode = PERF_RECORD_MISC_USER;
1020
1021 /*
1022 * Block overlaps between kernel and user.
1023 * This can happen due to ring filtering
1024 * On Intel CPUs the entry into the kernel is filtered,
1025 * but the exit is not. Let the caller patch it up.
1026 */
1027 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001028 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001029 return -ENXIO;
1030 }
1031
1032 memset(&al, 0, sizeof(al));
1033 if (end - start > MAXBB - MAXINSN) {
1034 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001035 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001036 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001037 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -08001038 return 0;
1039 }
1040
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -03001041 if (!thread__find_map(thread, *cpumode, start, &al) || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001042 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001043 return 0;
1044 }
1045 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001046 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001047 return 0;
1048 }
1049
1050 /* Load maps to ensure dso->is_64_bit has been updated */
1051 map__load(al.map);
1052
1053 offset = al.map->map_ip(al.map, start);
1054 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
1055 end - start + MAXINSN);
1056
1057 *is64bit = al.map->dso->is_64_bit;
1058 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001059 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -08001060 start, end);
1061 return len;
1062}
1063
Arnaldo Carvalho de Melo540a63e2019-11-22 12:39:06 -03001064static int map__fprintf_srccode(struct map *map, u64 addr, FILE *fp, struct srccode_state *state)
1065{
1066 char *srcfile;
1067 int ret = 0;
1068 unsigned line;
1069 int len;
1070 char *srccode;
1071
1072 if (!map || !map->dso)
1073 return 0;
1074 srcfile = get_srcline_split(map->dso,
1075 map__rip_2objdump(map, addr),
1076 &line);
1077 if (!srcfile)
1078 return 0;
1079
1080 /* Avoid redundant printing */
1081 if (state &&
1082 state->srcfile &&
1083 !strcmp(state->srcfile, srcfile) &&
1084 state->line == line) {
1085 free(srcfile);
1086 return 0;
1087 }
1088
1089 srccode = find_sourceline(srcfile, line, &len);
1090 if (!srccode)
1091 goto out_free_line;
1092
1093 ret = fprintf(fp, "|%-8d %.*s", line, len, srccode);
1094
1095 if (state) {
1096 state->srcfile = srcfile;
1097 state->line = line;
1098 }
1099 return ret;
1100
1101out_free_line:
1102 free(srcfile);
1103 return ret;
1104}
1105
Andi Kleendd2e18e2018-12-03 16:18:48 -08001106static int print_srccode(struct thread *thread, u8 cpumode, uint64_t addr)
1107{
1108 struct addr_location al;
1109 int ret = 0;
1110
1111 memset(&al, 0, sizeof(al));
1112 thread__find_map(thread, cpumode, addr, &al);
1113 if (!al.map)
1114 return 0;
1115 ret = map__fprintf_srccode(al.map, al.addr, stdout,
1116 &thread->srccode_state);
1117 if (ret)
1118 ret += printf("\n");
1119 return ret;
1120}
1121
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001122static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
1123 struct perf_insn *x, u8 *inbuf, int len,
Andi Kleenfe571202018-09-24 10:07:32 -07001124 int insn, FILE *fp, int *total_cycles)
Andi Kleen48d02a12017-02-23 15:46:34 -08001125{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001126 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
1127 dump_insn(x, ip, inbuf, len, NULL),
1128 en->flags.predicted ? " PRED" : "",
1129 en->flags.mispred ? " MISPRED" : "",
1130 en->flags.in_tx ? " INTX" : "",
1131 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -08001132 if (en->flags.cycles) {
Andi Kleenfe571202018-09-24 10:07:32 -07001133 *total_cycles += en->flags.cycles;
1134 printed += fprintf(fp, " %d cycles [%d]", en->flags.cycles, *total_cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001135 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001136 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001137 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001138 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001139}
1140
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001141static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
1142 u8 cpumode, int cpu, struct symbol **lastsym,
1143 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001144{
1145 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001146 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001147
1148 memset(&al, 0, sizeof(al));
1149
Arnaldo Carvalho de Melo404eb5a2018-04-26 09:34:37 -03001150 thread__find_map(thread, cpumode, addr, &al);
1151
Andi Kleen48d02a12017-02-23 15:46:34 -08001152 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001153 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001154
1155 al.cpu = cpu;
1156 al.sym = NULL;
1157 if (al.map)
1158 al.sym = map__find_symbol(al.map, al.addr);
1159
1160 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001161 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001162
1163 if (al.addr < al.sym->end)
1164 off = al.addr - al.sym->start;
1165 else
1166 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001167 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -08001168 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001169 printed += fprintf(fp, "%+d", off);
1170 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -08001171 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001172 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
1173 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001174 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001175
1176 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001177}
1178
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001179static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
1180 struct thread *thread,
1181 struct perf_event_attr *attr,
1182 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001183{
1184 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001185 struct branch_entry *entries = perf_sample__branch_entries(sample);
Andi Kleen48d02a12017-02-23 15:46:34 -08001186 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001187 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001188 struct perf_insn x;
1189 u8 buffer[MAXBB];
1190 unsigned off;
1191 struct symbol *lastsym = NULL;
Andi Kleenfe571202018-09-24 10:07:32 -07001192 int total_cycles = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001193
1194 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001195 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001196 nr = br->nr;
1197 if (max_blocks && nr > max_blocks + 1)
1198 nr = max_blocks + 1;
1199
1200 x.thread = thread;
1201 x.cpu = sample->cpu;
1202
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001203 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -08001204
1205 /* Handle first from jump, of which we don't know the entry. */
Kan Liang42bbabe2020-02-28 08:30:00 -08001206 len = grab_bb(buffer, entries[nr-1].from,
1207 entries[nr-1].from,
Andi Kleen48d02a12017-02-23 15:46:34 -08001208 machine, thread, &x.is64bit, &x.cpumode, false);
1209 if (len > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001210 printed += ip__fprintf_sym(entries[nr - 1].from, thread,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001211 x.cpumode, x.cpu, &lastsym, attr, fp);
Kan Liang42bbabe2020-02-28 08:30:00 -08001212 printed += ip__fprintf_jump(entries[nr - 1].from, &entries[nr - 1],
Andi Kleenfe571202018-09-24 10:07:32 -07001213 &x, buffer, len, 0, fp, &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001214 if (PRINT_FIELD(SRCCODE))
Kan Liang42bbabe2020-02-28 08:30:00 -08001215 printed += print_srccode(thread, x.cpumode, entries[nr - 1].from);
Andi Kleen48d02a12017-02-23 15:46:34 -08001216 }
1217
1218 /* Print all blocks */
1219 for (i = nr - 2; i >= 0; i--) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001220 if (entries[i].from || entries[i].to)
Andi Kleen48d02a12017-02-23 15:46:34 -08001221 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
Kan Liang42bbabe2020-02-28 08:30:00 -08001222 entries[i].from,
1223 entries[i].to);
1224 start = entries[i + 1].to;
1225 end = entries[i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001226
1227 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1228 /* Patch up missing kernel transfers due to ring filters */
1229 if (len == -ENXIO && i > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001230 end = entries[--i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001231 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1232 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1233 }
1234 if (len <= 0)
1235 continue;
1236
1237 insn = 0;
Andi Kleene98df282019-09-27 16:35:44 -07001238 for (off = 0; off < (unsigned)len; off += ilen) {
Andi Kleen48d02a12017-02-23 15:46:34 -08001239 uint64_t ip = start + off;
1240
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001241 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001242 if (ip == end) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001243 printed += ip__fprintf_jump(ip, &entries[i], &x, buffer + off, len - off, ++insn, fp,
Andi Kleenfe571202018-09-24 10:07:32 -07001244 &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001245 if (PRINT_FIELD(SRCCODE))
1246 printed += print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001247 break;
1248 } else {
Andi Kleene98df282019-09-27 16:35:44 -07001249 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001250 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
1251 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001252 if (ilen == 0)
1253 break;
Andi Kleendd2e18e2018-12-03 16:18:48 -08001254 if (PRINT_FIELD(SRCCODE))
1255 print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001256 insn++;
1257 }
1258 }
Adrian Hunter51726722019-11-27 11:56:31 +02001259 if (off != end - start)
Andi Kleene98df282019-09-27 16:35:44 -07001260 printed += fprintf(fp, "\tmismatch of LBR data and executable\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001261 }
1262
1263 /*
1264 * Hit the branch? In this case we are already done, and the target
1265 * has not been executed yet.
1266 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001267 if (entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001268 goto out;
Kan Liang42bbabe2020-02-28 08:30:00 -08001269 if (entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001270 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001271
1272 /*
1273 * Print final block upto sample
Andi Kleen61f61152018-11-19 21:06:17 -08001274 *
1275 * Due to pipeline delays the LBRs might be missing a branch
1276 * or two, which can result in very large or negative blocks
1277 * between final branch and sample. When this happens just
1278 * continue walking after the last TO until we hit a branch.
Andi Kleen48d02a12017-02-23 15:46:34 -08001279 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001280 start = entries[0].to;
Andi Kleen48d02a12017-02-23 15:46:34 -08001281 end = sample->ip;
Andi Kleen61f61152018-11-19 21:06:17 -08001282 if (end < start) {
1283 /* Missing jump. Scan 128 bytes for the next branch */
1284 end = start + 128;
1285 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001286 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001287 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001288 if (len <= 0) {
1289 /* Print at least last IP if basic block did not work */
1290 len = grab_bb(buffer, sample->ip, sample->ip,
1291 machine, thread, &x.is64bit, &x.cpumode, false);
1292 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001293 goto out;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001294 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -08001295 dump_insn(&x, sample->ip, buffer, len, NULL));
Andi Kleendd2e18e2018-12-03 16:18:48 -08001296 if (PRINT_FIELD(SRCCODE))
1297 print_srccode(thread, x.cpumode, sample->ip);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001298 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001299 }
1300 for (off = 0; off <= end - start; off += ilen) {
Andi Kleene98df282019-09-27 16:35:44 -07001301 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001302 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
1303 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001304 if (ilen == 0)
1305 break;
Andi Kleen61f61152018-11-19 21:06:17 -08001306 if (arch_is_branch(buffer + off, len - off, x.is64bit) && start + off != sample->ip) {
1307 /*
1308 * Hit a missing branch. Just stop.
1309 */
1310 printed += fprintf(fp, "\t... not reaching sample ...\n");
1311 break;
1312 }
Andi Kleendd2e18e2018-12-03 16:18:48 -08001313 if (PRINT_FIELD(SRCCODE))
1314 print_srccode(thread, x.cpumode, start + off);
Andi Kleen48d02a12017-02-23 15:46:34 -08001315 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001316out:
1317 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001318}
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001319
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001320static int perf_sample__fprintf_addr(struct perf_sample *sample,
1321 struct thread *thread,
1322 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -06001323{
1324 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001325 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -06001326
1327 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001328 goto out;
David Ahern7cec0922011-05-30 13:08:23 -06001329
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -03001330 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -06001331
1332 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001333 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001334 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001335 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001336 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001337 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001338 }
1339
1340 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001341 printed += fprintf(fp, " (");
1342 printed += map__fprintf_dsoname(al.map, fp);
1343 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001344 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001345out:
1346 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001347}
1348
Andi Kleen99f753f2018-09-20 11:05:39 -07001349static const char *resolve_branch_sym(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001350 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001351 struct thread *thread,
1352 struct addr_location *al,
Adrian Hunterb743b862021-06-21 18:05:06 +03001353 struct addr_location *addr_al,
Andi Kleen99f753f2018-09-20 11:05:39 -07001354 u64 *ip)
1355{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001356 struct perf_event_attr *attr = &evsel->core.attr;
Andi Kleen99f753f2018-09-20 11:05:39 -07001357 const char *name = NULL;
1358
1359 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1360 if (sample_addr_correlates_sym(attr)) {
Adrian Hunterb743b862021-06-21 18:05:06 +03001361 if (!addr_al->thread)
1362 thread__resolve(thread, addr_al, sample);
1363 if (addr_al->sym)
1364 name = addr_al->sym->name;
Andi Kleen99f753f2018-09-20 11:05:39 -07001365 else
1366 *ip = sample->addr;
1367 } else {
1368 *ip = sample->addr;
1369 }
1370 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1371 if (al->sym)
1372 name = al->sym->name;
1373 else
1374 *ip = sample->ip;
1375 }
1376 return name;
1377}
1378
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001379static int perf_sample__fprintf_callindent(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001380 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001381 struct thread *thread,
Adrian Hunterb743b862021-06-21 18:05:06 +03001382 struct addr_location *al,
1383 struct addr_location *addr_al,
1384 FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001385{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001386 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter256d92b2018-12-21 14:06:19 +02001387 size_t depth = thread_stack__depth(thread, sample->cpu);
Adrian Huntere2167082016-06-23 16:40:58 +03001388 const char *name = NULL;
1389 static int spacing;
1390 int len = 0;
Andi Kleena78cdee2018-09-18 05:32:10 -07001391 int dlen = 0;
Adrian Huntere2167082016-06-23 16:40:58 +03001392 u64 ip = 0;
1393
1394 /*
1395 * The 'return' has already been popped off the stack so the depth has
1396 * to be adjusted to match the 'call'.
1397 */
1398 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1399 depth += 1;
1400
Adrian Hunterb743b862021-06-21 18:05:06 +03001401 name = resolve_branch_sym(sample, evsel, thread, al, addr_al, &ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001402
Andi Kleena78cdee2018-09-18 05:32:10 -07001403 if (PRINT_FIELD(DSO) && !(PRINT_FIELD(IP) || PRINT_FIELD(ADDR))) {
1404 dlen += fprintf(fp, "(");
1405 dlen += map__fprintf_dsoname(al->map, fp);
1406 dlen += fprintf(fp, ")\t");
1407 }
1408
Adrian Huntere2167082016-06-23 16:40:58 +03001409 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001410 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001411 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001412 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001413
1414 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001415 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001416
1417 /*
1418 * Try to keep the output length from changing frequently so that the
1419 * output lines up more nicely.
1420 */
1421 if (len > spacing || (len && len < spacing - 52))
1422 spacing = round_up(len + 4, 32);
1423
1424 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001425 len += fprintf(fp, "%*s", spacing - len, "");
1426
Andi Kleena78cdee2018-09-18 05:32:10 -07001427 return len + dlen;
Adrian Huntere2167082016-06-23 16:40:58 +03001428}
1429
Andi Kleen3ab481a2019-03-05 06:47:45 -08001430__weak void arch_fetch_insn(struct perf_sample *sample __maybe_unused,
1431 struct thread *thread __maybe_unused,
1432 struct machine *machine __maybe_unused)
1433{
1434}
1435
Adrian Hunterd9ae9c92021-05-30 22:23:01 +03001436void script_fetch_insn(struct perf_sample *sample, struct thread *thread,
1437 struct machine *machine)
1438{
1439 if (sample->insn_len == 0 && native_arch)
1440 arch_fetch_insn(sample, thread, machine);
1441}
1442
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001443static int perf_sample__fprintf_insn(struct perf_sample *sample,
1444 struct perf_event_attr *attr,
1445 struct thread *thread,
1446 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001447{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001448 int printed = 0;
1449
Adrian Hunterd9ae9c92021-05-30 22:23:01 +03001450 script_fetch_insn(sample, thread, machine);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001451
Andi Kleen224e2c92016-10-07 16:42:27 +03001452 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001453 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001454 if (PRINT_FIELD(INSN) && sample->insn_len) {
Andi Kleen224e2c92016-10-07 16:42:27 +03001455 int i;
1456
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001457 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001458 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001459 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001460 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001461 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001462 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1463
1464 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001465}
1466
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001467static int perf_sample__fprintf_ipc(struct perf_sample *sample,
1468 struct perf_event_attr *attr, FILE *fp)
1469{
1470 unsigned int ipc;
1471
1472 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt)
1473 return 0;
1474
1475 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt;
1476
1477 return fprintf(fp, " \t IPC: %u.%02u (%" PRIu64 "/%" PRIu64 ") ",
1478 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt);
1479}
1480
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001481static int perf_sample__fprintf_bts(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001482 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001483 struct thread *thread,
1484 struct addr_location *al,
Adrian Hunterb743b862021-06-21 18:05:06 +03001485 struct addr_location *addr_al,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001486 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001487{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001488 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001489 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001490 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001491 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001492
Adrian Huntere2167082016-06-23 16:40:58 +03001493 if (PRINT_FIELD(CALLINDENT))
Adrian Hunterb743b862021-06-21 18:05:06 +03001494 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, addr_al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001495
Akihiro Nagai95582592012-01-30 13:43:09 +09001496 /* print branch_from information */
1497 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001498 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001499 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001500
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001501 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001502 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001503 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001504 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001505
1506 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001507 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001508 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001509 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001510 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001511 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001512 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001513 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001514
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001515 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor,
1516 symbol_conf.bt_stop_list, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001517 }
1518
Akihiro Nagai95582592012-01-30 13:43:09 +09001519 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001520 if (PRINT_FIELD(ADDR) ||
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001521 ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001522 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001523 printed += fprintf(fp, " => ");
1524 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001525 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001526
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001527 printed += perf_sample__fprintf_ipc(sample, attr, fp);
1528
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001529 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001530 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001531
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001532 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001533 printed += fprintf(fp, "\n");
1534 if (PRINT_FIELD(SRCCODE)) {
1535 int ret = map__fprintf_srccode(al->map, al->addr, stdout,
1536 &thread->srccode_state);
1537 if (ret) {
1538 printed += ret;
1539 printed += printf("\n");
1540 }
1541 }
1542 return printed;
Akihiro Nagai95582592012-01-30 13:43:09 +09001543}
1544
Adrian Hunter055cd332016-06-23 16:40:56 +03001545static struct {
1546 u32 flags;
1547 const char *name;
1548} sample_flags[] = {
1549 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1550 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1551 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1552 {PERF_IP_FLAG_BRANCH, "jmp"},
1553 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1554 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1555 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1556 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1557 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1558 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1559 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1560 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1561 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
Adrian Hunterc025d462021-02-18 11:57:51 +02001562 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMENTRY, "vmentry"},
1563 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMEXIT, "vmexit"},
Adrian Hunter055cd332016-06-23 16:40:56 +03001564 {0, NULL}
1565};
1566
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001567static const char *sample_flags_to_name(u32 flags)
1568{
1569 int i;
1570
1571 for (i = 0; sample_flags[i].name ; i++) {
1572 if (sample_flags[i].flags == flags)
1573 return sample_flags[i].name;
1574 }
1575
1576 return NULL;
1577}
1578
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001579int perf_sample__sprintf_flags(u32 flags, char *str, size_t sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001580{
1581 const char *chars = PERF_IP_FLAG_CHARS;
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001582 const size_t n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001583 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1584 const char *name = NULL;
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001585 size_t i, pos = 0;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001586
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001587 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1588 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001589 return snprintf(str, sz, "%-15s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001590
1591 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1592 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1593 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001594 return snprintf(str, sz, "tr strt %-7s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001595 }
1596
1597 if (flags & PERF_IP_FLAG_TRACE_END) {
1598 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1599 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001600 return snprintf(str, sz, "tr end %-7s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001601 }
1602
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001603 for (i = 0; i < n; i++, flags >>= 1) {
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001604 if ((flags & 1) && pos < sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001605 str[pos++] = chars[i];
1606 }
1607 for (; i < 32; i++, flags >>= 1) {
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001608 if ((flags & 1) && pos < sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001609 str[pos++] = '?';
1610 }
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001611 if (pos < sz)
1612 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001613
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001614 return pos;
1615}
1616
1617static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
1618{
1619 char str[SAMPLE_FLAGS_BUF_SIZE];
1620
1621 perf_sample__sprintf_flags(flags, str, sizeof(str));
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001622 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001623}
1624
Wang Nan30372f02016-02-24 11:20:45 +00001625struct printer_data {
1626 int line_no;
1627 bool hit_nul;
1628 bool is_printable;
1629};
1630
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001631static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1632 unsigned int val,
1633 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001634{
1635 unsigned char ch = (unsigned char)val;
1636 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001637 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001638
1639 switch (op) {
1640 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001641 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001642 break;
1643 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001644 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001645 " ");
1646 break;
1647 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001648 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001649 break;
1650 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001651 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001652 break;
1653 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001654 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001655 break;
1656 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001657 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001658 break;
1659 case BINARY_PRINT_CHAR_DATA:
1660 if (printer_data->hit_nul && ch)
1661 printer_data->is_printable = false;
1662
1663 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001664 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001665
1666 if (!printer_data->is_printable)
1667 break;
1668
1669 if (ch == '\0')
1670 printer_data->hit_nul = true;
1671 else
1672 printer_data->is_printable = false;
1673 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001674 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001675 }
1676 break;
1677 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001678 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001679 break;
1680 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001681 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001682 printer_data->line_no++;
1683 break;
1684 case BINARY_PRINT_DATA_END:
1685 default:
1686 break;
1687 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001688
1689 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001690}
1691
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001692static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001693{
1694 unsigned int nr_bytes = sample->raw_size;
1695 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001696 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1697 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001698
1699 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001700 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1701
1702 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001703}
1704
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001705static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001706{
1707 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001708 return fprintf(fp, "%*s", spacing - len, "");
1709
1710 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001711}
1712
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001713static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001714{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001715 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001716}
1717
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001718static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001719{
1720 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1721 int len;
1722
1723 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001724 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001725
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001726 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001727 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001728 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001729}
1730
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001731static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001732{
1733 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1734 int len;
1735
1736 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001737 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001738
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001739 len = fprintf(fp, " hints: %#x extensions: %#x ",
1740 data->hints, data->extensions);
1741 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001742}
1743
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001744static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001745{
1746 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1747 int len;
1748
1749 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001750 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001751
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001752 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1753 data->hw, data->cstate, data->subcstate);
1754 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001755}
1756
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001757static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001758{
1759 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1760 int len;
1761
1762 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001763 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001764
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001765 len = fprintf(fp, " IP: %u ", data->ip);
1766 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001767}
1768
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001769static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001770{
1771 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1772 int len;
1773
1774 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001775 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001776
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001777 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001778 data->deepest_cstate, data->last_cstate,
1779 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001780 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001781}
1782
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001783static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001784{
1785 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1786 unsigned int percent, freq;
1787 int len;
1788
1789 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001790 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001791
1792 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001793 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001794 if (data->max_nonturbo) {
1795 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001796 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001797 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001798 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001799}
1800
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001801static int perf_sample__fprintf_synth_psb(struct perf_sample *sample, FILE *fp)
1802{
1803 struct perf_synth_intel_psb *data = perf_sample__synth_ptr(sample);
1804 int len;
1805
1806 if (perf_sample__bad_synth_size(sample, *data))
1807 return 0;
1808
1809 len = fprintf(fp, " psb offs: %#" PRIx64, data->offset);
1810 return len + perf_sample__fprintf_pt_spacing(len, fp);
1811}
1812
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001813static int perf_sample__fprintf_synth(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001814 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001815{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001816 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001817 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001818 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001819 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001820 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001821 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001822 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001823 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001824 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001825 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001826 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001827 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001828 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001829 case PERF_SYNTH_INTEL_PSB:
1830 return perf_sample__fprintf_synth_psb(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001831 default:
1832 break;
1833 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001834
1835 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001836}
1837
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001838static int evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001839{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001840 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001841 int max = 0;
1842
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001843 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001844 int len = strlen(evsel__name(evsel));
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001845
1846 max = MAX(len, max);
1847 }
1848
1849 return max;
1850}
1851
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001852static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001853{
1854 struct mem_info mi = { .data_src.val = data_src };
1855 char decode[100];
1856 char out[100];
1857 static int maxlen;
1858 int len;
1859
1860 perf_script__meminfo_scnprintf(decode, 100, &mi);
1861
1862 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1863 if (maxlen < len)
1864 maxlen = len;
1865
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001866 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001867}
1868
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001869struct metric_ctx {
1870 struct perf_sample *sample;
1871 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001872 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001873 FILE *fp;
1874};
1875
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001876static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1877 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001878 const char *fmt,
1879 const char *unit, double val)
1880{
1881 struct metric_ctx *mctx = ctx;
1882
1883 if (!fmt)
1884 return;
Jiri Olsae534bfb2020-08-05 11:34:44 +02001885 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001886 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001887 fputs("\tmetric: ", mctx->fp);
1888 if (color)
1889 color_fprintf(mctx->fp, color, fmt, val);
1890 else
1891 printf(fmt, val);
1892 fprintf(mctx->fp, " %s\n", unit);
1893}
1894
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001895static void script_new_line(struct perf_stat_config *config __maybe_unused,
1896 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001897{
1898 struct metric_ctx *mctx = ctx;
1899
Jiri Olsae534bfb2020-08-05 11:34:44 +02001900 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001901 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001902 fputs("\tmetric: ", mctx->fp);
1903}
1904
1905static void perf_sample__fprint_metric(struct perf_script *script,
1906 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001907 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001908 struct perf_sample *sample,
1909 FILE *fp)
1910{
Jiri Olsafba7c862021-07-06 17:17:00 +02001911 struct evsel *leader = evsel__leader(evsel);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001912 struct perf_stat_output_ctx ctx = {
1913 .print_metric = script_print_metric,
1914 .new_line = script_new_line,
1915 .ctx = &(struct metric_ctx) {
1916 .sample = sample,
1917 .thread = thread,
1918 .evsel = evsel,
1919 .fp = fp,
1920 },
1921 .force_header = false,
1922 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001923 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001924 u64 val;
1925
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001926 if (!evsel->stats)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001927 evlist__alloc_stats(script->session->evlist, false);
Jiri Olsafba7c862021-07-06 17:17:00 +02001928 if (evsel_script(leader)->gnum++ == 0)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001929 perf_stat__reset_shadow_stats();
1930 val = sample->period * evsel->scale;
1931 perf_stat__update_shadow_stats(evsel,
1932 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001933 sample->cpu,
1934 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001935 evsel_script(evsel)->val = val;
Jiri Olsafba7c862021-07-06 17:17:00 +02001936 if (evsel_script(leader)->gnum == leader->core.nr_members) {
1937 for_each_group_member (ev2, leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001938 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001939 evsel_script(ev2)->val,
1940 sample->cpu,
1941 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001942 NULL,
1943 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001944 }
Jiri Olsafba7c862021-07-06 17:17:00 +02001945 evsel_script(leader)->gnum = 0;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001946 }
1947}
1948
Andi Kleen99f753f2018-09-20 11:05:39 -07001949static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001950 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001951 struct thread *thread,
Adrian Hunterb743b862021-06-21 18:05:06 +03001952 struct addr_location *al,
1953 struct addr_location *addr_al)
Andi Kleen99f753f2018-09-20 11:05:39 -07001954{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001955 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001956
1957 if (!symbol_conf.graph_function)
1958 return true;
1959
1960 if (thread->filter) {
1961 if (depth <= thread->filter_entry_depth) {
1962 thread->filter = false;
1963 return false;
1964 }
1965 return true;
1966 } else {
1967 const char *s = symbol_conf.graph_function;
1968 u64 ip;
Adrian Hunterb743b862021-06-21 18:05:06 +03001969 const char *name = resolve_branch_sym(sample, evsel, thread, al, addr_al,
Andi Kleen99f753f2018-09-20 11:05:39 -07001970 &ip);
1971 unsigned nlen;
1972
1973 if (!name)
1974 return false;
1975 nlen = strlen(name);
1976 while (*s) {
1977 unsigned len = strcspn(s, ",");
1978 if (nlen == len && !strncmp(name, s, len)) {
1979 thread->filter = true;
1980 thread->filter_entry_depth = depth;
1981 return true;
1982 }
1983 s += len;
1984 if (*s == ',')
1985 s++;
1986 }
1987 return false;
1988 }
1989}
1990
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001991static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001992 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001993 struct addr_location *al,
Adrian Hunterb743b862021-06-21 18:05:06 +03001994 struct addr_location *addr_al,
Andi Kleen48d02a12017-02-23 15:46:34 -08001995 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001996{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001997 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001998 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001999 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02002000 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002001 FILE *fp = es->fp;
Kan Liang6b9bae62020-12-16 10:57:57 -08002002 char str[PAGE_SIZE_NAME_LEN];
David Ahern1424dc92011-03-09 22:23:28 -07002003
Adrian Hunter14057202017-06-21 13:17:19 +03002004 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07002005 return;
2006
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002007 ++es->samples;
2008
Jiri Olsae534bfb2020-08-05 11:34:44 +02002009 perf_sample__fprintf_start(script, sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01002010 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07002011
Jiri Olsa535aeaae2014-08-25 16:45:42 +02002012 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002013 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02002014
Namhyung Kime944d3d2013-11-18 14:34:52 +09002015 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002016 const char *evname = evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01002017
2018 if (!script->name_width)
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002019 script->name_width = evlist__max_name_len(script->session->evlist);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01002020
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002021 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09002022 }
2023
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002024 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002025 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002026
Akihiro Nagai95582592012-01-30 13:43:09 +09002027 if (is_bts_event(attr)) {
Adrian Hunterb743b862021-06-21 18:05:06 +03002028 perf_sample__fprintf_bts(sample, evsel, thread, al, addr_al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09002029 return;
2030 }
2031
Andi Kleen96167162019-01-17 11:48:34 -08002032 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03002033 event_format__fprintf(evsel->tp_format, sample->cpu,
2034 sample->raw_data, sample->raw_size, fp);
2035 }
Adrian Hunter47e78082017-05-26 11:17:22 +03002036
2037 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002038 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03002039
David Ahern7cec0922011-05-30 13:08:23 -06002040 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002041 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06002042
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002043 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002044 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002045
2046 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002047 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002048
Kan Liang6ea5d1a2021-09-29 08:38:14 -07002049 if (PRINT_FIELD(INS_LAT))
2050 fprintf(fp, "%16" PRIu16, sample->ins_lat);
2051
David Ahern787bef12011-05-27 14:28:43 -06002052 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07002053 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04002054
Kan Liang680d1252020-03-19 13:25:14 -07002055 if (script->stitch_lbr)
2056 al->thread->lbr_stitch_enable = true;
2057
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03002058 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07002059 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002060 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07002061 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002062
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002063 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03002064 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
2065 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07002066 }
2067
Stephane Eranianfc36f942015-08-31 18:41:10 +02002068 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002069 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02002070
Andi Kleenb1491ac2017-09-05 11:40:57 -07002071 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002072 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07002073
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002074 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002075 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002076 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002077 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07002078 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002079 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002080
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002081 if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002082 perf_sample__fprintf_bpf_output(sample, fp);
2083 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04002084
2085 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002086 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002087
Kan Liang6b9bae62020-12-16 10:57:57 -08002088 if (PRINT_FIELD(DATA_PAGE_SIZE))
2089 fprintf(fp, " %s", get_page_size_name(sample->data_page_size, str));
2090
Stephane Eranianc513de82021-01-05 11:57:50 -08002091 if (PRINT_FIELD(CODE_PAGE_SIZE))
2092 fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str));
2093
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002094 perf_sample__fprintf_ipc(sample, attr, fp);
2095
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002096 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002097
Andi Kleendd2e18e2018-12-03 16:18:48 -08002098 if (PRINT_FIELD(SRCCODE)) {
2099 if (map__fprintf_srccode(al->map, al->addr, stdout,
2100 &thread->srccode_state))
2101 printf("\n");
2102 }
2103
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002104 if (PRINT_FIELD(METRIC))
2105 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02002106
2107 if (verbose)
2108 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07002109}
2110
Tom Zanussi956ffd02009-11-25 01:15:46 -06002111static struct scripting_ops *scripting_ops;
2112
Jiri Olsa32dcd022019-07-21 13:23:51 +02002113static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002114{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002115 int nthreads = perf_thread_map__nr(counter->core.threads);
Arnaldo Carvalho de Melo5eb88f02020-04-29 15:45:09 -03002116 int ncpus = evsel__nr_cpus(counter);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002117 int cpu, thread;
2118 static int header_printed;
2119
Jiri Olsa648b5af2019-08-06 11:35:19 +02002120 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002121 nthreads = 1;
2122
2123 if (!header_printed) {
2124 printf("%3s %8s %15s %15s %15s %15s %s\n",
2125 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
2126 header_printed = 1;
2127 }
2128
2129 for (thread = 0; thread < nthreads; thread++) {
2130 for (cpu = 0; cpu < ncpus; cpu++) {
2131 struct perf_counts_values *counts;
2132
2133 counts = perf_counts(counter->counts, cpu, thread);
2134
2135 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02002136 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002137 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01002138 counts->val,
2139 counts->ena,
2140 counts->run,
2141 tstamp,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002142 evsel__name(counter));
Jiri Olsa36e33c52016-01-06 11:49:56 +01002143 }
2144 }
2145}
2146
Jiri Olsa32dcd022019-07-21 13:23:51 +02002147static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002148{
2149 if (scripting_ops && scripting_ops->process_stat)
2150 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002151 else
2152 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002153}
2154
2155static void process_stat_interval(u64 tstamp)
2156{
2157 if (scripting_ops && scripting_ops->process_stat_interval)
2158 scripting_ops->process_stat_interval(tstamp);
2159}
2160
Tom Zanussi956ffd02009-11-25 01:15:46 -06002161static void setup_scripting(void)
2162{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002163 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002164 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002165}
2166
Adrian Hunterd445dd22014-08-15 22:08:37 +03002167static int flush_scripting(void)
2168{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002169 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002170}
2171
Tom Zanussi956ffd02009-11-25 01:15:46 -06002172static int cleanup_scripting(void)
2173{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002174 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002175
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002176 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002177}
2178
Andi Kleene87e5482019-03-11 07:44:52 -07002179static bool filter_cpu(struct perf_sample *sample)
2180{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002181 if (cpu_list && sample->cpu != (u32)-1)
Andi Kleene87e5482019-03-11 07:44:52 -07002182 return !test_bit(sample->cpu, cpu_bitmap);
2183 return false;
2184}
2185
Jiri Olsa809e9422015-11-26 18:55:21 +01002186static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002187 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002188 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002189 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002190 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002191{
Jiri Olsa809e9422015-11-26 18:55:21 +01002192 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002193 struct addr_location al;
Adrian Hunterb743b862021-06-21 18:05:06 +03002194 struct addr_location addr_al;
Adrian Hunter291961f2021-06-27 16:18:09 +03002195 int ret = 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002196
Adrian Hunter9bde93a2021-06-27 16:18:10 +03002197 /* Set thread to NULL to indicate addr_al and al are not initialized */
2198 addr_al.thread = NULL;
2199 al.thread = NULL;
2200
2201 ret = dlfilter__filter_event_early(dlfilter, event, sample, evsel, machine, &al, &addr_al);
2202 if (ret) {
2203 if (ret > 0)
2204 ret = 0;
2205 goto out_put;
2206 }
2207
Jin Yao2ab046c2017-12-08 21:13:46 +08002208 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2209 sample->time)) {
Adrian Hunter9bde93a2021-06-27 16:18:10 +03002210 goto out_put;
Jin Yao2ab046c2017-12-08 21:13:46 +08002211 }
David Aherna91f4c42016-11-29 10:15:43 -07002212
David Ahern1424dc92011-03-09 22:23:28 -07002213 if (debug_mode) {
2214 if (sample->time < last_timestamp) {
2215 pr_err("Samples misordered, previous: %" PRIu64
2216 " this: %" PRIu64 "\n", last_timestamp,
2217 sample->time);
2218 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002219 }
David Ahern1424dc92011-03-09 22:23:28 -07002220 last_timestamp = sample->time;
Adrian Hunter9bde93a2021-06-27 16:18:10 +03002221 goto out_put;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002222 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002223
Adrian Hunter93000412021-06-21 18:05:04 +03002224 if (filter_cpu(sample))
Adrian Hunter9bde93a2021-06-27 16:18:10 +03002225 goto out_put;
Adrian Hunter93000412021-06-21 18:05:04 +03002226
Adrian Hunter29159722021-08-11 13:10:32 +03002227 if (!al.thread && machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002228 pr_err("problem processing %d event, skipping it.\n",
2229 event->header.type);
Adrian Hunter9bde93a2021-06-27 16:18:10 +03002230 ret = -1;
2231 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002232 }
2233
2234 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002235 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002236
Adrian Hunterb743b862021-06-21 18:05:06 +03002237 if (!show_event(sample, evsel, al.thread, &al, &addr_al))
Adrian Hunter4371fbc2021-06-21 18:05:05 +03002238 goto out_put;
2239
2240 if (evswitch__discard(&scr->evswitch, evsel))
2241 goto out_put;
2242
Adrian Hunter291961f2021-06-27 16:18:09 +03002243 ret = dlfilter__filter_event(dlfilter, event, sample, evsel, machine, &al, &addr_al);
2244 if (ret) {
2245 if (ret > 0)
2246 ret = 0;
2247 goto out_put;
2248 }
2249
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002250 if (scripting_ops) {
2251 struct addr_location *addr_al_ptr = NULL;
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002252
2253 if ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
2254 sample_addr_correlates_sym(&evsel->core.attr)) {
Adrian Hunterb743b862021-06-21 18:05:06 +03002255 if (!addr_al.thread)
2256 thread__resolve(al.thread, &addr_al, sample);
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002257 addr_al_ptr = &addr_al;
2258 }
2259 scripting_ops->process_event(event, sample, evsel, &al, addr_al_ptr);
2260 } else {
Adrian Hunterb743b862021-06-21 18:05:06 +03002261 process_event(scr, sample, evsel, &al, &addr_al, machine);
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002262 }
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002263
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002264out_put:
Adrian Hunter9bde93a2021-06-27 16:18:10 +03002265 if (al.thread)
2266 addr_location__put(&al);
Adrian Hunter291961f2021-06-27 16:18:09 +03002267 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002268}
2269
Adrian Hunter7ea95722013-11-01 15:51:30 +02002270static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002271 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002272{
2273 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002274 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002275 struct evsel *evsel, *pos;
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002276 u64 sample_type;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002277 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002278 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002279
2280 err = perf_event__process_attr(tool, event, pevlist);
2281 if (err)
2282 return err;
2283
2284 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002285 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002286
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302287 if (!evsel->priv) {
2288 if (scr->per_event_dump) {
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002289 evsel->priv = evsel_script__new(evsel, scr->session->data);
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302290 } else {
2291 es = zalloc(sizeof(*es));
2292 if (!es)
2293 return -ENOMEM;
2294 es->fp = stdout;
2295 evsel->priv = es;
2296 }
2297 }
2298
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002299 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2300 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002301 return 0;
2302
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002303 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002304 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002305 return 0;
2306 }
2307
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002308 if (evsel->core.attr.sample_type) {
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002309 err = evsel__check_attr(evsel, scr->session);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002310 if (err)
2311 return err;
2312 }
Jiri Olsad2b5a312015-10-16 12:41:25 +02002313
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002314 /*
2315 * Check if we need to enable callchains based
2316 * on events sample_type.
2317 */
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03002318 sample_type = evlist__combined_sample_type(evlist);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002319 callchain_param_setup(sample_type);
Jiri Olsa53fb1892020-05-07 11:50:24 +02002320
Adrian Hunterb5164082020-05-27 21:02:50 +03002321 /* Enable fields for callchain entries */
2322 if (symbol_conf.use_callchain &&
2323 (sample_type & PERF_SAMPLE_CALLCHAIN ||
2324 sample_type & PERF_SAMPLE_BRANCH_STACK ||
2325 (sample_type & PERF_SAMPLE_REGS_USER &&
2326 sample_type & PERF_SAMPLE_STACK_USER))) {
2327 int type = output_type(evsel->core.attr.type);
2328
2329 if (!(output[type].user_unset_fields & PERF_OUTPUT_IP))
2330 output[type].fields |= PERF_OUTPUT_IP;
2331 if (!(output[type].user_unset_fields & PERF_OUTPUT_SYM))
2332 output[type].fields |= PERF_OUTPUT_SYM;
Jiri Olsa53fb1892020-05-07 11:50:24 +02002333 }
2334 set_print_ip_opts(&evsel->core.attr);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002335 return 0;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002336}
2337
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002338static int print_event_with_time(struct perf_tool *tool,
2339 union perf_event *event,
2340 struct perf_sample *sample,
2341 struct machine *machine,
2342 pid_t pid, pid_t tid, u64 timestamp)
2343{
2344 struct perf_script *script = container_of(tool, struct perf_script, tool);
2345 struct perf_session *session = script->session;
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002346 struct evsel *evsel = evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002347 struct thread *thread = NULL;
2348
2349 if (evsel && !evsel->core.attr.sample_id_all) {
2350 sample->cpu = 0;
2351 sample->time = timestamp;
2352 sample->pid = pid;
2353 sample->tid = tid;
2354 }
2355
2356 if (filter_cpu(sample))
2357 return 0;
2358
2359 if (tid != -1)
2360 thread = machine__findnew_thread(machine, pid, tid);
2361
Adrian Hunterfc183802020-09-09 11:49:22 +03002362 if (evsel) {
Jiri Olsae534bfb2020-08-05 11:34:44 +02002363 perf_sample__fprintf_start(script, sample, thread, evsel,
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002364 event->header.type, stdout);
2365 }
2366
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002367 perf_event__fprintf(event, machine, stdout);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002368
2369 thread__put(thread);
2370
2371 return 0;
2372}
2373
2374static int print_event(struct perf_tool *tool, union perf_event *event,
2375 struct perf_sample *sample, struct machine *machine,
2376 pid_t pid, pid_t tid)
2377{
2378 return print_event_with_time(tool, event, sample, machine, pid, tid, 0);
2379}
2380
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002381static int process_comm_event(struct perf_tool *tool,
2382 union perf_event *event,
2383 struct perf_sample *sample,
2384 struct machine *machine)
2385{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002386 if (perf_event__process_comm(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002387 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002388
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002389 return print_event(tool, event, sample, machine, event->comm.pid,
2390 event->comm.tid);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002391}
2392
Hari Bathini96a44bb2017-03-08 02:12:06 +05302393static int process_namespaces_event(struct perf_tool *tool,
2394 union perf_event *event,
2395 struct perf_sample *sample,
2396 struct machine *machine)
2397{
Hari Bathini96a44bb2017-03-08 02:12:06 +05302398 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002399 return -1;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302400
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002401 return print_event(tool, event, sample, machine, event->namespaces.pid,
2402 event->namespaces.tid);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302403}
2404
Namhyung Kim160d4af2020-03-25 21:45:36 +09002405static int process_cgroup_event(struct perf_tool *tool,
2406 union perf_event *event,
2407 struct perf_sample *sample,
2408 struct machine *machine)
2409{
Namhyung Kim160d4af2020-03-25 21:45:36 +09002410 if (perf_event__process_cgroup(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002411 return -1;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002412
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002413 return print_event(tool, event, sample, machine, sample->pid,
2414 sample->tid);
Namhyung Kim160d4af2020-03-25 21:45:36 +09002415}
2416
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002417static int process_fork_event(struct perf_tool *tool,
2418 union perf_event *event,
2419 struct perf_sample *sample,
2420 struct machine *machine)
2421{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002422 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2423 return -1;
2424
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002425 return print_event_with_time(tool, event, sample, machine,
2426 event->fork.pid, event->fork.tid,
2427 event->fork.time);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002428}
2429static int process_exit_event(struct perf_tool *tool,
2430 union perf_event *event,
2431 struct perf_sample *sample,
2432 struct machine *machine)
2433{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002434 /* Print before 'exit' deletes anything */
2435 if (print_event_with_time(tool, event, sample, machine, event->fork.pid,
2436 event->fork.tid, event->fork.time))
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002437 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002438
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002439 return perf_event__process_exit(tool, event, sample, machine);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002440}
2441
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002442static int process_mmap_event(struct perf_tool *tool,
2443 union perf_event *event,
2444 struct perf_sample *sample,
2445 struct machine *machine)
2446{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002447 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2448 return -1;
2449
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002450 return print_event(tool, event, sample, machine, event->mmap.pid,
2451 event->mmap.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002452}
2453
2454static int process_mmap2_event(struct perf_tool *tool,
2455 union perf_event *event,
2456 struct perf_sample *sample,
2457 struct machine *machine)
2458{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002459 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2460 return -1;
2461
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002462 return print_event(tool, event, sample, machine, event->mmap2.pid,
2463 event->mmap2.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002464}
2465
Adrian Hunter7c148982015-07-21 12:44:06 +03002466static int process_switch_event(struct perf_tool *tool,
2467 union perf_event *event,
2468 struct perf_sample *sample,
2469 struct machine *machine)
2470{
Adrian Hunter7c148982015-07-21 12:44:06 +03002471 struct perf_script *script = container_of(tool, struct perf_script, tool);
Adrian Hunter7c148982015-07-21 12:44:06 +03002472
2473 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2474 return -1;
2475
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002476 if (scripting_ops && scripting_ops->process_switch)
2477 scripting_ops->process_switch(event, sample, machine);
2478
2479 if (!script->show_switch_events)
2480 return 0;
2481
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002482 return print_event(tool, event, sample, machine, sample->pid,
2483 sample->tid);
Adrian Hunter7c148982015-07-21 12:44:06 +03002484}
2485
Adrian Hunter2ede9212021-05-25 12:51:11 +03002486static int process_auxtrace_error(struct perf_session *session,
2487 union perf_event *event)
2488{
2489 if (scripting_ops && scripting_ops->process_auxtrace_error) {
2490 scripting_ops->process_auxtrace_error(session, event);
2491 return 0;
2492 }
2493
2494 return perf_event__process_auxtrace_error(session, event);
2495}
2496
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002497static int
2498process_lost_event(struct perf_tool *tool,
2499 union perf_event *event,
2500 struct perf_sample *sample,
2501 struct machine *machine)
2502{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002503 return print_event(tool, event, sample, machine, sample->pid,
2504 sample->tid);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002505}
2506
Jiri Olsa3233b372018-02-06 19:17:59 +01002507static int
Stephen Brennan538d9c12021-09-01 14:08:15 -07002508process_throttle_event(struct perf_tool *tool __maybe_unused,
2509 union perf_event *event,
2510 struct perf_sample *sample,
2511 struct machine *machine)
2512{
2513 if (scripting_ops && scripting_ops->process_throttle)
2514 scripting_ops->process_throttle(event, sample, machine);
2515 return 0;
2516}
2517
2518static int
Jiri Olsa3233b372018-02-06 19:17:59 +01002519process_finished_round_event(struct perf_tool *tool __maybe_unused,
2520 union perf_event *event,
2521 struct ordered_events *oe __maybe_unused)
2522
2523{
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002524 perf_event__fprintf(event, NULL, stdout);
Jiri Olsa3233b372018-02-06 19:17:59 +01002525 return 0;
2526}
2527
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002528static int
2529process_bpf_events(struct perf_tool *tool __maybe_unused,
2530 union perf_event *event,
2531 struct perf_sample *sample,
2532 struct machine *machine)
2533{
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002534 if (machine__process_ksymbol(machine, event, sample) < 0)
2535 return -1;
2536
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002537 return print_event(tool, event, sample, machine, sample->pid,
2538 sample->tid);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002539}
2540
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002541static int process_text_poke_events(struct perf_tool *tool,
2542 union perf_event *event,
2543 struct perf_sample *sample,
2544 struct machine *machine)
2545{
2546 if (perf_event__process_text_poke(tool, event, sample, machine) < 0)
2547 return -1;
2548
2549 return print_event(tool, event, sample, machine, sample->pid,
2550 sample->tid);
2551}
2552
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002553static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002554{
2555 session_done = 1;
2556}
2557
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002558static void perf_script__fclose_per_event_dump(struct perf_script *script)
2559{
Jiri Olsa63503db2019-07-21 13:23:52 +02002560 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002561 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002562
2563 evlist__for_each_entry(evlist, evsel) {
2564 if (!evsel->priv)
2565 break;
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002566 evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002567 evsel->priv = NULL;
2568 }
2569}
2570
2571static int perf_script__fopen_per_event_dump(struct perf_script *script)
2572{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002573 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002574
2575 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002576 /*
2577 * Already setup? I.e. we may be called twice in cases like
2578 * Intel PT, one for the intel_pt// and dummy events, then
Ingo Molnar4d39c892021-03-23 17:09:15 +01002579 * for the evsels synthesized from the auxtrace info.
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002580 *
2581 * Ses perf_script__process_auxtrace_info.
2582 */
2583 if (evsel->priv != NULL)
2584 continue;
2585
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002586 evsel->priv = evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002587 if (evsel->priv == NULL)
2588 goto out_err_fclose;
2589 }
2590
2591 return 0;
2592
2593out_err_fclose:
2594 perf_script__fclose_per_event_dump(script);
2595 return -1;
2596}
2597
2598static int perf_script__setup_per_event_dump(struct perf_script *script)
2599{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002600 struct evsel *evsel;
2601 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002602
2603 if (script->per_event_dump)
2604 return perf_script__fopen_per_event_dump(script);
2605
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002606 es_stdout.fp = stdout;
2607
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002608 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002609 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002610
2611 return 0;
2612}
2613
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002614static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2615{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002616 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002617
2618 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002619 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002620
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002621 evsel_script__fprintf(es, stdout);
2622 evsel_script__delete(es);
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002623 evsel->priv = NULL;
2624 }
2625}
2626
Riccardo Mancinifaf3ac32021-07-15 18:07:18 +02002627static void perf_script__exit(struct perf_script *script)
2628{
2629 perf_thread_map__put(script->threads);
2630 perf_cpu_map__put(script->cpus);
2631}
2632
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002633static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002634{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002635 int ret;
2636
Tom Zanussic239da32010-04-01 23:59:18 -05002637 signal(SIGINT, sig_handler);
2638
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002639 perf_stat__init_shadow_stats();
2640
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002641 /* override event processing functions */
2642 if (script->show_task_events) {
2643 script->tool.comm = process_comm_event;
2644 script->tool.fork = process_fork_event;
2645 script->tool.exit = process_exit_event;
2646 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002647 if (script->show_mmap_events) {
2648 script->tool.mmap = process_mmap_event;
2649 script->tool.mmap2 = process_mmap2_event;
2650 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002651 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002652 script->tool.context_switch = process_switch_event;
Adrian Hunter2ede9212021-05-25 12:51:11 +03002653 if (scripting_ops && scripting_ops->process_auxtrace_error)
2654 script->tool.auxtrace_error = process_auxtrace_error;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302655 if (script->show_namespace_events)
2656 script->tool.namespaces = process_namespaces_event;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002657 if (script->show_cgroup_events)
2658 script->tool.cgroup = process_cgroup_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002659 if (script->show_lost_events)
2660 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002661 if (script->show_round_events) {
2662 script->tool.ordered_events = false;
2663 script->tool.finished_round = process_finished_round_event;
2664 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002665 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002666 script->tool.ksymbol = process_bpf_events;
2667 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002668 }
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002669 if (script->show_text_poke_events) {
2670 script->tool.ksymbol = process_bpf_events;
2671 script->tool.text_poke = process_text_poke_events;
2672 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002673
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002674 if (perf_script__setup_per_event_dump(script)) {
2675 pr_err("Couldn't create the per event dump files\n");
2676 return -1;
2677 }
2678
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002679 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002680
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002681 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002682 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002683
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002684 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002685 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002686
2687 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002688}
2689
Tom Zanussi956ffd02009-11-25 01:15:46 -06002690struct script_spec {
2691 struct list_head node;
2692 struct scripting_ops *ops;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -05002693 char spec[];
Tom Zanussi956ffd02009-11-25 01:15:46 -06002694};
2695
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002696static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002697
2698static struct script_spec *script_spec__new(const char *spec,
2699 struct scripting_ops *ops)
2700{
2701 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2702
2703 if (s != NULL) {
2704 strcpy(s->spec, spec);
2705 s->ops = ops;
2706 }
2707
2708 return s;
2709}
2710
Tom Zanussi956ffd02009-11-25 01:15:46 -06002711static void script_spec__add(struct script_spec *s)
2712{
2713 list_add_tail(&s->node, &script_specs);
2714}
2715
2716static struct script_spec *script_spec__find(const char *spec)
2717{
2718 struct script_spec *s;
2719
2720 list_for_each_entry(s, &script_specs, node)
2721 if (strcasecmp(s->spec, spec) == 0)
2722 return s;
2723 return NULL;
2724}
2725
Tom Zanussi956ffd02009-11-25 01:15:46 -06002726int script_spec_register(const char *spec, struct scripting_ops *ops)
2727{
2728 struct script_spec *s;
2729
2730 s = script_spec__find(spec);
2731 if (s)
2732 return -1;
2733
Taeung Song8560bae2016-02-26 00:13:10 +09002734 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002735 if (!s)
2736 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002737 else
2738 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002739
2740 return 0;
2741}
2742
2743static struct scripting_ops *script_spec__lookup(const char *spec)
2744{
2745 struct script_spec *s = script_spec__find(spec);
2746 if (!s)
2747 return NULL;
2748
2749 return s->ops;
2750}
2751
2752static void list_available_languages(void)
2753{
2754 struct script_spec *s;
2755
2756 fprintf(stderr, "\n");
2757 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002758 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002759
2760 list_for_each_entry(s, &script_specs, node)
2761 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2762
2763 fprintf(stderr, "\n");
2764}
2765
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03002766/* Find script file relative to current directory or exec path */
2767static char *find_script(const char *script)
2768{
2769 char path[PATH_MAX];
2770
2771 if (!scripting_ops) {
2772 const char *ext = strrchr(script, '.');
2773
2774 if (!ext)
2775 return NULL;
2776
2777 scripting_ops = script_spec__lookup(++ext);
2778 if (!scripting_ops)
2779 return NULL;
2780 }
2781
2782 if (access(script, R_OK)) {
2783 char *exec_path = get_argv_exec_path();
2784
2785 if (!exec_path)
2786 return NULL;
2787 snprintf(path, sizeof(path), "%s/scripts/%s/%s",
2788 exec_path, scripting_ops->dirname, script);
2789 free(exec_path);
2790 script = path;
2791 if (access(script, R_OK))
2792 return NULL;
2793 }
2794 return strdup(script);
2795}
2796
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002797static int parse_scriptname(const struct option *opt __maybe_unused,
2798 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002799{
2800 char spec[PATH_MAX];
2801 const char *script, *ext;
2802 int len;
2803
Tom Zanussif526d682010-01-27 02:27:52 -06002804 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002805 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002806 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002807 }
2808
2809 script = strchr(str, ':');
2810 if (script) {
2811 len = script - str;
2812 if (len >= PATH_MAX) {
2813 fprintf(stderr, "invalid language specifier");
2814 return -1;
2815 }
2816 strncpy(spec, str, len);
2817 spec[len] = '\0';
2818 scripting_ops = script_spec__lookup(spec);
2819 if (!scripting_ops) {
2820 fprintf(stderr, "invalid language specifier");
2821 return -1;
2822 }
2823 script++;
2824 } else {
2825 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002826 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002827 if (!ext) {
2828 fprintf(stderr, "invalid script extension");
2829 return -1;
2830 }
2831 scripting_ops = script_spec__lookup(++ext);
2832 if (!scripting_ops) {
2833 fprintf(stderr, "invalid script extension");
2834 return -1;
2835 }
2836 }
2837
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03002838 script_name = find_script(script);
2839 if (!script_name)
2840 script_name = strdup(script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002841
2842 return 0;
2843}
2844
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002845static int parse_output_fields(const struct option *opt __maybe_unused,
2846 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002847{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002848 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002849 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002850 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002851 int rc = 0;
2852 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002853 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002854 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002855
2856 if (!str)
2857 return -ENOMEM;
2858
David Ahern2c9e45f72011-03-17 10:03:21 -06002859 /* first word can state for which event type the user is specifying
2860 * the fields. If no type exists, the specified fields apply to all
2861 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002862 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002863 tok = strchr(str, ':');
2864 if (tok) {
2865 *tok = '\0';
2866 tok++;
2867 if (!strcmp(str, "hw"))
2868 type = PERF_TYPE_HARDWARE;
2869 else if (!strcmp(str, "sw"))
2870 type = PERF_TYPE_SOFTWARE;
2871 else if (!strcmp(str, "trace"))
2872 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002873 else if (!strcmp(str, "raw"))
2874 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002875 else if (!strcmp(str, "break"))
2876 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002877 else if (!strcmp(str, "synth"))
2878 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002879 else {
2880 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002881 rc = -EINVAL;
2882 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002883 }
2884
2885 if (output[type].user_set)
2886 pr_warning("Overriding previous field request for %s events.\n",
2887 event_type(type));
2888
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002889 /* Don't override defaults for +- */
2890 if (strchr(tok, '+') || strchr(tok, '-'))
2891 goto parse;
2892
David Ahern2c9e45f72011-03-17 10:03:21 -06002893 output[type].fields = 0;
2894 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002895 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002896
2897 } else {
2898 tok = str;
2899 if (strlen(str) == 0) {
2900 fprintf(stderr,
2901 "Cannot set fields to 'none' for all event types.\n");
2902 rc = -EINVAL;
2903 goto out;
2904 }
2905
Andi Kleen36ce5652017-06-02 08:48:10 -07002906 /* Don't override defaults for +- */
2907 if (strchr(str, '+') || strchr(str, '-'))
2908 goto parse;
2909
David Ahern2c9e45f72011-03-17 10:03:21 -06002910 if (output_set_by_user())
2911 pr_warning("Overriding previous field request for all events.\n");
2912
Adrian Hunter14057202017-06-21 13:17:19 +03002913 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002914 output[j].fields = 0;
2915 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002916 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002917 }
David Ahern1424dc92011-03-09 22:23:28 -07002918 }
2919
Andi Kleen36ce5652017-06-02 08:48:10 -07002920parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002921 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002922 if (*tok == '+') {
2923 if (change == SET)
2924 goto out_badmix;
2925 change = ADD;
2926 tok++;
2927 } else if (*tok == '-') {
2928 if (change == SET)
2929 goto out_badmix;
2930 change = REMOVE;
2931 tok++;
2932 } else {
2933 if (change != SET && change != DEFAULT)
2934 goto out_badmix;
2935 change = SET;
2936 }
2937
David Ahern745f43e2011-03-09 22:23:26 -07002938 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002939 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002940 break;
David Ahern745f43e2011-03-09 22:23:26 -07002941 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002942 if (i == imax && strcmp(tok, "flags") == 0) {
Yang Li85247112021-02-08 16:45:36 +08002943 print_flags = change != REMOVE;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002944 continue;
2945 }
David Ahern745f43e2011-03-09 22:23:26 -07002946 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002947 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002948 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002949 goto out;
2950 }
2951
2952 if (type == -1) {
2953 /* add user option to all events types for
2954 * which it is valid
2955 */
Adrian Hunter14057202017-06-21 13:17:19 +03002956 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002957 if (output[j].invalid_fields & all_output_options[i].field) {
2958 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2959 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002960 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002961 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002962 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002963 output[j].user_set_fields &= ~all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002964 output[j].user_unset_fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002965 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002966 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002967 output[j].user_set_fields |= all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002968 output[j].user_unset_fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002969 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002970 output[j].user_set = true;
2971 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002972 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002973 }
2974 } else {
2975 if (output[type].invalid_fields & all_output_options[i].field) {
2976 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2977 all_output_options[i].str, event_type(type));
2978
2979 rc = -EINVAL;
2980 goto out;
2981 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002982 if (change == REMOVE)
2983 output[type].fields &= ~all_output_options[i].field;
2984 else
2985 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002986 output[type].user_set = true;
2987 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002988 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002989 }
2990
2991 if (type >= 0) {
2992 if (output[type].fields == 0) {
2993 pr_debug("No fields requested for %s type. "
2994 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002995 }
David Ahern1424dc92011-03-09 22:23:28 -07002996 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002997 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002998
Andi Kleen36ce5652017-06-02 08:48:10 -07002999out_badmix:
3000 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
3001 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06003002out:
David Ahern745f43e2011-03-09 22:23:26 -07003003 free(str);
3004 return rc;
3005}
3006
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003007#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
3008 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
3009 if ((lang_dirent->d_type == DT_DIR || \
3010 (lang_dirent->d_type == DT_UNKNOWN && \
3011 is_directory(scripts_path, lang_dirent))) && \
3012 (strcmp(lang_dirent->d_name, ".")) && \
3013 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003014
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003015#define for_each_script(lang_path, lang_dir, script_dirent) \
3016 while ((script_dirent = readdir(lang_dir)) != NULL) \
3017 if (script_dirent->d_type != DT_DIR && \
3018 (script_dirent->d_type != DT_UNKNOWN || \
3019 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003020
3021
3022#define RECORD_SUFFIX "-record"
3023#define REPORT_SUFFIX "-report"
3024
3025struct script_desc {
3026 struct list_head node;
3027 char *name;
3028 char *half_liner;
3029 char *args;
3030};
3031
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02003032static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003033
3034static struct script_desc *script_desc__new(const char *name)
3035{
3036 struct script_desc *s = zalloc(sizeof(*s));
3037
Tom Zanussib5b87312010-11-10 08:16:51 -06003038 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003039 s->name = strdup(name);
3040
3041 return s;
3042}
3043
3044static void script_desc__delete(struct script_desc *s)
3045{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03003046 zfree(&s->name);
3047 zfree(&s->half_liner);
3048 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003049 free(s);
3050}
3051
3052static void script_desc__add(struct script_desc *s)
3053{
3054 list_add_tail(&s->node, &script_descs);
3055}
3056
3057static struct script_desc *script_desc__find(const char *name)
3058{
3059 struct script_desc *s;
3060
3061 list_for_each_entry(s, &script_descs, node)
3062 if (strcasecmp(s->name, name) == 0)
3063 return s;
3064 return NULL;
3065}
3066
3067static struct script_desc *script_desc__findnew(const char *name)
3068{
3069 struct script_desc *s = script_desc__find(name);
3070
3071 if (s)
3072 return s;
3073
3074 s = script_desc__new(name);
3075 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03003076 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003077
3078 script_desc__add(s);
3079
3080 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003081}
3082
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003083static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003084{
3085 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003086 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003087
3088 if (strlen(str) > suffix_len) {
3089 p = str + strlen(str) - suffix_len;
3090 if (!strncmp(p, suffix, suffix_len))
3091 return p;
3092 }
3093
3094 return NULL;
3095}
3096
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003097static int read_script_info(struct script_desc *desc, const char *filename)
3098{
3099 char line[BUFSIZ], *p;
3100 FILE *fp;
3101
3102 fp = fopen(filename, "r");
3103 if (!fp)
3104 return -1;
3105
3106 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003107 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003108 if (strlen(p) == 0)
3109 continue;
3110 if (*p != '#')
3111 continue;
3112 p++;
3113 if (strlen(p) && *p == '!')
3114 continue;
3115
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003116 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003117 if (strlen(p) && p[strlen(p) - 1] == '\n')
3118 p[strlen(p) - 1] = '\0';
3119
3120 if (!strncmp(p, "description:", strlen("description:"))) {
3121 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003122 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003123 continue;
3124 }
3125
3126 if (!strncmp(p, "args:", strlen("args:"))) {
3127 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003128 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003129 continue;
3130 }
3131 }
3132
3133 fclose(fp);
3134
3135 return 0;
3136}
3137
Robert Richter38efb532011-11-25 11:38:40 +01003138static char *get_script_root(struct dirent *script_dirent, const char *suffix)
3139{
3140 char *script_root, *str;
3141
3142 script_root = strdup(script_dirent->d_name);
3143 if (!script_root)
3144 return NULL;
3145
3146 str = (char *)ends_with(script_root, suffix);
3147 if (!str) {
3148 free(script_root);
3149 return NULL;
3150 }
3151
3152 *str = '\0';
3153 return script_root;
3154}
3155
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003156static int list_available_scripts(const struct option *opt __maybe_unused,
3157 const char *s __maybe_unused,
3158 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003159{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003160 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003161 char scripts_path[MAXPATHLEN];
3162 DIR *scripts_dir, *lang_dir;
3163 char script_path[MAXPATHLEN];
3164 char lang_path[MAXPATHLEN];
3165 struct script_desc *desc;
3166 char first_half[BUFSIZ];
3167 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003168
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003169 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003170
3171 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003172 if (!scripts_dir) {
3173 fprintf(stdout,
3174 "open(%s) failed.\n"
3175 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3176 scripts_path);
3177 exit(-1);
3178 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003179
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003180 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003181 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3182 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003183 lang_dir = opendir(lang_path);
3184 if (!lang_dir)
3185 continue;
3186
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003187 for_each_script(lang_path, lang_dir, script_dirent) {
3188 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003189 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003190 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003191 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3192 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003193 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003194 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003195 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003196 }
3197 }
3198
3199 fprintf(stdout, "List of available trace scripts:\n");
3200 list_for_each_entry(desc, &script_descs, node) {
3201 sprintf(first_half, "%s %s", desc->name,
3202 desc->args ? desc->args : "");
3203 fprintf(stdout, " %-36s %s\n", first_half,
3204 desc->half_liner ? desc->half_liner : "");
3205 }
3206
3207 exit(0);
3208}
3209
Adrian Hunter3d032a22021-06-27 16:18:12 +03003210static int add_dlarg(const struct option *opt __maybe_unused,
3211 const char *s, int unset __maybe_unused)
3212{
3213 char *arg = strdup(s);
3214 void *a;
3215
3216 if (!arg)
3217 return -1;
3218
3219 a = realloc(dlargv, sizeof(dlargv[0]) * (dlargc + 1));
3220 if (!a) {
3221 free(arg);
3222 return -1;
3223 }
3224
3225 dlargv = a;
3226 dlargv[dlargc++] = arg;
3227
3228 return 0;
3229}
3230
3231static void free_dlarg(void)
3232{
3233 while (dlargc--)
3234 free(dlargv[dlargc]);
3235 free(dlargv);
3236}
3237
Feng Tange5f37052012-09-07 16:42:26 +08003238/*
Feng Tang49e639e2012-10-30 11:56:03 +08003239 * Some scripts specify the required events in their "xxx-record" file,
3240 * this function will check if the events in perf.data match those
3241 * mentioned in the "xxx-record".
3242 *
3243 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3244 * which is covered well now. And new parsing code should be added to
Ingo Molnar4d39c892021-03-23 17:09:15 +01003245 * cover the future complex formats like event groups etc.
Feng Tang49e639e2012-10-30 11:56:03 +08003246 */
3247static int check_ev_match(char *dir_name, char *scriptname,
3248 struct perf_session *session)
3249{
3250 char filename[MAXPATHLEN], evname[128];
3251 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003252 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003253 int match, len;
3254 FILE *fp;
3255
Jiri Olsa77f18152018-03-19 09:29:01 +01003256 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003257
3258 fp = fopen(filename, "r");
3259 if (!fp)
3260 return -1;
3261
3262 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003263 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003264 if (*p == '#')
3265 continue;
3266
3267 while (strlen(p)) {
3268 p = strstr(p, "-e");
3269 if (!p)
3270 break;
3271
3272 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003273 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003274 len = strcspn(p, " \t");
3275 if (!len)
3276 break;
3277
3278 snprintf(evname, len + 1, "%s", p);
3279
3280 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003281 evlist__for_each_entry(session->evlist, pos) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03003282 if (!strcmp(evsel__name(pos), evname)) {
Feng Tang49e639e2012-10-30 11:56:03 +08003283 match = 1;
3284 break;
3285 }
3286 }
3287
3288 if (!match) {
3289 fclose(fp);
3290 return -1;
3291 }
3292 }
3293 }
3294
3295 fclose(fp);
3296 return 0;
3297}
3298
3299/*
Feng Tange5f37052012-09-07 16:42:26 +08003300 * Return -1 if none is found, otherwise the actual scripts number.
3301 *
3302 * Currently the only user of this function is the script browser, which
3303 * will list all statically runnable scripts, select one, execute it and
3304 * show the output in a perf browser.
3305 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003306int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3307 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003308{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003309 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003310 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003311 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003312 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003313 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003314 .path = input_name,
3315 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003316 };
Feng Tange5f37052012-09-07 16:42:26 +08003317 char *temp;
3318 int i = 0;
3319
Namhyung Kim2681bd82021-07-19 15:31:49 -07003320 session = perf_session__new(&data, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303321 if (IS_ERR(session))
3322 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003323
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003324 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003325
3326 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003327 if (!scripts_dir) {
3328 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003329 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003330 }
Feng Tange5f37052012-09-07 16:42:26 +08003331
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003332 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003333 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3334 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003335#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003336 if (strstr(lang_path, "perl"))
3337 continue;
3338#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003339#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003340 if (strstr(lang_path, "python"))
3341 continue;
3342#endif
3343
3344 lang_dir = opendir(lang_path);
3345 if (!lang_dir)
3346 continue;
3347
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003348 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08003349 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003350 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003351 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003352 if (i >= num)
3353 break;
3354 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3355 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003356 script_dirent->d_name);
3357 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003358 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003359 (temp - script_dirent->d_name) + 1,
3360 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003361
3362 if (check_ev_match(lang_path,
3363 scripts_array[i], session))
3364 continue;
3365
Feng Tange5f37052012-09-07 16:42:26 +08003366 i++;
3367 }
Feng Tang49e639e2012-10-30 11:56:03 +08003368 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003369 }
3370
Feng Tang49e639e2012-10-30 11:56:03 +08003371 closedir(scripts_dir);
3372 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003373 return i;
3374}
3375
Tom Zanussi38752942009-12-15 02:53:39 -06003376static char *get_script_path(const char *script_root, const char *suffix)
3377{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003378 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003379 char scripts_path[MAXPATHLEN];
3380 char script_path[MAXPATHLEN];
3381 DIR *scripts_dir, *lang_dir;
3382 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003383 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003384
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003385 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003386
3387 scripts_dir = opendir(scripts_path);
3388 if (!scripts_dir)
3389 return NULL;
3390
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003391 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003392 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3393 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003394 lang_dir = opendir(lang_path);
3395 if (!lang_dir)
3396 continue;
3397
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003398 for_each_script(lang_path, lang_dir, script_dirent) {
3399 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003400 if (__script_root && !strcmp(script_root, __script_root)) {
3401 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003402 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003403 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3404 lang_path, script_dirent->d_name);
Andreas Gerstmayr27486a82020-04-02 14:43:38 +02003405 closedir(lang_dir);
Robert Richter38efb532011-11-25 11:38:40 +01003406 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003407 }
3408 free(__script_root);
3409 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003410 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003411 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003412 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003413
Robert Richter38efb532011-11-25 11:38:40 +01003414 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003415}
3416
Tom Zanussib5b87312010-11-10 08:16:51 -06003417static bool is_top_script(const char *script_path)
3418{
Yang Li85247112021-02-08 16:45:36 +08003419 return ends_with(script_path, "top") != NULL;
Tom Zanussib5b87312010-11-10 08:16:51 -06003420}
3421
3422static int has_required_arg(char *script_path)
3423{
3424 struct script_desc *desc;
3425 int n_args = 0;
3426 char *p;
3427
3428 desc = script_desc__new(NULL);
3429
3430 if (read_script_info(desc, script_path))
3431 goto out;
3432
3433 if (!desc->args)
3434 goto out;
3435
3436 for (p = desc->args; *p; p++)
3437 if (*p == '<')
3438 n_args++;
3439out:
3440 script_desc__delete(desc);
3441
3442 return n_args;
3443}
3444
David Ahernd54b1a92012-08-26 12:24:46 -06003445static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003446{
3447 char **__argv = malloc(sizeof(const char *) * argc);
3448
David Ahernd54b1a92012-08-26 12:24:46 -06003449 if (!__argv) {
3450 pr_err("malloc failed\n");
3451 return -1;
3452 }
3453
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003454 memcpy(__argv, argv, sizeof(const char *) * argc);
3455 argc = parse_options(argc, (const char **)__argv, record_options,
3456 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3457 free(__argv);
3458
David Ahernd54b1a92012-08-26 12:24:46 -06003459 system_wide = (argc == 0);
3460
3461 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003462}
3463
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003464static void script__setup_sample_type(struct perf_script *script)
3465{
3466 struct perf_session *session = script->session;
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03003467 u64 sample_type = evlist__combined_sample_type(session->evlist);
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003468
3469 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3470 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003471 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003472 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003473 dwarf_callchain_users = true;
3474 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003475 callchain_param.record_mode = CALLCHAIN_LBR;
3476 else
3477 callchain_param.record_mode = CALLCHAIN_FP;
3478 }
Kan Liang680d1252020-03-19 13:25:14 -07003479
3480 if (script->stitch_lbr && (callchain_param.record_mode != CALLCHAIN_LBR)) {
3481 pr_warning("Can't find LBR callchain. Switch off --stitch-lbr.\n"
3482 "Please apply --call-graph lbr when recording.\n");
3483 script->stitch_lbr = false;
3484 }
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003485}
3486
Jiri Olsa89f16882018-09-13 14:54:03 +02003487static int process_stat_round_event(struct perf_session *session,
3488 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003489{
Jiri Olsa72932372019-08-28 15:57:16 +02003490 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003491 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003492
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003493 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003494 perf_stat_process_counter(&stat_config, counter);
3495 process_stat(counter, round->time);
3496 }
3497
3498 process_stat_interval(round->time);
3499 return 0;
3500}
3501
Jiri Olsa89f16882018-09-13 14:54:03 +02003502static int process_stat_config_event(struct perf_session *session __maybe_unused,
3503 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003504{
3505 perf_event__read_stat_config(&stat_config, &event->stat_config);
3506 return 0;
3507}
3508
Jiri Olsacfc88742016-01-05 22:09:06 +01003509static int set_maps(struct perf_script *script)
3510{
Jiri Olsa63503db2019-07-21 13:23:52 +02003511 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003512
3513 if (!script->cpus || !script->threads)
3514 return 0;
3515
3516 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3517 return -EINVAL;
3518
Jiri Olsa453fa032019-07-21 13:24:43 +02003519 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003520
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003521 if (evlist__alloc_stats(evlist, true))
Jiri Olsacfc88742016-01-05 22:09:06 +01003522 return -ENOMEM;
3523
3524 script->allocated = true;
3525 return 0;
3526}
3527
3528static
Jiri Olsa89f16882018-09-13 14:54:03 +02003529int process_thread_map_event(struct perf_session *session,
3530 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003531{
Jiri Olsa89f16882018-09-13 14:54:03 +02003532 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003533 struct perf_script *script = container_of(tool, struct perf_script, tool);
3534
3535 if (script->threads) {
3536 pr_warning("Extra thread map event, ignoring.\n");
3537 return 0;
3538 }
3539
3540 script->threads = thread_map__new_event(&event->thread_map);
3541 if (!script->threads)
3542 return -ENOMEM;
3543
3544 return set_maps(script);
3545}
3546
3547static
Jiri Olsa89f16882018-09-13 14:54:03 +02003548int process_cpu_map_event(struct perf_session *session,
3549 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003550{
Jiri Olsa89f16882018-09-13 14:54:03 +02003551 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003552 struct perf_script *script = container_of(tool, struct perf_script, tool);
3553
3554 if (script->cpus) {
3555 pr_warning("Extra cpu map event, ignoring.\n");
3556 return 0;
3557 }
3558
3559 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3560 if (!script->cpus)
3561 return -ENOMEM;
3562
3563 return set_maps(script);
3564}
3565
Jiri Olsa89f16882018-09-13 14:54:03 +02003566static int process_feature_event(struct perf_session *session,
3567 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303568{
3569 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003570 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303571 return 0;
3572}
3573
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003574#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003575static int perf_script__process_auxtrace_info(struct perf_session *session,
3576 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003577{
Jiri Olsa89f16882018-09-13 14:54:03 +02003578 struct perf_tool *tool = session->tool;
3579
3580 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003581
3582 if (ret == 0) {
3583 struct perf_script *script = container_of(tool, struct perf_script, tool);
3584
3585 ret = perf_script__setup_per_event_dump(script);
3586 }
3587
3588 return ret;
3589}
3590#else
3591#define perf_script__process_auxtrace_info 0
3592#endif
3593
Andi Kleenb585ebd2018-09-20 11:05:36 -07003594static int parse_insn_trace(const struct option *opt __maybe_unused,
3595 const char *str __maybe_unused,
3596 int unset __maybe_unused)
3597{
3598 parse_output_fields(NULL, "+insn,-event,-period", 0);
3599 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003600 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003601 return 0;
3602}
3603
3604static int parse_xed(const struct option *opt __maybe_unused,
3605 const char *str __maybe_unused,
3606 int unset __maybe_unused)
3607{
Andi Kleen8c3e05c2020-05-21 19:09:14 -07003608 if (isatty(1))
3609 force_pager("xed -F insn: -A -64 | less");
3610 else
3611 force_pager("xed -F insn: -A -64");
Andi Kleenb585ebd2018-09-20 11:05:36 -07003612 return 0;
3613}
3614
Andi Kleend1b15522018-09-20 11:05:38 -07003615static int parse_call_trace(const struct option *opt __maybe_unused,
3616 const char *str __maybe_unused,
3617 int unset __maybe_unused)
3618{
3619 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3620 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003621 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003622 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003623 return 0;
3624}
3625
3626static int parse_callret_trace(const struct option *opt __maybe_unused,
3627 const char *str __maybe_unused,
3628 int unset __maybe_unused)
3629{
3630 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3631 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003632 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003633 return 0;
3634}
3635
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003636int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003637{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003638 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003639 bool header = false;
3640 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003641 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003642 char *rec_script_path = NULL;
3643 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003644 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003645 struct itrace_synth_opts itrace_synth_opts = {
3646 .set = false,
3647 .default_no_sample = true,
3648 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003649 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003650 char *script_path = NULL;
Adrian Hunter291961f2021-06-27 16:18:09 +03003651 const char *dlfilter_file = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003652 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003653 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003654 struct perf_script script = {
3655 .tool = {
3656 .sample = process_sample_event,
3657 .mmap = perf_event__process_mmap,
3658 .mmap2 = perf_event__process_mmap2,
3659 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303660 .namespaces = perf_event__process_namespaces,
Namhyung Kim160d4af2020-03-25 21:45:36 +09003661 .cgroup = perf_event__process_cgroup,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003662 .exit = perf_event__process_exit,
3663 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003664 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003665 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003666 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303667 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003668 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003669 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003670 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003671 .auxtrace = perf_event__process_auxtrace,
3672 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003673 .stat = perf_event__process_stat_event,
3674 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003675 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003676 .thread_map = process_thread_map_event,
3677 .cpu_map = process_cpu_map_event,
Stephen Brennan538d9c12021-09-01 14:08:15 -07003678 .throttle = process_throttle_event,
3679 .unthrottle = process_throttle_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003680 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003681 .ordering_requires_timestamps = true,
3682 },
3683 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003684 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003685 .mode = PERF_DATA_MODE_READ,
3686 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003687 const struct option options[] = {
3688 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3689 "dump raw trace in ASCII"),
3690 OPT_INCR('v', "verbose", &verbose,
3691 "be more verbose (show symbol address, etc)"),
3692 OPT_BOOLEAN('L', "Latency", &latency_format,
3693 "show latency attributes (irqs/preemption disabled, etc)"),
3694 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3695 list_available_scripts),
Adrian Hunter638e2b92021-06-27 16:18:11 +03003696 OPT_CALLBACK_NOOPT(0, "list-dlfilters", NULL, NULL, "list available dlfilters",
3697 list_available_dlfilters),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003698 OPT_CALLBACK('s', "script", NULL, "name",
3699 "script file name (lang:script name, script name, or *)",
3700 parse_scriptname),
3701 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3702 "generate perf-script.xx script in specified language"),
Adrian Hunter291961f2021-06-27 16:18:09 +03003703 OPT_STRING(0, "dlfilter", &dlfilter_file, "file", "filter .so file name"),
Adrian Hunter3d032a22021-06-27 16:18:12 +03003704 OPT_CALLBACK(0, "dlarg", NULL, "argument", "filter argument",
3705 add_dlarg),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003706 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3707 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3708 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003709 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3710 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003711 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3712 "file", "vmlinux pathname"),
3713 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3714 "file", "kallsyms pathname"),
3715 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3716 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003717 OPT_CALLBACK(0, "symfs", NULL, "directory",
3718 "Look for files with symbols relative to this directory",
3719 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003720 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003721 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003722 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003723 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003724 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303725 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3726 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Kan Liang6b9bae62020-12-16 10:57:57 -08003727 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc,tod,"
Kan Liang6ea5d1a2021-09-29 08:38:14 -07003728 "data_page_size,code_page_size,ins_lat",
Andi Kleen48d02a12017-02-23 15:46:34 -08003729 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003730 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3731 "system-wide collection from all CPUs"),
Jin Yao4b799a92021-01-25 07:27:50 +08003732 OPT_STRING(0, "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
3733 "only consider symbols in these DSOs"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003734 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3735 "only consider these symbols"),
Jin Yao61d9fc42021-02-07 16:09:35 +08003736 OPT_INTEGER(0, "addr-range", &symbol_conf.addr_range,
3737 "Use with -S to list traced records within address range"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003738 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3739 "Decode instructions from itrace", parse_insn_trace),
3740 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3741 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003742 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3743 "Decode calls from from itrace", parse_call_trace),
3744 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3745 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003746 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3747 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003748 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3749 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003750 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3751 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3752 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003753 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3754 "only consider symbols in these pids"),
3755 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3756 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003757 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3758 "Set the maximum stack depth when parsing the callchain, "
3759 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003760 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003761 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003762 OPT_BOOLEAN(0, "deltatime", &deltatime, "Show time stamps relative to previous event"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003763 OPT_BOOLEAN('I', "show-info", &show_full_info,
3764 "display extended information from perf.data file"),
3765 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3766 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003767 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3768 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003769 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3770 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003771 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3772 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303773 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3774 "Show namespace events (if recorded)"),
Namhyung Kim160d4af2020-03-25 21:45:36 +09003775 OPT_BOOLEAN('\0', "show-cgroup-events", &script.show_cgroup_events,
3776 "Show cgroup events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003777 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3778 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003779 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3780 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003781 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3782 "Show bpf related events (if recorded)"),
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03003783 OPT_BOOLEAN('\0', "show-text-poke-events", &script.show_text_poke_events,
3784 "Show text poke related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003785 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3786 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003787 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003788 OPT_INTEGER(0, "max-blocks", &max_blocks,
3789 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003790 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003791 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003792 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003793 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003794 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003795 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3796 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003797 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3798 "Enable symbol demangling"),
3799 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3800 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003801 OPT_STRING(0, "time", &script.time_str, "str",
3802 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003803 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3804 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003805 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3806 "guest mount directory under which every guest os"
3807 " instance has a subdir"),
3808 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3809 "file", "file saving guest os vmlinux"),
3810 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3811 "file", "file saving guest os /proc/kallsyms"),
3812 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3813 "file", "file saving guest os /proc/modules"),
Kan Liang680d1252020-03-19 13:25:14 -07003814 OPT_BOOLEAN('\0', "stitch-lbr", &script.stitch_lbr,
3815 "Enable LBR callgraph stitching approach"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003816 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003817 OPT_END()
3818 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003819 const char * const script_subcommands[] = { "record", "report", NULL };
3820 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003821 "perf script [<options>]",
3822 "perf script [<options>] record <script> [<record-options>] <command>",
3823 "perf script [<options>] report <script> [script-args]",
3824 "perf script [<options>] <script> [<record-options>] <command>",
3825 "perf script [<options>] <top-script> [script-args]",
3826 NULL
3827 };
Tom Zanussi38752942009-12-15 02:53:39 -06003828
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003829 perf_set_singlethreaded();
3830
Tom Zanussib5b87312010-11-10 08:16:51 -06003831 setup_scripting();
3832
Yunlong Song40cae2b2015-03-18 21:35:54 +08003833 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003834 PARSE_OPT_STOP_AT_NON_OPTION);
3835
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003836 if (symbol_conf.guestmount ||
3837 symbol_conf.default_guest_vmlinux_name ||
3838 symbol_conf.default_guest_kallsyms ||
3839 symbol_conf.default_guest_modules) {
3840 /*
3841 * Enable guest sample processing.
3842 */
3843 perf_guest = true;
3844 }
3845
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003846 data.path = input_name;
3847 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003848
James Clark7cc72552021-10-18 14:48:42 +01003849 if (symbol__validate_sym_arguments())
3850 return -1;
3851
Tom Zanussib5b87312010-11-10 08:16:51 -06003852 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3853 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3854 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003855 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003856 }
3857
Tom Zanussib5b87312010-11-10 08:16:51 -06003858 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3859 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3860 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003861 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003862 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003863 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003864 return -1;
3865 }
Tom Zanussi38752942009-12-15 02:53:39 -06003866 }
3867
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003868 if (reltime && deltatime) {
3869 fprintf(stderr,
3870 "reltime and deltatime - the two don't get along well. "
3871 "Please limit to --reltime or --deltatime.\n");
3872 return -1;
3873 }
3874
Adrian Hunter1c5c25b2020-04-01 13:16:05 +03003875 if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003876 itrace_synth_opts.callchain_sz > scripting_max_stack)
3877 scripting_max_stack = itrace_synth_opts.callchain_sz;
3878
Ben Hutchings44e668c2010-10-10 16:10:03 +01003879 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003880 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003881
Tom Zanussib5b87312010-11-10 08:16:51 -06003882 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003883 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003884 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003885 pid_t pid;
3886
Tom Zanussib5b87312010-11-10 08:16:51 -06003887 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3888 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3889
3890 if (!rec_script_path && !rep_script_path) {
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03003891 script_name = find_script(argv[0]);
3892 if (script_name) {
3893 argc -= 1;
3894 argv += 1;
3895 goto script_found;
3896 }
Namhyung Kimc7118362015-10-25 00:49:27 +09003897 usage_with_options_msg(script_usage, options,
3898 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003899 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003900 }
3901
Tom Zanussib5b87312010-11-10 08:16:51 -06003902 if (is_top_script(argv[0])) {
3903 rep_args = argc - 1;
3904 } else {
3905 int rec_args;
3906
3907 rep_args = has_required_arg(rep_script_path);
3908 rec_args = (argc - 1) - rep_args;
3909 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003910 usage_with_options_msg(script_usage, options,
3911 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003912 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003913 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003914 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003915 }
3916
3917 if (pipe(live_pipe) < 0) {
3918 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003919 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003920 }
3921
3922 pid = fork();
3923 if (pid < 0) {
3924 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003925 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003926 }
3927
3928 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003929 j = 0;
3930
Tom Zanussia0cccc22010-04-01 23:59:25 -05003931 dup2(live_pipe[1], 1);
3932 close(live_pipe[0]);
3933
Robert Richter317df652011-11-25 15:05:25 +01003934 if (is_top_script(argv[0])) {
3935 system_wide = true;
3936 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003937 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3938 err = -1;
3939 goto out;
3940 }
Robert Richter317df652011-11-25 15:05:25 +01003941 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003942
3943 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003944 if (!__argv) {
3945 pr_err("malloc failed\n");
3946 err = -ENOMEM;
3947 goto out;
3948 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003949
Tom Zanussib5b87312010-11-10 08:16:51 -06003950 __argv[j++] = "/bin/sh";
3951 __argv[j++] = rec_script_path;
3952 if (system_wide)
3953 __argv[j++] = "-a";
3954 __argv[j++] = "-q";
3955 __argv[j++] = "-o";
3956 __argv[j++] = "-";
3957 for (i = rep_args + 1; i < argc; i++)
3958 __argv[j++] = argv[i];
3959 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003960
3961 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003962 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003963 exit(-1);
3964 }
3965
3966 dup2(live_pipe[0], 0);
3967 close(live_pipe[1]);
3968
Tom Zanussib5b87312010-11-10 08:16:51 -06003969 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003970 if (!__argv) {
3971 pr_err("malloc failed\n");
3972 err = -ENOMEM;
3973 goto out;
3974 }
3975
Tom Zanussib5b87312010-11-10 08:16:51 -06003976 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003977 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003978 __argv[j++] = rep_script_path;
3979 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003980 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003981 __argv[j++] = "-i";
3982 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003983 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003984
3985 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003986 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003987 exit(-1);
3988 }
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03003989script_found:
Tom Zanussib5b87312010-11-10 08:16:51 -06003990 if (rec_script_path)
3991 script_path = rec_script_path;
3992 if (rep_script_path)
3993 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003994
Tom Zanussib5b87312010-11-10 08:16:51 -06003995 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003996 j = 0;
3997
Robert Richter317df652011-11-25 15:05:25 +01003998 if (!rec_script_path)
3999 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06004000 else if (!system_wide) {
4001 if (have_cmd(argc - 1, &argv[1]) != 0) {
4002 err = -1;
4003 goto out;
4004 }
4005 }
Tom Zanussib5b87312010-11-10 08:16:51 -06004006
4007 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06004008 if (!__argv) {
4009 pr_err("malloc failed\n");
4010 err = -ENOMEM;
4011 goto out;
4012 }
4013
Tom Zanussib5b87312010-11-10 08:16:51 -06004014 __argv[j++] = "/bin/sh";
4015 __argv[j++] = script_path;
4016 if (system_wide)
4017 __argv[j++] = "-a";
4018 for (i = 2; i < argc; i++)
4019 __argv[j++] = argv[i];
4020 __argv[j++] = NULL;
4021
4022 execvp("/bin/sh", (char **)__argv);
4023 free(__argv);
4024 exit(-1);
4025 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004026
Adrian Hunter291961f2021-06-27 16:18:09 +03004027 if (dlfilter_file) {
Adrian Hunter3d032a22021-06-27 16:18:12 +03004028 dlfilter = dlfilter__new(dlfilter_file, dlargc, dlargv);
Adrian Hunter291961f2021-06-27 16:18:09 +03004029 if (!dlfilter)
4030 return -1;
4031 }
4032
Milian Wolffc1c9b962018-10-21 21:14:23 +02004033 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06004034 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02004035 use_browser = 0;
4036 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004037
Namhyung Kim2681bd82021-07-19 15:31:49 -07004038 session = perf_session__new(&data, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05304039 if (IS_ERR(session))
4040 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02004041
Jiri Olsae90debd2013-12-09 11:02:50 +01004042 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07004043 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01004044 perf_session__fprintf_info(session, stdout, show_full_info);
4045 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004046 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01004047 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07004048 if (show_full_info)
4049 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01004050
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09004051 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09004052 goto out_delete;
4053
Andi Kleen3ab481a2019-03-05 06:47:45 -08004054 uname(&uts);
Song Liu29c77552021-10-03 22:32:38 -07004055 if (data.is_pipe) { /* Assume pipe_mode indicates native_arch */
Andi Kleen3ab481a2019-03-05 06:47:45 -08004056 native_arch = true;
Song Liu29c77552021-10-03 22:32:38 -07004057 } else if (session->header.env.arch) {
4058 if (!strcmp(uts.machine, session->header.env.arch))
4059 native_arch = true;
4060 else if (!strcmp(uts.machine, "x86_64") &&
4061 !strcmp(session->header.env.arch, "i386"))
4062 native_arch = true;
4063 }
Andi Kleen3ab481a2019-03-05 06:47:45 -08004064
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03004065 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02004066 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03004067
Andi Kleen99f753f2018-09-20 11:05:39 -07004068 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
4069 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03004070 itrace_synth_opts.thread_stack = true;
4071
Adrian Hunter7a680eb2015-04-09 18:53:56 +03004072 session->itrace_synth_opts = &itrace_synth_opts;
4073
Anton Blanchard5d67be92011-07-04 21:57:50 +10004074 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004075 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
4076 if (err < 0)
4077 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03004078 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10004079 }
4080
David Ahern1424dc92011-03-09 22:23:28 -07004081 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07004082 symbol_conf.use_callchain = true;
4083 else
4084 symbol_conf.use_callchain = false;
4085
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03004086 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04004087 tep_set_function_resolver(session->tevent.pevent,
4088 machine__resolve_kernel_addr,
4089 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03004090 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02004091 err = -1;
4092 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03004093 }
4094
Tom Zanussi956ffd02009-11-25 01:15:46 -06004095 if (generate_script_lang) {
4096 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07004097 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004098
David Ahern2c9e45f72011-03-17 10:03:21 -06004099 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07004100 fprintf(stderr,
4101 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004102 err = -EINVAL;
4103 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07004104 }
4105
Jiri Olsa2d4f2792019-02-21 10:41:30 +01004106 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06004107 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004108 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004109 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004110 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004111 }
4112
4113 err = fstat(input, &perf_stat);
4114 if (err < 0) {
4115 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004116 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004117 }
4118
4119 if (!perf_stat.st_size) {
4120 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004121 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004122 }
4123
4124 scripting_ops = script_spec__lookup(generate_script_lang);
4125 if (!scripting_ops) {
4126 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004127 err = -ENOENT;
4128 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004129 }
4130
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004131 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03004132 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004133 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004134 }
4135
Adrian Hunter291961f2021-06-27 16:18:09 +03004136 err = dlfilter__start(dlfilter, session);
4137 if (err)
4138 goto out_delete;
4139
Tom Zanussi956ffd02009-11-25 01:15:46 -06004140 if (script_name) {
Adrian Hunter67e50ce2021-05-30 22:22:59 +03004141 err = scripting_ops->start_script(script_name, argc, argv, session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06004142 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004143 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01004144 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004145 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004146 }
4147
David Ahern9cbdb702011-04-06 21:54:20 -06004148
4149 err = perf_session__check_output_opt(session);
4150 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004151 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06004152
Jin Yao284c4e12019-03-01 18:13:06 +08004153 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07004154 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08004155 &script.ptime_range,
4156 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07004157 &script.range_num,
4158 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08004159 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08004160 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03004161
4162 itrace_synth_opts__set_time_range(&itrace_synth_opts,
4163 script.ptime_range,
4164 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07004165 }
4166
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03004167 err = evswitch__init(&script.evswitch, session->evlist, stderr);
4168 if (err)
4169 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03004170
Milian Wolffb13b04d2020-06-13 01:03:33 +02004171 if (zstd_init(&(session->zstd_data), 0) < 0)
4172 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
4173
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03004174 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06004175
Adrian Hunterd445dd22014-08-15 22:08:37 +03004176 flush_scripting();
4177
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004178out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03004179 if (script.ptime_range) {
4180 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08004181 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03004182 }
Jin Yaocc2ef582018-01-10 23:00:33 +08004183
Riccardo Mancini1b1f57c2021-07-15 18:07:17 +02004184 zstd_fini(&(session->zstd_data));
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03004185 evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02004186 perf_session__delete(session);
Riccardo Mancinifaf3ac32021-07-15 18:07:18 +02004187 perf_script__exit(&script);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004188
4189 if (script_started)
4190 cleanup_scripting();
Adrian Hunter291961f2021-06-27 16:18:09 +03004191 dlfilter__cleanup(dlfilter);
Adrian Hunter3d032a22021-06-27 16:18:12 +03004192 free_dlarg();
Tom Zanussi956ffd02009-11-25 01:15:46 -06004193out:
4194 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004195}