blob: 1280cbfad4db5fbf1c59d97f8a4cb0fea95e567d [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>
Arnaldo Carvalho de Meloaeb00b12019-08-22 15:40:29 -030058#include "util/record.h"
Arnaldo Carvalho de Melo2da39f12019-08-27 11:51:18 -030059#include "util/util.h"
Arnaldo Carvalho de Meloc1a604d2019-08-29 15:20:59 -030060#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020061
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030062#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030063
Tom Zanussi956ffd02009-11-25 01:15:46 -060064static char const *script_name;
65static char const *generate_script_lang;
Andi Kleen90b10f42019-03-14 15:50:00 -070066static bool reltime;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +010067static bool deltatime;
Andi Kleen90b10f42019-03-14 15:50:00 -070068static u64 initial_time;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +010069static u64 previous_time;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020070static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020071static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020072static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070073static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090074static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010075static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030076static bool print_flags;
Anton Blanchard5d67be92011-07-04 21:57:50 +100077static const char *cpu_list;
78static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010079static struct perf_stat_config stat_config;
Andi Kleen48d02a12017-02-23 15:46:34 -080080static int max_blocks;
Andi Kleen3ab481a2019-03-05 06:47:45 -080081static bool native_arch;
Tom Zanussi956ffd02009-11-25 01:15:46 -060082
Adrian Hunter44cbe722015-09-25 16:15:50 +030083unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030084
David Ahern745f43e2011-03-09 22:23:26 -070085enum perf_output_field {
Jiri Olsa60e5eeb2020-08-05 11:34:43 +020086 PERF_OUTPUT_COMM = 1ULL << 0,
87 PERF_OUTPUT_TID = 1ULL << 1,
88 PERF_OUTPUT_PID = 1ULL << 2,
89 PERF_OUTPUT_TIME = 1ULL << 3,
90 PERF_OUTPUT_CPU = 1ULL << 4,
91 PERF_OUTPUT_EVNAME = 1ULL << 5,
92 PERF_OUTPUT_TRACE = 1ULL << 6,
93 PERF_OUTPUT_IP = 1ULL << 7,
94 PERF_OUTPUT_SYM = 1ULL << 8,
95 PERF_OUTPUT_DSO = 1ULL << 9,
96 PERF_OUTPUT_ADDR = 1ULL << 10,
97 PERF_OUTPUT_SYMOFFSET = 1ULL << 11,
98 PERF_OUTPUT_SRCLINE = 1ULL << 12,
99 PERF_OUTPUT_PERIOD = 1ULL << 13,
100 PERF_OUTPUT_IREGS = 1ULL << 14,
101 PERF_OUTPUT_BRSTACK = 1ULL << 15,
102 PERF_OUTPUT_BRSTACKSYM = 1ULL << 16,
103 PERF_OUTPUT_DATA_SRC = 1ULL << 17,
104 PERF_OUTPUT_WEIGHT = 1ULL << 18,
105 PERF_OUTPUT_BPF_OUTPUT = 1ULL << 19,
106 PERF_OUTPUT_CALLINDENT = 1ULL << 20,
107 PERF_OUTPUT_INSN = 1ULL << 21,
108 PERF_OUTPUT_INSNLEN = 1ULL << 22,
109 PERF_OUTPUT_BRSTACKINSN = 1ULL << 23,
110 PERF_OUTPUT_BRSTACKOFF = 1ULL << 24,
111 PERF_OUTPUT_SYNTH = 1ULL << 25,
112 PERF_OUTPUT_PHYS_ADDR = 1ULL << 26,
113 PERF_OUTPUT_UREGS = 1ULL << 27,
114 PERF_OUTPUT_METRIC = 1ULL << 28,
115 PERF_OUTPUT_MISC = 1ULL << 29,
116 PERF_OUTPUT_SRCCODE = 1ULL << 30,
117 PERF_OUTPUT_IPC = 1ULL << 31,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200118 PERF_OUTPUT_TOD = 1ULL << 32,
Kan Liang6b9bae62020-12-16 10:57:57 -0800119 PERF_OUTPUT_DATA_PAGE_SIZE = 1ULL << 33,
Stephane Eranianc513de82021-01-05 11:57:50 -0800120 PERF_OUTPUT_CODE_PAGE_SIZE = 1ULL << 34,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200121};
122
123struct perf_script {
124 struct perf_tool tool;
125 struct perf_session *session;
126 bool show_task_events;
127 bool show_mmap_events;
128 bool show_switch_events;
129 bool show_namespace_events;
130 bool show_lost_events;
131 bool show_round_events;
132 bool show_bpf_events;
133 bool show_cgroup_events;
134 bool show_text_poke_events;
135 bool allocated;
136 bool per_event_dump;
137 bool stitch_lbr;
138 struct evswitch evswitch;
139 struct perf_cpu_map *cpus;
140 struct perf_thread_map *threads;
141 int name_width;
142 const char *time_str;
143 struct perf_time_interval *ptime_range;
144 int range_size;
145 int range_num;
David Ahern745f43e2011-03-09 22:23:26 -0700146};
147
148struct output_option {
149 const char *str;
150 enum perf_output_field field;
151} all_output_options[] = {
152 {.str = "comm", .field = PERF_OUTPUT_COMM},
153 {.str = "tid", .field = PERF_OUTPUT_TID},
154 {.str = "pid", .field = PERF_OUTPUT_PID},
155 {.str = "time", .field = PERF_OUTPUT_TIME},
156 {.str = "cpu", .field = PERF_OUTPUT_CPU},
157 {.str = "event", .field = PERF_OUTPUT_EVNAME},
158 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -0600159 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -0700160 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -0600161 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -0600162 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900163 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +0200164 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200165 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +0200166 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Andi Kleenb1491ac2017-09-05 11:40:57 -0700167 {.str = "uregs", .field = PERF_OUTPUT_UREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200168 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
169 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100170 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
171 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +0000172 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +0300173 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
Andi Kleen224e2c92016-10-07 16:42:27 +0300174 {.str = "insn", .field = PERF_OUTPUT_INSN},
175 {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
Andi Kleen48d02a12017-02-23 15:46:34 -0800176 {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
Mark Santaniello106dacd2017-06-19 09:38:25 -0700177 {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
Adrian Hunter47e78082017-05-26 11:17:22 +0300178 {.str = "synth", .field = PERF_OUTPUT_SYNTH},
Kan Liang49d58f02017-08-29 13:11:11 -0400179 {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800180 {.str = "metric", .field = PERF_OUTPUT_METRIC},
Jiri Olsa28a0b392018-01-07 17:03:52 +0100181 {.str = "misc", .field = PERF_OUTPUT_MISC},
Andi Kleendd2e18e2018-12-03 16:18:48 -0800182 {.str = "srccode", .field = PERF_OUTPUT_SRCCODE},
Adrian Hunter68fb45b2019-05-20 14:37:14 +0300183 {.str = "ipc", .field = PERF_OUTPUT_IPC},
Jiri Olsae534bfb2020-08-05 11:34:44 +0200184 {.str = "tod", .field = PERF_OUTPUT_TOD},
Kan Liang6b9bae62020-12-16 10:57:57 -0800185 {.str = "data_page_size", .field = PERF_OUTPUT_DATA_PAGE_SIZE},
Stephane Eranianc513de82021-01-05 11:57:50 -0800186 {.str = "code_page_size", .field = PERF_OUTPUT_CODE_PAGE_SIZE},
David Ahern745f43e2011-03-09 22:23:26 -0700187};
188
Adrian Hunter14057202017-06-21 13:17:19 +0300189enum {
190 OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
Jin Yao8adc0a02020-12-09 08:58:28 +0800191 OUTPUT_TYPE_OTHER,
Adrian Hunter14057202017-06-21 13:17:19 +0300192 OUTPUT_TYPE_MAX
193};
194
David Ahern745f43e2011-03-09 22:23:26 -0700195/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600196static struct {
197 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600198 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400199 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600200 u64 fields;
201 u64 invalid_fields;
Andi Kleen4b6ac812019-02-24 07:37:12 -0800202 u64 user_set_fields;
Adrian Hunterb5164082020-05-27 21:02:50 +0300203 u64 user_unset_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300204} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700205
David Ahern2c9e45f72011-03-17 10:03:21 -0600206 [PERF_TYPE_HARDWARE] = {
207 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700208
David Ahern2c9e45f72011-03-17 10:03:21 -0600209 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
210 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600211 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530212 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
213 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600214
Wang Nan30372f02016-02-24 11:20:45 +0000215 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600216 },
217
218 [PERF_TYPE_SOFTWARE] = {
219 .user_set = false,
220
221 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
222 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600223 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530224 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
225 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
226 PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600227
228 .invalid_fields = PERF_OUTPUT_TRACE,
229 },
230
231 [PERF_TYPE_TRACEPOINT] = {
232 .user_set = false,
233
234 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
235 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000236 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600237 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700238
Seeteena Thoufeekfad76d42018-06-08 16:32:28 +0530239 [PERF_TYPE_HW_CACHE] = {
240 .user_set = false,
241
242 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
243 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
244 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
245 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
246 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
247
248 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
249 },
250
Arun Sharma0817a6a2011-04-14 10:38:18 -0700251 [PERF_TYPE_RAW] = {
252 .user_set = false,
253
254 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
255 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600256 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530257 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
258 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
259 PERF_OUTPUT_ADDR | PERF_OUTPUT_DATA_SRC |
Kan Liang6b9bae62020-12-16 10:57:57 -0800260 PERF_OUTPUT_WEIGHT | PERF_OUTPUT_PHYS_ADDR |
Stephane Eranianc513de82021-01-05 11:57:50 -0800261 PERF_OUTPUT_DATA_PAGE_SIZE | PERF_OUTPUT_CODE_PAGE_SIZE,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700262
Wang Nan30372f02016-02-24 11:20:45 +0000263 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700264 },
Wang Nan27cfef02015-12-08 02:25:43 +0000265
266 [PERF_TYPE_BREAKPOINT] = {
267 .user_set = false,
268
269 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
270 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
271 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530272 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
273 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
Wang Nan27cfef02015-12-08 02:25:43 +0000274
Wang Nan30372f02016-02-24 11:20:45 +0000275 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000276 },
Adrian Hunter14057202017-06-21 13:17:19 +0300277
278 [OUTPUT_TYPE_SYNTH] = {
279 .user_set = false,
280
281 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
282 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
283 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530284 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
285 PERF_OUTPUT_DSO | PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300286
287 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
288 },
Jin Yao8adc0a02020-12-09 08:58:28 +0800289
290 [OUTPUT_TYPE_OTHER] = {
291 .user_set = false,
292
293 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
294 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
295 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
296 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
297 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
298
299 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
300 },
David Ahern1424dc92011-03-09 22:23:28 -0700301};
David Ahern745f43e2011-03-09 22:23:26 -0700302
Jiri Olsa32dcd022019-07-21 13:23:51 +0200303struct evsel_script {
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300304 char *filename;
305 FILE *fp;
306 u64 samples;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800307 /* For metric output */
308 u64 val;
309 int gnum;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300310};
311
Jiri Olsa32dcd022019-07-21 13:23:51 +0200312static inline struct evsel_script *evsel_script(struct evsel *evsel)
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800313{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200314 return (struct evsel_script *)evsel->priv;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800315}
316
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -0300317static struct evsel_script *evsel_script__new(struct evsel *evsel, struct perf_data *data)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300318{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200319 struct evsel_script *es = zalloc(sizeof(*es));
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300320
321 if (es != NULL) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300322 if (asprintf(&es->filename, "%s.%s.dump", data->file.path, evsel__name(evsel)) < 0)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300323 goto out_free;
324 es->fp = fopen(es->filename, "w");
325 if (es->fp == NULL)
326 goto out_free_filename;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300327 }
328
329 return es;
330out_free_filename:
331 zfree(&es->filename);
332out_free:
333 free(es);
334 return NULL;
335}
336
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -0300337static void evsel_script__delete(struct evsel_script *es)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300338{
339 zfree(&es->filename);
340 fclose(es->fp);
341 es->fp = NULL;
342 free(es);
343}
344
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -0300345static int evsel_script__fprintf(struct evsel_script *es, FILE *fp)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300346{
347 struct stat st;
348
349 fstat(fileno(es->fp), &st);
350 return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
351 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
352}
353
Adrian Hunter14057202017-06-21 13:17:19 +0300354static inline int output_type(unsigned int type)
355{
356 switch (type) {
357 case PERF_TYPE_SYNTH:
358 return OUTPUT_TYPE_SYNTH;
359 default:
Jin Yao8adc0a02020-12-09 08:58:28 +0800360 if (type < PERF_TYPE_MAX)
361 return type;
Adrian Hunter14057202017-06-21 13:17:19 +0300362 }
Jin Yao8adc0a02020-12-09 08:58:28 +0800363
364 return OUTPUT_TYPE_OTHER;
Adrian Hunter14057202017-06-21 13:17:19 +0300365}
366
367static inline unsigned int attr_type(unsigned int type)
368{
369 switch (type) {
370 case OUTPUT_TYPE_SYNTH:
371 return PERF_TYPE_SYNTH;
372 default:
373 return type;
374 }
375}
376
David Ahern2c9e45f72011-03-17 10:03:21 -0600377static bool output_set_by_user(void)
378{
379 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300380 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600381 if (output[j].user_set)
382 return true;
383 }
384 return false;
385}
David Ahern745f43e2011-03-09 22:23:26 -0700386
David Ahern9cbdb702011-04-06 21:54:20 -0600387static const char *output_field2str(enum perf_output_field field)
388{
389 int i, imax = ARRAY_SIZE(all_output_options);
390 const char *str = "";
391
392 for (i = 0; i < imax; ++i) {
393 if (all_output_options[i].field == field) {
394 str = all_output_options[i].str;
395 break;
396 }
397 }
398 return str;
399}
400
Adrian Hunter14057202017-06-21 13:17:19 +0300401#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700402
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300403static int evsel__do_check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
404 enum perf_output_field field, bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700405{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200406 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300407 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600408 const char *evname;
409
410 if (attr->sample_type & sample_type)
411 return 0;
412
Andi Kleen4b6ac812019-02-24 07:37:12 -0800413 if (output[type].user_set_fields & field) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300414 if (allow_user_set)
415 return 0;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300416 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600417 pr_err("Samples for '%s' event do not have %s attribute set. "
418 "Cannot print '%s' field.\n",
419 evname, sample_msg, output_field2str(field));
420 return -1;
421 }
422
423 /* user did not ask for it explicitly so remove from the default list */
424 output[type].fields &= ~field;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300425 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600426 pr_debug("Samples for '%s' event do not have %s attribute set. "
427 "Skipping '%s' field.\n",
428 evname, sample_msg, output_field2str(field));
429
430 return 0;
431}
432
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300433static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
434 enum perf_output_field field)
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300435{
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300436 return evsel__do_check_stype(evsel, sample_type, sample_msg, field, false);
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300437}
438
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300439static int evsel__check_attr(struct evsel *evsel, struct perf_session *session)
David Ahern9cbdb702011-04-06 21:54:20 -0600440{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200441 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300442 bool allow_user_set;
443
Jiri Olsae099eba2016-01-05 22:09:09 +0100444 if (perf_header__has_feat(&session->header, HEADER_STAT))
445 return 0;
446
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300447 allow_user_set = perf_header__has_feat(&session->header,
448 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600449
David Ahern1424dc92011-03-09 22:23:28 -0700450 if (PRINT_FIELD(TRACE) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300451 !perf_session__has_traces(session, "record -R"))
David Ahern1424dc92011-03-09 22:23:28 -0700452 return -EINVAL;
453
David Ahern787bef12011-05-27 14:28:43 -0600454 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300455 if (evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP", PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700456 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700457 }
David Ahern7cec0922011-05-30 13:08:23 -0600458
459 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300460 evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR", PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600461 return -EINVAL;
462
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100463 if (PRINT_FIELD(DATA_SRC) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300464 evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC", PERF_OUTPUT_DATA_SRC))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100465 return -EINVAL;
466
467 if (PRINT_FIELD(WEIGHT) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300468 evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT", PERF_OUTPUT_WEIGHT))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100469 return -EINVAL;
470
Andi Kleen37fed3d2018-09-18 05:32:09 -0700471 if (PRINT_FIELD(SYM) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300472 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
David Ahern7cec0922011-05-30 13:08:23 -0600473 pr_err("Display of symbols requested but neither sample IP nor "
Andi Kleen37fed3d2018-09-18 05:32:09 -0700474 "sample address\navailable. Hence, no addresses to convert "
David Ahern7cec0922011-05-30 13:08:23 -0600475 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600476 return -EINVAL;
477 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900478 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
479 pr_err("Display of offsets requested but symbol is not"
480 "selected.\n");
481 return -EINVAL;
482 }
Andi Kleen37fed3d2018-09-18 05:32:09 -0700483 if (PRINT_FIELD(DSO) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300484 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
Andi Kleen37fed3d2018-09-18 05:32:09 -0700485 pr_err("Display of DSO requested but no address to convert.\n");
David Ahern610723f2011-05-27 14:28:44 -0600486 return -EINVAL;
487 }
Andi Kleendd2e18e2018-12-03 16:18:48 -0800488 if ((PRINT_FIELD(SRCLINE) || PRINT_FIELD(SRCCODE)) && !PRINT_FIELD(IP)) {
Adrian Huntercc8fae12013-12-06 09:42:57 +0200489 pr_err("Display of source line number requested but sample IP is not\n"
490 "selected. Hence, no address to lookup the source line number.\n");
491 return -EINVAL;
492 }
Adrian Hunter0cd032d2019-11-27 11:53:21 +0200493 if (PRINT_FIELD(BRSTACKINSN) && !allow_user_set &&
Arnaldo Carvalho de Melo92c7d7c2020-06-17 09:31:25 -0300494 !(evlist__combined_branch_type(session->evlist) & PERF_SAMPLE_BRANCH_ANY)) {
Andi Kleen48d02a12017-02-23 15:46:34 -0800495 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
496 "Hint: run 'perf record -b ...'\n");
497 return -EINVAL;
498 }
David Ahern1424dc92011-03-09 22:23:28 -0700499 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300500 evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID", PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700501 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700502
503 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300504 evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME", PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700505 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700506
507 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300508 evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU", PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700509 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600510
Stephane Eranianfc36f942015-08-31 18:41:10 +0200511 if (PRINT_FIELD(IREGS) &&
Adrian Hunteradd07cc2020-06-30 16:39:34 +0300512 evsel__do_check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS", PERF_OUTPUT_IREGS, allow_user_set))
Stephane Eranianfc36f942015-08-31 18:41:10 +0200513 return -EINVAL;
514
Andi Kleenb1491ac2017-09-05 11:40:57 -0700515 if (PRINT_FIELD(UREGS) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300516 evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS", PERF_OUTPUT_UREGS))
Andi Kleenb1491ac2017-09-05 11:40:57 -0700517 return -EINVAL;
518
Kan Liang49d58f02017-08-29 13:11:11 -0400519 if (PRINT_FIELD(PHYS_ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300520 evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR", PERF_OUTPUT_PHYS_ADDR))
Kan Liang49d58f02017-08-29 13:11:11 -0400521 return -EINVAL;
522
Kan Liang6b9bae62020-12-16 10:57:57 -0800523 if (PRINT_FIELD(DATA_PAGE_SIZE) &&
524 evsel__check_stype(evsel, PERF_SAMPLE_DATA_PAGE_SIZE, "DATA_PAGE_SIZE", PERF_OUTPUT_DATA_PAGE_SIZE))
525 return -EINVAL;
526
Stephane Eranianc513de82021-01-05 11:57:50 -0800527 if (PRINT_FIELD(CODE_PAGE_SIZE) &&
528 evsel__check_stype(evsel, PERF_SAMPLE_CODE_PAGE_SIZE, "CODE_PAGE_SIZE", PERF_OUTPUT_CODE_PAGE_SIZE))
529 return -EINVAL;
530
David Ahern9cbdb702011-04-06 21:54:20 -0600531 return 0;
532}
533
Adrian Hunter7ea95722013-11-01 15:51:30 +0200534static void set_print_ip_opts(struct perf_event_attr *attr)
535{
Adrian Hunter14057202017-06-21 13:17:19 +0300536 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200537
538 output[type].print_ip_opts = 0;
539 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300540 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200541
542 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300543 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200544
545 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300546 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200547
548 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300549 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200550
551 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300552 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200553}
554
David Ahern9cbdb702011-04-06 21:54:20 -0600555/*
556 * verify all user requested events exist and the samples
557 * have the expected data
558 */
559static int perf_session__check_output_opt(struct perf_session *session)
560{
Jiri Olsae534bfb2020-08-05 11:34:44 +0200561 bool tod = false;
He Kuang40f20e52016-05-16 04:51:19 +0000562 unsigned int j;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200563 struct evsel *evsel;
David Ahern9cbdb702011-04-06 21:54:20 -0600564
Adrian Hunter14057202017-06-21 13:17:19 +0300565 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
566 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600567
568 /*
569 * even if fields is set to 0 (ie., show nothing) event must
570 * exist if user explicitly includes it on the command line
571 */
Adrian Hunter14057202017-06-21 13:17:19 +0300572 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
573 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600574 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300575 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600576 event_type(j));
577 return -1;
578 }
579
580 if (evsel && output[j].fields &&
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300581 evsel__check_attr(evsel, session))
David Ahern9cbdb702011-04-06 21:54:20 -0600582 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400583
584 if (evsel == NULL)
585 continue;
586
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200587 set_print_ip_opts(&evsel->core.attr);
Jiri Olsae534bfb2020-08-05 11:34:44 +0200588 tod |= output[j].fields & PERF_OUTPUT_TOD;
David Ahern1424dc92011-03-09 22:23:28 -0700589 }
590
Adrian Hunter98526ee2014-07-31 09:00:59 +0300591 if (!no_callchain) {
592 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000593 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300594
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300595 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000596 not_pipe = true;
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300597 if (evsel__has_callchain(evsel)) {
Adrian Hunter98526ee2014-07-31 09:00:59 +0300598 use_callchain = true;
599 break;
600 }
601 }
He Kuang71ac8992016-08-04 11:25:43 +0000602 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300603 symbol_conf.use_callchain = false;
604 }
605
David Ahern80b8b492013-11-19 21:07:37 -0700606 /*
607 * set default for tracepoints to print symbols only
608 * if callchains are present
609 */
610 if (symbol_conf.use_callchain &&
611 !output[PERF_TYPE_TRACEPOINT].user_set) {
David Ahern80b8b492013-11-19 21:07:37 -0700612 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700613
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300614 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200615 if (evsel->core.attr.type != j)
He Kuang40f20e52016-05-16 04:51:19 +0000616 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700617
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300618 if (evsel__has_callchain(evsel)) {
He Kuang40f20e52016-05-16 04:51:19 +0000619 output[j].fields |= PERF_OUTPUT_IP;
620 output[j].fields |= PERF_OUTPUT_SYM;
Sandipan Das7903a702018-05-17 12:03:26 +0530621 output[j].fields |= PERF_OUTPUT_SYMOFFSET;
He Kuang40f20e52016-05-16 04:51:19 +0000622 output[j].fields |= PERF_OUTPUT_DSO;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200623 set_print_ip_opts(&evsel->core.attr);
He Kuang40f20e52016-05-16 04:51:19 +0000624 goto out;
625 }
David Ahern80b8b492013-11-19 21:07:37 -0700626 }
627 }
628
Jiri Olsae534bfb2020-08-05 11:34:44 +0200629 if (tod && !session->header.env.clock.enabled) {
630 pr_err("Can't provide 'tod' time, missing clock data. "
631 "Please record with -k/--clockid option.\n");
632 return -1;
633 }
David Ahern80b8b492013-11-19 21:07:37 -0700634out:
David Ahern1424dc92011-03-09 22:23:28 -0700635 return 0;
636}
David Ahern745f43e2011-03-09 22:23:26 -0700637
Milian Wolff9add8fe2018-11-07 23:34:37 +0100638static int perf_sample__fprintf_regs(struct regs_dump *regs, uint64_t mask,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200639 FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200640{
Andi Kleenb1491ac2017-09-05 11:40:57 -0700641 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300642 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700643
644 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300645 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700646
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300647 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700648
649 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
650 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300651 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700652 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300653
654 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700655}
656
Jiri Olsae534bfb2020-08-05 11:34:44 +0200657#define DEFAULT_TOD_FMT "%F %H:%M:%S"
658
659static char*
660tod_scnprintf(struct perf_script *script, char *buf, int buflen,
661 u64 timestamp)
662{
663 u64 tod_ns, clockid_ns;
664 struct perf_env *env;
665 unsigned long nsec;
666 struct tm ltime;
667 char date[64];
668 time_t sec;
669
670 buf[0] = '\0';
671 if (buflen < 64 || !script)
672 return buf;
673
674 env = &script->session->header.env;
675 if (!env->clock.enabled) {
676 scnprintf(buf, buflen, "disabled");
677 return buf;
678 }
679
680 clockid_ns = env->clock.clockid_ns;
681 tod_ns = env->clock.tod_ns;
682
683 if (timestamp > clockid_ns)
684 tod_ns += timestamp - clockid_ns;
685 else
686 tod_ns -= clockid_ns - timestamp;
687
688 sec = (time_t) (tod_ns / NSEC_PER_SEC);
689 nsec = tod_ns - sec * NSEC_PER_SEC;
690
691 if (localtime_r(&sec, &ltime) == NULL) {
692 scnprintf(buf, buflen, "failed");
693 } else {
694 strftime(date, sizeof(date), DEFAULT_TOD_FMT, &ltime);
695
696 if (symbol_conf.nanosecs) {
697 snprintf(buf, buflen, "%s.%09lu", date, nsec);
698 } else {
699 snprintf(buf, buflen, "%s.%06lu",
700 date, nsec / NSEC_PER_USEC);
701 }
702 }
703
704 return buf;
705}
706
Milian Wolff9add8fe2018-11-07 23:34:37 +0100707static int perf_sample__fprintf_iregs(struct perf_sample *sample,
708 struct perf_event_attr *attr, FILE *fp)
709{
710 return perf_sample__fprintf_regs(&sample->intr_regs,
711 attr->sample_regs_intr, fp);
712}
713
714static int perf_sample__fprintf_uregs(struct perf_sample *sample,
715 struct perf_event_attr *attr, FILE *fp)
716{
717 return perf_sample__fprintf_regs(&sample->user_regs,
718 attr->sample_regs_user, fp);
719}
720
Jiri Olsae534bfb2020-08-05 11:34:44 +0200721static int perf_sample__fprintf_start(struct perf_script *script,
722 struct perf_sample *sample,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300723 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200724 struct evsel *evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +0100725 u32 type, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700726{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200727 struct perf_event_attr *attr = &evsel->core.attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700728 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700729 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300730 int printed = 0;
Jiri Olsae534bfb2020-08-05 11:34:44 +0200731 char tstr[128];
David Ahernc70c94b2011-03-09 22:23:25 -0700732
David Ahern745f43e2011-03-09 22:23:26 -0700733 if (PRINT_FIELD(COMM)) {
Adrian Hunterfc183802020-09-09 11:49:22 +0300734 const char *comm = thread ? thread__comm_str(thread) : ":-1";
735
David Ahern745f43e2011-03-09 22:23:26 -0700736 if (latency_format)
Adrian Hunterfc183802020-09-09 11:49:22 +0300737 printed += fprintf(fp, "%8.8s ", comm);
Arnaldo Carvalho de Melob8798332018-06-04 10:34:20 -0300738 else if (PRINT_FIELD(IP) && evsel__has_callchain(evsel) && symbol_conf.use_callchain)
Adrian Hunterfc183802020-09-09 11:49:22 +0300739 printed += fprintf(fp, "%s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700740 else
Adrian Hunterfc183802020-09-09 11:49:22 +0300741 printed += fprintf(fp, "%16s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700742 }
David Ahernc70c94b2011-03-09 22:23:25 -0700743
David Ahern745f43e2011-03-09 22:23:26 -0700744 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300745 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700746 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300747 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700748 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300749 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700750
David Ahern745f43e2011-03-09 22:23:26 -0700751 if (PRINT_FIELD(CPU)) {
752 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300753 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700754 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300755 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700756 }
David Ahernc70c94b2011-03-09 22:23:25 -0700757
Jiri Olsa28a0b392018-01-07 17:03:52 +0100758 if (PRINT_FIELD(MISC)) {
759 int ret = 0;
760
761 #define has(m) \
762 (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
763
764 if (has(KERNEL))
765 ret += fprintf(fp, "K");
766 if (has(USER))
767 ret += fprintf(fp, "U");
768 if (has(HYPERVISOR))
769 ret += fprintf(fp, "H");
770 if (has(GUEST_KERNEL))
771 ret += fprintf(fp, "G");
772 if (has(GUEST_USER))
773 ret += fprintf(fp, "g");
774
775 switch (type) {
776 case PERF_RECORD_MMAP:
777 case PERF_RECORD_MMAP2:
778 if (has(MMAP_DATA))
779 ret += fprintf(fp, "M");
780 break;
781 case PERF_RECORD_COMM:
782 if (has(COMM_EXEC))
783 ret += fprintf(fp, "E");
784 break;
785 case PERF_RECORD_SWITCH:
786 case PERF_RECORD_SWITCH_CPU_WIDE:
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300787 if (has(SWITCH_OUT)) {
Jiri Olsa28a0b392018-01-07 17:03:52 +0100788 ret += fprintf(fp, "S");
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300789 if (sample->misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT)
790 ret += fprintf(fp, "p");
791 }
Jiri Olsa28a0b392018-01-07 17:03:52 +0100792 default:
793 break;
794 }
795
796 #undef has
797
798 ret += fprintf(fp, "%*s", 6 - ret, " ");
799 printed += ret;
800 }
801
Jiri Olsae534bfb2020-08-05 11:34:44 +0200802 if (PRINT_FIELD(TOD)) {
803 tod_scnprintf(script, tstr, sizeof(tstr), sample->time);
804 printed += fprintf(fp, "%s ", tstr);
805 }
806
David Ahern745f43e2011-03-09 22:23:26 -0700807 if (PRINT_FIELD(TIME)) {
Andi Kleen90b10f42019-03-14 15:50:00 -0700808 u64 t = sample->time;
809 if (reltime) {
810 if (!initial_time)
811 initial_time = sample->time;
812 t = sample->time - initial_time;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +0100813 } else if (deltatime) {
814 if (previous_time)
815 t = sample->time - previous_time;
816 else {
817 t = 0;
818 }
819 previous_time = sample->time;
Andi Kleen90b10f42019-03-14 15:50:00 -0700820 }
821 nsecs = t;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300822 secs = nsecs / NSEC_PER_SEC;
823 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900824
Andi Kleen52bab882019-03-05 06:47:47 -0800825 if (symbol_conf.nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300826 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900827 else {
828 char sample_time[32];
Andi Kleen90b10f42019-03-14 15:50:00 -0700829 timestamp__scnprintf_usec(t, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300830 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900831 }
David Ahern745f43e2011-03-09 22:23:26 -0700832 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300833
834 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700835}
836
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200837static inline char
838mispred_str(struct branch_entry *br)
839{
840 if (!(br->flags.mispred || br->flags.predicted))
841 return '-';
842
843 return br->flags.predicted ? 'P' : 'M';
844}
845
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300846static int perf_sample__fprintf_brstack(struct perf_sample *sample,
847 struct thread *thread,
848 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200849{
850 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800851 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700852 struct addr_location alf, alt;
853 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300854 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200855
856 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300857 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200858
859 for (i = 0; i < br->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -0800860 from = entries[i].from;
861 to = entries[i].to;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700862
863 if (PRINT_FIELD(DSO)) {
864 memset(&alf, 0, sizeof(alf));
865 memset(&alt, 0, sizeof(alt));
Adrian Hunter692d0e62018-11-06 23:07:12 +0200866 thread__find_map_fb(thread, sample->cpumode, from, &alf);
867 thread__find_map_fb(thread, sample->cpumode, to, &alt);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700868 }
869
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300870 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700871 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300872 printed += fprintf(fp, "(");
873 printed += map__fprintf_dsoname(alf.map, fp);
874 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700875 }
876
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300877 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700878 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300879 printed += fprintf(fp, "(");
880 printed += map__fprintf_dsoname(alt.map, fp);
881 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700882 }
883
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300884 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800885 mispred_str(entries + i),
886 entries[i].flags.in_tx ? 'X' : '-',
887 entries[i].flags.abort ? 'A' : '-',
888 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200889 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300890
891 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200892}
893
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300894static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
895 struct thread *thread,
896 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200897{
898 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800899 struct branch_entry *entries = perf_sample__branch_entries(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200900 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200901 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300902 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200903
904 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300905 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200906
907 for (i = 0; i < br->nr; i++) {
908
909 memset(&alf, 0, sizeof(alf));
910 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800911 from = entries[i].from;
912 to = entries[i].to;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200913
Adrian Hunter692d0e62018-11-06 23:07:12 +0200914 thread__find_symbol_fb(thread, sample->cpumode, from, &alf);
915 thread__find_symbol_fb(thread, sample->cpumode, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200916
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300917 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700918 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300919 printed += fprintf(fp, "(");
920 printed += map__fprintf_dsoname(alf.map, fp);
921 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700922 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300923 printed += fprintf(fp, "%c", '/');
924 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700925 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300926 printed += fprintf(fp, "(");
927 printed += map__fprintf_dsoname(alt.map, fp);
928 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700929 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300930 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800931 mispred_str(entries + i),
932 entries[i].flags.in_tx ? 'X' : '-',
933 entries[i].flags.abort ? 'A' : '-',
934 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200935 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300936
937 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200938}
939
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300940static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
941 struct thread *thread,
942 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700943{
944 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800945 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700946 struct addr_location alf, alt;
947 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300948 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700949
950 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300951 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700952
953 for (i = 0; i < br->nr; i++) {
954
955 memset(&alf, 0, sizeof(alf));
956 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800957 from = entries[i].from;
958 to = entries[i].to;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700959
Adrian Hunter692d0e62018-11-06 23:07:12 +0200960 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300961 !alf.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700962 from = map__map_ip(alf.map, from);
963
Adrian Hunter692d0e62018-11-06 23:07:12 +0200964 if (thread__find_map_fb(thread, sample->cpumode, to, &alt) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300965 !alt.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700966 to = map__map_ip(alt.map, to);
967
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300968 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700969 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300970 printed += fprintf(fp, "(");
971 printed += map__fprintf_dsoname(alf.map, fp);
972 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700973 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300974 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700975 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300976 printed += fprintf(fp, "(");
977 printed += map__fprintf_dsoname(alt.map, fp);
978 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700979 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300980 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800981 mispred_str(entries + i),
982 entries[i].flags.in_tx ? 'X' : '-',
983 entries[i].flags.abort ? 'A' : '-',
984 entries[i].flags.cycles);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700985 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300986
987 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700988}
Andi Kleen48d02a12017-02-23 15:46:34 -0800989#define MAXBB 16384UL
990
991static int grab_bb(u8 *buffer, u64 start, u64 end,
992 struct machine *machine, struct thread *thread,
993 bool *is64bit, u8 *cpumode, bool last)
994{
995 long offset, len;
996 struct addr_location al;
997 bool kernel;
998
999 if (!start || !end)
1000 return 0;
1001
1002 kernel = machine__kernel_ip(machine, start);
1003 if (kernel)
1004 *cpumode = PERF_RECORD_MISC_KERNEL;
1005 else
1006 *cpumode = PERF_RECORD_MISC_USER;
1007
1008 /*
1009 * Block overlaps between kernel and user.
1010 * This can happen due to ring filtering
1011 * On Intel CPUs the entry into the kernel is filtered,
1012 * but the exit is not. Let the caller patch it up.
1013 */
1014 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001015 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001016 return -ENXIO;
1017 }
1018
1019 memset(&al, 0, sizeof(al));
1020 if (end - start > MAXBB - MAXINSN) {
1021 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001022 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001023 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001024 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -08001025 return 0;
1026 }
1027
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -03001028 if (!thread__find_map(thread, *cpumode, start, &al) || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001029 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001030 return 0;
1031 }
1032 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001033 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001034 return 0;
1035 }
1036
1037 /* Load maps to ensure dso->is_64_bit has been updated */
1038 map__load(al.map);
1039
1040 offset = al.map->map_ip(al.map, start);
1041 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
1042 end - start + MAXINSN);
1043
1044 *is64bit = al.map->dso->is_64_bit;
1045 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001046 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -08001047 start, end);
1048 return len;
1049}
1050
Arnaldo Carvalho de Melo540a63e2019-11-22 12:39:06 -03001051static int map__fprintf_srccode(struct map *map, u64 addr, FILE *fp, struct srccode_state *state)
1052{
1053 char *srcfile;
1054 int ret = 0;
1055 unsigned line;
1056 int len;
1057 char *srccode;
1058
1059 if (!map || !map->dso)
1060 return 0;
1061 srcfile = get_srcline_split(map->dso,
1062 map__rip_2objdump(map, addr),
1063 &line);
1064 if (!srcfile)
1065 return 0;
1066
1067 /* Avoid redundant printing */
1068 if (state &&
1069 state->srcfile &&
1070 !strcmp(state->srcfile, srcfile) &&
1071 state->line == line) {
1072 free(srcfile);
1073 return 0;
1074 }
1075
1076 srccode = find_sourceline(srcfile, line, &len);
1077 if (!srccode)
1078 goto out_free_line;
1079
1080 ret = fprintf(fp, "|%-8d %.*s", line, len, srccode);
1081
1082 if (state) {
1083 state->srcfile = srcfile;
1084 state->line = line;
1085 }
1086 return ret;
1087
1088out_free_line:
1089 free(srcfile);
1090 return ret;
1091}
1092
Andi Kleendd2e18e2018-12-03 16:18:48 -08001093static int print_srccode(struct thread *thread, u8 cpumode, uint64_t addr)
1094{
1095 struct addr_location al;
1096 int ret = 0;
1097
1098 memset(&al, 0, sizeof(al));
1099 thread__find_map(thread, cpumode, addr, &al);
1100 if (!al.map)
1101 return 0;
1102 ret = map__fprintf_srccode(al.map, al.addr, stdout,
1103 &thread->srccode_state);
1104 if (ret)
1105 ret += printf("\n");
1106 return ret;
1107}
1108
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001109static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
1110 struct perf_insn *x, u8 *inbuf, int len,
Andi Kleenfe571202018-09-24 10:07:32 -07001111 int insn, FILE *fp, int *total_cycles)
Andi Kleen48d02a12017-02-23 15:46:34 -08001112{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001113 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
1114 dump_insn(x, ip, inbuf, len, NULL),
1115 en->flags.predicted ? " PRED" : "",
1116 en->flags.mispred ? " MISPRED" : "",
1117 en->flags.in_tx ? " INTX" : "",
1118 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -08001119 if (en->flags.cycles) {
Andi Kleenfe571202018-09-24 10:07:32 -07001120 *total_cycles += en->flags.cycles;
1121 printed += fprintf(fp, " %d cycles [%d]", en->flags.cycles, *total_cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001122 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001123 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001124 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001125 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001126}
1127
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001128static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
1129 u8 cpumode, int cpu, struct symbol **lastsym,
1130 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001131{
1132 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001133 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001134
1135 memset(&al, 0, sizeof(al));
1136
Arnaldo Carvalho de Melo404eb5a2018-04-26 09:34:37 -03001137 thread__find_map(thread, cpumode, addr, &al);
1138
Andi Kleen48d02a12017-02-23 15:46:34 -08001139 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001140 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001141
1142 al.cpu = cpu;
1143 al.sym = NULL;
1144 if (al.map)
1145 al.sym = map__find_symbol(al.map, al.addr);
1146
1147 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001148 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001149
1150 if (al.addr < al.sym->end)
1151 off = al.addr - al.sym->start;
1152 else
1153 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001154 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -08001155 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001156 printed += fprintf(fp, "%+d", off);
1157 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -08001158 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001159 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
1160 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001161 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001162
1163 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001164}
1165
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001166static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
1167 struct thread *thread,
1168 struct perf_event_attr *attr,
1169 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001170{
1171 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001172 struct branch_entry *entries = perf_sample__branch_entries(sample);
Andi Kleen48d02a12017-02-23 15:46:34 -08001173 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001174 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001175 struct perf_insn x;
1176 u8 buffer[MAXBB];
1177 unsigned off;
1178 struct symbol *lastsym = NULL;
Andi Kleenfe571202018-09-24 10:07:32 -07001179 int total_cycles = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001180
1181 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001182 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001183 nr = br->nr;
1184 if (max_blocks && nr > max_blocks + 1)
1185 nr = max_blocks + 1;
1186
1187 x.thread = thread;
1188 x.cpu = sample->cpu;
1189
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001190 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -08001191
1192 /* Handle first from jump, of which we don't know the entry. */
Kan Liang42bbabe2020-02-28 08:30:00 -08001193 len = grab_bb(buffer, entries[nr-1].from,
1194 entries[nr-1].from,
Andi Kleen48d02a12017-02-23 15:46:34 -08001195 machine, thread, &x.is64bit, &x.cpumode, false);
1196 if (len > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001197 printed += ip__fprintf_sym(entries[nr - 1].from, thread,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001198 x.cpumode, x.cpu, &lastsym, attr, fp);
Kan Liang42bbabe2020-02-28 08:30:00 -08001199 printed += ip__fprintf_jump(entries[nr - 1].from, &entries[nr - 1],
Andi Kleenfe571202018-09-24 10:07:32 -07001200 &x, buffer, len, 0, fp, &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001201 if (PRINT_FIELD(SRCCODE))
Kan Liang42bbabe2020-02-28 08:30:00 -08001202 printed += print_srccode(thread, x.cpumode, entries[nr - 1].from);
Andi Kleen48d02a12017-02-23 15:46:34 -08001203 }
1204
1205 /* Print all blocks */
1206 for (i = nr - 2; i >= 0; i--) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001207 if (entries[i].from || entries[i].to)
Andi Kleen48d02a12017-02-23 15:46:34 -08001208 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
Kan Liang42bbabe2020-02-28 08:30:00 -08001209 entries[i].from,
1210 entries[i].to);
1211 start = entries[i + 1].to;
1212 end = entries[i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001213
1214 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1215 /* Patch up missing kernel transfers due to ring filters */
1216 if (len == -ENXIO && i > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001217 end = entries[--i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001218 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1219 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1220 }
1221 if (len <= 0)
1222 continue;
1223
1224 insn = 0;
Andi Kleene98df282019-09-27 16:35:44 -07001225 for (off = 0; off < (unsigned)len; off += ilen) {
Andi Kleen48d02a12017-02-23 15:46:34 -08001226 uint64_t ip = start + off;
1227
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001228 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001229 if (ip == end) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001230 printed += ip__fprintf_jump(ip, &entries[i], &x, buffer + off, len - off, ++insn, fp,
Andi Kleenfe571202018-09-24 10:07:32 -07001231 &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001232 if (PRINT_FIELD(SRCCODE))
1233 printed += print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001234 break;
1235 } else {
Andi Kleene98df282019-09-27 16:35:44 -07001236 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001237 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
1238 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001239 if (ilen == 0)
1240 break;
Andi Kleendd2e18e2018-12-03 16:18:48 -08001241 if (PRINT_FIELD(SRCCODE))
1242 print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001243 insn++;
1244 }
1245 }
Adrian Hunter51726722019-11-27 11:56:31 +02001246 if (off != end - start)
Andi Kleene98df282019-09-27 16:35:44 -07001247 printed += fprintf(fp, "\tmismatch of LBR data and executable\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001248 }
1249
1250 /*
1251 * Hit the branch? In this case we are already done, and the target
1252 * has not been executed yet.
1253 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001254 if (entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001255 goto out;
Kan Liang42bbabe2020-02-28 08:30:00 -08001256 if (entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001257 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001258
1259 /*
1260 * Print final block upto sample
Andi Kleen61f61152018-11-19 21:06:17 -08001261 *
1262 * Due to pipeline delays the LBRs might be missing a branch
1263 * or two, which can result in very large or negative blocks
1264 * between final branch and sample. When this happens just
1265 * continue walking after the last TO until we hit a branch.
Andi Kleen48d02a12017-02-23 15:46:34 -08001266 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001267 start = entries[0].to;
Andi Kleen48d02a12017-02-23 15:46:34 -08001268 end = sample->ip;
Andi Kleen61f61152018-11-19 21:06:17 -08001269 if (end < start) {
1270 /* Missing jump. Scan 128 bytes for the next branch */
1271 end = start + 128;
1272 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001273 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001274 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001275 if (len <= 0) {
1276 /* Print at least last IP if basic block did not work */
1277 len = grab_bb(buffer, sample->ip, sample->ip,
1278 machine, thread, &x.is64bit, &x.cpumode, false);
1279 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001280 goto out;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001281 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -08001282 dump_insn(&x, sample->ip, buffer, len, NULL));
Andi Kleendd2e18e2018-12-03 16:18:48 -08001283 if (PRINT_FIELD(SRCCODE))
1284 print_srccode(thread, x.cpumode, sample->ip);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001285 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001286 }
1287 for (off = 0; off <= end - start; off += ilen) {
Andi Kleene98df282019-09-27 16:35:44 -07001288 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001289 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
1290 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001291 if (ilen == 0)
1292 break;
Andi Kleen61f61152018-11-19 21:06:17 -08001293 if (arch_is_branch(buffer + off, len - off, x.is64bit) && start + off != sample->ip) {
1294 /*
1295 * Hit a missing branch. Just stop.
1296 */
1297 printed += fprintf(fp, "\t... not reaching sample ...\n");
1298 break;
1299 }
Andi Kleendd2e18e2018-12-03 16:18:48 -08001300 if (PRINT_FIELD(SRCCODE))
1301 print_srccode(thread, x.cpumode, start + off);
Andi Kleen48d02a12017-02-23 15:46:34 -08001302 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001303out:
1304 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001305}
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001306
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001307static int perf_sample__fprintf_addr(struct perf_sample *sample,
1308 struct thread *thread,
1309 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -06001310{
1311 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001312 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -06001313
1314 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001315 goto out;
David Ahern7cec0922011-05-30 13:08:23 -06001316
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -03001317 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -06001318
1319 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001320 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001321 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001322 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001323 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001324 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001325 }
1326
1327 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001328 printed += fprintf(fp, " (");
1329 printed += map__fprintf_dsoname(al.map, fp);
1330 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001331 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001332out:
1333 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001334}
1335
Andi Kleen99f753f2018-09-20 11:05:39 -07001336static const char *resolve_branch_sym(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001337 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001338 struct thread *thread,
1339 struct addr_location *al,
1340 u64 *ip)
1341{
1342 struct addr_location addr_al;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001343 struct perf_event_attr *attr = &evsel->core.attr;
Andi Kleen99f753f2018-09-20 11:05:39 -07001344 const char *name = NULL;
1345
1346 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1347 if (sample_addr_correlates_sym(attr)) {
1348 thread__resolve(thread, &addr_al, sample);
1349 if (addr_al.sym)
1350 name = addr_al.sym->name;
1351 else
1352 *ip = sample->addr;
1353 } else {
1354 *ip = sample->addr;
1355 }
1356 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1357 if (al->sym)
1358 name = al->sym->name;
1359 else
1360 *ip = sample->ip;
1361 }
1362 return name;
1363}
1364
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001365static int perf_sample__fprintf_callindent(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001366 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001367 struct thread *thread,
1368 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001369{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001370 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter256d92b2018-12-21 14:06:19 +02001371 size_t depth = thread_stack__depth(thread, sample->cpu);
Adrian Huntere2167082016-06-23 16:40:58 +03001372 const char *name = NULL;
1373 static int spacing;
1374 int len = 0;
Andi Kleena78cdee2018-09-18 05:32:10 -07001375 int dlen = 0;
Adrian Huntere2167082016-06-23 16:40:58 +03001376 u64 ip = 0;
1377
1378 /*
1379 * The 'return' has already been popped off the stack so the depth has
1380 * to be adjusted to match the 'call'.
1381 */
1382 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1383 depth += 1;
1384
Andi Kleen99f753f2018-09-20 11:05:39 -07001385 name = resolve_branch_sym(sample, evsel, thread, al, &ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001386
Andi Kleena78cdee2018-09-18 05:32:10 -07001387 if (PRINT_FIELD(DSO) && !(PRINT_FIELD(IP) || PRINT_FIELD(ADDR))) {
1388 dlen += fprintf(fp, "(");
1389 dlen += map__fprintf_dsoname(al->map, fp);
1390 dlen += fprintf(fp, ")\t");
1391 }
1392
Adrian Huntere2167082016-06-23 16:40:58 +03001393 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001394 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001395 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001396 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001397
1398 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001399 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001400
1401 /*
1402 * Try to keep the output length from changing frequently so that the
1403 * output lines up more nicely.
1404 */
1405 if (len > spacing || (len && len < spacing - 52))
1406 spacing = round_up(len + 4, 32);
1407
1408 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001409 len += fprintf(fp, "%*s", spacing - len, "");
1410
Andi Kleena78cdee2018-09-18 05:32:10 -07001411 return len + dlen;
Adrian Huntere2167082016-06-23 16:40:58 +03001412}
1413
Andi Kleen3ab481a2019-03-05 06:47:45 -08001414__weak void arch_fetch_insn(struct perf_sample *sample __maybe_unused,
1415 struct thread *thread __maybe_unused,
1416 struct machine *machine __maybe_unused)
1417{
1418}
1419
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001420static int perf_sample__fprintf_insn(struct perf_sample *sample,
1421 struct perf_event_attr *attr,
1422 struct thread *thread,
1423 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001424{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001425 int printed = 0;
1426
Andi Kleen3ab481a2019-03-05 06:47:45 -08001427 if (sample->insn_len == 0 && native_arch)
1428 arch_fetch_insn(sample, thread, machine);
1429
Andi Kleen224e2c92016-10-07 16:42:27 +03001430 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001431 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001432 if (PRINT_FIELD(INSN) && sample->insn_len) {
Andi Kleen224e2c92016-10-07 16:42:27 +03001433 int i;
1434
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001435 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001436 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001437 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001438 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001439 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001440 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1441
1442 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001443}
1444
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001445static int perf_sample__fprintf_ipc(struct perf_sample *sample,
1446 struct perf_event_attr *attr, FILE *fp)
1447{
1448 unsigned int ipc;
1449
1450 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt)
1451 return 0;
1452
1453 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt;
1454
1455 return fprintf(fp, " \t IPC: %u.%02u (%" PRIu64 "/%" PRIu64 ") ",
1456 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt);
1457}
1458
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001459static int perf_sample__fprintf_bts(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001460 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001461 struct thread *thread,
1462 struct addr_location *al,
1463 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001464{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001465 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001466 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001467 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001468 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001469
Adrian Huntere2167082016-06-23 16:40:58 +03001470 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001471 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001472
Akihiro Nagai95582592012-01-30 13:43:09 +09001473 /* print branch_from information */
1474 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001475 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001476 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001477
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001478 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001479 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001480 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001481 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001482
1483 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001484 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001485 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001486 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001487 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001488 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001489 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001490 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001491
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001492 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor,
1493 symbol_conf.bt_stop_list, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001494 }
1495
Akihiro Nagai95582592012-01-30 13:43:09 +09001496 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001497 if (PRINT_FIELD(ADDR) ||
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001498 ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001499 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001500 printed += fprintf(fp, " => ");
1501 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001502 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001503
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001504 printed += perf_sample__fprintf_ipc(sample, attr, fp);
1505
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001506 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001507 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001508
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001509 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001510 printed += fprintf(fp, "\n");
1511 if (PRINT_FIELD(SRCCODE)) {
1512 int ret = map__fprintf_srccode(al->map, al->addr, stdout,
1513 &thread->srccode_state);
1514 if (ret) {
1515 printed += ret;
1516 printed += printf("\n");
1517 }
1518 }
1519 return printed;
Akihiro Nagai95582592012-01-30 13:43:09 +09001520}
1521
Adrian Hunter055cd332016-06-23 16:40:56 +03001522static struct {
1523 u32 flags;
1524 const char *name;
1525} sample_flags[] = {
1526 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1527 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1528 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1529 {PERF_IP_FLAG_BRANCH, "jmp"},
1530 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1531 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1532 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1533 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1534 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1535 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1536 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1537 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1538 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
Adrian Hunterc025d462021-02-18 11:57:51 +02001539 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMENTRY, "vmentry"},
1540 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMEXIT, "vmexit"},
Adrian Hunter055cd332016-06-23 16:40:56 +03001541 {0, NULL}
1542};
1543
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001544static const char *sample_flags_to_name(u32 flags)
1545{
1546 int i;
1547
1548 for (i = 0; sample_flags[i].name ; i++) {
1549 if (sample_flags[i].flags == flags)
1550 return sample_flags[i].name;
1551 }
1552
1553 return NULL;
1554}
1555
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001556static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001557{
1558 const char *chars = PERF_IP_FLAG_CHARS;
1559 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001560 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1561 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001562 char str[33];
1563 int i, pos = 0;
1564
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001565 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1566 if (name)
1567 return fprintf(fp, " %-15s%4s ", name, in_tx ? "(x)" : "");
1568
1569 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1570 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1571 if (name)
1572 return fprintf(fp, " tr strt %-7s%4s ", name, in_tx ? "(x)" : "");
1573 }
1574
1575 if (flags & PERF_IP_FLAG_TRACE_END) {
1576 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1577 if (name)
1578 return fprintf(fp, " tr end %-7s%4s ", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001579 }
1580
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001581 for (i = 0; i < n; i++, flags >>= 1) {
1582 if (flags & 1)
1583 str[pos++] = chars[i];
1584 }
1585 for (; i < 32; i++, flags >>= 1) {
1586 if (flags & 1)
1587 str[pos++] = '?';
1588 }
1589 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001590
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001591 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001592}
1593
Wang Nan30372f02016-02-24 11:20:45 +00001594struct printer_data {
1595 int line_no;
1596 bool hit_nul;
1597 bool is_printable;
1598};
1599
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001600static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1601 unsigned int val,
1602 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001603{
1604 unsigned char ch = (unsigned char)val;
1605 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001606 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001607
1608 switch (op) {
1609 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001610 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001611 break;
1612 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001613 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001614 " ");
1615 break;
1616 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001617 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001618 break;
1619 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001620 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001621 break;
1622 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001623 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001624 break;
1625 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001626 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001627 break;
1628 case BINARY_PRINT_CHAR_DATA:
1629 if (printer_data->hit_nul && ch)
1630 printer_data->is_printable = false;
1631
1632 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001633 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001634
1635 if (!printer_data->is_printable)
1636 break;
1637
1638 if (ch == '\0')
1639 printer_data->hit_nul = true;
1640 else
1641 printer_data->is_printable = false;
1642 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001643 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001644 }
1645 break;
1646 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001647 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001648 break;
1649 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001650 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001651 printer_data->line_no++;
1652 break;
1653 case BINARY_PRINT_DATA_END:
1654 default:
1655 break;
1656 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001657
1658 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001659}
1660
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001661static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001662{
1663 unsigned int nr_bytes = sample->raw_size;
1664 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001665 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1666 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001667
1668 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001669 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1670
1671 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001672}
1673
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001674static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001675{
1676 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001677 return fprintf(fp, "%*s", spacing - len, "");
1678
1679 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001680}
1681
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001682static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001683{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001684 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001685}
1686
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001687static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001688{
1689 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1690 int len;
1691
1692 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001693 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001694
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001695 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001696 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001697 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001698}
1699
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001700static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001701{
1702 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1703 int len;
1704
1705 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001706 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001707
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001708 len = fprintf(fp, " hints: %#x extensions: %#x ",
1709 data->hints, data->extensions);
1710 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001711}
1712
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001713static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001714{
1715 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1716 int len;
1717
1718 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001719 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001720
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001721 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1722 data->hw, data->cstate, data->subcstate);
1723 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001724}
1725
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001726static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001727{
1728 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1729 int len;
1730
1731 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001732 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001733
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001734 len = fprintf(fp, " IP: %u ", data->ip);
1735 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001736}
1737
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001738static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001739{
1740 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1741 int len;
1742
1743 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001744 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001745
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001746 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001747 data->deepest_cstate, data->last_cstate,
1748 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001749 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001750}
1751
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001752static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001753{
1754 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1755 unsigned int percent, freq;
1756 int len;
1757
1758 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001759 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001760
1761 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001762 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001763 if (data->max_nonturbo) {
1764 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001765 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001766 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001767 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001768}
1769
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001770static int perf_sample__fprintf_synth_psb(struct perf_sample *sample, FILE *fp)
1771{
1772 struct perf_synth_intel_psb *data = perf_sample__synth_ptr(sample);
1773 int len;
1774
1775 if (perf_sample__bad_synth_size(sample, *data))
1776 return 0;
1777
1778 len = fprintf(fp, " psb offs: %#" PRIx64, data->offset);
1779 return len + perf_sample__fprintf_pt_spacing(len, fp);
1780}
1781
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001782static int perf_sample__fprintf_synth(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001783 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001784{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001785 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001786 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001787 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001788 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001789 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001790 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001791 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001792 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001793 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001794 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001795 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001796 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001797 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001798 case PERF_SYNTH_INTEL_PSB:
1799 return perf_sample__fprintf_synth_psb(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001800 default:
1801 break;
1802 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001803
1804 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001805}
1806
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001807static int evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001808{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001809 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001810 int max = 0;
1811
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001812 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001813 int len = strlen(evsel__name(evsel));
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001814
1815 max = MAX(len, max);
1816 }
1817
1818 return max;
1819}
1820
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001821static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001822{
1823 struct mem_info mi = { .data_src.val = data_src };
1824 char decode[100];
1825 char out[100];
1826 static int maxlen;
1827 int len;
1828
1829 perf_script__meminfo_scnprintf(decode, 100, &mi);
1830
1831 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1832 if (maxlen < len)
1833 maxlen = len;
1834
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001835 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001836}
1837
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001838struct metric_ctx {
1839 struct perf_sample *sample;
1840 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001841 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001842 FILE *fp;
1843};
1844
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001845static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1846 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001847 const char *fmt,
1848 const char *unit, double val)
1849{
1850 struct metric_ctx *mctx = ctx;
1851
1852 if (!fmt)
1853 return;
Jiri Olsae534bfb2020-08-05 11:34:44 +02001854 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001855 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001856 fputs("\tmetric: ", mctx->fp);
1857 if (color)
1858 color_fprintf(mctx->fp, color, fmt, val);
1859 else
1860 printf(fmt, val);
1861 fprintf(mctx->fp, " %s\n", unit);
1862}
1863
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001864static void script_new_line(struct perf_stat_config *config __maybe_unused,
1865 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001866{
1867 struct metric_ctx *mctx = ctx;
1868
Jiri Olsae534bfb2020-08-05 11:34:44 +02001869 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001870 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001871 fputs("\tmetric: ", mctx->fp);
1872}
1873
1874static void perf_sample__fprint_metric(struct perf_script *script,
1875 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001876 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001877 struct perf_sample *sample,
1878 FILE *fp)
1879{
1880 struct perf_stat_output_ctx ctx = {
1881 .print_metric = script_print_metric,
1882 .new_line = script_new_line,
1883 .ctx = &(struct metric_ctx) {
1884 .sample = sample,
1885 .thread = thread,
1886 .evsel = evsel,
1887 .fp = fp,
1888 },
1889 .force_header = false,
1890 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001891 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001892 u64 val;
1893
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001894 if (!evsel->stats)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001895 evlist__alloc_stats(script->session->evlist, false);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001896 if (evsel_script(evsel->leader)->gnum++ == 0)
1897 perf_stat__reset_shadow_stats();
1898 val = sample->period * evsel->scale;
1899 perf_stat__update_shadow_stats(evsel,
1900 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001901 sample->cpu,
1902 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001903 evsel_script(evsel)->val = val;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001904 if (evsel_script(evsel->leader)->gnum == evsel->leader->core.nr_members) {
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001905 for_each_group_member (ev2, evsel->leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001906 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001907 evsel_script(ev2)->val,
1908 sample->cpu,
1909 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001910 NULL,
1911 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001912 }
1913 evsel_script(evsel->leader)->gnum = 0;
1914 }
1915}
1916
Andi Kleen99f753f2018-09-20 11:05:39 -07001917static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001918 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001919 struct thread *thread,
1920 struct addr_location *al)
1921{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001922 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001923
1924 if (!symbol_conf.graph_function)
1925 return true;
1926
1927 if (thread->filter) {
1928 if (depth <= thread->filter_entry_depth) {
1929 thread->filter = false;
1930 return false;
1931 }
1932 return true;
1933 } else {
1934 const char *s = symbol_conf.graph_function;
1935 u64 ip;
1936 const char *name = resolve_branch_sym(sample, evsel, thread, al,
1937 &ip);
1938 unsigned nlen;
1939
1940 if (!name)
1941 return false;
1942 nlen = strlen(name);
1943 while (*s) {
1944 unsigned len = strcspn(s, ",");
1945 if (nlen == len && !strncmp(name, s, len)) {
1946 thread->filter = true;
1947 thread->filter_entry_depth = depth;
1948 return true;
1949 }
1950 s += len;
1951 if (*s == ',')
1952 s++;
1953 }
1954 return false;
1955 }
1956}
1957
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001958static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001959 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001960 struct addr_location *al,
1961 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001962{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001963 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001964 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001965 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02001966 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001967 FILE *fp = es->fp;
Kan Liang6b9bae62020-12-16 10:57:57 -08001968 char str[PAGE_SIZE_NAME_LEN];
David Ahern1424dc92011-03-09 22:23:28 -07001969
Adrian Hunter14057202017-06-21 13:17:19 +03001970 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001971 return;
1972
Andi Kleen99f753f2018-09-20 11:05:39 -07001973 if (!show_event(sample, evsel, thread, al))
1974 return;
1975
Arnaldo Carvalho de Melo8829e562019-08-15 11:00:11 -03001976 if (evswitch__discard(&script->evswitch, evsel))
1977 return;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001978
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001979 ++es->samples;
1980
Jiri Olsae534bfb2020-08-05 11:34:44 +02001981 perf_sample__fprintf_start(script, sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001982 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001983
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001984 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001985 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001986
Namhyung Kime944d3d2013-11-18 14:34:52 +09001987 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001988 const char *evname = evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001989
1990 if (!script->name_width)
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001991 script->name_width = evlist__max_name_len(script->session->evlist);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001992
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001993 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001994 }
1995
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001996 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001997 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001998
Akihiro Nagai95582592012-01-30 13:43:09 +09001999 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002000 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09002001 return;
2002 }
2003
Andi Kleen96167162019-01-17 11:48:34 -08002004 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03002005 event_format__fprintf(evsel->tp_format, sample->cpu,
2006 sample->raw_data, sample->raw_size, fp);
2007 }
Adrian Hunter47e78082017-05-26 11:17:22 +03002008
2009 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002010 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03002011
David Ahern7cec0922011-05-30 13:08:23 -06002012 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002013 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06002014
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002015 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002016 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002017
2018 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002019 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002020
David Ahern787bef12011-05-27 14:28:43 -06002021 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07002022 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04002023
Kan Liang680d1252020-03-19 13:25:14 -07002024 if (script->stitch_lbr)
2025 al->thread->lbr_stitch_enable = true;
2026
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03002027 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07002028 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002029 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07002030 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002031
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002032 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03002033 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
2034 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07002035 }
2036
Stephane Eranianfc36f942015-08-31 18:41:10 +02002037 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002038 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02002039
Andi Kleenb1491ac2017-09-05 11:40:57 -07002040 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002041 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07002042
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002043 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002044 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002045 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002046 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07002047 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002048 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002049
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002050 if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002051 perf_sample__fprintf_bpf_output(sample, fp);
2052 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04002053
2054 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002055 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002056
Kan Liang6b9bae62020-12-16 10:57:57 -08002057 if (PRINT_FIELD(DATA_PAGE_SIZE))
2058 fprintf(fp, " %s", get_page_size_name(sample->data_page_size, str));
2059
Stephane Eranianc513de82021-01-05 11:57:50 -08002060 if (PRINT_FIELD(CODE_PAGE_SIZE))
2061 fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str));
2062
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002063 perf_sample__fprintf_ipc(sample, attr, fp);
2064
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002065 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002066
Andi Kleendd2e18e2018-12-03 16:18:48 -08002067 if (PRINT_FIELD(SRCCODE)) {
2068 if (map__fprintf_srccode(al->map, al->addr, stdout,
2069 &thread->srccode_state))
2070 printf("\n");
2071 }
2072
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002073 if (PRINT_FIELD(METRIC))
2074 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02002075
2076 if (verbose)
2077 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07002078}
2079
Tom Zanussi956ffd02009-11-25 01:15:46 -06002080static struct scripting_ops *scripting_ops;
2081
Jiri Olsa32dcd022019-07-21 13:23:51 +02002082static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002083{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002084 int nthreads = perf_thread_map__nr(counter->core.threads);
Arnaldo Carvalho de Melo5eb88f02020-04-29 15:45:09 -03002085 int ncpus = evsel__nr_cpus(counter);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002086 int cpu, thread;
2087 static int header_printed;
2088
Jiri Olsa648b5af2019-08-06 11:35:19 +02002089 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002090 nthreads = 1;
2091
2092 if (!header_printed) {
2093 printf("%3s %8s %15s %15s %15s %15s %s\n",
2094 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
2095 header_printed = 1;
2096 }
2097
2098 for (thread = 0; thread < nthreads; thread++) {
2099 for (cpu = 0; cpu < ncpus; cpu++) {
2100 struct perf_counts_values *counts;
2101
2102 counts = perf_counts(counter->counts, cpu, thread);
2103
2104 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02002105 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002106 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01002107 counts->val,
2108 counts->ena,
2109 counts->run,
2110 tstamp,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002111 evsel__name(counter));
Jiri Olsa36e33c52016-01-06 11:49:56 +01002112 }
2113 }
2114}
2115
Jiri Olsa32dcd022019-07-21 13:23:51 +02002116static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002117{
2118 if (scripting_ops && scripting_ops->process_stat)
2119 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002120 else
2121 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002122}
2123
2124static void process_stat_interval(u64 tstamp)
2125{
2126 if (scripting_ops && scripting_ops->process_stat_interval)
2127 scripting_ops->process_stat_interval(tstamp);
2128}
2129
Tom Zanussi956ffd02009-11-25 01:15:46 -06002130static void setup_scripting(void)
2131{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002132 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002133 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002134}
2135
Adrian Hunterd445dd22014-08-15 22:08:37 +03002136static int flush_scripting(void)
2137{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002138 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002139}
2140
Tom Zanussi956ffd02009-11-25 01:15:46 -06002141static int cleanup_scripting(void)
2142{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002143 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002144
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002145 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002146}
2147
Andi Kleene87e5482019-03-11 07:44:52 -07002148static bool filter_cpu(struct perf_sample *sample)
2149{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002150 if (cpu_list && sample->cpu != (u32)-1)
Andi Kleene87e5482019-03-11 07:44:52 -07002151 return !test_bit(sample->cpu, cpu_bitmap);
2152 return false;
2153}
2154
Jiri Olsa809e9422015-11-26 18:55:21 +01002155static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002156 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002157 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002158 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002159 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002160{
Jiri Olsa809e9422015-11-26 18:55:21 +01002161 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002162 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002163
Jin Yao2ab046c2017-12-08 21:13:46 +08002164 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2165 sample->time)) {
David Aherna91f4c42016-11-29 10:15:43 -07002166 return 0;
Jin Yao2ab046c2017-12-08 21:13:46 +08002167 }
David Aherna91f4c42016-11-29 10:15:43 -07002168
David Ahern1424dc92011-03-09 22:23:28 -07002169 if (debug_mode) {
2170 if (sample->time < last_timestamp) {
2171 pr_err("Samples misordered, previous: %" PRIu64
2172 " this: %" PRIu64 "\n", last_timestamp,
2173 sample->time);
2174 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002175 }
David Ahern1424dc92011-03-09 22:23:28 -07002176 last_timestamp = sample->time;
2177 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002178 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002179
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03002180 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002181 pr_err("problem processing %d event, skipping it.\n",
2182 event->header.type);
2183 return -1;
2184 }
2185
2186 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002187 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002188
Andi Kleene87e5482019-03-11 07:44:52 -07002189 if (filter_cpu(sample))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002190 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002191
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002192 if (scripting_ops)
2193 scripting_ops->process_event(event, sample, evsel, &al);
2194 else
Andi Kleen48d02a12017-02-23 15:46:34 -08002195 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002196
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002197out_put:
2198 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002199 return 0;
2200}
2201
Adrian Hunter7ea95722013-11-01 15:51:30 +02002202static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002203 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002204{
2205 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002206 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002207 struct evsel *evsel, *pos;
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002208 u64 sample_type;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002209 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002210 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002211
2212 err = perf_event__process_attr(tool, event, pevlist);
2213 if (err)
2214 return err;
2215
2216 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002217 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002218
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302219 if (!evsel->priv) {
2220 if (scr->per_event_dump) {
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002221 evsel->priv = evsel_script__new(evsel, scr->session->data);
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302222 } else {
2223 es = zalloc(sizeof(*es));
2224 if (!es)
2225 return -ENOMEM;
2226 es->fp = stdout;
2227 evsel->priv = es;
2228 }
2229 }
2230
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002231 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2232 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002233 return 0;
2234
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002235 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002236 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002237 return 0;
2238 }
2239
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002240 if (evsel->core.attr.sample_type) {
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002241 err = evsel__check_attr(evsel, scr->session);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002242 if (err)
2243 return err;
2244 }
Jiri Olsad2b5a312015-10-16 12:41:25 +02002245
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002246 /*
2247 * Check if we need to enable callchains based
2248 * on events sample_type.
2249 */
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03002250 sample_type = evlist__combined_sample_type(evlist);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002251 callchain_param_setup(sample_type);
Jiri Olsa53fb1892020-05-07 11:50:24 +02002252
Adrian Hunterb5164082020-05-27 21:02:50 +03002253 /* Enable fields for callchain entries */
2254 if (symbol_conf.use_callchain &&
2255 (sample_type & PERF_SAMPLE_CALLCHAIN ||
2256 sample_type & PERF_SAMPLE_BRANCH_STACK ||
2257 (sample_type & PERF_SAMPLE_REGS_USER &&
2258 sample_type & PERF_SAMPLE_STACK_USER))) {
2259 int type = output_type(evsel->core.attr.type);
2260
2261 if (!(output[type].user_unset_fields & PERF_OUTPUT_IP))
2262 output[type].fields |= PERF_OUTPUT_IP;
2263 if (!(output[type].user_unset_fields & PERF_OUTPUT_SYM))
2264 output[type].fields |= PERF_OUTPUT_SYM;
Jiri Olsa53fb1892020-05-07 11:50:24 +02002265 }
2266 set_print_ip_opts(&evsel->core.attr);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002267 return 0;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002268}
2269
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002270static int print_event_with_time(struct perf_tool *tool,
2271 union perf_event *event,
2272 struct perf_sample *sample,
2273 struct machine *machine,
2274 pid_t pid, pid_t tid, u64 timestamp)
2275{
2276 struct perf_script *script = container_of(tool, struct perf_script, tool);
2277 struct perf_session *session = script->session;
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002278 struct evsel *evsel = evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002279 struct thread *thread = NULL;
2280
2281 if (evsel && !evsel->core.attr.sample_id_all) {
2282 sample->cpu = 0;
2283 sample->time = timestamp;
2284 sample->pid = pid;
2285 sample->tid = tid;
2286 }
2287
2288 if (filter_cpu(sample))
2289 return 0;
2290
2291 if (tid != -1)
2292 thread = machine__findnew_thread(machine, pid, tid);
2293
Adrian Hunterfc183802020-09-09 11:49:22 +03002294 if (evsel) {
Jiri Olsae534bfb2020-08-05 11:34:44 +02002295 perf_sample__fprintf_start(script, sample, thread, evsel,
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002296 event->header.type, stdout);
2297 }
2298
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002299 perf_event__fprintf(event, machine, stdout);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002300
2301 thread__put(thread);
2302
2303 return 0;
2304}
2305
2306static int print_event(struct perf_tool *tool, union perf_event *event,
2307 struct perf_sample *sample, struct machine *machine,
2308 pid_t pid, pid_t tid)
2309{
2310 return print_event_with_time(tool, event, sample, machine, pid, tid, 0);
2311}
2312
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002313static int process_comm_event(struct perf_tool *tool,
2314 union perf_event *event,
2315 struct perf_sample *sample,
2316 struct machine *machine)
2317{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002318 if (perf_event__process_comm(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002319 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002320
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002321 return print_event(tool, event, sample, machine, event->comm.pid,
2322 event->comm.tid);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002323}
2324
Hari Bathini96a44bb2017-03-08 02:12:06 +05302325static int process_namespaces_event(struct perf_tool *tool,
2326 union perf_event *event,
2327 struct perf_sample *sample,
2328 struct machine *machine)
2329{
Hari Bathini96a44bb2017-03-08 02:12:06 +05302330 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002331 return -1;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302332
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002333 return print_event(tool, event, sample, machine, event->namespaces.pid,
2334 event->namespaces.tid);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302335}
2336
Namhyung Kim160d4af2020-03-25 21:45:36 +09002337static int process_cgroup_event(struct perf_tool *tool,
2338 union perf_event *event,
2339 struct perf_sample *sample,
2340 struct machine *machine)
2341{
Namhyung Kim160d4af2020-03-25 21:45:36 +09002342 if (perf_event__process_cgroup(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002343 return -1;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002344
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002345 return print_event(tool, event, sample, machine, sample->pid,
2346 sample->tid);
Namhyung Kim160d4af2020-03-25 21:45:36 +09002347}
2348
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002349static int process_fork_event(struct perf_tool *tool,
2350 union perf_event *event,
2351 struct perf_sample *sample,
2352 struct machine *machine)
2353{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002354 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2355 return -1;
2356
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002357 return print_event_with_time(tool, event, sample, machine,
2358 event->fork.pid, event->fork.tid,
2359 event->fork.time);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002360}
2361static int process_exit_event(struct perf_tool *tool,
2362 union perf_event *event,
2363 struct perf_sample *sample,
2364 struct machine *machine)
2365{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002366 /* Print before 'exit' deletes anything */
2367 if (print_event_with_time(tool, event, sample, machine, event->fork.pid,
2368 event->fork.tid, event->fork.time))
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002369 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002370
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002371 return perf_event__process_exit(tool, event, sample, machine);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002372}
2373
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002374static int process_mmap_event(struct perf_tool *tool,
2375 union perf_event *event,
2376 struct perf_sample *sample,
2377 struct machine *machine)
2378{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002379 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2380 return -1;
2381
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002382 return print_event(tool, event, sample, machine, event->mmap.pid,
2383 event->mmap.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002384}
2385
2386static int process_mmap2_event(struct perf_tool *tool,
2387 union perf_event *event,
2388 struct perf_sample *sample,
2389 struct machine *machine)
2390{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002391 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2392 return -1;
2393
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002394 return print_event(tool, event, sample, machine, event->mmap2.pid,
2395 event->mmap2.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002396}
2397
Adrian Hunter7c148982015-07-21 12:44:06 +03002398static int process_switch_event(struct perf_tool *tool,
2399 union perf_event *event,
2400 struct perf_sample *sample,
2401 struct machine *machine)
2402{
Adrian Hunter7c148982015-07-21 12:44:06 +03002403 struct perf_script *script = container_of(tool, struct perf_script, tool);
Adrian Hunter7c148982015-07-21 12:44:06 +03002404
2405 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2406 return -1;
2407
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002408 if (scripting_ops && scripting_ops->process_switch)
2409 scripting_ops->process_switch(event, sample, machine);
2410
2411 if (!script->show_switch_events)
2412 return 0;
2413
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002414 return print_event(tool, event, sample, machine, sample->pid,
2415 sample->tid);
Adrian Hunter7c148982015-07-21 12:44:06 +03002416}
2417
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002418static int
2419process_lost_event(struct perf_tool *tool,
2420 union perf_event *event,
2421 struct perf_sample *sample,
2422 struct machine *machine)
2423{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002424 return print_event(tool, event, sample, machine, sample->pid,
2425 sample->tid);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002426}
2427
Jiri Olsa3233b372018-02-06 19:17:59 +01002428static int
2429process_finished_round_event(struct perf_tool *tool __maybe_unused,
2430 union perf_event *event,
2431 struct ordered_events *oe __maybe_unused)
2432
2433{
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002434 perf_event__fprintf(event, NULL, stdout);
Jiri Olsa3233b372018-02-06 19:17:59 +01002435 return 0;
2436}
2437
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002438static int
2439process_bpf_events(struct perf_tool *tool __maybe_unused,
2440 union perf_event *event,
2441 struct perf_sample *sample,
2442 struct machine *machine)
2443{
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002444 if (machine__process_ksymbol(machine, event, sample) < 0)
2445 return -1;
2446
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002447 return print_event(tool, event, sample, machine, sample->pid,
2448 sample->tid);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002449}
2450
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002451static int process_text_poke_events(struct perf_tool *tool,
2452 union perf_event *event,
2453 struct perf_sample *sample,
2454 struct machine *machine)
2455{
2456 if (perf_event__process_text_poke(tool, event, sample, machine) < 0)
2457 return -1;
2458
2459 return print_event(tool, event, sample, machine, sample->pid,
2460 sample->tid);
2461}
2462
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002463static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002464{
2465 session_done = 1;
2466}
2467
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002468static void perf_script__fclose_per_event_dump(struct perf_script *script)
2469{
Jiri Olsa63503db2019-07-21 13:23:52 +02002470 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002471 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002472
2473 evlist__for_each_entry(evlist, evsel) {
2474 if (!evsel->priv)
2475 break;
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002476 evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002477 evsel->priv = NULL;
2478 }
2479}
2480
2481static int perf_script__fopen_per_event_dump(struct perf_script *script)
2482{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002483 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002484
2485 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002486 /*
2487 * Already setup? I.e. we may be called twice in cases like
2488 * Intel PT, one for the intel_pt// and dummy events, then
Ingo Molnar4d39c892021-03-23 17:09:15 +01002489 * for the evsels synthesized from the auxtrace info.
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002490 *
2491 * Ses perf_script__process_auxtrace_info.
2492 */
2493 if (evsel->priv != NULL)
2494 continue;
2495
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002496 evsel->priv = evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002497 if (evsel->priv == NULL)
2498 goto out_err_fclose;
2499 }
2500
2501 return 0;
2502
2503out_err_fclose:
2504 perf_script__fclose_per_event_dump(script);
2505 return -1;
2506}
2507
2508static int perf_script__setup_per_event_dump(struct perf_script *script)
2509{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002510 struct evsel *evsel;
2511 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002512
2513 if (script->per_event_dump)
2514 return perf_script__fopen_per_event_dump(script);
2515
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002516 es_stdout.fp = stdout;
2517
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002518 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002519 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002520
2521 return 0;
2522}
2523
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002524static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2525{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002526 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002527
2528 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002529 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002530
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002531 evsel_script__fprintf(es, stdout);
2532 evsel_script__delete(es);
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002533 evsel->priv = NULL;
2534 }
2535}
2536
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002537static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002538{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002539 int ret;
2540
Tom Zanussic239da32010-04-01 23:59:18 -05002541 signal(SIGINT, sig_handler);
2542
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002543 perf_stat__init_shadow_stats();
2544
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002545 /* override event processing functions */
2546 if (script->show_task_events) {
2547 script->tool.comm = process_comm_event;
2548 script->tool.fork = process_fork_event;
2549 script->tool.exit = process_exit_event;
2550 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002551 if (script->show_mmap_events) {
2552 script->tool.mmap = process_mmap_event;
2553 script->tool.mmap2 = process_mmap2_event;
2554 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002555 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002556 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302557 if (script->show_namespace_events)
2558 script->tool.namespaces = process_namespaces_event;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002559 if (script->show_cgroup_events)
2560 script->tool.cgroup = process_cgroup_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002561 if (script->show_lost_events)
2562 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002563 if (script->show_round_events) {
2564 script->tool.ordered_events = false;
2565 script->tool.finished_round = process_finished_round_event;
2566 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002567 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002568 script->tool.ksymbol = process_bpf_events;
2569 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002570 }
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002571 if (script->show_text_poke_events) {
2572 script->tool.ksymbol = process_bpf_events;
2573 script->tool.text_poke = process_text_poke_events;
2574 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002575
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002576 if (perf_script__setup_per_event_dump(script)) {
2577 pr_err("Couldn't create the per event dump files\n");
2578 return -1;
2579 }
2580
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002581 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002582
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002583 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002584 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002585
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002586 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002587 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002588
2589 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002590}
2591
Tom Zanussi956ffd02009-11-25 01:15:46 -06002592struct script_spec {
2593 struct list_head node;
2594 struct scripting_ops *ops;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -05002595 char spec[];
Tom Zanussi956ffd02009-11-25 01:15:46 -06002596};
2597
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002598static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002599
2600static struct script_spec *script_spec__new(const char *spec,
2601 struct scripting_ops *ops)
2602{
2603 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2604
2605 if (s != NULL) {
2606 strcpy(s->spec, spec);
2607 s->ops = ops;
2608 }
2609
2610 return s;
2611}
2612
Tom Zanussi956ffd02009-11-25 01:15:46 -06002613static void script_spec__add(struct script_spec *s)
2614{
2615 list_add_tail(&s->node, &script_specs);
2616}
2617
2618static struct script_spec *script_spec__find(const char *spec)
2619{
2620 struct script_spec *s;
2621
2622 list_for_each_entry(s, &script_specs, node)
2623 if (strcasecmp(s->spec, spec) == 0)
2624 return s;
2625 return NULL;
2626}
2627
Tom Zanussi956ffd02009-11-25 01:15:46 -06002628int script_spec_register(const char *spec, struct scripting_ops *ops)
2629{
2630 struct script_spec *s;
2631
2632 s = script_spec__find(spec);
2633 if (s)
2634 return -1;
2635
Taeung Song8560bae2016-02-26 00:13:10 +09002636 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002637 if (!s)
2638 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002639 else
2640 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002641
2642 return 0;
2643}
2644
2645static struct scripting_ops *script_spec__lookup(const char *spec)
2646{
2647 struct script_spec *s = script_spec__find(spec);
2648 if (!s)
2649 return NULL;
2650
2651 return s->ops;
2652}
2653
2654static void list_available_languages(void)
2655{
2656 struct script_spec *s;
2657
2658 fprintf(stderr, "\n");
2659 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002660 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002661
2662 list_for_each_entry(s, &script_specs, node)
2663 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2664
2665 fprintf(stderr, "\n");
2666}
2667
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002668static int parse_scriptname(const struct option *opt __maybe_unused,
2669 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002670{
2671 char spec[PATH_MAX];
2672 const char *script, *ext;
2673 int len;
2674
Tom Zanussif526d682010-01-27 02:27:52 -06002675 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002676 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002677 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002678 }
2679
2680 script = strchr(str, ':');
2681 if (script) {
2682 len = script - str;
2683 if (len >= PATH_MAX) {
2684 fprintf(stderr, "invalid language specifier");
2685 return -1;
2686 }
2687 strncpy(spec, str, len);
2688 spec[len] = '\0';
2689 scripting_ops = script_spec__lookup(spec);
2690 if (!scripting_ops) {
2691 fprintf(stderr, "invalid language specifier");
2692 return -1;
2693 }
2694 script++;
2695 } else {
2696 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002697 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002698 if (!ext) {
2699 fprintf(stderr, "invalid script extension");
2700 return -1;
2701 }
2702 scripting_ops = script_spec__lookup(++ext);
2703 if (!scripting_ops) {
2704 fprintf(stderr, "invalid script extension");
2705 return -1;
2706 }
2707 }
2708
2709 script_name = strdup(script);
2710
2711 return 0;
2712}
2713
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002714static int parse_output_fields(const struct option *opt __maybe_unused,
2715 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002716{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002717 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002718 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002719 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002720 int rc = 0;
2721 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002722 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002723 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002724
2725 if (!str)
2726 return -ENOMEM;
2727
David Ahern2c9e45f72011-03-17 10:03:21 -06002728 /* first word can state for which event type the user is specifying
2729 * the fields. If no type exists, the specified fields apply to all
2730 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002731 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002732 tok = strchr(str, ':');
2733 if (tok) {
2734 *tok = '\0';
2735 tok++;
2736 if (!strcmp(str, "hw"))
2737 type = PERF_TYPE_HARDWARE;
2738 else if (!strcmp(str, "sw"))
2739 type = PERF_TYPE_SOFTWARE;
2740 else if (!strcmp(str, "trace"))
2741 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002742 else if (!strcmp(str, "raw"))
2743 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002744 else if (!strcmp(str, "break"))
2745 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002746 else if (!strcmp(str, "synth"))
2747 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002748 else {
2749 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002750 rc = -EINVAL;
2751 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002752 }
2753
2754 if (output[type].user_set)
2755 pr_warning("Overriding previous field request for %s events.\n",
2756 event_type(type));
2757
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002758 /* Don't override defaults for +- */
2759 if (strchr(tok, '+') || strchr(tok, '-'))
2760 goto parse;
2761
David Ahern2c9e45f72011-03-17 10:03:21 -06002762 output[type].fields = 0;
2763 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002764 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002765
2766 } else {
2767 tok = str;
2768 if (strlen(str) == 0) {
2769 fprintf(stderr,
2770 "Cannot set fields to 'none' for all event types.\n");
2771 rc = -EINVAL;
2772 goto out;
2773 }
2774
Andi Kleen36ce5652017-06-02 08:48:10 -07002775 /* Don't override defaults for +- */
2776 if (strchr(str, '+') || strchr(str, '-'))
2777 goto parse;
2778
David Ahern2c9e45f72011-03-17 10:03:21 -06002779 if (output_set_by_user())
2780 pr_warning("Overriding previous field request for all events.\n");
2781
Adrian Hunter14057202017-06-21 13:17:19 +03002782 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002783 output[j].fields = 0;
2784 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002785 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002786 }
David Ahern1424dc92011-03-09 22:23:28 -07002787 }
2788
Andi Kleen36ce5652017-06-02 08:48:10 -07002789parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002790 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002791 if (*tok == '+') {
2792 if (change == SET)
2793 goto out_badmix;
2794 change = ADD;
2795 tok++;
2796 } else if (*tok == '-') {
2797 if (change == SET)
2798 goto out_badmix;
2799 change = REMOVE;
2800 tok++;
2801 } else {
2802 if (change != SET && change != DEFAULT)
2803 goto out_badmix;
2804 change = SET;
2805 }
2806
David Ahern745f43e2011-03-09 22:23:26 -07002807 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002808 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002809 break;
David Ahern745f43e2011-03-09 22:23:26 -07002810 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002811 if (i == imax && strcmp(tok, "flags") == 0) {
Yang Li85247112021-02-08 16:45:36 +08002812 print_flags = change != REMOVE;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002813 continue;
2814 }
David Ahern745f43e2011-03-09 22:23:26 -07002815 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002816 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002817 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002818 goto out;
2819 }
2820
2821 if (type == -1) {
2822 /* add user option to all events types for
2823 * which it is valid
2824 */
Adrian Hunter14057202017-06-21 13:17:19 +03002825 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002826 if (output[j].invalid_fields & all_output_options[i].field) {
2827 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2828 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002829 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002830 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002831 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002832 output[j].user_set_fields &= ~all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002833 output[j].user_unset_fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002834 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002835 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002836 output[j].user_set_fields |= all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002837 output[j].user_unset_fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002838 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002839 output[j].user_set = true;
2840 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002841 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002842 }
2843 } else {
2844 if (output[type].invalid_fields & all_output_options[i].field) {
2845 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2846 all_output_options[i].str, event_type(type));
2847
2848 rc = -EINVAL;
2849 goto out;
2850 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002851 if (change == REMOVE)
2852 output[type].fields &= ~all_output_options[i].field;
2853 else
2854 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002855 output[type].user_set = true;
2856 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002857 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002858 }
2859
2860 if (type >= 0) {
2861 if (output[type].fields == 0) {
2862 pr_debug("No fields requested for %s type. "
2863 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002864 }
David Ahern1424dc92011-03-09 22:23:28 -07002865 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002866 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002867
Andi Kleen36ce5652017-06-02 08:48:10 -07002868out_badmix:
2869 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2870 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002871out:
David Ahern745f43e2011-03-09 22:23:26 -07002872 free(str);
2873 return rc;
2874}
2875
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002876#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2877 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2878 if ((lang_dirent->d_type == DT_DIR || \
2879 (lang_dirent->d_type == DT_UNKNOWN && \
2880 is_directory(scripts_path, lang_dirent))) && \
2881 (strcmp(lang_dirent->d_name, ".")) && \
2882 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002883
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002884#define for_each_script(lang_path, lang_dir, script_dirent) \
2885 while ((script_dirent = readdir(lang_dir)) != NULL) \
2886 if (script_dirent->d_type != DT_DIR && \
2887 (script_dirent->d_type != DT_UNKNOWN || \
2888 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002889
2890
2891#define RECORD_SUFFIX "-record"
2892#define REPORT_SUFFIX "-report"
2893
2894struct script_desc {
2895 struct list_head node;
2896 char *name;
2897 char *half_liner;
2898 char *args;
2899};
2900
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002901static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002902
2903static struct script_desc *script_desc__new(const char *name)
2904{
2905 struct script_desc *s = zalloc(sizeof(*s));
2906
Tom Zanussib5b87312010-11-10 08:16:51 -06002907 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002908 s->name = strdup(name);
2909
2910 return s;
2911}
2912
2913static void script_desc__delete(struct script_desc *s)
2914{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002915 zfree(&s->name);
2916 zfree(&s->half_liner);
2917 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002918 free(s);
2919}
2920
2921static void script_desc__add(struct script_desc *s)
2922{
2923 list_add_tail(&s->node, &script_descs);
2924}
2925
2926static struct script_desc *script_desc__find(const char *name)
2927{
2928 struct script_desc *s;
2929
2930 list_for_each_entry(s, &script_descs, node)
2931 if (strcasecmp(s->name, name) == 0)
2932 return s;
2933 return NULL;
2934}
2935
2936static struct script_desc *script_desc__findnew(const char *name)
2937{
2938 struct script_desc *s = script_desc__find(name);
2939
2940 if (s)
2941 return s;
2942
2943 s = script_desc__new(name);
2944 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002945 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002946
2947 script_desc__add(s);
2948
2949 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002950}
2951
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002952static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002953{
2954 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002955 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002956
2957 if (strlen(str) > suffix_len) {
2958 p = str + strlen(str) - suffix_len;
2959 if (!strncmp(p, suffix, suffix_len))
2960 return p;
2961 }
2962
2963 return NULL;
2964}
2965
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002966static int read_script_info(struct script_desc *desc, const char *filename)
2967{
2968 char line[BUFSIZ], *p;
2969 FILE *fp;
2970
2971 fp = fopen(filename, "r");
2972 if (!fp)
2973 return -1;
2974
2975 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002976 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002977 if (strlen(p) == 0)
2978 continue;
2979 if (*p != '#')
2980 continue;
2981 p++;
2982 if (strlen(p) && *p == '!')
2983 continue;
2984
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002985 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002986 if (strlen(p) && p[strlen(p) - 1] == '\n')
2987 p[strlen(p) - 1] = '\0';
2988
2989 if (!strncmp(p, "description:", strlen("description:"))) {
2990 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002991 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002992 continue;
2993 }
2994
2995 if (!strncmp(p, "args:", strlen("args:"))) {
2996 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002997 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002998 continue;
2999 }
3000 }
3001
3002 fclose(fp);
3003
3004 return 0;
3005}
3006
Robert Richter38efb532011-11-25 11:38:40 +01003007static char *get_script_root(struct dirent *script_dirent, const char *suffix)
3008{
3009 char *script_root, *str;
3010
3011 script_root = strdup(script_dirent->d_name);
3012 if (!script_root)
3013 return NULL;
3014
3015 str = (char *)ends_with(script_root, suffix);
3016 if (!str) {
3017 free(script_root);
3018 return NULL;
3019 }
3020
3021 *str = '\0';
3022 return script_root;
3023}
3024
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003025static int list_available_scripts(const struct option *opt __maybe_unused,
3026 const char *s __maybe_unused,
3027 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003028{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003029 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003030 char scripts_path[MAXPATHLEN];
3031 DIR *scripts_dir, *lang_dir;
3032 char script_path[MAXPATHLEN];
3033 char lang_path[MAXPATHLEN];
3034 struct script_desc *desc;
3035 char first_half[BUFSIZ];
3036 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003037
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003038 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003039
3040 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003041 if (!scripts_dir) {
3042 fprintf(stdout,
3043 "open(%s) failed.\n"
3044 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3045 scripts_path);
3046 exit(-1);
3047 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003048
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003049 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003050 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3051 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003052 lang_dir = opendir(lang_path);
3053 if (!lang_dir)
3054 continue;
3055
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003056 for_each_script(lang_path, lang_dir, script_dirent) {
3057 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003058 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003059 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003060 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3061 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003062 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003063 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003064 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003065 }
3066 }
3067
3068 fprintf(stdout, "List of available trace scripts:\n");
3069 list_for_each_entry(desc, &script_descs, node) {
3070 sprintf(first_half, "%s %s", desc->name,
3071 desc->args ? desc->args : "");
3072 fprintf(stdout, " %-36s %s\n", first_half,
3073 desc->half_liner ? desc->half_liner : "");
3074 }
3075
3076 exit(0);
3077}
3078
Feng Tange5f37052012-09-07 16:42:26 +08003079/*
Feng Tang49e639e2012-10-30 11:56:03 +08003080 * Some scripts specify the required events in their "xxx-record" file,
3081 * this function will check if the events in perf.data match those
3082 * mentioned in the "xxx-record".
3083 *
3084 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3085 * which is covered well now. And new parsing code should be added to
Ingo Molnar4d39c892021-03-23 17:09:15 +01003086 * cover the future complex formats like event groups etc.
Feng Tang49e639e2012-10-30 11:56:03 +08003087 */
3088static int check_ev_match(char *dir_name, char *scriptname,
3089 struct perf_session *session)
3090{
3091 char filename[MAXPATHLEN], evname[128];
3092 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003093 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003094 int match, len;
3095 FILE *fp;
3096
Jiri Olsa77f18152018-03-19 09:29:01 +01003097 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003098
3099 fp = fopen(filename, "r");
3100 if (!fp)
3101 return -1;
3102
3103 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003104 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003105 if (*p == '#')
3106 continue;
3107
3108 while (strlen(p)) {
3109 p = strstr(p, "-e");
3110 if (!p)
3111 break;
3112
3113 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003114 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003115 len = strcspn(p, " \t");
3116 if (!len)
3117 break;
3118
3119 snprintf(evname, len + 1, "%s", p);
3120
3121 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003122 evlist__for_each_entry(session->evlist, pos) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03003123 if (!strcmp(evsel__name(pos), evname)) {
Feng Tang49e639e2012-10-30 11:56:03 +08003124 match = 1;
3125 break;
3126 }
3127 }
3128
3129 if (!match) {
3130 fclose(fp);
3131 return -1;
3132 }
3133 }
3134 }
3135
3136 fclose(fp);
3137 return 0;
3138}
3139
3140/*
Feng Tange5f37052012-09-07 16:42:26 +08003141 * Return -1 if none is found, otherwise the actual scripts number.
3142 *
3143 * Currently the only user of this function is the script browser, which
3144 * will list all statically runnable scripts, select one, execute it and
3145 * show the output in a perf browser.
3146 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003147int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3148 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003149{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003150 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003151 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003152 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003153 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003154 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003155 .path = input_name,
3156 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003157 };
Feng Tange5f37052012-09-07 16:42:26 +08003158 char *temp;
3159 int i = 0;
3160
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003161 session = perf_session__new(&data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303162 if (IS_ERR(session))
3163 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003164
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003165 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003166
3167 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003168 if (!scripts_dir) {
3169 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003170 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003171 }
Feng Tange5f37052012-09-07 16:42:26 +08003172
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003173 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003174 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3175 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003176#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003177 if (strstr(lang_path, "perl"))
3178 continue;
3179#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003180#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003181 if (strstr(lang_path, "python"))
3182 continue;
3183#endif
3184
3185 lang_dir = opendir(lang_path);
3186 if (!lang_dir)
3187 continue;
3188
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003189 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08003190 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003191 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003192 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003193 if (i >= num)
3194 break;
3195 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3196 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003197 script_dirent->d_name);
3198 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003199 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003200 (temp - script_dirent->d_name) + 1,
3201 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003202
3203 if (check_ev_match(lang_path,
3204 scripts_array[i], session))
3205 continue;
3206
Feng Tange5f37052012-09-07 16:42:26 +08003207 i++;
3208 }
Feng Tang49e639e2012-10-30 11:56:03 +08003209 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003210 }
3211
Feng Tang49e639e2012-10-30 11:56:03 +08003212 closedir(scripts_dir);
3213 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003214 return i;
3215}
3216
Tom Zanussi38752942009-12-15 02:53:39 -06003217static char *get_script_path(const char *script_root, const char *suffix)
3218{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003219 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003220 char scripts_path[MAXPATHLEN];
3221 char script_path[MAXPATHLEN];
3222 DIR *scripts_dir, *lang_dir;
3223 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003224 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003225
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003226 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003227
3228 scripts_dir = opendir(scripts_path);
3229 if (!scripts_dir)
3230 return NULL;
3231
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003232 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003233 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3234 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003235 lang_dir = opendir(lang_path);
3236 if (!lang_dir)
3237 continue;
3238
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003239 for_each_script(lang_path, lang_dir, script_dirent) {
3240 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003241 if (__script_root && !strcmp(script_root, __script_root)) {
3242 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003243 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003244 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3245 lang_path, script_dirent->d_name);
Andreas Gerstmayr27486a82020-04-02 14:43:38 +02003246 closedir(lang_dir);
Robert Richter38efb532011-11-25 11:38:40 +01003247 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003248 }
3249 free(__script_root);
3250 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003251 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003252 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003253 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003254
Robert Richter38efb532011-11-25 11:38:40 +01003255 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003256}
3257
Tom Zanussib5b87312010-11-10 08:16:51 -06003258static bool is_top_script(const char *script_path)
3259{
Yang Li85247112021-02-08 16:45:36 +08003260 return ends_with(script_path, "top") != NULL;
Tom Zanussib5b87312010-11-10 08:16:51 -06003261}
3262
3263static int has_required_arg(char *script_path)
3264{
3265 struct script_desc *desc;
3266 int n_args = 0;
3267 char *p;
3268
3269 desc = script_desc__new(NULL);
3270
3271 if (read_script_info(desc, script_path))
3272 goto out;
3273
3274 if (!desc->args)
3275 goto out;
3276
3277 for (p = desc->args; *p; p++)
3278 if (*p == '<')
3279 n_args++;
3280out:
3281 script_desc__delete(desc);
3282
3283 return n_args;
3284}
3285
David Ahernd54b1a92012-08-26 12:24:46 -06003286static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003287{
3288 char **__argv = malloc(sizeof(const char *) * argc);
3289
David Ahernd54b1a92012-08-26 12:24:46 -06003290 if (!__argv) {
3291 pr_err("malloc failed\n");
3292 return -1;
3293 }
3294
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003295 memcpy(__argv, argv, sizeof(const char *) * argc);
3296 argc = parse_options(argc, (const char **)__argv, record_options,
3297 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3298 free(__argv);
3299
David Ahernd54b1a92012-08-26 12:24:46 -06003300 system_wide = (argc == 0);
3301
3302 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003303}
3304
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003305static void script__setup_sample_type(struct perf_script *script)
3306{
3307 struct perf_session *session = script->session;
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03003308 u64 sample_type = evlist__combined_sample_type(session->evlist);
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003309
3310 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3311 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003312 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003313 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003314 dwarf_callchain_users = true;
3315 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003316 callchain_param.record_mode = CALLCHAIN_LBR;
3317 else
3318 callchain_param.record_mode = CALLCHAIN_FP;
3319 }
Kan Liang680d1252020-03-19 13:25:14 -07003320
3321 if (script->stitch_lbr && (callchain_param.record_mode != CALLCHAIN_LBR)) {
3322 pr_warning("Can't find LBR callchain. Switch off --stitch-lbr.\n"
3323 "Please apply --call-graph lbr when recording.\n");
3324 script->stitch_lbr = false;
3325 }
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003326}
3327
Jiri Olsa89f16882018-09-13 14:54:03 +02003328static int process_stat_round_event(struct perf_session *session,
3329 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003330{
Jiri Olsa72932372019-08-28 15:57:16 +02003331 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003332 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003333
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003334 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003335 perf_stat_process_counter(&stat_config, counter);
3336 process_stat(counter, round->time);
3337 }
3338
3339 process_stat_interval(round->time);
3340 return 0;
3341}
3342
Jiri Olsa89f16882018-09-13 14:54:03 +02003343static int process_stat_config_event(struct perf_session *session __maybe_unused,
3344 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003345{
3346 perf_event__read_stat_config(&stat_config, &event->stat_config);
3347 return 0;
3348}
3349
Jiri Olsacfc88742016-01-05 22:09:06 +01003350static int set_maps(struct perf_script *script)
3351{
Jiri Olsa63503db2019-07-21 13:23:52 +02003352 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003353
3354 if (!script->cpus || !script->threads)
3355 return 0;
3356
3357 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3358 return -EINVAL;
3359
Jiri Olsa453fa032019-07-21 13:24:43 +02003360 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003361
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003362 if (evlist__alloc_stats(evlist, true))
Jiri Olsacfc88742016-01-05 22:09:06 +01003363 return -ENOMEM;
3364
3365 script->allocated = true;
3366 return 0;
3367}
3368
3369static
Jiri Olsa89f16882018-09-13 14:54:03 +02003370int process_thread_map_event(struct perf_session *session,
3371 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003372{
Jiri Olsa89f16882018-09-13 14:54:03 +02003373 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003374 struct perf_script *script = container_of(tool, struct perf_script, tool);
3375
3376 if (script->threads) {
3377 pr_warning("Extra thread map event, ignoring.\n");
3378 return 0;
3379 }
3380
3381 script->threads = thread_map__new_event(&event->thread_map);
3382 if (!script->threads)
3383 return -ENOMEM;
3384
3385 return set_maps(script);
3386}
3387
3388static
Jiri Olsa89f16882018-09-13 14:54:03 +02003389int process_cpu_map_event(struct perf_session *session,
3390 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003391{
Jiri Olsa89f16882018-09-13 14:54:03 +02003392 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003393 struct perf_script *script = container_of(tool, struct perf_script, tool);
3394
3395 if (script->cpus) {
3396 pr_warning("Extra cpu map event, ignoring.\n");
3397 return 0;
3398 }
3399
3400 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3401 if (!script->cpus)
3402 return -ENOMEM;
3403
3404 return set_maps(script);
3405}
3406
Jiri Olsa89f16882018-09-13 14:54:03 +02003407static int process_feature_event(struct perf_session *session,
3408 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303409{
3410 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003411 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303412 return 0;
3413}
3414
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003415#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003416static int perf_script__process_auxtrace_info(struct perf_session *session,
3417 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003418{
Jiri Olsa89f16882018-09-13 14:54:03 +02003419 struct perf_tool *tool = session->tool;
3420
3421 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003422
3423 if (ret == 0) {
3424 struct perf_script *script = container_of(tool, struct perf_script, tool);
3425
3426 ret = perf_script__setup_per_event_dump(script);
3427 }
3428
3429 return ret;
3430}
3431#else
3432#define perf_script__process_auxtrace_info 0
3433#endif
3434
Andi Kleenb585ebd2018-09-20 11:05:36 -07003435static int parse_insn_trace(const struct option *opt __maybe_unused,
3436 const char *str __maybe_unused,
3437 int unset __maybe_unused)
3438{
3439 parse_output_fields(NULL, "+insn,-event,-period", 0);
3440 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003441 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003442 return 0;
3443}
3444
3445static int parse_xed(const struct option *opt __maybe_unused,
3446 const char *str __maybe_unused,
3447 int unset __maybe_unused)
3448{
Andi Kleen8c3e05c2020-05-21 19:09:14 -07003449 if (isatty(1))
3450 force_pager("xed -F insn: -A -64 | less");
3451 else
3452 force_pager("xed -F insn: -A -64");
Andi Kleenb585ebd2018-09-20 11:05:36 -07003453 return 0;
3454}
3455
Andi Kleend1b15522018-09-20 11:05:38 -07003456static int parse_call_trace(const struct option *opt __maybe_unused,
3457 const char *str __maybe_unused,
3458 int unset __maybe_unused)
3459{
3460 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3461 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003462 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003463 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003464 return 0;
3465}
3466
3467static int parse_callret_trace(const struct option *opt __maybe_unused,
3468 const char *str __maybe_unused,
3469 int unset __maybe_unused)
3470{
3471 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3472 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003473 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003474 return 0;
3475}
3476
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003477int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003478{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003479 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003480 bool header = false;
3481 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003482 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003483 char *rec_script_path = NULL;
3484 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003485 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003486 struct itrace_synth_opts itrace_synth_opts = {
3487 .set = false,
3488 .default_no_sample = true,
3489 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003490 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003491 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003492 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003493 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003494 struct perf_script script = {
3495 .tool = {
3496 .sample = process_sample_event,
3497 .mmap = perf_event__process_mmap,
3498 .mmap2 = perf_event__process_mmap2,
3499 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303500 .namespaces = perf_event__process_namespaces,
Namhyung Kim160d4af2020-03-25 21:45:36 +09003501 .cgroup = perf_event__process_cgroup,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003502 .exit = perf_event__process_exit,
3503 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003504 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003505 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003506 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303507 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003508 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003509 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003510 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003511 .auxtrace = perf_event__process_auxtrace,
3512 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003513 .stat = perf_event__process_stat_event,
3514 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003515 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003516 .thread_map = process_thread_map_event,
3517 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003518 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003519 .ordering_requires_timestamps = true,
3520 },
3521 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003522 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003523 .mode = PERF_DATA_MODE_READ,
3524 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003525 const struct option options[] = {
3526 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3527 "dump raw trace in ASCII"),
3528 OPT_INCR('v', "verbose", &verbose,
3529 "be more verbose (show symbol address, etc)"),
3530 OPT_BOOLEAN('L', "Latency", &latency_format,
3531 "show latency attributes (irqs/preemption disabled, etc)"),
3532 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3533 list_available_scripts),
3534 OPT_CALLBACK('s', "script", NULL, "name",
3535 "script file name (lang:script name, script name, or *)",
3536 parse_scriptname),
3537 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3538 "generate perf-script.xx script in specified language"),
3539 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3540 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3541 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003542 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3543 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003544 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3545 "file", "vmlinux pathname"),
3546 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3547 "file", "kallsyms pathname"),
3548 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3549 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003550 OPT_CALLBACK(0, "symfs", NULL, "directory",
3551 "Look for files with symbols relative to this directory",
3552 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003553 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003554 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003555 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003556 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003557 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303558 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3559 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Kan Liang6b9bae62020-12-16 10:57:57 -08003560 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc,tod,"
Stephane Eranianc513de82021-01-05 11:57:50 -08003561 "data_page_size,code_page_size",
Andi Kleen48d02a12017-02-23 15:46:34 -08003562 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003563 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3564 "system-wide collection from all CPUs"),
Jin Yao4b799a92021-01-25 07:27:50 +08003565 OPT_STRING(0, "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
3566 "only consider symbols in these DSOs"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003567 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3568 "only consider these symbols"),
Jin Yao61d9fc42021-02-07 16:09:35 +08003569 OPT_INTEGER(0, "addr-range", &symbol_conf.addr_range,
3570 "Use with -S to list traced records within address range"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003571 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3572 "Decode instructions from itrace", parse_insn_trace),
3573 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3574 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003575 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3576 "Decode calls from from itrace", parse_call_trace),
3577 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3578 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003579 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3580 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003581 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3582 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003583 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3584 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3585 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003586 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3587 "only consider symbols in these pids"),
3588 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3589 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003590 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3591 "Set the maximum stack depth when parsing the callchain, "
3592 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003593 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003594 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003595 OPT_BOOLEAN(0, "deltatime", &deltatime, "Show time stamps relative to previous event"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003596 OPT_BOOLEAN('I', "show-info", &show_full_info,
3597 "display extended information from perf.data file"),
3598 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3599 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003600 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3601 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003602 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3603 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003604 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3605 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303606 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3607 "Show namespace events (if recorded)"),
Namhyung Kim160d4af2020-03-25 21:45:36 +09003608 OPT_BOOLEAN('\0', "show-cgroup-events", &script.show_cgroup_events,
3609 "Show cgroup events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003610 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3611 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003612 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3613 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003614 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3615 "Show bpf related events (if recorded)"),
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03003616 OPT_BOOLEAN('\0', "show-text-poke-events", &script.show_text_poke_events,
3617 "Show text poke related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003618 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3619 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003620 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003621 OPT_INTEGER(0, "max-blocks", &max_blocks,
3622 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003623 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003624 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003625 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003626 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003627 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003628 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3629 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003630 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3631 "Enable symbol demangling"),
3632 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3633 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003634 OPT_STRING(0, "time", &script.time_str, "str",
3635 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003636 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3637 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003638 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3639 "guest mount directory under which every guest os"
3640 " instance has a subdir"),
3641 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3642 "file", "file saving guest os vmlinux"),
3643 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3644 "file", "file saving guest os /proc/kallsyms"),
3645 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3646 "file", "file saving guest os /proc/modules"),
Kan Liang680d1252020-03-19 13:25:14 -07003647 OPT_BOOLEAN('\0', "stitch-lbr", &script.stitch_lbr,
3648 "Enable LBR callgraph stitching approach"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003649 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003650 OPT_END()
3651 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003652 const char * const script_subcommands[] = { "record", "report", NULL };
3653 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003654 "perf script [<options>]",
3655 "perf script [<options>] record <script> [<record-options>] <command>",
3656 "perf script [<options>] report <script> [script-args]",
3657 "perf script [<options>] <script> [<record-options>] <command>",
3658 "perf script [<options>] <top-script> [script-args]",
3659 NULL
3660 };
Tom Zanussi38752942009-12-15 02:53:39 -06003661
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003662 perf_set_singlethreaded();
3663
Tom Zanussib5b87312010-11-10 08:16:51 -06003664 setup_scripting();
3665
Yunlong Song40cae2b2015-03-18 21:35:54 +08003666 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003667 PARSE_OPT_STOP_AT_NON_OPTION);
3668
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003669 if (symbol_conf.guestmount ||
3670 symbol_conf.default_guest_vmlinux_name ||
3671 symbol_conf.default_guest_kallsyms ||
3672 symbol_conf.default_guest_modules) {
3673 /*
3674 * Enable guest sample processing.
3675 */
3676 perf_guest = true;
3677 }
3678
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003679 data.path = input_name;
3680 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003681
Tom Zanussib5b87312010-11-10 08:16:51 -06003682 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3683 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3684 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003685 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003686 }
3687
Tom Zanussib5b87312010-11-10 08:16:51 -06003688 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3689 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3690 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003691 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003692 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003693 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003694 return -1;
3695 }
Tom Zanussi38752942009-12-15 02:53:39 -06003696 }
3697
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003698 if (reltime && deltatime) {
3699 fprintf(stderr,
3700 "reltime and deltatime - the two don't get along well. "
3701 "Please limit to --reltime or --deltatime.\n");
3702 return -1;
3703 }
3704
Adrian Hunter1c5c25b2020-04-01 13:16:05 +03003705 if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003706 itrace_synth_opts.callchain_sz > scripting_max_stack)
3707 scripting_max_stack = itrace_synth_opts.callchain_sz;
3708
Ben Hutchings44e668c2010-10-10 16:10:03 +01003709 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003710 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003711
Tom Zanussib5b87312010-11-10 08:16:51 -06003712 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003713 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003714 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003715 pid_t pid;
3716
Tom Zanussib5b87312010-11-10 08:16:51 -06003717 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3718 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3719
3720 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003721 usage_with_options_msg(script_usage, options,
3722 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003723 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003724 }
3725
Tom Zanussib5b87312010-11-10 08:16:51 -06003726 if (is_top_script(argv[0])) {
3727 rep_args = argc - 1;
3728 } else {
3729 int rec_args;
3730
3731 rep_args = has_required_arg(rep_script_path);
3732 rec_args = (argc - 1) - rep_args;
3733 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003734 usage_with_options_msg(script_usage, options,
3735 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003736 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003737 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003738 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003739 }
3740
3741 if (pipe(live_pipe) < 0) {
3742 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003743 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003744 }
3745
3746 pid = fork();
3747 if (pid < 0) {
3748 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003749 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003750 }
3751
3752 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003753 j = 0;
3754
Tom Zanussia0cccc22010-04-01 23:59:25 -05003755 dup2(live_pipe[1], 1);
3756 close(live_pipe[0]);
3757
Robert Richter317df652011-11-25 15:05:25 +01003758 if (is_top_script(argv[0])) {
3759 system_wide = true;
3760 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003761 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3762 err = -1;
3763 goto out;
3764 }
Robert Richter317df652011-11-25 15:05:25 +01003765 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003766
3767 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003768 if (!__argv) {
3769 pr_err("malloc failed\n");
3770 err = -ENOMEM;
3771 goto out;
3772 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003773
Tom Zanussib5b87312010-11-10 08:16:51 -06003774 __argv[j++] = "/bin/sh";
3775 __argv[j++] = rec_script_path;
3776 if (system_wide)
3777 __argv[j++] = "-a";
3778 __argv[j++] = "-q";
3779 __argv[j++] = "-o";
3780 __argv[j++] = "-";
3781 for (i = rep_args + 1; i < argc; i++)
3782 __argv[j++] = argv[i];
3783 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003784
3785 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003786 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003787 exit(-1);
3788 }
3789
3790 dup2(live_pipe[0], 0);
3791 close(live_pipe[1]);
3792
Tom Zanussib5b87312010-11-10 08:16:51 -06003793 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003794 if (!__argv) {
3795 pr_err("malloc failed\n");
3796 err = -ENOMEM;
3797 goto out;
3798 }
3799
Tom Zanussib5b87312010-11-10 08:16:51 -06003800 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003801 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003802 __argv[j++] = rep_script_path;
3803 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003804 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003805 __argv[j++] = "-i";
3806 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003807 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003808
3809 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003810 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003811 exit(-1);
3812 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06003813
Tom Zanussib5b87312010-11-10 08:16:51 -06003814 if (rec_script_path)
3815 script_path = rec_script_path;
3816 if (rep_script_path)
3817 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003818
Tom Zanussib5b87312010-11-10 08:16:51 -06003819 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003820 j = 0;
3821
Robert Richter317df652011-11-25 15:05:25 +01003822 if (!rec_script_path)
3823 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003824 else if (!system_wide) {
3825 if (have_cmd(argc - 1, &argv[1]) != 0) {
3826 err = -1;
3827 goto out;
3828 }
3829 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003830
3831 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003832 if (!__argv) {
3833 pr_err("malloc failed\n");
3834 err = -ENOMEM;
3835 goto out;
3836 }
3837
Tom Zanussib5b87312010-11-10 08:16:51 -06003838 __argv[j++] = "/bin/sh";
3839 __argv[j++] = script_path;
3840 if (system_wide)
3841 __argv[j++] = "-a";
3842 for (i = 2; i < argc; i++)
3843 __argv[j++] = argv[i];
3844 __argv[j++] = NULL;
3845
3846 execvp("/bin/sh", (char **)__argv);
3847 free(__argv);
3848 exit(-1);
3849 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003850
Milian Wolffc1c9b962018-10-21 21:14:23 +02003851 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06003852 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02003853 use_browser = 0;
3854 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003855
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003856 session = perf_session__new(&data, false, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303857 if (IS_ERR(session))
3858 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003859
Jiri Olsae90debd2013-12-09 11:02:50 +01003860 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003861 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003862 perf_session__fprintf_info(session, stdout, show_full_info);
3863 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003864 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003865 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003866 if (show_full_info)
3867 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003868
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003869 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003870 goto out_delete;
3871
Andi Kleen3ab481a2019-03-05 06:47:45 -08003872 uname(&uts);
Song Liu9d491692019-06-20 18:44:38 -07003873 if (data.is_pipe || /* assume pipe_mode indicates native_arch */
3874 !strcmp(uts.machine, session->header.env.arch) ||
Andi Kleen3ab481a2019-03-05 06:47:45 -08003875 (!strcmp(uts.machine, "x86_64") &&
3876 !strcmp(session->header.env.arch, "i386")))
3877 native_arch = true;
3878
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003879 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003880 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003881
Andi Kleen99f753f2018-09-20 11:05:39 -07003882 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
3883 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03003884 itrace_synth_opts.thread_stack = true;
3885
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003886 session->itrace_synth_opts = &itrace_synth_opts;
3887
Anton Blanchard5d67be92011-07-04 21:57:50 +10003888 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003889 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3890 if (err < 0)
3891 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003892 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003893 }
3894
David Ahern1424dc92011-03-09 22:23:28 -07003895 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003896 symbol_conf.use_callchain = true;
3897 else
3898 symbol_conf.use_callchain = false;
3899
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003900 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04003901 tep_set_function_resolver(session->tevent.pevent,
3902 machine__resolve_kernel_addr,
3903 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003904 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003905 err = -1;
3906 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003907 }
3908
Tom Zanussi956ffd02009-11-25 01:15:46 -06003909 if (generate_script_lang) {
3910 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003911 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003912
David Ahern2c9e45f72011-03-17 10:03:21 -06003913 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003914 fprintf(stderr,
3915 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003916 err = -EINVAL;
3917 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003918 }
3919
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003920 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003921 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003922 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003923 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003924 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003925 }
3926
3927 err = fstat(input, &perf_stat);
3928 if (err < 0) {
3929 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003930 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003931 }
3932
3933 if (!perf_stat.st_size) {
3934 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003935 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003936 }
3937
3938 scripting_ops = script_spec__lookup(generate_script_lang);
3939 if (!scripting_ops) {
3940 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003941 err = -ENOENT;
3942 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003943 }
3944
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003945 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003946 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003947 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003948 }
3949
3950 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003951 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003952 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003953 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003954 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003955 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003956 }
3957
David Ahern9cbdb702011-04-06 21:54:20 -06003958
3959 err = perf_session__check_output_opt(session);
3960 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003961 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003962
Jin Yao284c4e12019-03-01 18:13:06 +08003963 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07003964 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08003965 &script.ptime_range,
3966 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07003967 &script.range_num,
3968 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08003969 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08003970 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03003971
3972 itrace_synth_opts__set_time_range(&itrace_synth_opts,
3973 script.ptime_range,
3974 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07003975 }
3976
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03003977 err = evswitch__init(&script.evswitch, session->evlist, stderr);
3978 if (err)
3979 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03003980
Milian Wolffb13b04d2020-06-13 01:03:33 +02003981 if (zstd_init(&(session->zstd_data), 0) < 0)
3982 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
3983
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003984 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003985
Adrian Hunterd445dd22014-08-15 22:08:37 +03003986 flush_scripting();
3987
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003988out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03003989 if (script.ptime_range) {
3990 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08003991 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03003992 }
Jin Yaocc2ef582018-01-10 23:00:33 +08003993
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003994 evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003995 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003996
3997 if (script_started)
3998 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06003999out:
4000 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004001}