blob: 08a2b5d5101827fd1cc270fa7b39b6f8782be6be [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
Adrian Hunterd9ae9c92021-05-30 22:23:01 +03001420void script_fetch_insn(struct perf_sample *sample, struct thread *thread,
1421 struct machine *machine)
1422{
1423 if (sample->insn_len == 0 && native_arch)
1424 arch_fetch_insn(sample, thread, machine);
1425}
1426
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001427static int perf_sample__fprintf_insn(struct perf_sample *sample,
1428 struct perf_event_attr *attr,
1429 struct thread *thread,
1430 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001431{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001432 int printed = 0;
1433
Adrian Hunterd9ae9c92021-05-30 22:23:01 +03001434 script_fetch_insn(sample, thread, machine);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001435
Andi Kleen224e2c92016-10-07 16:42:27 +03001436 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001437 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001438 if (PRINT_FIELD(INSN) && sample->insn_len) {
Andi Kleen224e2c92016-10-07 16:42:27 +03001439 int i;
1440
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001441 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001442 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001443 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001444 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001445 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001446 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1447
1448 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001449}
1450
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001451static int perf_sample__fprintf_ipc(struct perf_sample *sample,
1452 struct perf_event_attr *attr, FILE *fp)
1453{
1454 unsigned int ipc;
1455
1456 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt)
1457 return 0;
1458
1459 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt;
1460
1461 return fprintf(fp, " \t IPC: %u.%02u (%" PRIu64 "/%" PRIu64 ") ",
1462 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt);
1463}
1464
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001465static int perf_sample__fprintf_bts(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001466 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001467 struct thread *thread,
1468 struct addr_location *al,
1469 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001470{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001471 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001472 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001473 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001474 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001475
Adrian Huntere2167082016-06-23 16:40:58 +03001476 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001477 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001478
Akihiro Nagai95582592012-01-30 13:43:09 +09001479 /* print branch_from information */
1480 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001481 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001482 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001483
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001484 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001485 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001486 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001487 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001488
1489 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001490 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001491 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001492 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001493 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001494 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001495 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001496 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001497
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001498 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor,
1499 symbol_conf.bt_stop_list, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001500 }
1501
Akihiro Nagai95582592012-01-30 13:43:09 +09001502 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001503 if (PRINT_FIELD(ADDR) ||
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001504 ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001505 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001506 printed += fprintf(fp, " => ");
1507 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001508 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001509
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001510 printed += perf_sample__fprintf_ipc(sample, attr, fp);
1511
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001512 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001513 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001514
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001515 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001516 printed += fprintf(fp, "\n");
1517 if (PRINT_FIELD(SRCCODE)) {
1518 int ret = map__fprintf_srccode(al->map, al->addr, stdout,
1519 &thread->srccode_state);
1520 if (ret) {
1521 printed += ret;
1522 printed += printf("\n");
1523 }
1524 }
1525 return printed;
Akihiro Nagai95582592012-01-30 13:43:09 +09001526}
1527
Adrian Hunter055cd332016-06-23 16:40:56 +03001528static struct {
1529 u32 flags;
1530 const char *name;
1531} sample_flags[] = {
1532 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1533 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1534 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1535 {PERF_IP_FLAG_BRANCH, "jmp"},
1536 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1537 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1538 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1539 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1540 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1541 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1542 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1543 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1544 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
Adrian Hunterc025d462021-02-18 11:57:51 +02001545 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMENTRY, "vmentry"},
1546 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMEXIT, "vmexit"},
Adrian Hunter055cd332016-06-23 16:40:56 +03001547 {0, NULL}
1548};
1549
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001550static const char *sample_flags_to_name(u32 flags)
1551{
1552 int i;
1553
1554 for (i = 0; sample_flags[i].name ; i++) {
1555 if (sample_flags[i].flags == flags)
1556 return sample_flags[i].name;
1557 }
1558
1559 return NULL;
1560}
1561
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001562int perf_sample__sprintf_flags(u32 flags, char *str, size_t sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001563{
1564 const char *chars = PERF_IP_FLAG_CHARS;
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001565 const size_t n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001566 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1567 const char *name = NULL;
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001568 size_t i, pos = 0;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001569
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001570 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1571 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001572 return snprintf(str, sz, "%-15s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001573
1574 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1575 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1576 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001577 return snprintf(str, sz, "tr strt %-7s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001578 }
1579
1580 if (flags & PERF_IP_FLAG_TRACE_END) {
1581 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1582 if (name)
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001583 return snprintf(str, sz, "tr end %-7s%4s", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001584 }
1585
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001586 for (i = 0; i < n; i++, flags >>= 1) {
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001587 if ((flags & 1) && pos < sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001588 str[pos++] = chars[i];
1589 }
1590 for (; i < 32; i++, flags >>= 1) {
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001591 if ((flags & 1) && pos < sz)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001592 str[pos++] = '?';
1593 }
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001594 if (pos < sz)
1595 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001596
Adrian Hunter54cd8b02021-05-25 12:51:06 +03001597 return pos;
1598}
1599
1600static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
1601{
1602 char str[SAMPLE_FLAGS_BUF_SIZE];
1603
1604 perf_sample__sprintf_flags(flags, str, sizeof(str));
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001605 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001606}
1607
Wang Nan30372f02016-02-24 11:20:45 +00001608struct printer_data {
1609 int line_no;
1610 bool hit_nul;
1611 bool is_printable;
1612};
1613
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001614static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1615 unsigned int val,
1616 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001617{
1618 unsigned char ch = (unsigned char)val;
1619 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001620 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001621
1622 switch (op) {
1623 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001624 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001625 break;
1626 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001627 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001628 " ");
1629 break;
1630 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001631 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001632 break;
1633 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001634 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001635 break;
1636 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001637 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001638 break;
1639 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001640 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001641 break;
1642 case BINARY_PRINT_CHAR_DATA:
1643 if (printer_data->hit_nul && ch)
1644 printer_data->is_printable = false;
1645
1646 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001647 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001648
1649 if (!printer_data->is_printable)
1650 break;
1651
1652 if (ch == '\0')
1653 printer_data->hit_nul = true;
1654 else
1655 printer_data->is_printable = false;
1656 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001657 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001658 }
1659 break;
1660 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001661 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001662 break;
1663 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001664 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001665 printer_data->line_no++;
1666 break;
1667 case BINARY_PRINT_DATA_END:
1668 default:
1669 break;
1670 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001671
1672 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001673}
1674
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001675static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001676{
1677 unsigned int nr_bytes = sample->raw_size;
1678 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001679 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1680 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001681
1682 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001683 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1684
1685 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001686}
1687
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001688static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001689{
1690 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001691 return fprintf(fp, "%*s", spacing - len, "");
1692
1693 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001694}
1695
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001696static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001697{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001698 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001699}
1700
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001701static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001702{
1703 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1704 int len;
1705
1706 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001707 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001708
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001709 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001710 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001711 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001712}
1713
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001714static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001715{
1716 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1717 int len;
1718
1719 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001720 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001721
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001722 len = fprintf(fp, " hints: %#x extensions: %#x ",
1723 data->hints, data->extensions);
1724 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001725}
1726
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001727static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001728{
1729 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1730 int len;
1731
1732 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001733 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001734
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001735 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1736 data->hw, data->cstate, data->subcstate);
1737 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001738}
1739
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001740static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001741{
1742 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1743 int len;
1744
1745 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001746 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001747
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001748 len = fprintf(fp, " IP: %u ", data->ip);
1749 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001750}
1751
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001752static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001753{
1754 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1755 int len;
1756
1757 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001758 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001759
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001760 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001761 data->deepest_cstate, data->last_cstate,
1762 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001763 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001764}
1765
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001766static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001767{
1768 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1769 unsigned int percent, freq;
1770 int len;
1771
1772 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001773 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001774
1775 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001776 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001777 if (data->max_nonturbo) {
1778 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001779 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001780 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001781 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001782}
1783
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001784static int perf_sample__fprintf_synth_psb(struct perf_sample *sample, FILE *fp)
1785{
1786 struct perf_synth_intel_psb *data = perf_sample__synth_ptr(sample);
1787 int len;
1788
1789 if (perf_sample__bad_synth_size(sample, *data))
1790 return 0;
1791
1792 len = fprintf(fp, " psb offs: %#" PRIx64, data->offset);
1793 return len + perf_sample__fprintf_pt_spacing(len, fp);
1794}
1795
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001796static int perf_sample__fprintf_synth(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001797 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001798{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001799 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001800 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001801 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001802 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001803 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001804 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001805 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001806 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001807 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001808 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001809 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001810 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001811 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001812 case PERF_SYNTH_INTEL_PSB:
1813 return perf_sample__fprintf_synth_psb(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001814 default:
1815 break;
1816 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001817
1818 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001819}
1820
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001821static int evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001822{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001823 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001824 int max = 0;
1825
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001826 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001827 int len = strlen(evsel__name(evsel));
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001828
1829 max = MAX(len, max);
1830 }
1831
1832 return max;
1833}
1834
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001835static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001836{
1837 struct mem_info mi = { .data_src.val = data_src };
1838 char decode[100];
1839 char out[100];
1840 static int maxlen;
1841 int len;
1842
1843 perf_script__meminfo_scnprintf(decode, 100, &mi);
1844
1845 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1846 if (maxlen < len)
1847 maxlen = len;
1848
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001849 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001850}
1851
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001852struct metric_ctx {
1853 struct perf_sample *sample;
1854 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001855 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001856 FILE *fp;
1857};
1858
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001859static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1860 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001861 const char *fmt,
1862 const char *unit, double val)
1863{
1864 struct metric_ctx *mctx = ctx;
1865
1866 if (!fmt)
1867 return;
Jiri Olsae534bfb2020-08-05 11:34:44 +02001868 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001869 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001870 fputs("\tmetric: ", mctx->fp);
1871 if (color)
1872 color_fprintf(mctx->fp, color, fmt, val);
1873 else
1874 printf(fmt, val);
1875 fprintf(mctx->fp, " %s\n", unit);
1876}
1877
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001878static void script_new_line(struct perf_stat_config *config __maybe_unused,
1879 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001880{
1881 struct metric_ctx *mctx = ctx;
1882
Jiri Olsae534bfb2020-08-05 11:34:44 +02001883 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001884 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001885 fputs("\tmetric: ", mctx->fp);
1886}
1887
1888static void perf_sample__fprint_metric(struct perf_script *script,
1889 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001890 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001891 struct perf_sample *sample,
1892 FILE *fp)
1893{
1894 struct perf_stat_output_ctx ctx = {
1895 .print_metric = script_print_metric,
1896 .new_line = script_new_line,
1897 .ctx = &(struct metric_ctx) {
1898 .sample = sample,
1899 .thread = thread,
1900 .evsel = evsel,
1901 .fp = fp,
1902 },
1903 .force_header = false,
1904 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001905 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001906 u64 val;
1907
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001908 if (!evsel->stats)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001909 evlist__alloc_stats(script->session->evlist, false);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001910 if (evsel_script(evsel->leader)->gnum++ == 0)
1911 perf_stat__reset_shadow_stats();
1912 val = sample->period * evsel->scale;
1913 perf_stat__update_shadow_stats(evsel,
1914 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001915 sample->cpu,
1916 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001917 evsel_script(evsel)->val = val;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001918 if (evsel_script(evsel->leader)->gnum == evsel->leader->core.nr_members) {
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001919 for_each_group_member (ev2, evsel->leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001920 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001921 evsel_script(ev2)->val,
1922 sample->cpu,
1923 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001924 NULL,
1925 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001926 }
1927 evsel_script(evsel->leader)->gnum = 0;
1928 }
1929}
1930
Andi Kleen99f753f2018-09-20 11:05:39 -07001931static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001932 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001933 struct thread *thread,
1934 struct addr_location *al)
1935{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001936 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001937
1938 if (!symbol_conf.graph_function)
1939 return true;
1940
1941 if (thread->filter) {
1942 if (depth <= thread->filter_entry_depth) {
1943 thread->filter = false;
1944 return false;
1945 }
1946 return true;
1947 } else {
1948 const char *s = symbol_conf.graph_function;
1949 u64 ip;
1950 const char *name = resolve_branch_sym(sample, evsel, thread, al,
1951 &ip);
1952 unsigned nlen;
1953
1954 if (!name)
1955 return false;
1956 nlen = strlen(name);
1957 while (*s) {
1958 unsigned len = strcspn(s, ",");
1959 if (nlen == len && !strncmp(name, s, len)) {
1960 thread->filter = true;
1961 thread->filter_entry_depth = depth;
1962 return true;
1963 }
1964 s += len;
1965 if (*s == ',')
1966 s++;
1967 }
1968 return false;
1969 }
1970}
1971
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001972static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001973 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001974 struct addr_location *al,
1975 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001976{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001977 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001978 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001979 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02001980 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001981 FILE *fp = es->fp;
Kan Liang6b9bae62020-12-16 10:57:57 -08001982 char str[PAGE_SIZE_NAME_LEN];
David Ahern1424dc92011-03-09 22:23:28 -07001983
Adrian Hunter14057202017-06-21 13:17:19 +03001984 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001985 return;
1986
Andi Kleen99f753f2018-09-20 11:05:39 -07001987 if (!show_event(sample, evsel, thread, al))
1988 return;
1989
Arnaldo Carvalho de Melo8829e562019-08-15 11:00:11 -03001990 if (evswitch__discard(&script->evswitch, evsel))
1991 return;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001992
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001993 ++es->samples;
1994
Jiri Olsae534bfb2020-08-05 11:34:44 +02001995 perf_sample__fprintf_start(script, sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001996 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001997
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001998 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001999 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02002000
Namhyung Kime944d3d2013-11-18 14:34:52 +09002001 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002002 const char *evname = evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01002003
2004 if (!script->name_width)
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002005 script->name_width = evlist__max_name_len(script->session->evlist);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01002006
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002007 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09002008 }
2009
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002010 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002011 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002012
Akihiro Nagai95582592012-01-30 13:43:09 +09002013 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002014 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09002015 return;
2016 }
2017
Andi Kleen96167162019-01-17 11:48:34 -08002018 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03002019 event_format__fprintf(evsel->tp_format, sample->cpu,
2020 sample->raw_data, sample->raw_size, fp);
2021 }
Adrian Hunter47e78082017-05-26 11:17:22 +03002022
2023 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002024 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03002025
David Ahern7cec0922011-05-30 13:08:23 -06002026 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002027 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06002028
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002029 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002030 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002031
2032 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002033 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002034
David Ahern787bef12011-05-27 14:28:43 -06002035 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07002036 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04002037
Kan Liang680d1252020-03-19 13:25:14 -07002038 if (script->stitch_lbr)
2039 al->thread->lbr_stitch_enable = true;
2040
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03002041 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07002042 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002043 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07002044 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002045
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002046 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03002047 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
2048 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07002049 }
2050
Stephane Eranianfc36f942015-08-31 18:41:10 +02002051 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002052 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02002053
Andi Kleenb1491ac2017-09-05 11:40:57 -07002054 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002055 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07002056
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002057 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002058 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002059 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002060 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07002061 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002062 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002063
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002064 if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002065 perf_sample__fprintf_bpf_output(sample, fp);
2066 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04002067
2068 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002069 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002070
Kan Liang6b9bae62020-12-16 10:57:57 -08002071 if (PRINT_FIELD(DATA_PAGE_SIZE))
2072 fprintf(fp, " %s", get_page_size_name(sample->data_page_size, str));
2073
Stephane Eranianc513de82021-01-05 11:57:50 -08002074 if (PRINT_FIELD(CODE_PAGE_SIZE))
2075 fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str));
2076
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002077 perf_sample__fprintf_ipc(sample, attr, fp);
2078
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002079 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002080
Andi Kleendd2e18e2018-12-03 16:18:48 -08002081 if (PRINT_FIELD(SRCCODE)) {
2082 if (map__fprintf_srccode(al->map, al->addr, stdout,
2083 &thread->srccode_state))
2084 printf("\n");
2085 }
2086
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002087 if (PRINT_FIELD(METRIC))
2088 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02002089
2090 if (verbose)
2091 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07002092}
2093
Tom Zanussi956ffd02009-11-25 01:15:46 -06002094static struct scripting_ops *scripting_ops;
2095
Jiri Olsa32dcd022019-07-21 13:23:51 +02002096static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002097{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002098 int nthreads = perf_thread_map__nr(counter->core.threads);
Arnaldo Carvalho de Melo5eb88f02020-04-29 15:45:09 -03002099 int ncpus = evsel__nr_cpus(counter);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002100 int cpu, thread;
2101 static int header_printed;
2102
Jiri Olsa648b5af2019-08-06 11:35:19 +02002103 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002104 nthreads = 1;
2105
2106 if (!header_printed) {
2107 printf("%3s %8s %15s %15s %15s %15s %s\n",
2108 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
2109 header_printed = 1;
2110 }
2111
2112 for (thread = 0; thread < nthreads; thread++) {
2113 for (cpu = 0; cpu < ncpus; cpu++) {
2114 struct perf_counts_values *counts;
2115
2116 counts = perf_counts(counter->counts, cpu, thread);
2117
2118 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02002119 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002120 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01002121 counts->val,
2122 counts->ena,
2123 counts->run,
2124 tstamp,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002125 evsel__name(counter));
Jiri Olsa36e33c52016-01-06 11:49:56 +01002126 }
2127 }
2128}
2129
Jiri Olsa32dcd022019-07-21 13:23:51 +02002130static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002131{
2132 if (scripting_ops && scripting_ops->process_stat)
2133 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002134 else
2135 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002136}
2137
2138static void process_stat_interval(u64 tstamp)
2139{
2140 if (scripting_ops && scripting_ops->process_stat_interval)
2141 scripting_ops->process_stat_interval(tstamp);
2142}
2143
Tom Zanussi956ffd02009-11-25 01:15:46 -06002144static void setup_scripting(void)
2145{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002146 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002147 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002148}
2149
Adrian Hunterd445dd22014-08-15 22:08:37 +03002150static int flush_scripting(void)
2151{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002152 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002153}
2154
Tom Zanussi956ffd02009-11-25 01:15:46 -06002155static int cleanup_scripting(void)
2156{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002157 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002158
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002159 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002160}
2161
Andi Kleene87e5482019-03-11 07:44:52 -07002162static bool filter_cpu(struct perf_sample *sample)
2163{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002164 if (cpu_list && sample->cpu != (u32)-1)
Andi Kleene87e5482019-03-11 07:44:52 -07002165 return !test_bit(sample->cpu, cpu_bitmap);
2166 return false;
2167}
2168
Jiri Olsa809e9422015-11-26 18:55:21 +01002169static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002170 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002171 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002172 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002173 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002174{
Jiri Olsa809e9422015-11-26 18:55:21 +01002175 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002176 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002177
Jin Yao2ab046c2017-12-08 21:13:46 +08002178 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2179 sample->time)) {
David Aherna91f4c42016-11-29 10:15:43 -07002180 return 0;
Jin Yao2ab046c2017-12-08 21:13:46 +08002181 }
David Aherna91f4c42016-11-29 10:15:43 -07002182
David Ahern1424dc92011-03-09 22:23:28 -07002183 if (debug_mode) {
2184 if (sample->time < last_timestamp) {
2185 pr_err("Samples misordered, previous: %" PRIu64
2186 " this: %" PRIu64 "\n", last_timestamp,
2187 sample->time);
2188 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002189 }
David Ahern1424dc92011-03-09 22:23:28 -07002190 last_timestamp = sample->time;
2191 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002192 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002193
Adrian Hunter93000412021-06-21 18:05:04 +03002194 if (filter_cpu(sample))
2195 return 0;
2196
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03002197 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002198 pr_err("problem processing %d event, skipping it.\n",
2199 event->header.type);
2200 return -1;
2201 }
2202
2203 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002204 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002205
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002206 if (scripting_ops) {
2207 struct addr_location *addr_al_ptr = NULL;
2208 struct addr_location addr_al;
2209
2210 if ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
2211 sample_addr_correlates_sym(&evsel->core.attr)) {
2212 thread__resolve(al.thread, &addr_al, sample);
2213 addr_al_ptr = &addr_al;
2214 }
2215 scripting_ops->process_event(event, sample, evsel, &al, addr_al_ptr);
2216 } else {
Andi Kleen48d02a12017-02-23 15:46:34 -08002217 process_event(scr, sample, evsel, &al, machine);
Adrian Hunter3f8e0092021-05-25 12:51:05 +03002218 }
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002219
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002220out_put:
2221 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002222 return 0;
2223}
2224
Adrian Hunter7ea95722013-11-01 15:51:30 +02002225static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002226 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002227{
2228 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002229 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002230 struct evsel *evsel, *pos;
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002231 u64 sample_type;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002232 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002233 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002234
2235 err = perf_event__process_attr(tool, event, pevlist);
2236 if (err)
2237 return err;
2238
2239 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002240 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002241
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302242 if (!evsel->priv) {
2243 if (scr->per_event_dump) {
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002244 evsel->priv = evsel_script__new(evsel, scr->session->data);
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302245 } else {
2246 es = zalloc(sizeof(*es));
2247 if (!es)
2248 return -ENOMEM;
2249 es->fp = stdout;
2250 evsel->priv = es;
2251 }
2252 }
2253
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002254 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2255 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002256 return 0;
2257
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002258 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002259 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002260 return 0;
2261 }
2262
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002263 if (evsel->core.attr.sample_type) {
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002264 err = evsel__check_attr(evsel, scr->session);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002265 if (err)
2266 return err;
2267 }
Jiri Olsad2b5a312015-10-16 12:41:25 +02002268
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002269 /*
2270 * Check if we need to enable callchains based
2271 * on events sample_type.
2272 */
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03002273 sample_type = evlist__combined_sample_type(evlist);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002274 callchain_param_setup(sample_type);
Jiri Olsa53fb1892020-05-07 11:50:24 +02002275
Adrian Hunterb5164082020-05-27 21:02:50 +03002276 /* Enable fields for callchain entries */
2277 if (symbol_conf.use_callchain &&
2278 (sample_type & PERF_SAMPLE_CALLCHAIN ||
2279 sample_type & PERF_SAMPLE_BRANCH_STACK ||
2280 (sample_type & PERF_SAMPLE_REGS_USER &&
2281 sample_type & PERF_SAMPLE_STACK_USER))) {
2282 int type = output_type(evsel->core.attr.type);
2283
2284 if (!(output[type].user_unset_fields & PERF_OUTPUT_IP))
2285 output[type].fields |= PERF_OUTPUT_IP;
2286 if (!(output[type].user_unset_fields & PERF_OUTPUT_SYM))
2287 output[type].fields |= PERF_OUTPUT_SYM;
Jiri Olsa53fb1892020-05-07 11:50:24 +02002288 }
2289 set_print_ip_opts(&evsel->core.attr);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002290 return 0;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002291}
2292
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002293static int print_event_with_time(struct perf_tool *tool,
2294 union perf_event *event,
2295 struct perf_sample *sample,
2296 struct machine *machine,
2297 pid_t pid, pid_t tid, u64 timestamp)
2298{
2299 struct perf_script *script = container_of(tool, struct perf_script, tool);
2300 struct perf_session *session = script->session;
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002301 struct evsel *evsel = evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002302 struct thread *thread = NULL;
2303
2304 if (evsel && !evsel->core.attr.sample_id_all) {
2305 sample->cpu = 0;
2306 sample->time = timestamp;
2307 sample->pid = pid;
2308 sample->tid = tid;
2309 }
2310
2311 if (filter_cpu(sample))
2312 return 0;
2313
2314 if (tid != -1)
2315 thread = machine__findnew_thread(machine, pid, tid);
2316
Adrian Hunterfc183802020-09-09 11:49:22 +03002317 if (evsel) {
Jiri Olsae534bfb2020-08-05 11:34:44 +02002318 perf_sample__fprintf_start(script, sample, thread, evsel,
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002319 event->header.type, stdout);
2320 }
2321
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002322 perf_event__fprintf(event, machine, stdout);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002323
2324 thread__put(thread);
2325
2326 return 0;
2327}
2328
2329static int print_event(struct perf_tool *tool, union perf_event *event,
2330 struct perf_sample *sample, struct machine *machine,
2331 pid_t pid, pid_t tid)
2332{
2333 return print_event_with_time(tool, event, sample, machine, pid, tid, 0);
2334}
2335
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002336static int process_comm_event(struct perf_tool *tool,
2337 union perf_event *event,
2338 struct perf_sample *sample,
2339 struct machine *machine)
2340{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002341 if (perf_event__process_comm(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002342 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002343
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002344 return print_event(tool, event, sample, machine, event->comm.pid,
2345 event->comm.tid);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002346}
2347
Hari Bathini96a44bb2017-03-08 02:12:06 +05302348static int process_namespaces_event(struct perf_tool *tool,
2349 union perf_event *event,
2350 struct perf_sample *sample,
2351 struct machine *machine)
2352{
Hari Bathini96a44bb2017-03-08 02:12:06 +05302353 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002354 return -1;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302355
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002356 return print_event(tool, event, sample, machine, event->namespaces.pid,
2357 event->namespaces.tid);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302358}
2359
Namhyung Kim160d4af2020-03-25 21:45:36 +09002360static int process_cgroup_event(struct perf_tool *tool,
2361 union perf_event *event,
2362 struct perf_sample *sample,
2363 struct machine *machine)
2364{
Namhyung Kim160d4af2020-03-25 21:45:36 +09002365 if (perf_event__process_cgroup(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002366 return -1;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002367
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002368 return print_event(tool, event, sample, machine, sample->pid,
2369 sample->tid);
Namhyung Kim160d4af2020-03-25 21:45:36 +09002370}
2371
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002372static int process_fork_event(struct perf_tool *tool,
2373 union perf_event *event,
2374 struct perf_sample *sample,
2375 struct machine *machine)
2376{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002377 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2378 return -1;
2379
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002380 return print_event_with_time(tool, event, sample, machine,
2381 event->fork.pid, event->fork.tid,
2382 event->fork.time);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002383}
2384static int process_exit_event(struct perf_tool *tool,
2385 union perf_event *event,
2386 struct perf_sample *sample,
2387 struct machine *machine)
2388{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002389 /* Print before 'exit' deletes anything */
2390 if (print_event_with_time(tool, event, sample, machine, event->fork.pid,
2391 event->fork.tid, event->fork.time))
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002392 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002393
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002394 return perf_event__process_exit(tool, event, sample, machine);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002395}
2396
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002397static int process_mmap_event(struct perf_tool *tool,
2398 union perf_event *event,
2399 struct perf_sample *sample,
2400 struct machine *machine)
2401{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002402 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2403 return -1;
2404
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002405 return print_event(tool, event, sample, machine, event->mmap.pid,
2406 event->mmap.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002407}
2408
2409static int process_mmap2_event(struct perf_tool *tool,
2410 union perf_event *event,
2411 struct perf_sample *sample,
2412 struct machine *machine)
2413{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002414 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2415 return -1;
2416
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002417 return print_event(tool, event, sample, machine, event->mmap2.pid,
2418 event->mmap2.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002419}
2420
Adrian Hunter7c148982015-07-21 12:44:06 +03002421static int process_switch_event(struct perf_tool *tool,
2422 union perf_event *event,
2423 struct perf_sample *sample,
2424 struct machine *machine)
2425{
Adrian Hunter7c148982015-07-21 12:44:06 +03002426 struct perf_script *script = container_of(tool, struct perf_script, tool);
Adrian Hunter7c148982015-07-21 12:44:06 +03002427
2428 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2429 return -1;
2430
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002431 if (scripting_ops && scripting_ops->process_switch)
2432 scripting_ops->process_switch(event, sample, machine);
2433
2434 if (!script->show_switch_events)
2435 return 0;
2436
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002437 return print_event(tool, event, sample, machine, sample->pid,
2438 sample->tid);
Adrian Hunter7c148982015-07-21 12:44:06 +03002439}
2440
Adrian Hunter2ede9212021-05-25 12:51:11 +03002441static int process_auxtrace_error(struct perf_session *session,
2442 union perf_event *event)
2443{
2444 if (scripting_ops && scripting_ops->process_auxtrace_error) {
2445 scripting_ops->process_auxtrace_error(session, event);
2446 return 0;
2447 }
2448
2449 return perf_event__process_auxtrace_error(session, event);
2450}
2451
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002452static int
2453process_lost_event(struct perf_tool *tool,
2454 union perf_event *event,
2455 struct perf_sample *sample,
2456 struct machine *machine)
2457{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002458 return print_event(tool, event, sample, machine, sample->pid,
2459 sample->tid);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002460}
2461
Jiri Olsa3233b372018-02-06 19:17:59 +01002462static int
2463process_finished_round_event(struct perf_tool *tool __maybe_unused,
2464 union perf_event *event,
2465 struct ordered_events *oe __maybe_unused)
2466
2467{
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002468 perf_event__fprintf(event, NULL, stdout);
Jiri Olsa3233b372018-02-06 19:17:59 +01002469 return 0;
2470}
2471
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002472static int
2473process_bpf_events(struct perf_tool *tool __maybe_unused,
2474 union perf_event *event,
2475 struct perf_sample *sample,
2476 struct machine *machine)
2477{
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002478 if (machine__process_ksymbol(machine, event, sample) < 0)
2479 return -1;
2480
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002481 return print_event(tool, event, sample, machine, sample->pid,
2482 sample->tid);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002483}
2484
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002485static int process_text_poke_events(struct perf_tool *tool,
2486 union perf_event *event,
2487 struct perf_sample *sample,
2488 struct machine *machine)
2489{
2490 if (perf_event__process_text_poke(tool, event, sample, machine) < 0)
2491 return -1;
2492
2493 return print_event(tool, event, sample, machine, sample->pid,
2494 sample->tid);
2495}
2496
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002497static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002498{
2499 session_done = 1;
2500}
2501
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002502static void perf_script__fclose_per_event_dump(struct perf_script *script)
2503{
Jiri Olsa63503db2019-07-21 13:23:52 +02002504 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002505 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002506
2507 evlist__for_each_entry(evlist, evsel) {
2508 if (!evsel->priv)
2509 break;
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002510 evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002511 evsel->priv = NULL;
2512 }
2513}
2514
2515static int perf_script__fopen_per_event_dump(struct perf_script *script)
2516{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002517 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002518
2519 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002520 /*
2521 * Already setup? I.e. we may be called twice in cases like
2522 * Intel PT, one for the intel_pt// and dummy events, then
Ingo Molnar4d39c892021-03-23 17:09:15 +01002523 * for the evsels synthesized from the auxtrace info.
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002524 *
2525 * Ses perf_script__process_auxtrace_info.
2526 */
2527 if (evsel->priv != NULL)
2528 continue;
2529
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002530 evsel->priv = evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002531 if (evsel->priv == NULL)
2532 goto out_err_fclose;
2533 }
2534
2535 return 0;
2536
2537out_err_fclose:
2538 perf_script__fclose_per_event_dump(script);
2539 return -1;
2540}
2541
2542static int perf_script__setup_per_event_dump(struct perf_script *script)
2543{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002544 struct evsel *evsel;
2545 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002546
2547 if (script->per_event_dump)
2548 return perf_script__fopen_per_event_dump(script);
2549
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002550 es_stdout.fp = stdout;
2551
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002552 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002553 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002554
2555 return 0;
2556}
2557
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002558static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2559{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002560 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002561
2562 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002563 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002564
Arnaldo Carvalho de Melo297e69b2021-03-09 08:59:21 -03002565 evsel_script__fprintf(es, stdout);
2566 evsel_script__delete(es);
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002567 evsel->priv = NULL;
2568 }
2569}
2570
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002571static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002572{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002573 int ret;
2574
Tom Zanussic239da32010-04-01 23:59:18 -05002575 signal(SIGINT, sig_handler);
2576
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002577 perf_stat__init_shadow_stats();
2578
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002579 /* override event processing functions */
2580 if (script->show_task_events) {
2581 script->tool.comm = process_comm_event;
2582 script->tool.fork = process_fork_event;
2583 script->tool.exit = process_exit_event;
2584 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002585 if (script->show_mmap_events) {
2586 script->tool.mmap = process_mmap_event;
2587 script->tool.mmap2 = process_mmap2_event;
2588 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002589 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002590 script->tool.context_switch = process_switch_event;
Adrian Hunter2ede9212021-05-25 12:51:11 +03002591 if (scripting_ops && scripting_ops->process_auxtrace_error)
2592 script->tool.auxtrace_error = process_auxtrace_error;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302593 if (script->show_namespace_events)
2594 script->tool.namespaces = process_namespaces_event;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002595 if (script->show_cgroup_events)
2596 script->tool.cgroup = process_cgroup_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002597 if (script->show_lost_events)
2598 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002599 if (script->show_round_events) {
2600 script->tool.ordered_events = false;
2601 script->tool.finished_round = process_finished_round_event;
2602 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002603 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002604 script->tool.ksymbol = process_bpf_events;
2605 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002606 }
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002607 if (script->show_text_poke_events) {
2608 script->tool.ksymbol = process_bpf_events;
2609 script->tool.text_poke = process_text_poke_events;
2610 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002611
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002612 if (perf_script__setup_per_event_dump(script)) {
2613 pr_err("Couldn't create the per event dump files\n");
2614 return -1;
2615 }
2616
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002617 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002618
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002619 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002620 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002621
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002622 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002623 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002624
2625 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002626}
2627
Tom Zanussi956ffd02009-11-25 01:15:46 -06002628struct script_spec {
2629 struct list_head node;
2630 struct scripting_ops *ops;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -05002631 char spec[];
Tom Zanussi956ffd02009-11-25 01:15:46 -06002632};
2633
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002634static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002635
2636static struct script_spec *script_spec__new(const char *spec,
2637 struct scripting_ops *ops)
2638{
2639 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2640
2641 if (s != NULL) {
2642 strcpy(s->spec, spec);
2643 s->ops = ops;
2644 }
2645
2646 return s;
2647}
2648
Tom Zanussi956ffd02009-11-25 01:15:46 -06002649static void script_spec__add(struct script_spec *s)
2650{
2651 list_add_tail(&s->node, &script_specs);
2652}
2653
2654static struct script_spec *script_spec__find(const char *spec)
2655{
2656 struct script_spec *s;
2657
2658 list_for_each_entry(s, &script_specs, node)
2659 if (strcasecmp(s->spec, spec) == 0)
2660 return s;
2661 return NULL;
2662}
2663
Tom Zanussi956ffd02009-11-25 01:15:46 -06002664int script_spec_register(const char *spec, struct scripting_ops *ops)
2665{
2666 struct script_spec *s;
2667
2668 s = script_spec__find(spec);
2669 if (s)
2670 return -1;
2671
Taeung Song8560bae2016-02-26 00:13:10 +09002672 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002673 if (!s)
2674 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002675 else
2676 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002677
2678 return 0;
2679}
2680
2681static struct scripting_ops *script_spec__lookup(const char *spec)
2682{
2683 struct script_spec *s = script_spec__find(spec);
2684 if (!s)
2685 return NULL;
2686
2687 return s->ops;
2688}
2689
2690static void list_available_languages(void)
2691{
2692 struct script_spec *s;
2693
2694 fprintf(stderr, "\n");
2695 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002696 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002697
2698 list_for_each_entry(s, &script_specs, node)
2699 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2700
2701 fprintf(stderr, "\n");
2702}
2703
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03002704/* Find script file relative to current directory or exec path */
2705static char *find_script(const char *script)
2706{
2707 char path[PATH_MAX];
2708
2709 if (!scripting_ops) {
2710 const char *ext = strrchr(script, '.');
2711
2712 if (!ext)
2713 return NULL;
2714
2715 scripting_ops = script_spec__lookup(++ext);
2716 if (!scripting_ops)
2717 return NULL;
2718 }
2719
2720 if (access(script, R_OK)) {
2721 char *exec_path = get_argv_exec_path();
2722
2723 if (!exec_path)
2724 return NULL;
2725 snprintf(path, sizeof(path), "%s/scripts/%s/%s",
2726 exec_path, scripting_ops->dirname, script);
2727 free(exec_path);
2728 script = path;
2729 if (access(script, R_OK))
2730 return NULL;
2731 }
2732 return strdup(script);
2733}
2734
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002735static int parse_scriptname(const struct option *opt __maybe_unused,
2736 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002737{
2738 char spec[PATH_MAX];
2739 const char *script, *ext;
2740 int len;
2741
Tom Zanussif526d682010-01-27 02:27:52 -06002742 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002743 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002744 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002745 }
2746
2747 script = strchr(str, ':');
2748 if (script) {
2749 len = script - str;
2750 if (len >= PATH_MAX) {
2751 fprintf(stderr, "invalid language specifier");
2752 return -1;
2753 }
2754 strncpy(spec, str, len);
2755 spec[len] = '\0';
2756 scripting_ops = script_spec__lookup(spec);
2757 if (!scripting_ops) {
2758 fprintf(stderr, "invalid language specifier");
2759 return -1;
2760 }
2761 script++;
2762 } else {
2763 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002764 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002765 if (!ext) {
2766 fprintf(stderr, "invalid script extension");
2767 return -1;
2768 }
2769 scripting_ops = script_spec__lookup(++ext);
2770 if (!scripting_ops) {
2771 fprintf(stderr, "invalid script extension");
2772 return -1;
2773 }
2774 }
2775
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03002776 script_name = find_script(script);
2777 if (!script_name)
2778 script_name = strdup(script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002779
2780 return 0;
2781}
2782
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002783static int parse_output_fields(const struct option *opt __maybe_unused,
2784 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002785{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002786 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002787 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002788 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002789 int rc = 0;
2790 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002791 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002792 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002793
2794 if (!str)
2795 return -ENOMEM;
2796
David Ahern2c9e45f72011-03-17 10:03:21 -06002797 /* first word can state for which event type the user is specifying
2798 * the fields. If no type exists, the specified fields apply to all
2799 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002800 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002801 tok = strchr(str, ':');
2802 if (tok) {
2803 *tok = '\0';
2804 tok++;
2805 if (!strcmp(str, "hw"))
2806 type = PERF_TYPE_HARDWARE;
2807 else if (!strcmp(str, "sw"))
2808 type = PERF_TYPE_SOFTWARE;
2809 else if (!strcmp(str, "trace"))
2810 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002811 else if (!strcmp(str, "raw"))
2812 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002813 else if (!strcmp(str, "break"))
2814 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002815 else if (!strcmp(str, "synth"))
2816 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002817 else {
2818 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002819 rc = -EINVAL;
2820 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002821 }
2822
2823 if (output[type].user_set)
2824 pr_warning("Overriding previous field request for %s events.\n",
2825 event_type(type));
2826
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002827 /* Don't override defaults for +- */
2828 if (strchr(tok, '+') || strchr(tok, '-'))
2829 goto parse;
2830
David Ahern2c9e45f72011-03-17 10:03:21 -06002831 output[type].fields = 0;
2832 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002833 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002834
2835 } else {
2836 tok = str;
2837 if (strlen(str) == 0) {
2838 fprintf(stderr,
2839 "Cannot set fields to 'none' for all event types.\n");
2840 rc = -EINVAL;
2841 goto out;
2842 }
2843
Andi Kleen36ce5652017-06-02 08:48:10 -07002844 /* Don't override defaults for +- */
2845 if (strchr(str, '+') || strchr(str, '-'))
2846 goto parse;
2847
David Ahern2c9e45f72011-03-17 10:03:21 -06002848 if (output_set_by_user())
2849 pr_warning("Overriding previous field request for all events.\n");
2850
Adrian Hunter14057202017-06-21 13:17:19 +03002851 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002852 output[j].fields = 0;
2853 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002854 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002855 }
David Ahern1424dc92011-03-09 22:23:28 -07002856 }
2857
Andi Kleen36ce5652017-06-02 08:48:10 -07002858parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002859 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002860 if (*tok == '+') {
2861 if (change == SET)
2862 goto out_badmix;
2863 change = ADD;
2864 tok++;
2865 } else if (*tok == '-') {
2866 if (change == SET)
2867 goto out_badmix;
2868 change = REMOVE;
2869 tok++;
2870 } else {
2871 if (change != SET && change != DEFAULT)
2872 goto out_badmix;
2873 change = SET;
2874 }
2875
David Ahern745f43e2011-03-09 22:23:26 -07002876 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002877 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002878 break;
David Ahern745f43e2011-03-09 22:23:26 -07002879 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002880 if (i == imax && strcmp(tok, "flags") == 0) {
Yang Li85247112021-02-08 16:45:36 +08002881 print_flags = change != REMOVE;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002882 continue;
2883 }
David Ahern745f43e2011-03-09 22:23:26 -07002884 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002885 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002886 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002887 goto out;
2888 }
2889
2890 if (type == -1) {
2891 /* add user option to all events types for
2892 * which it is valid
2893 */
Adrian Hunter14057202017-06-21 13:17:19 +03002894 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002895 if (output[j].invalid_fields & all_output_options[i].field) {
2896 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2897 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002898 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002899 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002900 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002901 output[j].user_set_fields &= ~all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002902 output[j].user_unset_fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002903 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002904 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002905 output[j].user_set_fields |= all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002906 output[j].user_unset_fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002907 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002908 output[j].user_set = true;
2909 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002910 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002911 }
2912 } else {
2913 if (output[type].invalid_fields & all_output_options[i].field) {
2914 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2915 all_output_options[i].str, event_type(type));
2916
2917 rc = -EINVAL;
2918 goto out;
2919 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002920 if (change == REMOVE)
2921 output[type].fields &= ~all_output_options[i].field;
2922 else
2923 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002924 output[type].user_set = true;
2925 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002926 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002927 }
2928
2929 if (type >= 0) {
2930 if (output[type].fields == 0) {
2931 pr_debug("No fields requested for %s type. "
2932 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002933 }
David Ahern1424dc92011-03-09 22:23:28 -07002934 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002935 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002936
Andi Kleen36ce5652017-06-02 08:48:10 -07002937out_badmix:
2938 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2939 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002940out:
David Ahern745f43e2011-03-09 22:23:26 -07002941 free(str);
2942 return rc;
2943}
2944
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002945#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2946 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2947 if ((lang_dirent->d_type == DT_DIR || \
2948 (lang_dirent->d_type == DT_UNKNOWN && \
2949 is_directory(scripts_path, lang_dirent))) && \
2950 (strcmp(lang_dirent->d_name, ".")) && \
2951 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002952
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002953#define for_each_script(lang_path, lang_dir, script_dirent) \
2954 while ((script_dirent = readdir(lang_dir)) != NULL) \
2955 if (script_dirent->d_type != DT_DIR && \
2956 (script_dirent->d_type != DT_UNKNOWN || \
2957 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002958
2959
2960#define RECORD_SUFFIX "-record"
2961#define REPORT_SUFFIX "-report"
2962
2963struct script_desc {
2964 struct list_head node;
2965 char *name;
2966 char *half_liner;
2967 char *args;
2968};
2969
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002970static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002971
2972static struct script_desc *script_desc__new(const char *name)
2973{
2974 struct script_desc *s = zalloc(sizeof(*s));
2975
Tom Zanussib5b87312010-11-10 08:16:51 -06002976 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002977 s->name = strdup(name);
2978
2979 return s;
2980}
2981
2982static void script_desc__delete(struct script_desc *s)
2983{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002984 zfree(&s->name);
2985 zfree(&s->half_liner);
2986 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002987 free(s);
2988}
2989
2990static void script_desc__add(struct script_desc *s)
2991{
2992 list_add_tail(&s->node, &script_descs);
2993}
2994
2995static struct script_desc *script_desc__find(const char *name)
2996{
2997 struct script_desc *s;
2998
2999 list_for_each_entry(s, &script_descs, node)
3000 if (strcasecmp(s->name, name) == 0)
3001 return s;
3002 return NULL;
3003}
3004
3005static struct script_desc *script_desc__findnew(const char *name)
3006{
3007 struct script_desc *s = script_desc__find(name);
3008
3009 if (s)
3010 return s;
3011
3012 s = script_desc__new(name);
3013 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03003014 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003015
3016 script_desc__add(s);
3017
3018 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003019}
3020
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003021static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003022{
3023 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003024 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003025
3026 if (strlen(str) > suffix_len) {
3027 p = str + strlen(str) - suffix_len;
3028 if (!strncmp(p, suffix, suffix_len))
3029 return p;
3030 }
3031
3032 return NULL;
3033}
3034
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003035static int read_script_info(struct script_desc *desc, const char *filename)
3036{
3037 char line[BUFSIZ], *p;
3038 FILE *fp;
3039
3040 fp = fopen(filename, "r");
3041 if (!fp)
3042 return -1;
3043
3044 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003045 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003046 if (strlen(p) == 0)
3047 continue;
3048 if (*p != '#')
3049 continue;
3050 p++;
3051 if (strlen(p) && *p == '!')
3052 continue;
3053
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003054 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003055 if (strlen(p) && p[strlen(p) - 1] == '\n')
3056 p[strlen(p) - 1] = '\0';
3057
3058 if (!strncmp(p, "description:", strlen("description:"))) {
3059 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003060 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003061 continue;
3062 }
3063
3064 if (!strncmp(p, "args:", strlen("args:"))) {
3065 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003066 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003067 continue;
3068 }
3069 }
3070
3071 fclose(fp);
3072
3073 return 0;
3074}
3075
Robert Richter38efb532011-11-25 11:38:40 +01003076static char *get_script_root(struct dirent *script_dirent, const char *suffix)
3077{
3078 char *script_root, *str;
3079
3080 script_root = strdup(script_dirent->d_name);
3081 if (!script_root)
3082 return NULL;
3083
3084 str = (char *)ends_with(script_root, suffix);
3085 if (!str) {
3086 free(script_root);
3087 return NULL;
3088 }
3089
3090 *str = '\0';
3091 return script_root;
3092}
3093
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003094static int list_available_scripts(const struct option *opt __maybe_unused,
3095 const char *s __maybe_unused,
3096 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003097{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003098 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003099 char scripts_path[MAXPATHLEN];
3100 DIR *scripts_dir, *lang_dir;
3101 char script_path[MAXPATHLEN];
3102 char lang_path[MAXPATHLEN];
3103 struct script_desc *desc;
3104 char first_half[BUFSIZ];
3105 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003106
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003107 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003108
3109 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003110 if (!scripts_dir) {
3111 fprintf(stdout,
3112 "open(%s) failed.\n"
3113 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3114 scripts_path);
3115 exit(-1);
3116 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003117
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003118 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003119 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3120 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003121 lang_dir = opendir(lang_path);
3122 if (!lang_dir)
3123 continue;
3124
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003125 for_each_script(lang_path, lang_dir, script_dirent) {
3126 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003127 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003128 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003129 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3130 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003131 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003132 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003133 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003134 }
3135 }
3136
3137 fprintf(stdout, "List of available trace scripts:\n");
3138 list_for_each_entry(desc, &script_descs, node) {
3139 sprintf(first_half, "%s %s", desc->name,
3140 desc->args ? desc->args : "");
3141 fprintf(stdout, " %-36s %s\n", first_half,
3142 desc->half_liner ? desc->half_liner : "");
3143 }
3144
3145 exit(0);
3146}
3147
Feng Tange5f37052012-09-07 16:42:26 +08003148/*
Feng Tang49e639e2012-10-30 11:56:03 +08003149 * Some scripts specify the required events in their "xxx-record" file,
3150 * this function will check if the events in perf.data match those
3151 * mentioned in the "xxx-record".
3152 *
3153 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3154 * which is covered well now. And new parsing code should be added to
Ingo Molnar4d39c892021-03-23 17:09:15 +01003155 * cover the future complex formats like event groups etc.
Feng Tang49e639e2012-10-30 11:56:03 +08003156 */
3157static int check_ev_match(char *dir_name, char *scriptname,
3158 struct perf_session *session)
3159{
3160 char filename[MAXPATHLEN], evname[128];
3161 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003162 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003163 int match, len;
3164 FILE *fp;
3165
Jiri Olsa77f18152018-03-19 09:29:01 +01003166 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003167
3168 fp = fopen(filename, "r");
3169 if (!fp)
3170 return -1;
3171
3172 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003173 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003174 if (*p == '#')
3175 continue;
3176
3177 while (strlen(p)) {
3178 p = strstr(p, "-e");
3179 if (!p)
3180 break;
3181
3182 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003183 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003184 len = strcspn(p, " \t");
3185 if (!len)
3186 break;
3187
3188 snprintf(evname, len + 1, "%s", p);
3189
3190 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003191 evlist__for_each_entry(session->evlist, pos) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03003192 if (!strcmp(evsel__name(pos), evname)) {
Feng Tang49e639e2012-10-30 11:56:03 +08003193 match = 1;
3194 break;
3195 }
3196 }
3197
3198 if (!match) {
3199 fclose(fp);
3200 return -1;
3201 }
3202 }
3203 }
3204
3205 fclose(fp);
3206 return 0;
3207}
3208
3209/*
Feng Tange5f37052012-09-07 16:42:26 +08003210 * Return -1 if none is found, otherwise the actual scripts number.
3211 *
3212 * Currently the only user of this function is the script browser, which
3213 * will list all statically runnable scripts, select one, execute it and
3214 * show the output in a perf browser.
3215 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003216int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3217 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003218{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003219 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003220 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003221 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003222 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003223 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003224 .path = input_name,
3225 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003226 };
Feng Tange5f37052012-09-07 16:42:26 +08003227 char *temp;
3228 int i = 0;
3229
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003230 session = perf_session__new(&data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303231 if (IS_ERR(session))
3232 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003233
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003234 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003235
3236 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003237 if (!scripts_dir) {
3238 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003239 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003240 }
Feng Tange5f37052012-09-07 16:42:26 +08003241
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003242 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003243 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3244 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003245#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003246 if (strstr(lang_path, "perl"))
3247 continue;
3248#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003249#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003250 if (strstr(lang_path, "python"))
3251 continue;
3252#endif
3253
3254 lang_dir = opendir(lang_path);
3255 if (!lang_dir)
3256 continue;
3257
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003258 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08003259 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003260 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003261 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003262 if (i >= num)
3263 break;
3264 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3265 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003266 script_dirent->d_name);
3267 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003268 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003269 (temp - script_dirent->d_name) + 1,
3270 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003271
3272 if (check_ev_match(lang_path,
3273 scripts_array[i], session))
3274 continue;
3275
Feng Tange5f37052012-09-07 16:42:26 +08003276 i++;
3277 }
Feng Tang49e639e2012-10-30 11:56:03 +08003278 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003279 }
3280
Feng Tang49e639e2012-10-30 11:56:03 +08003281 closedir(scripts_dir);
3282 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003283 return i;
3284}
3285
Tom Zanussi38752942009-12-15 02:53:39 -06003286static char *get_script_path(const char *script_root, const char *suffix)
3287{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003288 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003289 char scripts_path[MAXPATHLEN];
3290 char script_path[MAXPATHLEN];
3291 DIR *scripts_dir, *lang_dir;
3292 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003293 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003294
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003295 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003296
3297 scripts_dir = opendir(scripts_path);
3298 if (!scripts_dir)
3299 return NULL;
3300
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003301 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003302 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3303 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003304 lang_dir = opendir(lang_path);
3305 if (!lang_dir)
3306 continue;
3307
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003308 for_each_script(lang_path, lang_dir, script_dirent) {
3309 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003310 if (__script_root && !strcmp(script_root, __script_root)) {
3311 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003312 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003313 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3314 lang_path, script_dirent->d_name);
Andreas Gerstmayr27486a82020-04-02 14:43:38 +02003315 closedir(lang_dir);
Robert Richter38efb532011-11-25 11:38:40 +01003316 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003317 }
3318 free(__script_root);
3319 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003320 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003321 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003322 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003323
Robert Richter38efb532011-11-25 11:38:40 +01003324 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003325}
3326
Tom Zanussib5b87312010-11-10 08:16:51 -06003327static bool is_top_script(const char *script_path)
3328{
Yang Li85247112021-02-08 16:45:36 +08003329 return ends_with(script_path, "top") != NULL;
Tom Zanussib5b87312010-11-10 08:16:51 -06003330}
3331
3332static int has_required_arg(char *script_path)
3333{
3334 struct script_desc *desc;
3335 int n_args = 0;
3336 char *p;
3337
3338 desc = script_desc__new(NULL);
3339
3340 if (read_script_info(desc, script_path))
3341 goto out;
3342
3343 if (!desc->args)
3344 goto out;
3345
3346 for (p = desc->args; *p; p++)
3347 if (*p == '<')
3348 n_args++;
3349out:
3350 script_desc__delete(desc);
3351
3352 return n_args;
3353}
3354
David Ahernd54b1a92012-08-26 12:24:46 -06003355static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003356{
3357 char **__argv = malloc(sizeof(const char *) * argc);
3358
David Ahernd54b1a92012-08-26 12:24:46 -06003359 if (!__argv) {
3360 pr_err("malloc failed\n");
3361 return -1;
3362 }
3363
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003364 memcpy(__argv, argv, sizeof(const char *) * argc);
3365 argc = parse_options(argc, (const char **)__argv, record_options,
3366 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3367 free(__argv);
3368
David Ahernd54b1a92012-08-26 12:24:46 -06003369 system_wide = (argc == 0);
3370
3371 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003372}
3373
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003374static void script__setup_sample_type(struct perf_script *script)
3375{
3376 struct perf_session *session = script->session;
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03003377 u64 sample_type = evlist__combined_sample_type(session->evlist);
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003378
3379 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3380 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003381 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003382 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003383 dwarf_callchain_users = true;
3384 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003385 callchain_param.record_mode = CALLCHAIN_LBR;
3386 else
3387 callchain_param.record_mode = CALLCHAIN_FP;
3388 }
Kan Liang680d1252020-03-19 13:25:14 -07003389
3390 if (script->stitch_lbr && (callchain_param.record_mode != CALLCHAIN_LBR)) {
3391 pr_warning("Can't find LBR callchain. Switch off --stitch-lbr.\n"
3392 "Please apply --call-graph lbr when recording.\n");
3393 script->stitch_lbr = false;
3394 }
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003395}
3396
Jiri Olsa89f16882018-09-13 14:54:03 +02003397static int process_stat_round_event(struct perf_session *session,
3398 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003399{
Jiri Olsa72932372019-08-28 15:57:16 +02003400 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003401 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003402
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003403 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003404 perf_stat_process_counter(&stat_config, counter);
3405 process_stat(counter, round->time);
3406 }
3407
3408 process_stat_interval(round->time);
3409 return 0;
3410}
3411
Jiri Olsa89f16882018-09-13 14:54:03 +02003412static int process_stat_config_event(struct perf_session *session __maybe_unused,
3413 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003414{
3415 perf_event__read_stat_config(&stat_config, &event->stat_config);
3416 return 0;
3417}
3418
Jiri Olsacfc88742016-01-05 22:09:06 +01003419static int set_maps(struct perf_script *script)
3420{
Jiri Olsa63503db2019-07-21 13:23:52 +02003421 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003422
3423 if (!script->cpus || !script->threads)
3424 return 0;
3425
3426 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3427 return -EINVAL;
3428
Jiri Olsa453fa032019-07-21 13:24:43 +02003429 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003430
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003431 if (evlist__alloc_stats(evlist, true))
Jiri Olsacfc88742016-01-05 22:09:06 +01003432 return -ENOMEM;
3433
3434 script->allocated = true;
3435 return 0;
3436}
3437
3438static
Jiri Olsa89f16882018-09-13 14:54:03 +02003439int process_thread_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->threads) {
3446 pr_warning("Extra thread map event, ignoring.\n");
3447 return 0;
3448 }
3449
3450 script->threads = thread_map__new_event(&event->thread_map);
3451 if (!script->threads)
3452 return -ENOMEM;
3453
3454 return set_maps(script);
3455}
3456
3457static
Jiri Olsa89f16882018-09-13 14:54:03 +02003458int process_cpu_map_event(struct perf_session *session,
3459 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003460{
Jiri Olsa89f16882018-09-13 14:54:03 +02003461 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003462 struct perf_script *script = container_of(tool, struct perf_script, tool);
3463
3464 if (script->cpus) {
3465 pr_warning("Extra cpu map event, ignoring.\n");
3466 return 0;
3467 }
3468
3469 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3470 if (!script->cpus)
3471 return -ENOMEM;
3472
3473 return set_maps(script);
3474}
3475
Jiri Olsa89f16882018-09-13 14:54:03 +02003476static int process_feature_event(struct perf_session *session,
3477 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303478{
3479 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003480 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303481 return 0;
3482}
3483
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003484#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003485static int perf_script__process_auxtrace_info(struct perf_session *session,
3486 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003487{
Jiri Olsa89f16882018-09-13 14:54:03 +02003488 struct perf_tool *tool = session->tool;
3489
3490 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003491
3492 if (ret == 0) {
3493 struct perf_script *script = container_of(tool, struct perf_script, tool);
3494
3495 ret = perf_script__setup_per_event_dump(script);
3496 }
3497
3498 return ret;
3499}
3500#else
3501#define perf_script__process_auxtrace_info 0
3502#endif
3503
Andi Kleenb585ebd2018-09-20 11:05:36 -07003504static int parse_insn_trace(const struct option *opt __maybe_unused,
3505 const char *str __maybe_unused,
3506 int unset __maybe_unused)
3507{
3508 parse_output_fields(NULL, "+insn,-event,-period", 0);
3509 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003510 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003511 return 0;
3512}
3513
3514static int parse_xed(const struct option *opt __maybe_unused,
3515 const char *str __maybe_unused,
3516 int unset __maybe_unused)
3517{
Andi Kleen8c3e05c2020-05-21 19:09:14 -07003518 if (isatty(1))
3519 force_pager("xed -F insn: -A -64 | less");
3520 else
3521 force_pager("xed -F insn: -A -64");
Andi Kleenb585ebd2018-09-20 11:05:36 -07003522 return 0;
3523}
3524
Andi Kleend1b15522018-09-20 11:05:38 -07003525static int parse_call_trace(const struct option *opt __maybe_unused,
3526 const char *str __maybe_unused,
3527 int unset __maybe_unused)
3528{
3529 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3530 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003531 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003532 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003533 return 0;
3534}
3535
3536static int parse_callret_trace(const struct option *opt __maybe_unused,
3537 const char *str __maybe_unused,
3538 int unset __maybe_unused)
3539{
3540 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3541 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003542 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003543 return 0;
3544}
3545
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003546int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003547{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003548 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003549 bool header = false;
3550 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003551 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003552 char *rec_script_path = NULL;
3553 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003554 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003555 struct itrace_synth_opts itrace_synth_opts = {
3556 .set = false,
3557 .default_no_sample = true,
3558 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003559 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003560 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003561 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003562 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003563 struct perf_script script = {
3564 .tool = {
3565 .sample = process_sample_event,
3566 .mmap = perf_event__process_mmap,
3567 .mmap2 = perf_event__process_mmap2,
3568 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303569 .namespaces = perf_event__process_namespaces,
Namhyung Kim160d4af2020-03-25 21:45:36 +09003570 .cgroup = perf_event__process_cgroup,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003571 .exit = perf_event__process_exit,
3572 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003573 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003574 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003575 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303576 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003577 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003578 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003579 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003580 .auxtrace = perf_event__process_auxtrace,
3581 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003582 .stat = perf_event__process_stat_event,
3583 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003584 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003585 .thread_map = process_thread_map_event,
3586 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003587 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003588 .ordering_requires_timestamps = true,
3589 },
3590 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003591 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003592 .mode = PERF_DATA_MODE_READ,
3593 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003594 const struct option options[] = {
3595 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3596 "dump raw trace in ASCII"),
3597 OPT_INCR('v', "verbose", &verbose,
3598 "be more verbose (show symbol address, etc)"),
3599 OPT_BOOLEAN('L', "Latency", &latency_format,
3600 "show latency attributes (irqs/preemption disabled, etc)"),
3601 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3602 list_available_scripts),
3603 OPT_CALLBACK('s', "script", NULL, "name",
3604 "script file name (lang:script name, script name, or *)",
3605 parse_scriptname),
3606 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3607 "generate perf-script.xx script in specified language"),
3608 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3609 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3610 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003611 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3612 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003613 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3614 "file", "vmlinux pathname"),
3615 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3616 "file", "kallsyms pathname"),
3617 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3618 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003619 OPT_CALLBACK(0, "symfs", NULL, "directory",
3620 "Look for files with symbols relative to this directory",
3621 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003622 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003623 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003624 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003625 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003626 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303627 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3628 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Kan Liang6b9bae62020-12-16 10:57:57 -08003629 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc,tod,"
Stephane Eranianc513de82021-01-05 11:57:50 -08003630 "data_page_size,code_page_size",
Andi Kleen48d02a12017-02-23 15:46:34 -08003631 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003632 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3633 "system-wide collection from all CPUs"),
Jin Yao4b799a92021-01-25 07:27:50 +08003634 OPT_STRING(0, "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
3635 "only consider symbols in these DSOs"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003636 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3637 "only consider these symbols"),
Jin Yao61d9fc42021-02-07 16:09:35 +08003638 OPT_INTEGER(0, "addr-range", &symbol_conf.addr_range,
3639 "Use with -S to list traced records within address range"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003640 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3641 "Decode instructions from itrace", parse_insn_trace),
3642 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3643 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003644 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3645 "Decode calls from from itrace", parse_call_trace),
3646 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3647 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003648 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3649 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003650 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3651 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003652 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3653 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3654 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003655 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3656 "only consider symbols in these pids"),
3657 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3658 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003659 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3660 "Set the maximum stack depth when parsing the callchain, "
3661 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003662 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003663 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003664 OPT_BOOLEAN(0, "deltatime", &deltatime, "Show time stamps relative to previous event"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003665 OPT_BOOLEAN('I', "show-info", &show_full_info,
3666 "display extended information from perf.data file"),
3667 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3668 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003669 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3670 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003671 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3672 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003673 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3674 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303675 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3676 "Show namespace events (if recorded)"),
Namhyung Kim160d4af2020-03-25 21:45:36 +09003677 OPT_BOOLEAN('\0', "show-cgroup-events", &script.show_cgroup_events,
3678 "Show cgroup events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003679 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3680 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003681 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3682 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003683 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3684 "Show bpf related events (if recorded)"),
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03003685 OPT_BOOLEAN('\0', "show-text-poke-events", &script.show_text_poke_events,
3686 "Show text poke related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003687 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3688 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003689 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003690 OPT_INTEGER(0, "max-blocks", &max_blocks,
3691 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003692 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003693 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003694 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003695 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003696 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003697 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3698 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003699 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3700 "Enable symbol demangling"),
3701 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3702 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003703 OPT_STRING(0, "time", &script.time_str, "str",
3704 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003705 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3706 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003707 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3708 "guest mount directory under which every guest os"
3709 " instance has a subdir"),
3710 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3711 "file", "file saving guest os vmlinux"),
3712 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3713 "file", "file saving guest os /proc/kallsyms"),
3714 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3715 "file", "file saving guest os /proc/modules"),
Kan Liang680d1252020-03-19 13:25:14 -07003716 OPT_BOOLEAN('\0', "stitch-lbr", &script.stitch_lbr,
3717 "Enable LBR callgraph stitching approach"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003718 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003719 OPT_END()
3720 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003721 const char * const script_subcommands[] = { "record", "report", NULL };
3722 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003723 "perf script [<options>]",
3724 "perf script [<options>] record <script> [<record-options>] <command>",
3725 "perf script [<options>] report <script> [script-args]",
3726 "perf script [<options>] <script> [<record-options>] <command>",
3727 "perf script [<options>] <top-script> [script-args]",
3728 NULL
3729 };
Tom Zanussi38752942009-12-15 02:53:39 -06003730
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003731 perf_set_singlethreaded();
3732
Tom Zanussib5b87312010-11-10 08:16:51 -06003733 setup_scripting();
3734
Yunlong Song40cae2b2015-03-18 21:35:54 +08003735 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003736 PARSE_OPT_STOP_AT_NON_OPTION);
3737
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003738 if (symbol_conf.guestmount ||
3739 symbol_conf.default_guest_vmlinux_name ||
3740 symbol_conf.default_guest_kallsyms ||
3741 symbol_conf.default_guest_modules) {
3742 /*
3743 * Enable guest sample processing.
3744 */
3745 perf_guest = true;
3746 }
3747
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003748 data.path = input_name;
3749 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003750
Tom Zanussib5b87312010-11-10 08:16:51 -06003751 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3752 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3753 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003754 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003755 }
3756
Tom Zanussib5b87312010-11-10 08:16:51 -06003757 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3758 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3759 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003760 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003761 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003762 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003763 return -1;
3764 }
Tom Zanussi38752942009-12-15 02:53:39 -06003765 }
3766
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003767 if (reltime && deltatime) {
3768 fprintf(stderr,
3769 "reltime and deltatime - the two don't get along well. "
3770 "Please limit to --reltime or --deltatime.\n");
3771 return -1;
3772 }
3773
Adrian Hunter1c5c25b2020-04-01 13:16:05 +03003774 if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003775 itrace_synth_opts.callchain_sz > scripting_max_stack)
3776 scripting_max_stack = itrace_synth_opts.callchain_sz;
3777
Ben Hutchings44e668c2010-10-10 16:10:03 +01003778 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003779 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003780
Tom Zanussib5b87312010-11-10 08:16:51 -06003781 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003782 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003783 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003784 pid_t pid;
3785
Tom Zanussib5b87312010-11-10 08:16:51 -06003786 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3787 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3788
3789 if (!rec_script_path && !rep_script_path) {
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03003790 script_name = find_script(argv[0]);
3791 if (script_name) {
3792 argc -= 1;
3793 argv += 1;
3794 goto script_found;
3795 }
Namhyung Kimc7118362015-10-25 00:49:27 +09003796 usage_with_options_msg(script_usage, options,
3797 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003798 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003799 }
3800
Tom Zanussib5b87312010-11-10 08:16:51 -06003801 if (is_top_script(argv[0])) {
3802 rep_args = argc - 1;
3803 } else {
3804 int rec_args;
3805
3806 rep_args = has_required_arg(rep_script_path);
3807 rec_args = (argc - 1) - rep_args;
3808 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003809 usage_with_options_msg(script_usage, options,
3810 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003811 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003812 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003813 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003814 }
3815
3816 if (pipe(live_pipe) < 0) {
3817 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003818 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003819 }
3820
3821 pid = fork();
3822 if (pid < 0) {
3823 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003824 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003825 }
3826
3827 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003828 j = 0;
3829
Tom Zanussia0cccc22010-04-01 23:59:25 -05003830 dup2(live_pipe[1], 1);
3831 close(live_pipe[0]);
3832
Robert Richter317df652011-11-25 15:05:25 +01003833 if (is_top_script(argv[0])) {
3834 system_wide = true;
3835 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003836 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3837 err = -1;
3838 goto out;
3839 }
Robert Richter317df652011-11-25 15:05:25 +01003840 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003841
3842 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003843 if (!__argv) {
3844 pr_err("malloc failed\n");
3845 err = -ENOMEM;
3846 goto out;
3847 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003848
Tom Zanussib5b87312010-11-10 08:16:51 -06003849 __argv[j++] = "/bin/sh";
3850 __argv[j++] = rec_script_path;
3851 if (system_wide)
3852 __argv[j++] = "-a";
3853 __argv[j++] = "-q";
3854 __argv[j++] = "-o";
3855 __argv[j++] = "-";
3856 for (i = rep_args + 1; i < argc; i++)
3857 __argv[j++] = argv[i];
3858 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003859
3860 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003861 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003862 exit(-1);
3863 }
3864
3865 dup2(live_pipe[0], 0);
3866 close(live_pipe[1]);
3867
Tom Zanussib5b87312010-11-10 08:16:51 -06003868 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003869 if (!__argv) {
3870 pr_err("malloc failed\n");
3871 err = -ENOMEM;
3872 goto out;
3873 }
3874
Tom Zanussib5b87312010-11-10 08:16:51 -06003875 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003876 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003877 __argv[j++] = rep_script_path;
3878 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003879 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003880 __argv[j++] = "-i";
3881 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003882 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003883
3884 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003885 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003886 exit(-1);
3887 }
Adrian Hunter6ea4b5d2021-05-24 09:57:18 +03003888script_found:
Tom Zanussib5b87312010-11-10 08:16:51 -06003889 if (rec_script_path)
3890 script_path = rec_script_path;
3891 if (rep_script_path)
3892 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003893
Tom Zanussib5b87312010-11-10 08:16:51 -06003894 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003895 j = 0;
3896
Robert Richter317df652011-11-25 15:05:25 +01003897 if (!rec_script_path)
3898 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003899 else if (!system_wide) {
3900 if (have_cmd(argc - 1, &argv[1]) != 0) {
3901 err = -1;
3902 goto out;
3903 }
3904 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003905
3906 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003907 if (!__argv) {
3908 pr_err("malloc failed\n");
3909 err = -ENOMEM;
3910 goto out;
3911 }
3912
Tom Zanussib5b87312010-11-10 08:16:51 -06003913 __argv[j++] = "/bin/sh";
3914 __argv[j++] = script_path;
3915 if (system_wide)
3916 __argv[j++] = "-a";
3917 for (i = 2; i < argc; i++)
3918 __argv[j++] = argv[i];
3919 __argv[j++] = NULL;
3920
3921 execvp("/bin/sh", (char **)__argv);
3922 free(__argv);
3923 exit(-1);
3924 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003925
Milian Wolffc1c9b962018-10-21 21:14:23 +02003926 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06003927 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02003928 use_browser = 0;
3929 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003930
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003931 session = perf_session__new(&data, false, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303932 if (IS_ERR(session))
3933 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003934
Jiri Olsae90debd2013-12-09 11:02:50 +01003935 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003936 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003937 perf_session__fprintf_info(session, stdout, show_full_info);
3938 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003939 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003940 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003941 if (show_full_info)
3942 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003943
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003944 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003945 goto out_delete;
3946
Andi Kleen3ab481a2019-03-05 06:47:45 -08003947 uname(&uts);
Song Liu9d491692019-06-20 18:44:38 -07003948 if (data.is_pipe || /* assume pipe_mode indicates native_arch */
3949 !strcmp(uts.machine, session->header.env.arch) ||
Andi Kleen3ab481a2019-03-05 06:47:45 -08003950 (!strcmp(uts.machine, "x86_64") &&
3951 !strcmp(session->header.env.arch, "i386")))
3952 native_arch = true;
3953
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003954 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003955 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003956
Andi Kleen99f753f2018-09-20 11:05:39 -07003957 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
3958 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03003959 itrace_synth_opts.thread_stack = true;
3960
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003961 session->itrace_synth_opts = &itrace_synth_opts;
3962
Anton Blanchard5d67be92011-07-04 21:57:50 +10003963 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003964 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3965 if (err < 0)
3966 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003967 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003968 }
3969
David Ahern1424dc92011-03-09 22:23:28 -07003970 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003971 symbol_conf.use_callchain = true;
3972 else
3973 symbol_conf.use_callchain = false;
3974
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003975 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04003976 tep_set_function_resolver(session->tevent.pevent,
3977 machine__resolve_kernel_addr,
3978 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003979 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003980 err = -1;
3981 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003982 }
3983
Tom Zanussi956ffd02009-11-25 01:15:46 -06003984 if (generate_script_lang) {
3985 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003986 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003987
David Ahern2c9e45f72011-03-17 10:03:21 -06003988 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003989 fprintf(stderr,
3990 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003991 err = -EINVAL;
3992 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003993 }
3994
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003995 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003996 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003997 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003998 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003999 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004000 }
4001
4002 err = fstat(input, &perf_stat);
4003 if (err < 0) {
4004 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004005 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004006 }
4007
4008 if (!perf_stat.st_size) {
4009 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004010 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004011 }
4012
4013 scripting_ops = script_spec__lookup(generate_script_lang);
4014 if (!scripting_ops) {
4015 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004016 err = -ENOENT;
4017 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004018 }
4019
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004020 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03004021 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004022 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004023 }
4024
4025 if (script_name) {
Adrian Hunter67e50ce2021-05-30 22:22:59 +03004026 err = scripting_ops->start_script(script_name, argc, argv, session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06004027 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004028 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01004029 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004030 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06004031 }
4032
David Ahern9cbdb702011-04-06 21:54:20 -06004033
4034 err = perf_session__check_output_opt(session);
4035 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004036 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06004037
Jin Yao284c4e12019-03-01 18:13:06 +08004038 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07004039 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08004040 &script.ptime_range,
4041 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07004042 &script.range_num,
4043 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08004044 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08004045 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03004046
4047 itrace_synth_opts__set_time_range(&itrace_synth_opts,
4048 script.ptime_range,
4049 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07004050 }
4051
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03004052 err = evswitch__init(&script.evswitch, session->evlist, stderr);
4053 if (err)
4054 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03004055
Milian Wolffb13b04d2020-06-13 01:03:33 +02004056 if (zstd_init(&(session->zstd_data), 0) < 0)
4057 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
4058
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03004059 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06004060
Adrian Hunterd445dd22014-08-15 22:08:37 +03004061 flush_scripting();
4062
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004063out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03004064 if (script.ptime_range) {
4065 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08004066 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03004067 }
Jin Yaocc2ef582018-01-10 23:00:33 +08004068
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03004069 evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02004070 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09004071
4072 if (script_started)
4073 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06004074out:
4075 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004076}