blob: 69bce65ea43094656dc82920c5b9c9dc865aeec2 [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
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001556int perf_sample__sprintf_flags(u32 flags, char *str, size_t sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001557{
1558 const char *chars = PERF_IP_FLAG_CHARS;
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001559 const size_t 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 Hunter54cd8b02021-05-25 12:51:06 +03001562 size_t i, pos = 0;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001563
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001564 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1565 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001566 return snprintf(str, sz, "%-15s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001567
1568 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1569 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1570 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001571 return snprintf(str, sz, "tr strt %-7s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001572 }
1573
1574 if (flags & PERF_IP_FLAG_TRACE_END) {
1575 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1576 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001577 return snprintf(str, sz, "tr end %-7s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001578 }
1579
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001580 for (i = 0; i < n; i++, flags >>= 1) {
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001581 if ((flags & 1) && pos < sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001582 str[pos++] = chars[i];
1583 }
1584 for (; i < 32; i++, flags >>= 1) {
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001585 if ((flags & 1) && pos < sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001586 str[pos++] = '?';
1587 }
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001588 if (pos < sz)
1589 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001590
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001591 return pos;
1592}
1593
1594static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
1595{
1596 char str[SAMPLE_FLAGS_BUF_SIZE];
1597
1598 perf_sample__sprintf_flags(flags, str, sizeof(str));
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001599 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001600}
1601
Wang Nan30372f02016-02-24 11:20:45 +00001602struct printer_data {
1603 int line_no;
1604 bool hit_nul;
1605 bool is_printable;
1606};
1607
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001608static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1609 unsigned int val,
1610 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001611{
1612 unsigned char ch = (unsigned char)val;
1613 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001614 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001615
1616 switch (op) {
1617 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001618 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001619 break;
1620 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001621 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001622 " ");
1623 break;
1624 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001625 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001626 break;
1627 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001628 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001629 break;
1630 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001631 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001632 break;
1633 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001634 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001635 break;
1636 case BINARY_PRINT_CHAR_DATA:
1637 if (printer_data->hit_nul && ch)
1638 printer_data->is_printable = false;
1639
1640 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001641 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001642
1643 if (!printer_data->is_printable)
1644 break;
1645
1646 if (ch == '\0')
1647 printer_data->hit_nul = true;
1648 else
1649 printer_data->is_printable = false;
1650 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001651 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001652 }
1653 break;
1654 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001655 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001656 break;
1657 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001658 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001659 printer_data->line_no++;
1660 break;
1661 case BINARY_PRINT_DATA_END:
1662 default:
1663 break;
1664 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001665
1666 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001667}
1668
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001669static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001670{
1671 unsigned int nr_bytes = sample->raw_size;
1672 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001673 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1674 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001675
1676 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001677 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1678
1679 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001680}
1681
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001682static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001683{
1684 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001685 return fprintf(fp, "%*s", spacing - len, "");
1686
1687 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001688}
1689
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001690static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001691{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001692 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001693}
1694
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001695static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001696{
1697 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1698 int len;
1699
1700 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001701 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001702
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001703 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001704 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001705 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001706}
1707
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001708static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001709{
1710 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1711 int len;
1712
1713 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001714 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001715
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001716 len = fprintf(fp, " hints: %#x extensions: %#x ",
1717 data->hints, data->extensions);
1718 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001719}
1720
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001721static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001722{
1723 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1724 int len;
1725
1726 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001727 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001728
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001729 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1730 data->hw, data->cstate, data->subcstate);
1731 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001732}
1733
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001734static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001735{
1736 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1737 int len;
1738
1739 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001740 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001741
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001742 len = fprintf(fp, " IP: %u ", data->ip);
1743 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001744}
1745
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001746static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001747{
1748 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1749 int len;
1750
1751 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001752 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001753
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001754 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001755 data->deepest_cstate, data->last_cstate,
1756 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001757 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001758}
1759
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001760static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001761{
1762 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1763 unsigned int percent, freq;
1764 int len;
1765
1766 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001767 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001768
1769 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001770 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001771 if (data->max_nonturbo) {
1772 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001773 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001774 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001775 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001776}
1777
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001778static int perf_sample__fprintf_synth_psb(struct perf_sample *sample, FILE *fp)
1779{
1780 struct perf_synth_intel_psb *data = perf_sample__synth_ptr(sample);
1781 int len;
1782
1783 if (perf_sample__bad_synth_size(sample, *data))
1784 return 0;
1785
1786 len = fprintf(fp, " psb offs: %#" PRIx64, data->offset);
1787 return len + perf_sample__fprintf_pt_spacing(len, fp);
1788}
1789
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001790static int perf_sample__fprintf_synth(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001791 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001792{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001793 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001794 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001795 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001796 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001797 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001798 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001799 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001800 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001801 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001802 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001803 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001804 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001805 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001806 case PERF_SYNTH_INTEL_PSB:
1807 return perf_sample__fprintf_synth_psb(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001808 default:
1809 break;
1810 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001811
1812 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001813}
1814
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001815static int evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001816{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001817 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001818 int max = 0;
1819
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001820 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001821 int len = strlen(evsel__name(evsel));
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001822
1823 max = MAX(len, max);
1824 }
1825
1826 return max;
1827}
1828
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001829static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001830{
1831 struct mem_info mi = { .data_src.val = data_src };
1832 char decode[100];
1833 char out[100];
1834 static int maxlen;
1835 int len;
1836
1837 perf_script__meminfo_scnprintf(decode, 100, &mi);
1838
1839 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1840 if (maxlen < len)
1841 maxlen = len;
1842
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001843 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001844}
1845
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001846struct metric_ctx {
1847 struct perf_sample *sample;
1848 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001849 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001850 FILE *fp;
1851};
1852
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001853static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1854 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001855 const char *fmt,
1856 const char *unit, double val)
1857{
1858 struct metric_ctx *mctx = ctx;
1859
1860 if (!fmt)
1861 return;
Jiri Olsae534bfb2020-08-05 11:34:44 +02001862 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001863 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001864 fputs("\tmetric: ", mctx->fp);
1865 if (color)
1866 color_fprintf(mctx->fp, color, fmt, val);
1867 else
1868 printf(fmt, val);
1869 fprintf(mctx->fp, " %s\n", unit);
1870}
1871
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001872static void script_new_line(struct perf_stat_config *config __maybe_unused,
1873 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001874{
1875 struct metric_ctx *mctx = ctx;
1876
Jiri Olsae534bfb2020-08-05 11:34:44 +02001877 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001878 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001879 fputs("\tmetric: ", mctx->fp);
1880}
1881
1882static void perf_sample__fprint_metric(struct perf_script *script,
1883 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001884 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001885 struct perf_sample *sample,
1886 FILE *fp)
1887{
1888 struct perf_stat_output_ctx ctx = {
1889 .print_metric = script_print_metric,
1890 .new_line = script_new_line,
1891 .ctx = &(struct metric_ctx) {
1892 .sample = sample,
1893 .thread = thread,
1894 .evsel = evsel,
1895 .fp = fp,
1896 },
1897 .force_header = false,
1898 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001899 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001900 u64 val;
1901
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001902 if (!evsel->stats)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001903 evlist__alloc_stats(script->session->evlist, false);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001904 if (evsel_script(evsel->leader)->gnum++ == 0)
1905 perf_stat__reset_shadow_stats();
1906 val = sample->period * evsel->scale;
1907 perf_stat__update_shadow_stats(evsel,
1908 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001909 sample->cpu,
1910 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001911 evsel_script(evsel)->val = val;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001912 if (evsel_script(evsel->leader)->gnum == evsel->leader->core.nr_members) {
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001913 for_each_group_member (ev2, evsel->leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001914 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001915 evsel_script(ev2)->val,
1916 sample->cpu,
1917 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001918 NULL,
1919 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001920 }
1921 evsel_script(evsel->leader)->gnum = 0;
1922 }
1923}
1924
Andi Kleen99f753f2018-09-20 11:05:39 -07001925static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001926 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001927 struct thread *thread,
1928 struct addr_location *al)
1929{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001930 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001931
1932 if (!symbol_conf.graph_function)
1933 return true;
1934
1935 if (thread->filter) {
1936 if (depth <= thread->filter_entry_depth) {
1937 thread->filter = false;
1938 return false;
1939 }
1940 return true;
1941 } else {
1942 const char *s = symbol_conf.graph_function;
1943 u64 ip;
1944 const char *name = resolve_branch_sym(sample, evsel, thread, al,
1945 &ip);
1946 unsigned nlen;
1947
1948 if (!name)
1949 return false;
1950 nlen = strlen(name);
1951 while (*s) {
1952 unsigned len = strcspn(s, ",");
1953 if (nlen == len && !strncmp(name, s, len)) {
1954 thread->filter = true;
1955 thread->filter_entry_depth = depth;
1956 return true;
1957 }
1958 s += len;
1959 if (*s == ',')
1960 s++;
1961 }
1962 return false;
1963 }
1964}
1965
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001966static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001967 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001968 struct addr_location *al,
1969 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001970{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001971 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001972 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001973 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02001974 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001975 FILE *fp = es->fp;
Kan Liang6b9bae62020-12-16 10:57:57 -08001976 char str[PAGE_SIZE_NAME_LEN];
David Ahern1424dc92011-03-09 22:23:28 -07001977
Adrian Hunter14057202017-06-21 13:17:19 +03001978 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001979 return;
1980
Andi Kleen99f753f2018-09-20 11:05:39 -07001981 if (!show_event(sample, evsel, thread, al))
1982 return;
1983
Arnaldo Carvalho de Melo8829e562019-08-15 11:00:11 -03001984 if (evswitch__discard(&script->evswitch, evsel))
1985 return;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001986
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001987 ++es->samples;
1988
Jiri Olsae534bfb2020-08-05 11:34:44 +02001989 perf_sample__fprintf_start(script, sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001990 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001991
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001992 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001993 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001994
Namhyung Kime944d3d2013-11-18 14:34:52 +09001995 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001996 const char *evname = evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001997
1998 if (!script->name_width)
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001999 script->name_width = evlist__max_name_len(script->session->evlist);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01002000
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002001 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09002002 }
2003
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002004 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002005 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002006
Akihiro Nagai95582592012-01-30 13:43:09 +09002007 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002008 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09002009 return;
2010 }
2011
Andi Kleen96167162019-01-17 11:48:34 -08002012 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03002013 event_format__fprintf(evsel->tp_format, sample->cpu,
2014 sample->raw_data, sample->raw_size, fp);
2015 }
Adrian Hunter47e78082017-05-26 11:17:22 +03002016
2017 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002018 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03002019
David Ahern7cec0922011-05-30 13:08:23 -06002020 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002021 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06002022
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002023 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002024 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002025
2026 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002027 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002028
David Ahern787bef12011-05-27 14:28:43 -06002029 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07002030 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04002031
Kan Liang680d1252020-03-19 13:25:14 -07002032 if (script->stitch_lbr)
2033 al->thread->lbr_stitch_enable = true;
2034
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03002035 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07002036 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002037 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07002038 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002039
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002040 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03002041 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
2042 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07002043 }
2044
Stephane Eranianfc36f942015-08-31 18:41:10 +02002045 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002046 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02002047
Andi Kleenb1491ac2017-09-05 11:40:57 -07002048 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002049 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07002050
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002051 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002052 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002053 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002054 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07002055 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002056 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002057
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002058 if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002059 perf_sample__fprintf_bpf_output(sample, fp);
2060 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04002061
2062 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002063 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002064
Kan Liang6b9bae62020-12-16 10:57:57 -08002065 if (PRINT_FIELD(DATA_PAGE_SIZE))
2066 fprintf(fp, " %s", get_page_size_name(sample->data_page_size, str));
2067
Stephane Eranianc513de82021-01-05 11:57:50 -08002068 if (PRINT_FIELD(CODE_PAGE_SIZE))
2069 fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str));
2070
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002071 perf_sample__fprintf_ipc(sample, attr, fp);
2072
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002073 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002074
Andi Kleendd2e18e2018-12-03 16:18:48 -08002075 if (PRINT_FIELD(SRCCODE)) {
2076 if (map__fprintf_srccode(al->map, al->addr, stdout,
2077 &thread->srccode_state))
2078 printf("\n");
2079 }
2080
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002081 if (PRINT_FIELD(METRIC))
2082 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02002083
2084 if (verbose)
2085 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07002086}
2087
Tom Zanussi956ffd02009-11-25 01:15:46 -06002088static struct scripting_ops *scripting_ops;
2089
Jiri Olsa32dcd022019-07-21 13:23:51 +02002090static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002091{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002092 int nthreads = perf_thread_map__nr(counter->core.threads);
Arnaldo Carvalho de Melo5eb88f02020-04-29 15:45:09 -03002093 int ncpus = evsel__nr_cpus(counter);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002094 int cpu, thread;
2095 static int header_printed;
2096
Jiri Olsa648b5af2019-08-06 11:35:19 +02002097 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002098 nthreads = 1;
2099
2100 if (!header_printed) {
2101 printf("%3s %8s %15s %15s %15s %15s %s\n",
2102 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
2103 header_printed = 1;
2104 }
2105
2106 for (thread = 0; thread < nthreads; thread++) {
2107 for (cpu = 0; cpu < ncpus; cpu++) {
2108 struct perf_counts_values *counts;
2109
2110 counts = perf_counts(counter->counts, cpu, thread);
2111
2112 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02002113 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002114 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01002115 counts->val,
2116 counts->ena,
2117 counts->run,
2118 tstamp,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002119 evsel__name(counter));
Jiri Olsa36e33c52016-01-06 11:49:56 +01002120 }
2121 }
2122}
2123
Jiri Olsa32dcd022019-07-21 13:23:51 +02002124static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002125{
2126 if (scripting_ops && scripting_ops->process_stat)
2127 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002128 else
2129 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002130}
2131
2132static void process_stat_interval(u64 tstamp)
2133{
2134 if (scripting_ops && scripting_ops->process_stat_interval)
2135 scripting_ops->process_stat_interval(tstamp);
2136}
2137
Tom Zanussi956ffd02009-11-25 01:15:46 -06002138static void setup_scripting(void)
2139{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002140 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002141 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002142}
2143
Adrian Hunterd445dd22014-08-15 22:08:37 +03002144static int flush_scripting(void)
2145{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002146 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002147}
2148
Tom Zanussi956ffd02009-11-25 01:15:46 -06002149static int cleanup_scripting(void)
2150{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002151 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002152
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002153 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002154}
2155
Andi Kleene87e5482019-03-11 07:44:52 -07002156static bool filter_cpu(struct perf_sample *sample)
2157{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002158 if (cpu_list && sample->cpu != (u32)-1)
Andi Kleene87e5482019-03-11 07:44:52 -07002159 return !test_bit(sample->cpu, cpu_bitmap);
2160 return false;
2161}
2162
Jiri Olsa809e9422015-11-26 18:55:21 +01002163static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002164 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002165 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002166 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002167 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002168{
Jiri Olsa809e9422015-11-26 18:55:21 +01002169 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002170 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002171
Jin Yao2ab046c2017-12-08 21:13:46 +08002172 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2173 sample->time)) {
David Aherna91f4c42016-11-29 10:15:43 -07002174 return 0;
Jin Yao2ab046c2017-12-08 21:13:46 +08002175 }
David Aherna91f4c42016-11-29 10:15:43 -07002176
David Ahern1424dc92011-03-09 22:23:28 -07002177 if (debug_mode) {
2178 if (sample->time < last_timestamp) {
2179 pr_err("Samples misordered, previous: %" PRIu64
2180 " this: %" PRIu64 "\n", last_timestamp,
2181 sample->time);
2182 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002183 }
David Ahern1424dc92011-03-09 22:23:28 -07002184 last_timestamp = sample->time;
2185 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002186 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002187
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03002188 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002189 pr_err("problem processing %d event, skipping it.\n",
2190 event->header.type);
2191 return -1;
2192 }
2193
2194 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002195 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002196
Andi Kleene87e5482019-03-11 07:44:52 -07002197 if (filter_cpu(sample))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002198 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002199
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002200 if (scripting_ops) {
2201 struct addr_location *addr_al_ptr = NULL;
2202 struct addr_location addr_al;
2203
2204 if ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
2205 sample_addr_correlates_sym(&evsel->core.attr)) {
2206 thread__resolve(al.thread, &addr_al, sample);
2207 addr_al_ptr = &addr_al;
2208 }
2209 scripting_ops->process_event(event, sample, evsel, &al, addr_al_ptr);
2210 } else {
Andi Kleen48d02a12017-02-23 15:46:34 -08002211 process_event(scr, sample, evsel, &al, machine);
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002212 }
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002213
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002214out_put:
2215 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002216 return 0;
2217}
2218
Adrian Hunter7ea95722013-11-01 15:51:30 +02002219static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002220 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002221{
2222 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002223 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002224 struct evsel *evsel, *pos;
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002225 u64 sample_type;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002226 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002227 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002228
2229 err = perf_event__process_attr(tool, event, pevlist);
2230 if (err)
2231 return err;
2232
2233 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002234 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002235
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302236 if (!evsel->priv) {
2237 if (scr->per_event_dump) {
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002238 evsel->priv = evsel_script__new(evsel, scr->session->data);
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302239 } else {
2240 es = zalloc(sizeof(*es));
2241 if (!es)
2242 return -ENOMEM;
2243 es->fp = stdout;
2244 evsel->priv = es;
2245 }
2246 }
2247
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002248 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2249 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002250 return 0;
2251
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002252 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002253 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002254 return 0;
2255 }
2256
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002257 if (evsel->core.attr.sample_type) {
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002258 err = evsel__check_attr(evsel, scr->session);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002259 if (err)
2260 return err;
2261 }
Jiri Olsad2b5a312015-10-16 12:41:25 +02002262
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002263 /*
2264 * Check if we need to enable callchains based
2265 * on events sample_type.
2266 */
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03002267 sample_type = evlist__combined_sample_type(evlist);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002268 callchain_param_setup(sample_type);
Jiri Olsa53fb1892020-05-07 11:50:24 +02002269
Adrian Hunterb5164082020-05-27 21:02:50 +03002270 /* Enable fields for callchain entries */
2271 if (symbol_conf.use_callchain &&
2272 (sample_type & PERF_SAMPLE_CALLCHAIN ||
2273 sample_type & PERF_SAMPLE_BRANCH_STACK ||
2274 (sample_type & PERF_SAMPLE_REGS_USER &&
2275 sample_type & PERF_SAMPLE_STACK_USER))) {
2276 int type = output_type(evsel->core.attr.type);
2277
2278 if (!(output[type].user_unset_fields & PERF_OUTPUT_IP))
2279 output[type].fields |= PERF_OUTPUT_IP;
2280 if (!(output[type].user_unset_fields & PERF_OUTPUT_SYM))
2281 output[type].fields |= PERF_OUTPUT_SYM;
Jiri Olsa53fb1892020-05-07 11:50:24 +02002282 }
2283 set_print_ip_opts(&evsel->core.attr);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002284 return 0;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002285}
2286
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002287static int print_event_with_time(struct perf_tool *tool,
2288 union perf_event *event,
2289 struct perf_sample *sample,
2290 struct machine *machine,
2291 pid_t pid, pid_t tid, u64 timestamp)
2292{
2293 struct perf_script *script = container_of(tool, struct perf_script, tool);
2294 struct perf_session *session = script->session;
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002295 struct evsel *evsel = evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002296 struct thread *thread = NULL;
2297
2298 if (evsel && !evsel->core.attr.sample_id_all) {
2299 sample->cpu = 0;
2300 sample->time = timestamp;
2301 sample->pid = pid;
2302 sample->tid = tid;
2303 }
2304
2305 if (filter_cpu(sample))
2306 return 0;
2307
2308 if (tid != -1)
2309 thread = machine__findnew_thread(machine, pid, tid);
2310
Adrian Hunterfc183802020-09-09 11:49:22 +03002311 if (evsel) {
Jiri Olsae534bfb2020-08-05 11:34:44 +02002312 perf_sample__fprintf_start(script, sample, thread, evsel,
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002313 event->header.type, stdout);
2314 }
2315
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002316 perf_event__fprintf(event, machine, stdout);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002317
2318 thread__put(thread);
2319
2320 return 0;
2321}
2322
2323static int print_event(struct perf_tool *tool, union perf_event *event,
2324 struct perf_sample *sample, struct machine *machine,
2325 pid_t pid, pid_t tid)
2326{
2327 return print_event_with_time(tool, event, sample, machine, pid, tid, 0);
2328}
2329
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002330static int process_comm_event(struct perf_tool *tool,
2331 union perf_event *event,
2332 struct perf_sample *sample,
2333 struct machine *machine)
2334{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002335 if (perf_event__process_comm(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002336 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002337
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002338 return print_event(tool, event, sample, machine, event->comm.pid,
2339 event->comm.tid);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002340}
2341
Hari Bathini96a44bb2017-03-08 02:12:06 +05302342static int process_namespaces_event(struct perf_tool *tool,
2343 union perf_event *event,
2344 struct perf_sample *sample,
2345 struct machine *machine)
2346{
Hari Bathini96a44bb2017-03-08 02:12:06 +05302347 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002348 return -1;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302349
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002350 return print_event(tool, event, sample, machine, event->namespaces.pid,
2351 event->namespaces.tid);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302352}
2353
Namhyung Kim160d4af2020-03-25 21:45:36 +09002354static int process_cgroup_event(struct perf_tool *tool,
2355 union perf_event *event,
2356 struct perf_sample *sample,
2357 struct machine *machine)
2358{
Namhyung Kim160d4af2020-03-25 21:45:36 +09002359 if (perf_event__process_cgroup(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002360 return -1;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002361
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002362 return print_event(tool, event, sample, machine, sample->pid,
2363 sample->tid);
Namhyung Kim160d4af2020-03-25 21:45:36 +09002364}
2365
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002366static int process_fork_event(struct perf_tool *tool,
2367 union perf_event *event,
2368 struct perf_sample *sample,
2369 struct machine *machine)
2370{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002371 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2372 return -1;
2373
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002374 return print_event_with_time(tool, event, sample, machine,
2375 event->fork.pid, event->fork.tid,
2376 event->fork.time);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002377}
2378static int process_exit_event(struct perf_tool *tool,
2379 union perf_event *event,
2380 struct perf_sample *sample,
2381 struct machine *machine)
2382{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002383 /* Print before 'exit' deletes anything */
2384 if (print_event_with_time(tool, event, sample, machine, event->fork.pid,
2385 event->fork.tid, event->fork.time))
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002386 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002387
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002388 return perf_event__process_exit(tool, event, sample, machine);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002389}
2390
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002391static int process_mmap_event(struct perf_tool *tool,
2392 union perf_event *event,
2393 struct perf_sample *sample,
2394 struct machine *machine)
2395{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002396 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2397 return -1;
2398
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002399 return print_event(tool, event, sample, machine, event->mmap.pid,
2400 event->mmap.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002401}
2402
2403static int process_mmap2_event(struct perf_tool *tool,
2404 union perf_event *event,
2405 struct perf_sample *sample,
2406 struct machine *machine)
2407{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002408 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2409 return -1;
2410
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002411 return print_event(tool, event, sample, machine, event->mmap2.pid,
2412 event->mmap2.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002413}
2414
Adrian Hunter7c148982015-07-21 12:44:06 +03002415static int process_switch_event(struct perf_tool *tool,
2416 union perf_event *event,
2417 struct perf_sample *sample,
2418 struct machine *machine)
2419{
Adrian Hunter7c148982015-07-21 12:44:06 +03002420 struct perf_script *script = container_of(tool, struct perf_script, tool);
Adrian Hunter7c148982015-07-21 12:44:06 +03002421
2422 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2423 return -1;
2424
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002425 if (scripting_ops && scripting_ops->process_switch)
2426 scripting_ops->process_switch(event, sample, machine);
2427
2428 if (!script->show_switch_events)
2429 return 0;
2430
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002431 return print_event(tool, event, sample, machine, sample->pid,
2432 sample->tid);
Adrian Hunter7c148982015-07-21 12:44:06 +03002433}
2434
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002435static int
2436process_lost_event(struct perf_tool *tool,
2437 union perf_event *event,
2438 struct perf_sample *sample,
2439 struct machine *machine)
2440{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002441 return print_event(tool, event, sample, machine, sample->pid,
2442 sample->tid);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002443}
2444
Jiri Olsa3233b372018-02-06 19:17:59 +01002445static int
2446process_finished_round_event(struct perf_tool *tool __maybe_unused,
2447 union perf_event *event,
2448 struct ordered_events *oe __maybe_unused)
2449
2450{
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002451 perf_event__fprintf(event, NULL, stdout);
Jiri Olsa3233b372018-02-06 19:17:59 +01002452 return 0;
2453}
2454
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002455static int
2456process_bpf_events(struct perf_tool *tool __maybe_unused,
2457 union perf_event *event,
2458 struct perf_sample *sample,
2459 struct machine *machine)
2460{
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002461 if (machine__process_ksymbol(machine, event, sample) < 0)
2462 return -1;
2463
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002464 return print_event(tool, event, sample, machine, sample->pid,
2465 sample->tid);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002466}
2467
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002468static int process_text_poke_events(struct perf_tool *tool,
2469 union perf_event *event,
2470 struct perf_sample *sample,
2471 struct machine *machine)
2472{
2473 if (perf_event__process_text_poke(tool, event, sample, machine) < 0)
2474 return -1;
2475
2476 return print_event(tool, event, sample, machine, sample->pid,
2477 sample->tid);
2478}
2479
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002480static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002481{
2482 session_done = 1;
2483}
2484
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002485static void perf_script__fclose_per_event_dump(struct perf_script *script)
2486{
Jiri Olsa63503db2019-07-21 13:23:52 +02002487 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002488 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002489
2490 evlist__for_each_entry(evlist, evsel) {
2491 if (!evsel->priv)
2492 break;
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002493 evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002494 evsel->priv = NULL;
2495 }
2496}
2497
2498static int perf_script__fopen_per_event_dump(struct perf_script *script)
2499{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002500 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002501
2502 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002503 /*
2504 * Already setup? I.e. we may be called twice in cases like
2505 * Intel PT, one for the intel_pt// and dummy events, then
Ingo Molnar4d39c892021-03-23 17:09:15 +01002506 * for the evsels synthesized from the auxtrace info.
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002507 *
2508 * Ses perf_script__process_auxtrace_info.
2509 */
2510 if (evsel->priv != NULL)
2511 continue;
2512
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002513 evsel->priv = evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002514 if (evsel->priv == NULL)
2515 goto out_err_fclose;
2516 }
2517
2518 return 0;
2519
2520out_err_fclose:
2521 perf_script__fclose_per_event_dump(script);
2522 return -1;
2523}
2524
2525static int perf_script__setup_per_event_dump(struct perf_script *script)
2526{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002527 struct evsel *evsel;
2528 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002529
2530 if (script->per_event_dump)
2531 return perf_script__fopen_per_event_dump(script);
2532
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002533 es_stdout.fp = stdout;
2534
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002535 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002536 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002537
2538 return 0;
2539}
2540
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002541static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2542{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002543 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002544
2545 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002546 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002547
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002548 evsel_script__fprintf(es, stdout);
2549 evsel_script__delete(es);
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002550 evsel->priv = NULL;
2551 }
2552}
2553
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002554static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002555{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002556 int ret;
2557
Tom Zanussic239da32010-04-01 23:59:18 -05002558 signal(SIGINT, sig_handler);
2559
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002560 perf_stat__init_shadow_stats();
2561
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002562 /* override event processing functions */
2563 if (script->show_task_events) {
2564 script->tool.comm = process_comm_event;
2565 script->tool.fork = process_fork_event;
2566 script->tool.exit = process_exit_event;
2567 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002568 if (script->show_mmap_events) {
2569 script->tool.mmap = process_mmap_event;
2570 script->tool.mmap2 = process_mmap2_event;
2571 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002572 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002573 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302574 if (script->show_namespace_events)
2575 script->tool.namespaces = process_namespaces_event;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002576 if (script->show_cgroup_events)
2577 script->tool.cgroup = process_cgroup_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002578 if (script->show_lost_events)
2579 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002580 if (script->show_round_events) {
2581 script->tool.ordered_events = false;
2582 script->tool.finished_round = process_finished_round_event;
2583 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002584 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002585 script->tool.ksymbol = process_bpf_events;
2586 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002587 }
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002588 if (script->show_text_poke_events) {
2589 script->tool.ksymbol = process_bpf_events;
2590 script->tool.text_poke = process_text_poke_events;
2591 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002592
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002593 if (perf_script__setup_per_event_dump(script)) {
2594 pr_err("Couldn't create the per event dump files\n");
2595 return -1;
2596 }
2597
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002598 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002599
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002600 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002601 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002602
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002603 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002604 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002605
2606 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002607}
2608
Tom Zanussi956ffd02009-11-25 01:15:46 -06002609struct script_spec {
2610 struct list_head node;
2611 struct scripting_ops *ops;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -05002612 char spec[];
Tom Zanussi956ffd02009-11-25 01:15:46 -06002613};
2614
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002615static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002616
2617static struct script_spec *script_spec__new(const char *spec,
2618 struct scripting_ops *ops)
2619{
2620 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2621
2622 if (s != NULL) {
2623 strcpy(s->spec, spec);
2624 s->ops = ops;
2625 }
2626
2627 return s;
2628}
2629
Tom Zanussi956ffd02009-11-25 01:15:46 -06002630static void script_spec__add(struct script_spec *s)
2631{
2632 list_add_tail(&s->node, &script_specs);
2633}
2634
2635static struct script_spec *script_spec__find(const char *spec)
2636{
2637 struct script_spec *s;
2638
2639 list_for_each_entry(s, &script_specs, node)
2640 if (strcasecmp(s->spec, spec) == 0)
2641 return s;
2642 return NULL;
2643}
2644
Tom Zanussi956ffd02009-11-25 01:15:46 -06002645int script_spec_register(const char *spec, struct scripting_ops *ops)
2646{
2647 struct script_spec *s;
2648
2649 s = script_spec__find(spec);
2650 if (s)
2651 return -1;
2652
Taeung Song8560bae2016-02-26 00:13:10 +09002653 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002654 if (!s)
2655 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002656 else
2657 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002658
2659 return 0;
2660}
2661
2662static struct scripting_ops *script_spec__lookup(const char *spec)
2663{
2664 struct script_spec *s = script_spec__find(spec);
2665 if (!s)
2666 return NULL;
2667
2668 return s->ops;
2669}
2670
2671static void list_available_languages(void)
2672{
2673 struct script_spec *s;
2674
2675 fprintf(stderr, "\n");
2676 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002677 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002678
2679 list_for_each_entry(s, &script_specs, node)
2680 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2681
2682 fprintf(stderr, "\n");
2683}
2684
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03002685/* Find script file relative to current directory or exec path */
2686static char *find_script(const char *script)
2687{
2688 char path[PATH_MAX];
2689
2690 if (!scripting_ops) {
2691 const char *ext = strrchr(script, '.');
2692
2693 if (!ext)
2694 return NULL;
2695
2696 scripting_ops = script_spec__lookup(++ext);
2697 if (!scripting_ops)
2698 return NULL;
2699 }
2700
2701 if (access(script, R_OK)) {
2702 char *exec_path = get_argv_exec_path();
2703
2704 if (!exec_path)
2705 return NULL;
2706 snprintf(path, sizeof(path), "%s/scripts/%s/%s",
2707 exec_path, scripting_ops->dirname, script);
2708 free(exec_path);
2709 script = path;
2710 if (access(script, R_OK))
2711 return NULL;
2712 }
2713 return strdup(script);
2714}
2715
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002716static int parse_scriptname(const struct option *opt __maybe_unused,
2717 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002718{
2719 char spec[PATH_MAX];
2720 const char *script, *ext;
2721 int len;
2722
Tom Zanussif526d682010-01-27 02:27:52 -06002723 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002724 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002725 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002726 }
2727
2728 script = strchr(str, ':');
2729 if (script) {
2730 len = script - str;
2731 if (len >= PATH_MAX) {
2732 fprintf(stderr, "invalid language specifier");
2733 return -1;
2734 }
2735 strncpy(spec, str, len);
2736 spec[len] = '\0';
2737 scripting_ops = script_spec__lookup(spec);
2738 if (!scripting_ops) {
2739 fprintf(stderr, "invalid language specifier");
2740 return -1;
2741 }
2742 script++;
2743 } else {
2744 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002745 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002746 if (!ext) {
2747 fprintf(stderr, "invalid script extension");
2748 return -1;
2749 }
2750 scripting_ops = script_spec__lookup(++ext);
2751 if (!scripting_ops) {
2752 fprintf(stderr, "invalid script extension");
2753 return -1;
2754 }
2755 }
2756
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03002757 script_name = find_script(script);
2758 if (!script_name)
2759 script_name = strdup(script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002760
2761 return 0;
2762}
2763
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002764static int parse_output_fields(const struct option *opt __maybe_unused,
2765 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002766{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002767 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002768 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002769 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002770 int rc = 0;
2771 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002772 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002773 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002774
2775 if (!str)
2776 return -ENOMEM;
2777
David Ahern2c9e45f72011-03-17 10:03:21 -06002778 /* first word can state for which event type the user is specifying
2779 * the fields. If no type exists, the specified fields apply to all
2780 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002781 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002782 tok = strchr(str, ':');
2783 if (tok) {
2784 *tok = '\0';
2785 tok++;
2786 if (!strcmp(str, "hw"))
2787 type = PERF_TYPE_HARDWARE;
2788 else if (!strcmp(str, "sw"))
2789 type = PERF_TYPE_SOFTWARE;
2790 else if (!strcmp(str, "trace"))
2791 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002792 else if (!strcmp(str, "raw"))
2793 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002794 else if (!strcmp(str, "break"))
2795 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002796 else if (!strcmp(str, "synth"))
2797 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002798 else {
2799 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002800 rc = -EINVAL;
2801 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002802 }
2803
2804 if (output[type].user_set)
2805 pr_warning("Overriding previous field request for %s events.\n",
2806 event_type(type));
2807
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002808 /* Don't override defaults for +- */
2809 if (strchr(tok, '+') || strchr(tok, '-'))
2810 goto parse;
2811
David Ahern2c9e45f72011-03-17 10:03:21 -06002812 output[type].fields = 0;
2813 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002814 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002815
2816 } else {
2817 tok = str;
2818 if (strlen(str) == 0) {
2819 fprintf(stderr,
2820 "Cannot set fields to 'none' for all event types.\n");
2821 rc = -EINVAL;
2822 goto out;
2823 }
2824
Andi Kleen36ce5652017-06-02 08:48:10 -07002825 /* Don't override defaults for +- */
2826 if (strchr(str, '+') || strchr(str, '-'))
2827 goto parse;
2828
David Ahern2c9e45f72011-03-17 10:03:21 -06002829 if (output_set_by_user())
2830 pr_warning("Overriding previous field request for all events.\n");
2831
Adrian Hunter14057202017-06-21 13:17:19 +03002832 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002833 output[j].fields = 0;
2834 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002835 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002836 }
David Ahern1424dc92011-03-09 22:23:28 -07002837 }
2838
Andi Kleen36ce5652017-06-02 08:48:10 -07002839parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002840 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002841 if (*tok == '+') {
2842 if (change == SET)
2843 goto out_badmix;
2844 change = ADD;
2845 tok++;
2846 } else if (*tok == '-') {
2847 if (change == SET)
2848 goto out_badmix;
2849 change = REMOVE;
2850 tok++;
2851 } else {
2852 if (change != SET && change != DEFAULT)
2853 goto out_badmix;
2854 change = SET;
2855 }
2856
David Ahern745f43e2011-03-09 22:23:26 -07002857 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002858 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002859 break;
David Ahern745f43e2011-03-09 22:23:26 -07002860 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002861 if (i == imax && strcmp(tok, "flags") == 0) {
Yang Li85247112021-02-08 16:45:36 +08002862 print_flags = change != REMOVE;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002863 continue;
2864 }
David Ahern745f43e2011-03-09 22:23:26 -07002865 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002866 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002867 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002868 goto out;
2869 }
2870
2871 if (type == -1) {
2872 /* add user option to all events types for
2873 * which it is valid
2874 */
Adrian Hunter14057202017-06-21 13:17:19 +03002875 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002876 if (output[j].invalid_fields & all_output_options[i].field) {
2877 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2878 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002879 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002880 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002881 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002882 output[j].user_set_fields &= ~all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002883 output[j].user_unset_fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002884 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002885 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002886 output[j].user_set_fields |= all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002887 output[j].user_unset_fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002888 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002889 output[j].user_set = true;
2890 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002891 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002892 }
2893 } else {
2894 if (output[type].invalid_fields & all_output_options[i].field) {
2895 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2896 all_output_options[i].str, event_type(type));
2897
2898 rc = -EINVAL;
2899 goto out;
2900 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002901 if (change == REMOVE)
2902 output[type].fields &= ~all_output_options[i].field;
2903 else
2904 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002905 output[type].user_set = true;
2906 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002907 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002908 }
2909
2910 if (type >= 0) {
2911 if (output[type].fields == 0) {
2912 pr_debug("No fields requested for %s type. "
2913 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002914 }
David Ahern1424dc92011-03-09 22:23:28 -07002915 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002916 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002917
Andi Kleen36ce5652017-06-02 08:48:10 -07002918out_badmix:
2919 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2920 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002921out:
David Ahern745f43e2011-03-09 22:23:26 -07002922 free(str);
2923 return rc;
2924}
2925
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002926#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2927 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2928 if ((lang_dirent->d_type == DT_DIR || \
2929 (lang_dirent->d_type == DT_UNKNOWN && \
2930 is_directory(scripts_path, lang_dirent))) && \
2931 (strcmp(lang_dirent->d_name, ".")) && \
2932 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002933
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002934#define for_each_script(lang_path, lang_dir, script_dirent) \
2935 while ((script_dirent = readdir(lang_dir)) != NULL) \
2936 if (script_dirent->d_type != DT_DIR && \
2937 (script_dirent->d_type != DT_UNKNOWN || \
2938 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002939
2940
2941#define RECORD_SUFFIX "-record"
2942#define REPORT_SUFFIX "-report"
2943
2944struct script_desc {
2945 struct list_head node;
2946 char *name;
2947 char *half_liner;
2948 char *args;
2949};
2950
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002951static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002952
2953static struct script_desc *script_desc__new(const char *name)
2954{
2955 struct script_desc *s = zalloc(sizeof(*s));
2956
Tom Zanussib5b87312010-11-10 08:16:51 -06002957 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002958 s->name = strdup(name);
2959
2960 return s;
2961}
2962
2963static void script_desc__delete(struct script_desc *s)
2964{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002965 zfree(&s->name);
2966 zfree(&s->half_liner);
2967 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002968 free(s);
2969}
2970
2971static void script_desc__add(struct script_desc *s)
2972{
2973 list_add_tail(&s->node, &script_descs);
2974}
2975
2976static struct script_desc *script_desc__find(const char *name)
2977{
2978 struct script_desc *s;
2979
2980 list_for_each_entry(s, &script_descs, node)
2981 if (strcasecmp(s->name, name) == 0)
2982 return s;
2983 return NULL;
2984}
2985
2986static struct script_desc *script_desc__findnew(const char *name)
2987{
2988 struct script_desc *s = script_desc__find(name);
2989
2990 if (s)
2991 return s;
2992
2993 s = script_desc__new(name);
2994 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002995 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002996
2997 script_desc__add(s);
2998
2999 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003000}
3001
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003002static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003003{
3004 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003005 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003006
3007 if (strlen(str) > suffix_len) {
3008 p = str + strlen(str) - suffix_len;
3009 if (!strncmp(p, suffix, suffix_len))
3010 return p;
3011 }
3012
3013 return NULL;
3014}
3015
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003016static int read_script_info(struct script_desc *desc, const char *filename)
3017{
3018 char line[BUFSIZ], *p;
3019 FILE *fp;
3020
3021 fp = fopen(filename, "r");
3022 if (!fp)
3023 return -1;
3024
3025 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003026 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003027 if (strlen(p) == 0)
3028 continue;
3029 if (*p != '#')
3030 continue;
3031 p++;
3032 if (strlen(p) && *p == '!')
3033 continue;
3034
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003035 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003036 if (strlen(p) && p[strlen(p) - 1] == '\n')
3037 p[strlen(p) - 1] = '\0';
3038
3039 if (!strncmp(p, "description:", strlen("description:"))) {
3040 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003041 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003042 continue;
3043 }
3044
3045 if (!strncmp(p, "args:", strlen("args:"))) {
3046 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003047 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003048 continue;
3049 }
3050 }
3051
3052 fclose(fp);
3053
3054 return 0;
3055}
3056
Robert Richter38efb532011-11-25 11:38:40 +01003057static char *get_script_root(struct dirent *script_dirent, const char *suffix)
3058{
3059 char *script_root, *str;
3060
3061 script_root = strdup(script_dirent->d_name);
3062 if (!script_root)
3063 return NULL;
3064
3065 str = (char *)ends_with(script_root, suffix);
3066 if (!str) {
3067 free(script_root);
3068 return NULL;
3069 }
3070
3071 *str = '\0';
3072 return script_root;
3073}
3074
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003075static int list_available_scripts(const struct option *opt __maybe_unused,
3076 const char *s __maybe_unused,
3077 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003078{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003079 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003080 char scripts_path[MAXPATHLEN];
3081 DIR *scripts_dir, *lang_dir;
3082 char script_path[MAXPATHLEN];
3083 char lang_path[MAXPATHLEN];
3084 struct script_desc *desc;
3085 char first_half[BUFSIZ];
3086 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003087
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003088 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003089
3090 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003091 if (!scripts_dir) {
3092 fprintf(stdout,
3093 "open(%s) failed.\n"
3094 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3095 scripts_path);
3096 exit(-1);
3097 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003098
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003099 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003100 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3101 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003102 lang_dir = opendir(lang_path);
3103 if (!lang_dir)
3104 continue;
3105
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003106 for_each_script(lang_path, lang_dir, script_dirent) {
3107 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003108 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003109 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003110 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3111 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003112 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003113 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003114 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003115 }
3116 }
3117
3118 fprintf(stdout, "List of available trace scripts:\n");
3119 list_for_each_entry(desc, &script_descs, node) {
3120 sprintf(first_half, "%s %s", desc->name,
3121 desc->args ? desc->args : "");
3122 fprintf(stdout, " %-36s %s\n", first_half,
3123 desc->half_liner ? desc->half_liner : "");
3124 }
3125
3126 exit(0);
3127}
3128
Feng Tange5f37052012-09-07 16:42:26 +08003129/*
Feng Tang49e639e2012-10-30 11:56:03 +08003130 * Some scripts specify the required events in their "xxx-record" file,
3131 * this function will check if the events in perf.data match those
3132 * mentioned in the "xxx-record".
3133 *
3134 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3135 * which is covered well now. And new parsing code should be added to
Ingo Molnar4d39c892021-03-23 17:09:15 +01003136 * cover the future complex formats like event groups etc.
Feng Tang49e639e2012-10-30 11:56:03 +08003137 */
3138static int check_ev_match(char *dir_name, char *scriptname,
3139 struct perf_session *session)
3140{
3141 char filename[MAXPATHLEN], evname[128];
3142 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003143 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003144 int match, len;
3145 FILE *fp;
3146
Jiri Olsa77f18152018-03-19 09:29:01 +01003147 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003148
3149 fp = fopen(filename, "r");
3150 if (!fp)
3151 return -1;
3152
3153 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003154 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003155 if (*p == '#')
3156 continue;
3157
3158 while (strlen(p)) {
3159 p = strstr(p, "-e");
3160 if (!p)
3161 break;
3162
3163 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003164 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003165 len = strcspn(p, " \t");
3166 if (!len)
3167 break;
3168
3169 snprintf(evname, len + 1, "%s", p);
3170
3171 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003172 evlist__for_each_entry(session->evlist, pos) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03003173 if (!strcmp(evsel__name(pos), evname)) {
Feng Tang49e639e2012-10-30 11:56:03 +08003174 match = 1;
3175 break;
3176 }
3177 }
3178
3179 if (!match) {
3180 fclose(fp);
3181 return -1;
3182 }
3183 }
3184 }
3185
3186 fclose(fp);
3187 return 0;
3188}
3189
3190/*
Feng Tange5f37052012-09-07 16:42:26 +08003191 * Return -1 if none is found, otherwise the actual scripts number.
3192 *
3193 * Currently the only user of this function is the script browser, which
3194 * will list all statically runnable scripts, select one, execute it and
3195 * show the output in a perf browser.
3196 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003197int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3198 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003199{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003200 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003201 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003202 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003203 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003204 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003205 .path = input_name,
3206 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003207 };
Feng Tange5f37052012-09-07 16:42:26 +08003208 char *temp;
3209 int i = 0;
3210
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003211 session = perf_session__new(&data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303212 if (IS_ERR(session))
3213 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003214
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003215 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003216
3217 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003218 if (!scripts_dir) {
3219 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003220 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003221 }
Feng Tange5f37052012-09-07 16:42:26 +08003222
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003223 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003224 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3225 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003226#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003227 if (strstr(lang_path, "perl"))
3228 continue;
3229#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003230#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003231 if (strstr(lang_path, "python"))
3232 continue;
3233#endif
3234
3235 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) {
Feng Tange5f37052012-09-07 16:42:26 +08003240 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003241 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003242 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003243 if (i >= num)
3244 break;
3245 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3246 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003247 script_dirent->d_name);
3248 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003249 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003250 (temp - script_dirent->d_name) + 1,
3251 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003252
3253 if (check_ev_match(lang_path,
3254 scripts_array[i], session))
3255 continue;
3256
Feng Tange5f37052012-09-07 16:42:26 +08003257 i++;
3258 }
Feng Tang49e639e2012-10-30 11:56:03 +08003259 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003260 }
3261
Feng Tang49e639e2012-10-30 11:56:03 +08003262 closedir(scripts_dir);
3263 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003264 return i;
3265}
3266
Tom Zanussi38752942009-12-15 02:53:39 -06003267static char *get_script_path(const char *script_root, const char *suffix)
3268{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003269 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003270 char scripts_path[MAXPATHLEN];
3271 char script_path[MAXPATHLEN];
3272 DIR *scripts_dir, *lang_dir;
3273 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003274 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003275
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003276 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003277
3278 scripts_dir = opendir(scripts_path);
3279 if (!scripts_dir)
3280 return NULL;
3281
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003282 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003283 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3284 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003285 lang_dir = opendir(lang_path);
3286 if (!lang_dir)
3287 continue;
3288
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003289 for_each_script(lang_path, lang_dir, script_dirent) {
3290 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003291 if (__script_root && !strcmp(script_root, __script_root)) {
3292 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003293 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003294 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3295 lang_path, script_dirent->d_name);
Andreas Gerstmayr27486a82020-04-02 14:43:38 +02003296 closedir(lang_dir);
Robert Richter38efb532011-11-25 11:38:40 +01003297 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003298 }
3299 free(__script_root);
3300 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003301 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003302 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003303 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003304
Robert Richter38efb532011-11-25 11:38:40 +01003305 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003306}
3307
Tom Zanussib5b87312010-11-10 08:16:51 -06003308static bool is_top_script(const char *script_path)
3309{
Yang Li85247112021-02-08 16:45:36 +08003310 return ends_with(script_path, "top") != NULL;
Tom Zanussib5b87312010-11-10 08:16:51 -06003311}
3312
3313static int has_required_arg(char *script_path)
3314{
3315 struct script_desc *desc;
3316 int n_args = 0;
3317 char *p;
3318
3319 desc = script_desc__new(NULL);
3320
3321 if (read_script_info(desc, script_path))
3322 goto out;
3323
3324 if (!desc->args)
3325 goto out;
3326
3327 for (p = desc->args; *p; p++)
3328 if (*p == '<')
3329 n_args++;
3330out:
3331 script_desc__delete(desc);
3332
3333 return n_args;
3334}
3335
David Ahernd54b1a92012-08-26 12:24:46 -06003336static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003337{
3338 char **__argv = malloc(sizeof(const char *) * argc);
3339
David Ahernd54b1a92012-08-26 12:24:46 -06003340 if (!__argv) {
3341 pr_err("malloc failed\n");
3342 return -1;
3343 }
3344
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003345 memcpy(__argv, argv, sizeof(const char *) * argc);
3346 argc = parse_options(argc, (const char **)__argv, record_options,
3347 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3348 free(__argv);
3349
David Ahernd54b1a92012-08-26 12:24:46 -06003350 system_wide = (argc == 0);
3351
3352 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003353}
3354
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003355static void script__setup_sample_type(struct perf_script *script)
3356{
3357 struct perf_session *session = script->session;
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03003358 u64 sample_type = evlist__combined_sample_type(session->evlist);
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003359
3360 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3361 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003362 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003363 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003364 dwarf_callchain_users = true;
3365 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003366 callchain_param.record_mode = CALLCHAIN_LBR;
3367 else
3368 callchain_param.record_mode = CALLCHAIN_FP;
3369 }
Kan Liang680d1252020-03-19 13:25:14 -07003370
3371 if (script->stitch_lbr && (callchain_param.record_mode != CALLCHAIN_LBR)) {
3372 pr_warning("Can't find LBR callchain. Switch off --stitch-lbr.\n"
3373 "Please apply --call-graph lbr when recording.\n");
3374 script->stitch_lbr = false;
3375 }
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003376}
3377
Jiri Olsa89f16882018-09-13 14:54:03 +02003378static int process_stat_round_event(struct perf_session *session,
3379 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003380{
Jiri Olsa72932372019-08-28 15:57:16 +02003381 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003382 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003383
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003384 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003385 perf_stat_process_counter(&stat_config, counter);
3386 process_stat(counter, round->time);
3387 }
3388
3389 process_stat_interval(round->time);
3390 return 0;
3391}
3392
Jiri Olsa89f16882018-09-13 14:54:03 +02003393static int process_stat_config_event(struct perf_session *session __maybe_unused,
3394 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003395{
3396 perf_event__read_stat_config(&stat_config, &event->stat_config);
3397 return 0;
3398}
3399
Jiri Olsacfc88742016-01-05 22:09:06 +01003400static int set_maps(struct perf_script *script)
3401{
Jiri Olsa63503db2019-07-21 13:23:52 +02003402 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003403
3404 if (!script->cpus || !script->threads)
3405 return 0;
3406
3407 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3408 return -EINVAL;
3409
Jiri Olsa453fa032019-07-21 13:24:43 +02003410 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003411
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003412 if (evlist__alloc_stats(evlist, true))
Jiri Olsacfc88742016-01-05 22:09:06 +01003413 return -ENOMEM;
3414
3415 script->allocated = true;
3416 return 0;
3417}
3418
3419static
Jiri Olsa89f16882018-09-13 14:54:03 +02003420int process_thread_map_event(struct perf_session *session,
3421 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003422{
Jiri Olsa89f16882018-09-13 14:54:03 +02003423 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003424 struct perf_script *script = container_of(tool, struct perf_script, tool);
3425
3426 if (script->threads) {
3427 pr_warning("Extra thread map event, ignoring.\n");
3428 return 0;
3429 }
3430
3431 script->threads = thread_map__new_event(&event->thread_map);
3432 if (!script->threads)
3433 return -ENOMEM;
3434
3435 return set_maps(script);
3436}
3437
3438static
Jiri Olsa89f16882018-09-13 14:54:03 +02003439int process_cpu_map_event(struct perf_session *session,
3440 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003441{
Jiri Olsa89f16882018-09-13 14:54:03 +02003442 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003443 struct perf_script *script = container_of(tool, struct perf_script, tool);
3444
3445 if (script->cpus) {
3446 pr_warning("Extra cpu map event, ignoring.\n");
3447 return 0;
3448 }
3449
3450 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3451 if (!script->cpus)
3452 return -ENOMEM;
3453
3454 return set_maps(script);
3455}
3456
Jiri Olsa89f16882018-09-13 14:54:03 +02003457static int process_feature_event(struct perf_session *session,
3458 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303459{
3460 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003461 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303462 return 0;
3463}
3464
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003465#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003466static int perf_script__process_auxtrace_info(struct perf_session *session,
3467 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003468{
Jiri Olsa89f16882018-09-13 14:54:03 +02003469 struct perf_tool *tool = session->tool;
3470
3471 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003472
3473 if (ret == 0) {
3474 struct perf_script *script = container_of(tool, struct perf_script, tool);
3475
3476 ret = perf_script__setup_per_event_dump(script);
3477 }
3478
3479 return ret;
3480}
3481#else
3482#define perf_script__process_auxtrace_info 0
3483#endif
3484
Andi Kleenb585ebd2018-09-20 11:05:36 -07003485static int parse_insn_trace(const struct option *opt __maybe_unused,
3486 const char *str __maybe_unused,
3487 int unset __maybe_unused)
3488{
3489 parse_output_fields(NULL, "+insn,-event,-period", 0);
3490 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003491 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003492 return 0;
3493}
3494
3495static int parse_xed(const struct option *opt __maybe_unused,
3496 const char *str __maybe_unused,
3497 int unset __maybe_unused)
3498{
Andi Kleen8c3e05c2020-05-21 19:09:14 -07003499 if (isatty(1))
3500 force_pager("xed -F insn: -A -64 | less");
3501 else
3502 force_pager("xed -F insn: -A -64");
Andi Kleenb585ebd2018-09-20 11:05:36 -07003503 return 0;
3504}
3505
Andi Kleend1b15522018-09-20 11:05:38 -07003506static int parse_call_trace(const struct option *opt __maybe_unused,
3507 const char *str __maybe_unused,
3508 int unset __maybe_unused)
3509{
3510 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3511 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003512 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003513 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003514 return 0;
3515}
3516
3517static int parse_callret_trace(const struct option *opt __maybe_unused,
3518 const char *str __maybe_unused,
3519 int unset __maybe_unused)
3520{
3521 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3522 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003523 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003524 return 0;
3525}
3526
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003527int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003528{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003529 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003530 bool header = false;
3531 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003532 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003533 char *rec_script_path = NULL;
3534 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003535 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003536 struct itrace_synth_opts itrace_synth_opts = {
3537 .set = false,
3538 .default_no_sample = true,
3539 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003540 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003541 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003542 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003543 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003544 struct perf_script script = {
3545 .tool = {
3546 .sample = process_sample_event,
3547 .mmap = perf_event__process_mmap,
3548 .mmap2 = perf_event__process_mmap2,
3549 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303550 .namespaces = perf_event__process_namespaces,
Namhyung Kim160d4af2020-03-25 21:45:36 +09003551 .cgroup = perf_event__process_cgroup,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003552 .exit = perf_event__process_exit,
3553 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003554 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003555 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003556 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303557 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003558 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003559 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003560 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003561 .auxtrace = perf_event__process_auxtrace,
3562 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003563 .stat = perf_event__process_stat_event,
3564 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003565 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003566 .thread_map = process_thread_map_event,
3567 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003568 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003569 .ordering_requires_timestamps = true,
3570 },
3571 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003572 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003573 .mode = PERF_DATA_MODE_READ,
3574 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003575 const struct option options[] = {
3576 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3577 "dump raw trace in ASCII"),
3578 OPT_INCR('v', "verbose", &verbose,
3579 "be more verbose (show symbol address, etc)"),
3580 OPT_BOOLEAN('L', "Latency", &latency_format,
3581 "show latency attributes (irqs/preemption disabled, etc)"),
3582 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3583 list_available_scripts),
3584 OPT_CALLBACK('s', "script", NULL, "name",
3585 "script file name (lang:script name, script name, or *)",
3586 parse_scriptname),
3587 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3588 "generate perf-script.xx script in specified language"),
3589 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3590 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3591 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003592 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3593 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003594 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3595 "file", "vmlinux pathname"),
3596 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3597 "file", "kallsyms pathname"),
3598 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3599 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003600 OPT_CALLBACK(0, "symfs", NULL, "directory",
3601 "Look for files with symbols relative to this directory",
3602 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003603 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003604 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003605 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003606 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003607 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303608 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3609 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Kan Liang6b9bae62020-12-16 10:57:57 -08003610 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc,tod,"
Stephane Eranianc513de82021-01-05 11:57:50 -08003611 "data_page_size,code_page_size",
Andi Kleen48d02a12017-02-23 15:46:34 -08003612 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003613 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3614 "system-wide collection from all CPUs"),
Jin Yao4b799a92021-01-25 07:27:50 +08003615 OPT_STRING(0, "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
3616 "only consider symbols in these DSOs"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003617 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3618 "only consider these symbols"),
Jin Yao61d9fc42021-02-07 16:09:35 +08003619 OPT_INTEGER(0, "addr-range", &symbol_conf.addr_range,
3620 "Use with -S to list traced records within address range"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003621 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3622 "Decode instructions from itrace", parse_insn_trace),
3623 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3624 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003625 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3626 "Decode calls from from itrace", parse_call_trace),
3627 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3628 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003629 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3630 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003631 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3632 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003633 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3634 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3635 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003636 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3637 "only consider symbols in these pids"),
3638 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3639 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003640 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3641 "Set the maximum stack depth when parsing the callchain, "
3642 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003643 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003644 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003645 OPT_BOOLEAN(0, "deltatime", &deltatime, "Show time stamps relative to previous event"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003646 OPT_BOOLEAN('I', "show-info", &show_full_info,
3647 "display extended information from perf.data file"),
3648 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3649 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003650 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3651 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003652 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3653 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003654 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3655 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303656 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3657 "Show namespace events (if recorded)"),
Namhyung Kim160d4af2020-03-25 21:45:36 +09003658 OPT_BOOLEAN('\0', "show-cgroup-events", &script.show_cgroup_events,
3659 "Show cgroup events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003660 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3661 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003662 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3663 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003664 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3665 "Show bpf related events (if recorded)"),
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03003666 OPT_BOOLEAN('\0', "show-text-poke-events", &script.show_text_poke_events,
3667 "Show text poke related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003668 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3669 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003670 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003671 OPT_INTEGER(0, "max-blocks", &max_blocks,
3672 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003673 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003674 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003675 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003676 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003677 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003678 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3679 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003680 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3681 "Enable symbol demangling"),
3682 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3683 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003684 OPT_STRING(0, "time", &script.time_str, "str",
3685 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003686 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3687 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003688 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3689 "guest mount directory under which every guest os"
3690 " instance has a subdir"),
3691 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3692 "file", "file saving guest os vmlinux"),
3693 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3694 "file", "file saving guest os /proc/kallsyms"),
3695 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3696 "file", "file saving guest os /proc/modules"),
Kan Liang680d1252020-03-19 13:25:14 -07003697 OPT_BOOLEAN('\0', "stitch-lbr", &script.stitch_lbr,
3698 "Enable LBR callgraph stitching approach"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003699 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003700 OPT_END()
3701 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003702 const char * const script_subcommands[] = { "record", "report", NULL };
3703 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003704 "perf script [<options>]",
3705 "perf script [<options>] record <script> [<record-options>] <command>",
3706 "perf script [<options>] report <script> [script-args]",
3707 "perf script [<options>] <script> [<record-options>] <command>",
3708 "perf script [<options>] <top-script> [script-args]",
3709 NULL
3710 };
Tom Zanussi38752942009-12-15 02:53:39 -06003711
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003712 perf_set_singlethreaded();
3713
Tom Zanussib5b87312010-11-10 08:16:51 -06003714 setup_scripting();
3715
Yunlong Song40cae2b2015-03-18 21:35:54 +08003716 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003717 PARSE_OPT_STOP_AT_NON_OPTION);
3718
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003719 if (symbol_conf.guestmount ||
3720 symbol_conf.default_guest_vmlinux_name ||
3721 symbol_conf.default_guest_kallsyms ||
3722 symbol_conf.default_guest_modules) {
3723 /*
3724 * Enable guest sample processing.
3725 */
3726 perf_guest = true;
3727 }
3728
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003729 data.path = input_name;
3730 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003731
Tom Zanussib5b87312010-11-10 08:16:51 -06003732 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3733 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3734 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003735 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003736 }
3737
Tom Zanussib5b87312010-11-10 08:16:51 -06003738 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3739 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3740 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003741 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003742 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003743 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003744 return -1;
3745 }
Tom Zanussi38752942009-12-15 02:53:39 -06003746 }
3747
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003748 if (reltime && deltatime) {
3749 fprintf(stderr,
3750 "reltime and deltatime - the two don't get along well. "
3751 "Please limit to --reltime or --deltatime.\n");
3752 return -1;
3753 }
3754
Adrian Hunter1c5c25b2020-04-01 13:16:05 +03003755 if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003756 itrace_synth_opts.callchain_sz > scripting_max_stack)
3757 scripting_max_stack = itrace_synth_opts.callchain_sz;
3758
Ben Hutchings44e668c2010-10-10 16:10:03 +01003759 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003760 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003761
Tom Zanussib5b87312010-11-10 08:16:51 -06003762 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003763 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003764 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003765 pid_t pid;
3766
Tom Zanussib5b87312010-11-10 08:16:51 -06003767 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3768 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3769
3770 if (!rec_script_path && !rep_script_path) {
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03003771 script_name = find_script(argv[0]);
3772 if (script_name) {
3773 argc -= 1;
3774 argv += 1;
3775 goto script_found;
3776 }
Namhyung Kimc7118362015-10-25 00:49:27 +09003777 usage_with_options_msg(script_usage, options,
3778 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003779 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003780 }
3781
Tom Zanussib5b87312010-11-10 08:16:51 -06003782 if (is_top_script(argv[0])) {
3783 rep_args = argc - 1;
3784 } else {
3785 int rec_args;
3786
3787 rep_args = has_required_arg(rep_script_path);
3788 rec_args = (argc - 1) - rep_args;
3789 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003790 usage_with_options_msg(script_usage, options,
3791 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003792 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003793 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003794 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003795 }
3796
3797 if (pipe(live_pipe) < 0) {
3798 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003799 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003800 }
3801
3802 pid = fork();
3803 if (pid < 0) {
3804 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003805 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003806 }
3807
3808 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003809 j = 0;
3810
Tom Zanussia0cccc22010-04-01 23:59:25 -05003811 dup2(live_pipe[1], 1);
3812 close(live_pipe[0]);
3813
Robert Richter317df652011-11-25 15:05:25 +01003814 if (is_top_script(argv[0])) {
3815 system_wide = true;
3816 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003817 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3818 err = -1;
3819 goto out;
3820 }
Robert Richter317df652011-11-25 15:05:25 +01003821 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003822
3823 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003824 if (!__argv) {
3825 pr_err("malloc failed\n");
3826 err = -ENOMEM;
3827 goto out;
3828 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003829
Tom Zanussib5b87312010-11-10 08:16:51 -06003830 __argv[j++] = "/bin/sh";
3831 __argv[j++] = rec_script_path;
3832 if (system_wide)
3833 __argv[j++] = "-a";
3834 __argv[j++] = "-q";
3835 __argv[j++] = "-o";
3836 __argv[j++] = "-";
3837 for (i = rep_args + 1; i < argc; i++)
3838 __argv[j++] = argv[i];
3839 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003840
3841 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003842 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003843 exit(-1);
3844 }
3845
3846 dup2(live_pipe[0], 0);
3847 close(live_pipe[1]);
3848
Tom Zanussib5b87312010-11-10 08:16:51 -06003849 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003850 if (!__argv) {
3851 pr_err("malloc failed\n");
3852 err = -ENOMEM;
3853 goto out;
3854 }
3855
Tom Zanussib5b87312010-11-10 08:16:51 -06003856 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003857 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003858 __argv[j++] = rep_script_path;
3859 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003860 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003861 __argv[j++] = "-i";
3862 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003863 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003864
3865 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003866 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003867 exit(-1);
3868 }
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03003869script_found:
Tom Zanussib5b87312010-11-10 08:16:51 -06003870 if (rec_script_path)
3871 script_path = rec_script_path;
3872 if (rep_script_path)
3873 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003874
Tom Zanussib5b87312010-11-10 08:16:51 -06003875 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003876 j = 0;
3877
Robert Richter317df652011-11-25 15:05:25 +01003878 if (!rec_script_path)
3879 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003880 else if (!system_wide) {
3881 if (have_cmd(argc - 1, &argv[1]) != 0) {
3882 err = -1;
3883 goto out;
3884 }
3885 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003886
3887 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003888 if (!__argv) {
3889 pr_err("malloc failed\n");
3890 err = -ENOMEM;
3891 goto out;
3892 }
3893
Tom Zanussib5b87312010-11-10 08:16:51 -06003894 __argv[j++] = "/bin/sh";
3895 __argv[j++] = script_path;
3896 if (system_wide)
3897 __argv[j++] = "-a";
3898 for (i = 2; i < argc; i++)
3899 __argv[j++] = argv[i];
3900 __argv[j++] = NULL;
3901
3902 execvp("/bin/sh", (char **)__argv);
3903 free(__argv);
3904 exit(-1);
3905 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003906
Milian Wolffc1c9b962018-10-21 21:14:23 +02003907 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06003908 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02003909 use_browser = 0;
3910 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003911
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003912 session = perf_session__new(&data, false, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303913 if (IS_ERR(session))
3914 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003915
Jiri Olsae90debd2013-12-09 11:02:50 +01003916 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003917 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003918 perf_session__fprintf_info(session, stdout, show_full_info);
3919 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003920 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003921 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003922 if (show_full_info)
3923 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003924
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003925 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003926 goto out_delete;
3927
Andi Kleen3ab481a2019-03-05 06:47:45 -08003928 uname(&uts);
Song Liu9d491692019-06-20 18:44:38 -07003929 if (data.is_pipe || /* assume pipe_mode indicates native_arch */
3930 !strcmp(uts.machine, session->header.env.arch) ||
Andi Kleen3ab481a2019-03-05 06:47:45 -08003931 (!strcmp(uts.machine, "x86_64") &&
3932 !strcmp(session->header.env.arch, "i386")))
3933 native_arch = true;
3934
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003935 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003936 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003937
Andi Kleen99f753f2018-09-20 11:05:39 -07003938 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
3939 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03003940 itrace_synth_opts.thread_stack = true;
3941
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003942 session->itrace_synth_opts = &itrace_synth_opts;
3943
Anton Blanchard5d67be92011-07-04 21:57:50 +10003944 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003945 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3946 if (err < 0)
3947 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003948 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003949 }
3950
David Ahern1424dc92011-03-09 22:23:28 -07003951 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003952 symbol_conf.use_callchain = true;
3953 else
3954 symbol_conf.use_callchain = false;
3955
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003956 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04003957 tep_set_function_resolver(session->tevent.pevent,
3958 machine__resolve_kernel_addr,
3959 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003960 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003961 err = -1;
3962 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003963 }
3964
Tom Zanussi956ffd02009-11-25 01:15:46 -06003965 if (generate_script_lang) {
3966 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003967 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003968
David Ahern2c9e45f72011-03-17 10:03:21 -06003969 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003970 fprintf(stderr,
3971 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003972 err = -EINVAL;
3973 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003974 }
3975
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003976 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003977 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003978 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003979 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003980 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003981 }
3982
3983 err = fstat(input, &perf_stat);
3984 if (err < 0) {
3985 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003986 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003987 }
3988
3989 if (!perf_stat.st_size) {
3990 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003991 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003992 }
3993
3994 scripting_ops = script_spec__lookup(generate_script_lang);
3995 if (!scripting_ops) {
3996 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003997 err = -ENOENT;
3998 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003999 }
4000
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004001 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03004002 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004003 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004004 }
4005
4006 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06004007 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06004008 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004009 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01004010 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004011 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004012 }
4013
David Ahern9cbdb702011-04-06 21:54:20 -06004014
4015 err = perf_session__check_output_opt(session);
4016 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004017 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06004018
Jin Yao284c4e12019-03-01 18:13:06 +08004019 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07004020 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08004021 &script.ptime_range,
4022 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07004023 &script.range_num,
4024 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08004025 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08004026 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03004027
4028 itrace_synth_opts__set_time_range(&itrace_synth_opts,
4029 script.ptime_range,
4030 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07004031 }
4032
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03004033 err = evswitch__init(&script.evswitch, session->evlist, stderr);
4034 if (err)
4035 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03004036
Milian Wolffb13b04d2020-06-13 01:03:33 +02004037 if (zstd_init(&(session->zstd_data), 0) < 0)
4038 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
4039
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03004040 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06004041
Adrian Hunterd445dd22014-08-15 22:08:37 +03004042 flush_scripting();
4043
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004044out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03004045 if (script.ptime_range) {
4046 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08004047 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03004048 }
Jin Yaocc2ef582018-01-10 23:00:33 +08004049
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03004050 evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02004051 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004052
4053 if (script_started)
4054 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06004055out:
4056 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004057}