blob: 5915f19cee55009a858e668eb53e5401360e85ff [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
Jiri Olsa32dcd022019-07-21 13:23:51 +0200317static struct evsel_script *perf_evsel_script__new(struct evsel *evsel,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100318 struct perf_data *data)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300319{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200320 struct evsel_script *es = zalloc(sizeof(*es));
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300321
322 if (es != NULL) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300323 if (asprintf(&es->filename, "%s.%s.dump", data->file.path, evsel__name(evsel)) < 0)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300324 goto out_free;
325 es->fp = fopen(es->filename, "w");
326 if (es->fp == NULL)
327 goto out_free_filename;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300328 }
329
330 return es;
331out_free_filename:
332 zfree(&es->filename);
333out_free:
334 free(es);
335 return NULL;
336}
337
Jiri Olsa32dcd022019-07-21 13:23:51 +0200338static void perf_evsel_script__delete(struct evsel_script *es)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300339{
340 zfree(&es->filename);
341 fclose(es->fp);
342 es->fp = NULL;
343 free(es);
344}
345
Jiri Olsa32dcd022019-07-21 13:23:51 +0200346static int perf_evsel_script__fprintf(struct evsel_script *es, FILE *fp)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300347{
348 struct stat st;
349
350 fstat(fileno(es->fp), &st);
351 return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
352 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
353}
354
Adrian Hunter14057202017-06-21 13:17:19 +0300355static inline int output_type(unsigned int type)
356{
357 switch (type) {
358 case PERF_TYPE_SYNTH:
359 return OUTPUT_TYPE_SYNTH;
360 default:
Jin Yao8adc0a02020-12-09 08:58:28 +0800361 if (type < PERF_TYPE_MAX)
362 return type;
Adrian Hunter14057202017-06-21 13:17:19 +0300363 }
Jin Yao8adc0a02020-12-09 08:58:28 +0800364
365 return OUTPUT_TYPE_OTHER;
Adrian Hunter14057202017-06-21 13:17:19 +0300366}
367
368static inline unsigned int attr_type(unsigned int type)
369{
370 switch (type) {
371 case OUTPUT_TYPE_SYNTH:
372 return PERF_TYPE_SYNTH;
373 default:
374 return type;
375 }
376}
377
David Ahern2c9e45f72011-03-17 10:03:21 -0600378static bool output_set_by_user(void)
379{
380 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300381 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600382 if (output[j].user_set)
383 return true;
384 }
385 return false;
386}
David Ahern745f43e2011-03-09 22:23:26 -0700387
David Ahern9cbdb702011-04-06 21:54:20 -0600388static const char *output_field2str(enum perf_output_field field)
389{
390 int i, imax = ARRAY_SIZE(all_output_options);
391 const char *str = "";
392
393 for (i = 0; i < imax; ++i) {
394 if (all_output_options[i].field == field) {
395 str = all_output_options[i].str;
396 break;
397 }
398 }
399 return str;
400}
401
Adrian Hunter14057202017-06-21 13:17:19 +0300402#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700403
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300404static int evsel__do_check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
405 enum perf_output_field field, bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700406{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200407 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300408 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600409 const char *evname;
410
411 if (attr->sample_type & sample_type)
412 return 0;
413
Andi Kleen4b6ac812019-02-24 07:37:12 -0800414 if (output[type].user_set_fields & field) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300415 if (allow_user_set)
416 return 0;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300417 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600418 pr_err("Samples for '%s' event do not have %s attribute set. "
419 "Cannot print '%s' field.\n",
420 evname, sample_msg, output_field2str(field));
421 return -1;
422 }
423
424 /* user did not ask for it explicitly so remove from the default list */
425 output[type].fields &= ~field;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300426 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600427 pr_debug("Samples for '%s' event do not have %s attribute set. "
428 "Skipping '%s' field.\n",
429 evname, sample_msg, output_field2str(field));
430
431 return 0;
432}
433
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300434static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
435 enum perf_output_field field)
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300436{
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300437 return evsel__do_check_stype(evsel, sample_type, sample_msg, field, false);
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300438}
439
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300440static int evsel__check_attr(struct evsel *evsel, struct perf_session *session)
David Ahern9cbdb702011-04-06 21:54:20 -0600441{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200442 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300443 bool allow_user_set;
444
Jiri Olsae099eba2016-01-05 22:09:09 +0100445 if (perf_header__has_feat(&session->header, HEADER_STAT))
446 return 0;
447
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300448 allow_user_set = perf_header__has_feat(&session->header,
449 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600450
David Ahern1424dc92011-03-09 22:23:28 -0700451 if (PRINT_FIELD(TRACE) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300452 !perf_session__has_traces(session, "record -R"))
David Ahern1424dc92011-03-09 22:23:28 -0700453 return -EINVAL;
454
David Ahern787bef12011-05-27 14:28:43 -0600455 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300456 if (evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP", PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700457 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700458 }
David Ahern7cec0922011-05-30 13:08:23 -0600459
460 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300461 evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR", PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600462 return -EINVAL;
463
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100464 if (PRINT_FIELD(DATA_SRC) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300465 evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC", PERF_OUTPUT_DATA_SRC))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100466 return -EINVAL;
467
468 if (PRINT_FIELD(WEIGHT) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300469 evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT", PERF_OUTPUT_WEIGHT))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100470 return -EINVAL;
471
Andi Kleen37fed3d2018-09-18 05:32:09 -0700472 if (PRINT_FIELD(SYM) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300473 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
David Ahern7cec0922011-05-30 13:08:23 -0600474 pr_err("Display of symbols requested but neither sample IP nor "
Andi Kleen37fed3d2018-09-18 05:32:09 -0700475 "sample address\navailable. Hence, no addresses to convert "
David Ahern7cec0922011-05-30 13:08:23 -0600476 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600477 return -EINVAL;
478 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900479 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
480 pr_err("Display of offsets requested but symbol is not"
481 "selected.\n");
482 return -EINVAL;
483 }
Andi Kleen37fed3d2018-09-18 05:32:09 -0700484 if (PRINT_FIELD(DSO) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300485 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
Andi Kleen37fed3d2018-09-18 05:32:09 -0700486 pr_err("Display of DSO requested but no address to convert.\n");
David Ahern610723f2011-05-27 14:28:44 -0600487 return -EINVAL;
488 }
Andi Kleendd2e18e2018-12-03 16:18:48 -0800489 if ((PRINT_FIELD(SRCLINE) || PRINT_FIELD(SRCCODE)) && !PRINT_FIELD(IP)) {
Adrian Huntercc8fae12013-12-06 09:42:57 +0200490 pr_err("Display of source line number requested but sample IP is not\n"
491 "selected. Hence, no address to lookup the source line number.\n");
492 return -EINVAL;
493 }
Adrian Hunter0cd032d2019-11-27 11:53:21 +0200494 if (PRINT_FIELD(BRSTACKINSN) && !allow_user_set &&
Arnaldo Carvalho de Melo92c7d7c2020-06-17 09:31:25 -0300495 !(evlist__combined_branch_type(session->evlist) & PERF_SAMPLE_BRANCH_ANY)) {
Andi Kleen48d02a12017-02-23 15:46:34 -0800496 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
497 "Hint: run 'perf record -b ...'\n");
498 return -EINVAL;
499 }
David Ahern1424dc92011-03-09 22:23:28 -0700500 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300501 evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID", PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700502 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700503
504 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300505 evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME", PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700506 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700507
508 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300509 evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU", PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700510 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600511
Stephane Eranianfc36f942015-08-31 18:41:10 +0200512 if (PRINT_FIELD(IREGS) &&
Adrian Hunteradd07cc2020-06-30 16:39:34 +0300513 evsel__do_check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS", PERF_OUTPUT_IREGS, allow_user_set))
Stephane Eranianfc36f942015-08-31 18:41:10 +0200514 return -EINVAL;
515
Andi Kleenb1491ac2017-09-05 11:40:57 -0700516 if (PRINT_FIELD(UREGS) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300517 evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS", PERF_OUTPUT_UREGS))
Andi Kleenb1491ac2017-09-05 11:40:57 -0700518 return -EINVAL;
519
Kan Liang49d58f02017-08-29 13:11:11 -0400520 if (PRINT_FIELD(PHYS_ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300521 evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR", PERF_OUTPUT_PHYS_ADDR))
Kan Liang49d58f02017-08-29 13:11:11 -0400522 return -EINVAL;
523
Kan Liang6b9bae62020-12-16 10:57:57 -0800524 if (PRINT_FIELD(DATA_PAGE_SIZE) &&
525 evsel__check_stype(evsel, PERF_SAMPLE_DATA_PAGE_SIZE, "DATA_PAGE_SIZE", PERF_OUTPUT_DATA_PAGE_SIZE))
526 return -EINVAL;
527
Stephane Eranianc513de82021-01-05 11:57:50 -0800528 if (PRINT_FIELD(CODE_PAGE_SIZE) &&
529 evsel__check_stype(evsel, PERF_SAMPLE_CODE_PAGE_SIZE, "CODE_PAGE_SIZE", PERF_OUTPUT_CODE_PAGE_SIZE))
530 return -EINVAL;
531
David Ahern9cbdb702011-04-06 21:54:20 -0600532 return 0;
533}
534
Adrian Hunter7ea95722013-11-01 15:51:30 +0200535static void set_print_ip_opts(struct perf_event_attr *attr)
536{
Adrian Hunter14057202017-06-21 13:17:19 +0300537 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200538
539 output[type].print_ip_opts = 0;
540 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300541 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200542
543 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300544 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200545
546 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300547 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200548
549 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300550 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200551
552 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300553 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200554}
555
David Ahern9cbdb702011-04-06 21:54:20 -0600556/*
557 * verify all user requested events exist and the samples
558 * have the expected data
559 */
560static int perf_session__check_output_opt(struct perf_session *session)
561{
Jiri Olsae534bfb2020-08-05 11:34:44 +0200562 bool tod = false;
He Kuang40f20e52016-05-16 04:51:19 +0000563 unsigned int j;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200564 struct evsel *evsel;
David Ahern9cbdb702011-04-06 21:54:20 -0600565
Adrian Hunter14057202017-06-21 13:17:19 +0300566 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
567 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600568
569 /*
570 * even if fields is set to 0 (ie., show nothing) event must
571 * exist if user explicitly includes it on the command line
572 */
Adrian Hunter14057202017-06-21 13:17:19 +0300573 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
574 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600575 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300576 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600577 event_type(j));
578 return -1;
579 }
580
581 if (evsel && output[j].fields &&
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300582 evsel__check_attr(evsel, session))
David Ahern9cbdb702011-04-06 21:54:20 -0600583 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400584
585 if (evsel == NULL)
586 continue;
587
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200588 set_print_ip_opts(&evsel->core.attr);
Jiri Olsae534bfb2020-08-05 11:34:44 +0200589 tod |= output[j].fields & PERF_OUTPUT_TOD;
David Ahern1424dc92011-03-09 22:23:28 -0700590 }
591
Adrian Hunter98526ee2014-07-31 09:00:59 +0300592 if (!no_callchain) {
593 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000594 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300595
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300596 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000597 not_pipe = true;
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300598 if (evsel__has_callchain(evsel)) {
Adrian Hunter98526ee2014-07-31 09:00:59 +0300599 use_callchain = true;
600 break;
601 }
602 }
He Kuang71ac8992016-08-04 11:25:43 +0000603 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300604 symbol_conf.use_callchain = false;
605 }
606
David Ahern80b8b492013-11-19 21:07:37 -0700607 /*
608 * set default for tracepoints to print symbols only
609 * if callchains are present
610 */
611 if (symbol_conf.use_callchain &&
612 !output[PERF_TYPE_TRACEPOINT].user_set) {
David Ahern80b8b492013-11-19 21:07:37 -0700613 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700614
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300615 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200616 if (evsel->core.attr.type != j)
He Kuang40f20e52016-05-16 04:51:19 +0000617 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700618
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300619 if (evsel__has_callchain(evsel)) {
He Kuang40f20e52016-05-16 04:51:19 +0000620 output[j].fields |= PERF_OUTPUT_IP;
621 output[j].fields |= PERF_OUTPUT_SYM;
Sandipan Das7903a702018-05-17 12:03:26 +0530622 output[j].fields |= PERF_OUTPUT_SYMOFFSET;
He Kuang40f20e52016-05-16 04:51:19 +0000623 output[j].fields |= PERF_OUTPUT_DSO;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200624 set_print_ip_opts(&evsel->core.attr);
He Kuang40f20e52016-05-16 04:51:19 +0000625 goto out;
626 }
David Ahern80b8b492013-11-19 21:07:37 -0700627 }
628 }
629
Jiri Olsae534bfb2020-08-05 11:34:44 +0200630 if (tod && !session->header.env.clock.enabled) {
631 pr_err("Can't provide 'tod' time, missing clock data. "
632 "Please record with -k/--clockid option.\n");
633 return -1;
634 }
David Ahern80b8b492013-11-19 21:07:37 -0700635out:
David Ahern1424dc92011-03-09 22:23:28 -0700636 return 0;
637}
David Ahern745f43e2011-03-09 22:23:26 -0700638
Milian Wolff9add8fe2018-11-07 23:34:37 +0100639static int perf_sample__fprintf_regs(struct regs_dump *regs, uint64_t mask,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200640 FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200641{
Andi Kleenb1491ac2017-09-05 11:40:57 -0700642 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300643 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700644
645 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300646 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700647
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300648 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700649
650 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
651 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300652 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700653 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300654
655 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700656}
657
Jiri Olsae534bfb2020-08-05 11:34:44 +0200658#define DEFAULT_TOD_FMT "%F %H:%M:%S"
659
660static char*
661tod_scnprintf(struct perf_script *script, char *buf, int buflen,
662 u64 timestamp)
663{
664 u64 tod_ns, clockid_ns;
665 struct perf_env *env;
666 unsigned long nsec;
667 struct tm ltime;
668 char date[64];
669 time_t sec;
670
671 buf[0] = '\0';
672 if (buflen < 64 || !script)
673 return buf;
674
675 env = &script->session->header.env;
676 if (!env->clock.enabled) {
677 scnprintf(buf, buflen, "disabled");
678 return buf;
679 }
680
681 clockid_ns = env->clock.clockid_ns;
682 tod_ns = env->clock.tod_ns;
683
684 if (timestamp > clockid_ns)
685 tod_ns += timestamp - clockid_ns;
686 else
687 tod_ns -= clockid_ns - timestamp;
688
689 sec = (time_t) (tod_ns / NSEC_PER_SEC);
690 nsec = tod_ns - sec * NSEC_PER_SEC;
691
692 if (localtime_r(&sec, &ltime) == NULL) {
693 scnprintf(buf, buflen, "failed");
694 } else {
695 strftime(date, sizeof(date), DEFAULT_TOD_FMT, &ltime);
696
697 if (symbol_conf.nanosecs) {
698 snprintf(buf, buflen, "%s.%09lu", date, nsec);
699 } else {
700 snprintf(buf, buflen, "%s.%06lu",
701 date, nsec / NSEC_PER_USEC);
702 }
703 }
704
705 return buf;
706}
707
Milian Wolff9add8fe2018-11-07 23:34:37 +0100708static int perf_sample__fprintf_iregs(struct perf_sample *sample,
709 struct perf_event_attr *attr, FILE *fp)
710{
711 return perf_sample__fprintf_regs(&sample->intr_regs,
712 attr->sample_regs_intr, fp);
713}
714
715static int perf_sample__fprintf_uregs(struct perf_sample *sample,
716 struct perf_event_attr *attr, FILE *fp)
717{
718 return perf_sample__fprintf_regs(&sample->user_regs,
719 attr->sample_regs_user, fp);
720}
721
Jiri Olsae534bfb2020-08-05 11:34:44 +0200722static int perf_sample__fprintf_start(struct perf_script *script,
723 struct perf_sample *sample,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300724 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200725 struct evsel *evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +0100726 u32 type, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700727{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200728 struct perf_event_attr *attr = &evsel->core.attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700729 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700730 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300731 int printed = 0;
Jiri Olsae534bfb2020-08-05 11:34:44 +0200732 char tstr[128];
David Ahernc70c94b2011-03-09 22:23:25 -0700733
David Ahern745f43e2011-03-09 22:23:26 -0700734 if (PRINT_FIELD(COMM)) {
Adrian Hunterfc183802020-09-09 11:49:22 +0300735 const char *comm = thread ? thread__comm_str(thread) : ":-1";
736
David Ahern745f43e2011-03-09 22:23:26 -0700737 if (latency_format)
Adrian Hunterfc183802020-09-09 11:49:22 +0300738 printed += fprintf(fp, "%8.8s ", comm);
Arnaldo Carvalho de Melob8798332018-06-04 10:34:20 -0300739 else if (PRINT_FIELD(IP) && evsel__has_callchain(evsel) && symbol_conf.use_callchain)
Adrian Hunterfc183802020-09-09 11:49:22 +0300740 printed += fprintf(fp, "%s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700741 else
Adrian Hunterfc183802020-09-09 11:49:22 +0300742 printed += fprintf(fp, "%16s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700743 }
David Ahernc70c94b2011-03-09 22:23:25 -0700744
David Ahern745f43e2011-03-09 22:23:26 -0700745 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300746 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700747 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300748 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700749 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300750 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700751
David Ahern745f43e2011-03-09 22:23:26 -0700752 if (PRINT_FIELD(CPU)) {
753 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300754 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700755 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300756 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700757 }
David Ahernc70c94b2011-03-09 22:23:25 -0700758
Jiri Olsa28a0b392018-01-07 17:03:52 +0100759 if (PRINT_FIELD(MISC)) {
760 int ret = 0;
761
762 #define has(m) \
763 (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
764
765 if (has(KERNEL))
766 ret += fprintf(fp, "K");
767 if (has(USER))
768 ret += fprintf(fp, "U");
769 if (has(HYPERVISOR))
770 ret += fprintf(fp, "H");
771 if (has(GUEST_KERNEL))
772 ret += fprintf(fp, "G");
773 if (has(GUEST_USER))
774 ret += fprintf(fp, "g");
775
776 switch (type) {
777 case PERF_RECORD_MMAP:
778 case PERF_RECORD_MMAP2:
779 if (has(MMAP_DATA))
780 ret += fprintf(fp, "M");
781 break;
782 case PERF_RECORD_COMM:
783 if (has(COMM_EXEC))
784 ret += fprintf(fp, "E");
785 break;
786 case PERF_RECORD_SWITCH:
787 case PERF_RECORD_SWITCH_CPU_WIDE:
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300788 if (has(SWITCH_OUT)) {
Jiri Olsa28a0b392018-01-07 17:03:52 +0100789 ret += fprintf(fp, "S");
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300790 if (sample->misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT)
791 ret += fprintf(fp, "p");
792 }
Jiri Olsa28a0b392018-01-07 17:03:52 +0100793 default:
794 break;
795 }
796
797 #undef has
798
799 ret += fprintf(fp, "%*s", 6 - ret, " ");
800 printed += ret;
801 }
802
Jiri Olsae534bfb2020-08-05 11:34:44 +0200803 if (PRINT_FIELD(TOD)) {
804 tod_scnprintf(script, tstr, sizeof(tstr), sample->time);
805 printed += fprintf(fp, "%s ", tstr);
806 }
807
David Ahern745f43e2011-03-09 22:23:26 -0700808 if (PRINT_FIELD(TIME)) {
Andi Kleen90b10f42019-03-14 15:50:00 -0700809 u64 t = sample->time;
810 if (reltime) {
811 if (!initial_time)
812 initial_time = sample->time;
813 t = sample->time - initial_time;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +0100814 } else if (deltatime) {
815 if (previous_time)
816 t = sample->time - previous_time;
817 else {
818 t = 0;
819 }
820 previous_time = sample->time;
Andi Kleen90b10f42019-03-14 15:50:00 -0700821 }
822 nsecs = t;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300823 secs = nsecs / NSEC_PER_SEC;
824 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900825
Andi Kleen52bab882019-03-05 06:47:47 -0800826 if (symbol_conf.nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300827 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900828 else {
829 char sample_time[32];
Andi Kleen90b10f42019-03-14 15:50:00 -0700830 timestamp__scnprintf_usec(t, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300831 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900832 }
David Ahern745f43e2011-03-09 22:23:26 -0700833 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300834
835 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700836}
837
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200838static inline char
839mispred_str(struct branch_entry *br)
840{
841 if (!(br->flags.mispred || br->flags.predicted))
842 return '-';
843
844 return br->flags.predicted ? 'P' : 'M';
845}
846
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300847static int perf_sample__fprintf_brstack(struct perf_sample *sample,
848 struct thread *thread,
849 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200850{
851 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800852 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700853 struct addr_location alf, alt;
854 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300855 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200856
857 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300858 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200859
860 for (i = 0; i < br->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -0800861 from = entries[i].from;
862 to = entries[i].to;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700863
864 if (PRINT_FIELD(DSO)) {
865 memset(&alf, 0, sizeof(alf));
866 memset(&alt, 0, sizeof(alt));
Adrian Hunter692d0e62018-11-06 23:07:12 +0200867 thread__find_map_fb(thread, sample->cpumode, from, &alf);
868 thread__find_map_fb(thread, sample->cpumode, to, &alt);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700869 }
870
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300871 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700872 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300873 printed += fprintf(fp, "(");
874 printed += map__fprintf_dsoname(alf.map, fp);
875 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700876 }
877
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300878 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700879 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300880 printed += fprintf(fp, "(");
881 printed += map__fprintf_dsoname(alt.map, fp);
882 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700883 }
884
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300885 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800886 mispred_str(entries + i),
887 entries[i].flags.in_tx ? 'X' : '-',
888 entries[i].flags.abort ? 'A' : '-',
889 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200890 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300891
892 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200893}
894
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300895static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
896 struct thread *thread,
897 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200898{
899 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800900 struct branch_entry *entries = perf_sample__branch_entries(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200901 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200902 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300903 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200904
905 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300906 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200907
908 for (i = 0; i < br->nr; i++) {
909
910 memset(&alf, 0, sizeof(alf));
911 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800912 from = entries[i].from;
913 to = entries[i].to;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200914
Adrian Hunter692d0e62018-11-06 23:07:12 +0200915 thread__find_symbol_fb(thread, sample->cpumode, from, &alf);
916 thread__find_symbol_fb(thread, sample->cpumode, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200917
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300918 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700919 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300920 printed += fprintf(fp, "(");
921 printed += map__fprintf_dsoname(alf.map, fp);
922 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700923 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300924 printed += fprintf(fp, "%c", '/');
925 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700926 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300927 printed += fprintf(fp, "(");
928 printed += map__fprintf_dsoname(alt.map, fp);
929 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700930 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300931 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800932 mispred_str(entries + i),
933 entries[i].flags.in_tx ? 'X' : '-',
934 entries[i].flags.abort ? 'A' : '-',
935 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200936 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300937
938 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200939}
940
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300941static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
942 struct thread *thread,
943 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700944{
945 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800946 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700947 struct addr_location alf, alt;
948 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300949 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700950
951 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300952 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700953
954 for (i = 0; i < br->nr; i++) {
955
956 memset(&alf, 0, sizeof(alf));
957 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800958 from = entries[i].from;
959 to = entries[i].to;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700960
Adrian Hunter692d0e62018-11-06 23:07:12 +0200961 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300962 !alf.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700963 from = map__map_ip(alf.map, from);
964
Adrian Hunter692d0e62018-11-06 23:07:12 +0200965 if (thread__find_map_fb(thread, sample->cpumode, to, &alt) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300966 !alt.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700967 to = map__map_ip(alt.map, to);
968
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300969 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700970 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300971 printed += fprintf(fp, "(");
972 printed += map__fprintf_dsoname(alf.map, fp);
973 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700974 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300975 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700976 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300977 printed += fprintf(fp, "(");
978 printed += map__fprintf_dsoname(alt.map, fp);
979 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700980 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300981 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800982 mispred_str(entries + i),
983 entries[i].flags.in_tx ? 'X' : '-',
984 entries[i].flags.abort ? 'A' : '-',
985 entries[i].flags.cycles);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700986 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300987
988 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700989}
Andi Kleen48d02a12017-02-23 15:46:34 -0800990#define MAXBB 16384UL
991
992static int grab_bb(u8 *buffer, u64 start, u64 end,
993 struct machine *machine, struct thread *thread,
994 bool *is64bit, u8 *cpumode, bool last)
995{
996 long offset, len;
997 struct addr_location al;
998 bool kernel;
999
1000 if (!start || !end)
1001 return 0;
1002
1003 kernel = machine__kernel_ip(machine, start);
1004 if (kernel)
1005 *cpumode = PERF_RECORD_MISC_KERNEL;
1006 else
1007 *cpumode = PERF_RECORD_MISC_USER;
1008
1009 /*
1010 * Block overlaps between kernel and user.
1011 * This can happen due to ring filtering
1012 * On Intel CPUs the entry into the kernel is filtered,
1013 * but the exit is not. Let the caller patch it up.
1014 */
1015 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001016 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001017 return -ENXIO;
1018 }
1019
1020 memset(&al, 0, sizeof(al));
1021 if (end - start > MAXBB - MAXINSN) {
1022 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001023 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001024 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001025 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -08001026 return 0;
1027 }
1028
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -03001029 if (!thread__find_map(thread, *cpumode, start, &al) || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001030 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001031 return 0;
1032 }
1033 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001034 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001035 return 0;
1036 }
1037
1038 /* Load maps to ensure dso->is_64_bit has been updated */
1039 map__load(al.map);
1040
1041 offset = al.map->map_ip(al.map, start);
1042 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
1043 end - start + MAXINSN);
1044
1045 *is64bit = al.map->dso->is_64_bit;
1046 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001047 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -08001048 start, end);
1049 return len;
1050}
1051
Arnaldo Carvalho de Melo540a63e2019-11-22 12:39:06 -03001052static int map__fprintf_srccode(struct map *map, u64 addr, FILE *fp, struct srccode_state *state)
1053{
1054 char *srcfile;
1055 int ret = 0;
1056 unsigned line;
1057 int len;
1058 char *srccode;
1059
1060 if (!map || !map->dso)
1061 return 0;
1062 srcfile = get_srcline_split(map->dso,
1063 map__rip_2objdump(map, addr),
1064 &line);
1065 if (!srcfile)
1066 return 0;
1067
1068 /* Avoid redundant printing */
1069 if (state &&
1070 state->srcfile &&
1071 !strcmp(state->srcfile, srcfile) &&
1072 state->line == line) {
1073 free(srcfile);
1074 return 0;
1075 }
1076
1077 srccode = find_sourceline(srcfile, line, &len);
1078 if (!srccode)
1079 goto out_free_line;
1080
1081 ret = fprintf(fp, "|%-8d %.*s", line, len, srccode);
1082
1083 if (state) {
1084 state->srcfile = srcfile;
1085 state->line = line;
1086 }
1087 return ret;
1088
1089out_free_line:
1090 free(srcfile);
1091 return ret;
1092}
1093
Andi Kleendd2e18e2018-12-03 16:18:48 -08001094static int print_srccode(struct thread *thread, u8 cpumode, uint64_t addr)
1095{
1096 struct addr_location al;
1097 int ret = 0;
1098
1099 memset(&al, 0, sizeof(al));
1100 thread__find_map(thread, cpumode, addr, &al);
1101 if (!al.map)
1102 return 0;
1103 ret = map__fprintf_srccode(al.map, al.addr, stdout,
1104 &thread->srccode_state);
1105 if (ret)
1106 ret += printf("\n");
1107 return ret;
1108}
1109
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001110static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
1111 struct perf_insn *x, u8 *inbuf, int len,
Andi Kleenfe571202018-09-24 10:07:32 -07001112 int insn, FILE *fp, int *total_cycles)
Andi Kleen48d02a12017-02-23 15:46:34 -08001113{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001114 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
1115 dump_insn(x, ip, inbuf, len, NULL),
1116 en->flags.predicted ? " PRED" : "",
1117 en->flags.mispred ? " MISPRED" : "",
1118 en->flags.in_tx ? " INTX" : "",
1119 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -08001120 if (en->flags.cycles) {
Andi Kleenfe571202018-09-24 10:07:32 -07001121 *total_cycles += en->flags.cycles;
1122 printed += fprintf(fp, " %d cycles [%d]", en->flags.cycles, *total_cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001123 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001124 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001125 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001126 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001127}
1128
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001129static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
1130 u8 cpumode, int cpu, struct symbol **lastsym,
1131 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001132{
1133 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001134 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001135
1136 memset(&al, 0, sizeof(al));
1137
Arnaldo Carvalho de Melo404eb5a2018-04-26 09:34:37 -03001138 thread__find_map(thread, cpumode, addr, &al);
1139
Andi Kleen48d02a12017-02-23 15:46:34 -08001140 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001141 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001142
1143 al.cpu = cpu;
1144 al.sym = NULL;
1145 if (al.map)
1146 al.sym = map__find_symbol(al.map, al.addr);
1147
1148 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001149 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001150
1151 if (al.addr < al.sym->end)
1152 off = al.addr - al.sym->start;
1153 else
1154 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001155 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -08001156 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001157 printed += fprintf(fp, "%+d", off);
1158 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -08001159 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001160 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
1161 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001162 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001163
1164 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001165}
1166
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001167static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
1168 struct thread *thread,
1169 struct perf_event_attr *attr,
1170 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001171{
1172 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001173 struct branch_entry *entries = perf_sample__branch_entries(sample);
Andi Kleen48d02a12017-02-23 15:46:34 -08001174 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001175 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001176 struct perf_insn x;
1177 u8 buffer[MAXBB];
1178 unsigned off;
1179 struct symbol *lastsym = NULL;
Andi Kleenfe571202018-09-24 10:07:32 -07001180 int total_cycles = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001181
1182 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001183 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001184 nr = br->nr;
1185 if (max_blocks && nr > max_blocks + 1)
1186 nr = max_blocks + 1;
1187
1188 x.thread = thread;
1189 x.cpu = sample->cpu;
1190
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001191 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -08001192
1193 /* Handle first from jump, of which we don't know the entry. */
Kan Liang42bbabe2020-02-28 08:30:00 -08001194 len = grab_bb(buffer, entries[nr-1].from,
1195 entries[nr-1].from,
Andi Kleen48d02a12017-02-23 15:46:34 -08001196 machine, thread, &x.is64bit, &x.cpumode, false);
1197 if (len > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001198 printed += ip__fprintf_sym(entries[nr - 1].from, thread,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001199 x.cpumode, x.cpu, &lastsym, attr, fp);
Kan Liang42bbabe2020-02-28 08:30:00 -08001200 printed += ip__fprintf_jump(entries[nr - 1].from, &entries[nr - 1],
Andi Kleenfe571202018-09-24 10:07:32 -07001201 &x, buffer, len, 0, fp, &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001202 if (PRINT_FIELD(SRCCODE))
Kan Liang42bbabe2020-02-28 08:30:00 -08001203 printed += print_srccode(thread, x.cpumode, entries[nr - 1].from);
Andi Kleen48d02a12017-02-23 15:46:34 -08001204 }
1205
1206 /* Print all blocks */
1207 for (i = nr - 2; i >= 0; i--) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001208 if (entries[i].from || entries[i].to)
Andi Kleen48d02a12017-02-23 15:46:34 -08001209 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
Kan Liang42bbabe2020-02-28 08:30:00 -08001210 entries[i].from,
1211 entries[i].to);
1212 start = entries[i + 1].to;
1213 end = entries[i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001214
1215 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1216 /* Patch up missing kernel transfers due to ring filters */
1217 if (len == -ENXIO && i > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001218 end = entries[--i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001219 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1220 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1221 }
1222 if (len <= 0)
1223 continue;
1224
1225 insn = 0;
Andi Kleene98df282019-09-27 16:35:44 -07001226 for (off = 0; off < (unsigned)len; off += ilen) {
Andi Kleen48d02a12017-02-23 15:46:34 -08001227 uint64_t ip = start + off;
1228
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001229 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001230 if (ip == end) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001231 printed += ip__fprintf_jump(ip, &entries[i], &x, buffer + off, len - off, ++insn, fp,
Andi Kleenfe571202018-09-24 10:07:32 -07001232 &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001233 if (PRINT_FIELD(SRCCODE))
1234 printed += print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001235 break;
1236 } else {
Andi Kleene98df282019-09-27 16:35:44 -07001237 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001238 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
1239 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001240 if (ilen == 0)
1241 break;
Andi Kleendd2e18e2018-12-03 16:18:48 -08001242 if (PRINT_FIELD(SRCCODE))
1243 print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001244 insn++;
1245 }
1246 }
Adrian Hunter51726722019-11-27 11:56:31 +02001247 if (off != end - start)
Andi Kleene98df282019-09-27 16:35:44 -07001248 printed += fprintf(fp, "\tmismatch of LBR data and executable\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001249 }
1250
1251 /*
1252 * Hit the branch? In this case we are already done, and the target
1253 * has not been executed yet.
1254 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001255 if (entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001256 goto out;
Kan Liang42bbabe2020-02-28 08:30:00 -08001257 if (entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001258 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001259
1260 /*
1261 * Print final block upto sample
Andi Kleen61f61152018-11-19 21:06:17 -08001262 *
1263 * Due to pipeline delays the LBRs might be missing a branch
1264 * or two, which can result in very large or negative blocks
1265 * between final branch and sample. When this happens just
1266 * continue walking after the last TO until we hit a branch.
Andi Kleen48d02a12017-02-23 15:46:34 -08001267 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001268 start = entries[0].to;
Andi Kleen48d02a12017-02-23 15:46:34 -08001269 end = sample->ip;
Andi Kleen61f61152018-11-19 21:06:17 -08001270 if (end < start) {
1271 /* Missing jump. Scan 128 bytes for the next branch */
1272 end = start + 128;
1273 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001274 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001275 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001276 if (len <= 0) {
1277 /* Print at least last IP if basic block did not work */
1278 len = grab_bb(buffer, sample->ip, sample->ip,
1279 machine, thread, &x.is64bit, &x.cpumode, false);
1280 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001281 goto out;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001282 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -08001283 dump_insn(&x, sample->ip, buffer, len, NULL));
Andi Kleendd2e18e2018-12-03 16:18:48 -08001284 if (PRINT_FIELD(SRCCODE))
1285 print_srccode(thread, x.cpumode, sample->ip);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001286 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001287 }
1288 for (off = 0; off <= end - start; off += ilen) {
Andi Kleene98df282019-09-27 16:35:44 -07001289 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001290 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
1291 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001292 if (ilen == 0)
1293 break;
Andi Kleen61f61152018-11-19 21:06:17 -08001294 if (arch_is_branch(buffer + off, len - off, x.is64bit) && start + off != sample->ip) {
1295 /*
1296 * Hit a missing branch. Just stop.
1297 */
1298 printed += fprintf(fp, "\t... not reaching sample ...\n");
1299 break;
1300 }
Andi Kleendd2e18e2018-12-03 16:18:48 -08001301 if (PRINT_FIELD(SRCCODE))
1302 print_srccode(thread, x.cpumode, start + off);
Andi Kleen48d02a12017-02-23 15:46:34 -08001303 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001304out:
1305 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001306}
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001307
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001308static int perf_sample__fprintf_addr(struct perf_sample *sample,
1309 struct thread *thread,
1310 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -06001311{
1312 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001313 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -06001314
1315 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001316 goto out;
David Ahern7cec0922011-05-30 13:08:23 -06001317
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -03001318 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -06001319
1320 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001321 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001322 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001323 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001324 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001325 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001326 }
1327
1328 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001329 printed += fprintf(fp, " (");
1330 printed += map__fprintf_dsoname(al.map, fp);
1331 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001332 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001333out:
1334 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001335}
1336
Andi Kleen99f753f2018-09-20 11:05:39 -07001337static const char *resolve_branch_sym(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001338 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001339 struct thread *thread,
1340 struct addr_location *al,
1341 u64 *ip)
1342{
1343 struct addr_location addr_al;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001344 struct perf_event_attr *attr = &evsel->core.attr;
Andi Kleen99f753f2018-09-20 11:05:39 -07001345 const char *name = NULL;
1346
1347 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1348 if (sample_addr_correlates_sym(attr)) {
1349 thread__resolve(thread, &addr_al, sample);
1350 if (addr_al.sym)
1351 name = addr_al.sym->name;
1352 else
1353 *ip = sample->addr;
1354 } else {
1355 *ip = sample->addr;
1356 }
1357 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1358 if (al->sym)
1359 name = al->sym->name;
1360 else
1361 *ip = sample->ip;
1362 }
1363 return name;
1364}
1365
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001366static int perf_sample__fprintf_callindent(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001367 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001368 struct thread *thread,
1369 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001370{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001371 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter256d92b2018-12-21 14:06:19 +02001372 size_t depth = thread_stack__depth(thread, sample->cpu);
Adrian Huntere2167082016-06-23 16:40:58 +03001373 const char *name = NULL;
1374 static int spacing;
1375 int len = 0;
Andi Kleena78cdee2018-09-18 05:32:10 -07001376 int dlen = 0;
Adrian Huntere2167082016-06-23 16:40:58 +03001377 u64 ip = 0;
1378
1379 /*
1380 * The 'return' has already been popped off the stack so the depth has
1381 * to be adjusted to match the 'call'.
1382 */
1383 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1384 depth += 1;
1385
Andi Kleen99f753f2018-09-20 11:05:39 -07001386 name = resolve_branch_sym(sample, evsel, thread, al, &ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001387
Andi Kleena78cdee2018-09-18 05:32:10 -07001388 if (PRINT_FIELD(DSO) && !(PRINT_FIELD(IP) || PRINT_FIELD(ADDR))) {
1389 dlen += fprintf(fp, "(");
1390 dlen += map__fprintf_dsoname(al->map, fp);
1391 dlen += fprintf(fp, ")\t");
1392 }
1393
Adrian Huntere2167082016-06-23 16:40:58 +03001394 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001395 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001396 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001397 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001398
1399 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001400 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001401
1402 /*
1403 * Try to keep the output length from changing frequently so that the
1404 * output lines up more nicely.
1405 */
1406 if (len > spacing || (len && len < spacing - 52))
1407 spacing = round_up(len + 4, 32);
1408
1409 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001410 len += fprintf(fp, "%*s", spacing - len, "");
1411
Andi Kleena78cdee2018-09-18 05:32:10 -07001412 return len + dlen;
Adrian Huntere2167082016-06-23 16:40:58 +03001413}
1414
Andi Kleen3ab481a2019-03-05 06:47:45 -08001415__weak void arch_fetch_insn(struct perf_sample *sample __maybe_unused,
1416 struct thread *thread __maybe_unused,
1417 struct machine *machine __maybe_unused)
1418{
1419}
1420
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001421static int perf_sample__fprintf_insn(struct perf_sample *sample,
1422 struct perf_event_attr *attr,
1423 struct thread *thread,
1424 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001425{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001426 int printed = 0;
1427
Andi Kleen3ab481a2019-03-05 06:47:45 -08001428 if (sample->insn_len == 0 && native_arch)
1429 arch_fetch_insn(sample, thread, machine);
1430
Andi Kleen224e2c92016-10-07 16:42:27 +03001431 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001432 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001433 if (PRINT_FIELD(INSN) && sample->insn_len) {
Andi Kleen224e2c92016-10-07 16:42:27 +03001434 int i;
1435
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001436 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001437 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001438 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001439 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001440 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001441 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1442
1443 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001444}
1445
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001446static int perf_sample__fprintf_ipc(struct perf_sample *sample,
1447 struct perf_event_attr *attr, FILE *fp)
1448{
1449 unsigned int ipc;
1450
1451 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt)
1452 return 0;
1453
1454 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt;
1455
1456 return fprintf(fp, " \t IPC: %u.%02u (%" PRIu64 "/%" PRIu64 ") ",
1457 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt);
1458}
1459
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001460static int perf_sample__fprintf_bts(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001461 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001462 struct thread *thread,
1463 struct addr_location *al,
1464 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001465{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001466 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001467 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001468 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001469 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001470
Adrian Huntere2167082016-06-23 16:40:58 +03001471 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001472 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001473
Akihiro Nagai95582592012-01-30 13:43:09 +09001474 /* print branch_from information */
1475 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001476 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001477 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001478
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001479 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001480 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001481 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001482 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001483
1484 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001485 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001486 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001487 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001488 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001489 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001490 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001491 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001492
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001493 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor,
1494 symbol_conf.bt_stop_list, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001495 }
1496
Akihiro Nagai95582592012-01-30 13:43:09 +09001497 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001498 if (PRINT_FIELD(ADDR) ||
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001499 ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001500 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001501 printed += fprintf(fp, " => ");
1502 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001503 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001504
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001505 printed += perf_sample__fprintf_ipc(sample, attr, fp);
1506
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001507 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001508 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001509
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001510 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001511 printed += fprintf(fp, "\n");
1512 if (PRINT_FIELD(SRCCODE)) {
1513 int ret = map__fprintf_srccode(al->map, al->addr, stdout,
1514 &thread->srccode_state);
1515 if (ret) {
1516 printed += ret;
1517 printed += printf("\n");
1518 }
1519 }
1520 return printed;
Akihiro Nagai95582592012-01-30 13:43:09 +09001521}
1522
Adrian Hunter055cd332016-06-23 16:40:56 +03001523static struct {
1524 u32 flags;
1525 const char *name;
1526} sample_flags[] = {
1527 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1528 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1529 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1530 {PERF_IP_FLAG_BRANCH, "jmp"},
1531 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1532 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1533 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1534 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1535 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1536 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1537 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1538 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1539 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
Adrian Hunterc025d462021-02-18 11:57:51 +02001540 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMENTRY, "vmentry"},
1541 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_VMEXIT, "vmexit"},
Adrian Hunter055cd332016-06-23 16:40:56 +03001542 {0, NULL}
1543};
1544
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001545static const char *sample_flags_to_name(u32 flags)
1546{
1547 int i;
1548
1549 for (i = 0; sample_flags[i].name ; i++) {
1550 if (sample_flags[i].flags == flags)
1551 return sample_flags[i].name;
1552 }
1553
1554 return NULL;
1555}
1556
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001557static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001558{
1559 const char *chars = PERF_IP_FLAG_CHARS;
1560 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001561 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1562 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001563 char str[33];
1564 int i, pos = 0;
1565
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001566 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1567 if (name)
1568 return fprintf(fp, " %-15s%4s ", name, in_tx ? "(x)" : "");
1569
1570 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1571 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1572 if (name)
1573 return fprintf(fp, " tr strt %-7s%4s ", name, in_tx ? "(x)" : "");
1574 }
1575
1576 if (flags & PERF_IP_FLAG_TRACE_END) {
1577 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1578 if (name)
1579 return fprintf(fp, " tr end %-7s%4s ", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001580 }
1581
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001582 for (i = 0; i < n; i++, flags >>= 1) {
1583 if (flags & 1)
1584 str[pos++] = chars[i];
1585 }
1586 for (; i < 32; i++, flags >>= 1) {
1587 if (flags & 1)
1588 str[pos++] = '?';
1589 }
1590 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001591
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001592 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001593}
1594
Wang Nan30372f02016-02-24 11:20:45 +00001595struct printer_data {
1596 int line_no;
1597 bool hit_nul;
1598 bool is_printable;
1599};
1600
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001601static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1602 unsigned int val,
1603 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001604{
1605 unsigned char ch = (unsigned char)val;
1606 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001607 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001608
1609 switch (op) {
1610 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001611 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001612 break;
1613 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001614 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001615 " ");
1616 break;
1617 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001618 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001619 break;
1620 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001621 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001622 break;
1623 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001624 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001625 break;
1626 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001627 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001628 break;
1629 case BINARY_PRINT_CHAR_DATA:
1630 if (printer_data->hit_nul && ch)
1631 printer_data->is_printable = false;
1632
1633 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001634 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001635
1636 if (!printer_data->is_printable)
1637 break;
1638
1639 if (ch == '\0')
1640 printer_data->hit_nul = true;
1641 else
1642 printer_data->is_printable = false;
1643 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001644 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001645 }
1646 break;
1647 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001648 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001649 break;
1650 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001651 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001652 printer_data->line_no++;
1653 break;
1654 case BINARY_PRINT_DATA_END:
1655 default:
1656 break;
1657 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001658
1659 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001660}
1661
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001662static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001663{
1664 unsigned int nr_bytes = sample->raw_size;
1665 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001666 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1667 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001668
1669 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001670 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1671
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_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001676{
1677 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001678 return fprintf(fp, "%*s", spacing - len, "");
1679
1680 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001681}
1682
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001683static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001684{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001685 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001686}
1687
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001688static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001689{
1690 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1691 int len;
1692
1693 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001694 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001695
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001696 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001697 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001698 return len + perf_sample__fprintf_pt_spacing(len, 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_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001702{
1703 struct perf_synth_intel_mwait *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, " hints: %#x extensions: %#x ",
1710 data->hints, data->extensions);
1711 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_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001715{
1716 struct perf_synth_intel_pwre *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, " hw: %u cstate: %u sub-cstate: %u ",
1723 data->hw, data->cstate, data->subcstate);
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_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001728{
1729 struct perf_synth_intel_exstop *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, " IP: %u ", data->ip);
1736 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001737}
1738
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001739static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001740{
1741 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1742 int len;
1743
1744 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001745 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001746
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001747 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001748 data->deepest_cstate, data->last_cstate,
1749 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001750 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001751}
1752
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001753static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001754{
1755 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1756 unsigned int percent, freq;
1757 int len;
1758
1759 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001760 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001761
1762 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001763 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001764 if (data->max_nonturbo) {
1765 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001766 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001767 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001768 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001769}
1770
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001771static int perf_sample__fprintf_synth_psb(struct perf_sample *sample, FILE *fp)
1772{
1773 struct perf_synth_intel_psb *data = perf_sample__synth_ptr(sample);
1774 int len;
1775
1776 if (perf_sample__bad_synth_size(sample, *data))
1777 return 0;
1778
1779 len = fprintf(fp, " psb offs: %#" PRIx64, data->offset);
1780 return len + perf_sample__fprintf_pt_spacing(len, fp);
1781}
1782
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001783static int perf_sample__fprintf_synth(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001784 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001785{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001786 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001787 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001788 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001789 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001790 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001791 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001792 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001793 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001794 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001795 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001796 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001797 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001798 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunterc840cbf2021-02-05 19:53:50 +02001799 case PERF_SYNTH_INTEL_PSB:
1800 return perf_sample__fprintf_synth_psb(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001801 default:
1802 break;
1803 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001804
1805 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001806}
1807
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001808static int evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001809{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001810 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001811 int max = 0;
1812
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001813 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001814 int len = strlen(evsel__name(evsel));
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001815
1816 max = MAX(len, max);
1817 }
1818
1819 return max;
1820}
1821
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001822static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001823{
1824 struct mem_info mi = { .data_src.val = data_src };
1825 char decode[100];
1826 char out[100];
1827 static int maxlen;
1828 int len;
1829
1830 perf_script__meminfo_scnprintf(decode, 100, &mi);
1831
1832 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1833 if (maxlen < len)
1834 maxlen = len;
1835
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001836 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001837}
1838
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001839struct metric_ctx {
1840 struct perf_sample *sample;
1841 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001842 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001843 FILE *fp;
1844};
1845
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001846static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1847 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001848 const char *fmt,
1849 const char *unit, double val)
1850{
1851 struct metric_ctx *mctx = ctx;
1852
1853 if (!fmt)
1854 return;
Jiri Olsae534bfb2020-08-05 11:34:44 +02001855 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001856 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001857 fputs("\tmetric: ", mctx->fp);
1858 if (color)
1859 color_fprintf(mctx->fp, color, fmt, val);
1860 else
1861 printf(fmt, val);
1862 fprintf(mctx->fp, " %s\n", unit);
1863}
1864
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001865static void script_new_line(struct perf_stat_config *config __maybe_unused,
1866 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001867{
1868 struct metric_ctx *mctx = ctx;
1869
Jiri Olsae534bfb2020-08-05 11:34:44 +02001870 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001871 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001872 fputs("\tmetric: ", mctx->fp);
1873}
1874
1875static void perf_sample__fprint_metric(struct perf_script *script,
1876 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001877 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001878 struct perf_sample *sample,
1879 FILE *fp)
1880{
1881 struct perf_stat_output_ctx ctx = {
1882 .print_metric = script_print_metric,
1883 .new_line = script_new_line,
1884 .ctx = &(struct metric_ctx) {
1885 .sample = sample,
1886 .thread = thread,
1887 .evsel = evsel,
1888 .fp = fp,
1889 },
1890 .force_header = false,
1891 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001892 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001893 u64 val;
1894
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001895 if (!evsel->stats)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001896 evlist__alloc_stats(script->session->evlist, false);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001897 if (evsel_script(evsel->leader)->gnum++ == 0)
1898 perf_stat__reset_shadow_stats();
1899 val = sample->period * evsel->scale;
1900 perf_stat__update_shadow_stats(evsel,
1901 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001902 sample->cpu,
1903 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001904 evsel_script(evsel)->val = val;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001905 if (evsel_script(evsel->leader)->gnum == evsel->leader->core.nr_members) {
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001906 for_each_group_member (ev2, evsel->leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001907 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001908 evsel_script(ev2)->val,
1909 sample->cpu,
1910 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001911 NULL,
1912 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001913 }
1914 evsel_script(evsel->leader)->gnum = 0;
1915 }
1916}
1917
Andi Kleen99f753f2018-09-20 11:05:39 -07001918static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001919 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001920 struct thread *thread,
1921 struct addr_location *al)
1922{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001923 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001924
1925 if (!symbol_conf.graph_function)
1926 return true;
1927
1928 if (thread->filter) {
1929 if (depth <= thread->filter_entry_depth) {
1930 thread->filter = false;
1931 return false;
1932 }
1933 return true;
1934 } else {
1935 const char *s = symbol_conf.graph_function;
1936 u64 ip;
1937 const char *name = resolve_branch_sym(sample, evsel, thread, al,
1938 &ip);
1939 unsigned nlen;
1940
1941 if (!name)
1942 return false;
1943 nlen = strlen(name);
1944 while (*s) {
1945 unsigned len = strcspn(s, ",");
1946 if (nlen == len && !strncmp(name, s, len)) {
1947 thread->filter = true;
1948 thread->filter_entry_depth = depth;
1949 return true;
1950 }
1951 s += len;
1952 if (*s == ',')
1953 s++;
1954 }
1955 return false;
1956 }
1957}
1958
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001959static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001960 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001961 struct addr_location *al,
1962 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001963{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001964 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001965 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001966 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02001967 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001968 FILE *fp = es->fp;
Kan Liang6b9bae62020-12-16 10:57:57 -08001969 char str[PAGE_SIZE_NAME_LEN];
David Ahern1424dc92011-03-09 22:23:28 -07001970
Adrian Hunter14057202017-06-21 13:17:19 +03001971 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001972 return;
1973
Andi Kleen99f753f2018-09-20 11:05:39 -07001974 if (!show_event(sample, evsel, thread, al))
1975 return;
1976
Arnaldo Carvalho de Melo8829e562019-08-15 11:00:11 -03001977 if (evswitch__discard(&script->evswitch, evsel))
1978 return;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001979
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001980 ++es->samples;
1981
Jiri Olsae534bfb2020-08-05 11:34:44 +02001982 perf_sample__fprintf_start(script, sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001983 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001984
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001985 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001986 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001987
Namhyung Kime944d3d2013-11-18 14:34:52 +09001988 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001989 const char *evname = evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001990
1991 if (!script->name_width)
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001992 script->name_width = evlist__max_name_len(script->session->evlist);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001993
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001994 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001995 }
1996
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001997 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001998 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001999
Akihiro Nagai95582592012-01-30 13:43:09 +09002000 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002001 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09002002 return;
2003 }
2004
Andi Kleen96167162019-01-17 11:48:34 -08002005 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03002006 event_format__fprintf(evsel->tp_format, sample->cpu,
2007 sample->raw_data, sample->raw_size, fp);
2008 }
Adrian Hunter47e78082017-05-26 11:17:22 +03002009
2010 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002011 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03002012
David Ahern7cec0922011-05-30 13:08:23 -06002013 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002014 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06002015
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002016 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002017 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002018
2019 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002020 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01002021
David Ahern787bef12011-05-27 14:28:43 -06002022 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07002023 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04002024
Kan Liang680d1252020-03-19 13:25:14 -07002025 if (script->stitch_lbr)
2026 al->thread->lbr_stitch_enable = true;
2027
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03002028 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07002029 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002030 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07002031 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002032
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002033 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03002034 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
2035 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07002036 }
2037
Stephane Eranianfc36f942015-08-31 18:41:10 +02002038 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002039 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02002040
Andi Kleenb1491ac2017-09-05 11:40:57 -07002041 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002042 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07002043
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002044 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002045 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002046 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002047 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07002048 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002049 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002050
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002051 if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002052 perf_sample__fprintf_bpf_output(sample, fp);
2053 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04002054
2055 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002056 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002057
Kan Liang6b9bae62020-12-16 10:57:57 -08002058 if (PRINT_FIELD(DATA_PAGE_SIZE))
2059 fprintf(fp, " %s", get_page_size_name(sample->data_page_size, str));
2060
Stephane Eranianc513de82021-01-05 11:57:50 -08002061 if (PRINT_FIELD(CODE_PAGE_SIZE))
2062 fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str));
2063
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002064 perf_sample__fprintf_ipc(sample, attr, fp);
2065
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002066 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002067
Andi Kleendd2e18e2018-12-03 16:18:48 -08002068 if (PRINT_FIELD(SRCCODE)) {
2069 if (map__fprintf_srccode(al->map, al->addr, stdout,
2070 &thread->srccode_state))
2071 printf("\n");
2072 }
2073
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002074 if (PRINT_FIELD(METRIC))
2075 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02002076
2077 if (verbose)
2078 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07002079}
2080
Tom Zanussi956ffd02009-11-25 01:15:46 -06002081static struct scripting_ops *scripting_ops;
2082
Jiri Olsa32dcd022019-07-21 13:23:51 +02002083static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002084{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002085 int nthreads = perf_thread_map__nr(counter->core.threads);
Arnaldo Carvalho de Melo5eb88f02020-04-29 15:45:09 -03002086 int ncpus = evsel__nr_cpus(counter);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002087 int cpu, thread;
2088 static int header_printed;
2089
Jiri Olsa648b5af2019-08-06 11:35:19 +02002090 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002091 nthreads = 1;
2092
2093 if (!header_printed) {
2094 printf("%3s %8s %15s %15s %15s %15s %s\n",
2095 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
2096 header_printed = 1;
2097 }
2098
2099 for (thread = 0; thread < nthreads; thread++) {
2100 for (cpu = 0; cpu < ncpus; cpu++) {
2101 struct perf_counts_values *counts;
2102
2103 counts = perf_counts(counter->counts, cpu, thread);
2104
2105 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02002106 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002107 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01002108 counts->val,
2109 counts->ena,
2110 counts->run,
2111 tstamp,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002112 evsel__name(counter));
Jiri Olsa36e33c52016-01-06 11:49:56 +01002113 }
2114 }
2115}
2116
Jiri Olsa32dcd022019-07-21 13:23:51 +02002117static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002118{
2119 if (scripting_ops && scripting_ops->process_stat)
2120 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002121 else
2122 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002123}
2124
2125static void process_stat_interval(u64 tstamp)
2126{
2127 if (scripting_ops && scripting_ops->process_stat_interval)
2128 scripting_ops->process_stat_interval(tstamp);
2129}
2130
Tom Zanussi956ffd02009-11-25 01:15:46 -06002131static void setup_scripting(void)
2132{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002133 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002134 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002135}
2136
Adrian Hunterd445dd22014-08-15 22:08:37 +03002137static int flush_scripting(void)
2138{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002139 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002140}
2141
Tom Zanussi956ffd02009-11-25 01:15:46 -06002142static int cleanup_scripting(void)
2143{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002144 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002145
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002146 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002147}
2148
Andi Kleene87e5482019-03-11 07:44:52 -07002149static bool filter_cpu(struct perf_sample *sample)
2150{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002151 if (cpu_list && sample->cpu != (u32)-1)
Andi Kleene87e5482019-03-11 07:44:52 -07002152 return !test_bit(sample->cpu, cpu_bitmap);
2153 return false;
2154}
2155
Jiri Olsa809e9422015-11-26 18:55:21 +01002156static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002157 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002158 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002159 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002160 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002161{
Jiri Olsa809e9422015-11-26 18:55:21 +01002162 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002163 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002164
Jin Yao2ab046c2017-12-08 21:13:46 +08002165 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2166 sample->time)) {
David Aherna91f4c42016-11-29 10:15:43 -07002167 return 0;
Jin Yao2ab046c2017-12-08 21:13:46 +08002168 }
David Aherna91f4c42016-11-29 10:15:43 -07002169
David Ahern1424dc92011-03-09 22:23:28 -07002170 if (debug_mode) {
2171 if (sample->time < last_timestamp) {
2172 pr_err("Samples misordered, previous: %" PRIu64
2173 " this: %" PRIu64 "\n", last_timestamp,
2174 sample->time);
2175 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002176 }
David Ahern1424dc92011-03-09 22:23:28 -07002177 last_timestamp = sample->time;
2178 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002179 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002180
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03002181 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002182 pr_err("problem processing %d event, skipping it.\n",
2183 event->header.type);
2184 return -1;
2185 }
2186
2187 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002188 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002189
Andi Kleene87e5482019-03-11 07:44:52 -07002190 if (filter_cpu(sample))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002191 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002192
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002193 if (scripting_ops)
2194 scripting_ops->process_event(event, sample, evsel, &al);
2195 else
Andi Kleen48d02a12017-02-23 15:46:34 -08002196 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002197
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002198out_put:
2199 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002200 return 0;
2201}
2202
Adrian Hunter7ea95722013-11-01 15:51:30 +02002203static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002204 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002205{
2206 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002207 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002208 struct evsel *evsel, *pos;
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002209 u64 sample_type;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002210 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002211 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002212
2213 err = perf_event__process_attr(tool, event, pevlist);
2214 if (err)
2215 return err;
2216
2217 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002218 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002219
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302220 if (!evsel->priv) {
2221 if (scr->per_event_dump) {
2222 evsel->priv = perf_evsel_script__new(evsel,
2223 scr->session->data);
2224 } else {
2225 es = zalloc(sizeof(*es));
2226 if (!es)
2227 return -ENOMEM;
2228 es->fp = stdout;
2229 evsel->priv = es;
2230 }
2231 }
2232
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002233 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2234 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002235 return 0;
2236
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002237 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002238 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002239 return 0;
2240 }
2241
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002242 if (evsel->core.attr.sample_type) {
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002243 err = evsel__check_attr(evsel, scr->session);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002244 if (err)
2245 return err;
2246 }
Jiri Olsad2b5a312015-10-16 12:41:25 +02002247
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002248 /*
2249 * Check if we need to enable callchains based
2250 * on events sample_type.
2251 */
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03002252 sample_type = evlist__combined_sample_type(evlist);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002253 callchain_param_setup(sample_type);
Jiri Olsa53fb1892020-05-07 11:50:24 +02002254
Adrian Hunterb5164082020-05-27 21:02:50 +03002255 /* Enable fields for callchain entries */
2256 if (symbol_conf.use_callchain &&
2257 (sample_type & PERF_SAMPLE_CALLCHAIN ||
2258 sample_type & PERF_SAMPLE_BRANCH_STACK ||
2259 (sample_type & PERF_SAMPLE_REGS_USER &&
2260 sample_type & PERF_SAMPLE_STACK_USER))) {
2261 int type = output_type(evsel->core.attr.type);
2262
2263 if (!(output[type].user_unset_fields & PERF_OUTPUT_IP))
2264 output[type].fields |= PERF_OUTPUT_IP;
2265 if (!(output[type].user_unset_fields & PERF_OUTPUT_SYM))
2266 output[type].fields |= PERF_OUTPUT_SYM;
Jiri Olsa53fb1892020-05-07 11:50:24 +02002267 }
2268 set_print_ip_opts(&evsel->core.attr);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002269 return 0;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002270}
2271
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002272static int print_event_with_time(struct perf_tool *tool,
2273 union perf_event *event,
2274 struct perf_sample *sample,
2275 struct machine *machine,
2276 pid_t pid, pid_t tid, u64 timestamp)
2277{
2278 struct perf_script *script = container_of(tool, struct perf_script, tool);
2279 struct perf_session *session = script->session;
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002280 struct evsel *evsel = evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002281 struct thread *thread = NULL;
2282
2283 if (evsel && !evsel->core.attr.sample_id_all) {
2284 sample->cpu = 0;
2285 sample->time = timestamp;
2286 sample->pid = pid;
2287 sample->tid = tid;
2288 }
2289
2290 if (filter_cpu(sample))
2291 return 0;
2292
2293 if (tid != -1)
2294 thread = machine__findnew_thread(machine, pid, tid);
2295
Adrian Hunterfc183802020-09-09 11:49:22 +03002296 if (evsel) {
Jiri Olsae534bfb2020-08-05 11:34:44 +02002297 perf_sample__fprintf_start(script, sample, thread, evsel,
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002298 event->header.type, stdout);
2299 }
2300
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002301 perf_event__fprintf(event, machine, stdout);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002302
2303 thread__put(thread);
2304
2305 return 0;
2306}
2307
2308static int print_event(struct perf_tool *tool, union perf_event *event,
2309 struct perf_sample *sample, struct machine *machine,
2310 pid_t pid, pid_t tid)
2311{
2312 return print_event_with_time(tool, event, sample, machine, pid, tid, 0);
2313}
2314
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002315static int process_comm_event(struct perf_tool *tool,
2316 union perf_event *event,
2317 struct perf_sample *sample,
2318 struct machine *machine)
2319{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002320 if (perf_event__process_comm(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002321 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002322
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002323 return print_event(tool, event, sample, machine, event->comm.pid,
2324 event->comm.tid);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002325}
2326
Hari Bathini96a44bb2017-03-08 02:12:06 +05302327static int process_namespaces_event(struct perf_tool *tool,
2328 union perf_event *event,
2329 struct perf_sample *sample,
2330 struct machine *machine)
2331{
Hari Bathini96a44bb2017-03-08 02:12:06 +05302332 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002333 return -1;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302334
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002335 return print_event(tool, event, sample, machine, event->namespaces.pid,
2336 event->namespaces.tid);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302337}
2338
Namhyung Kim160d4af2020-03-25 21:45:36 +09002339static int process_cgroup_event(struct perf_tool *tool,
2340 union perf_event *event,
2341 struct perf_sample *sample,
2342 struct machine *machine)
2343{
Namhyung Kim160d4af2020-03-25 21:45:36 +09002344 if (perf_event__process_cgroup(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002345 return -1;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002346
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002347 return print_event(tool, event, sample, machine, sample->pid,
2348 sample->tid);
Namhyung Kim160d4af2020-03-25 21:45:36 +09002349}
2350
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002351static int process_fork_event(struct perf_tool *tool,
2352 union perf_event *event,
2353 struct perf_sample *sample,
2354 struct machine *machine)
2355{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002356 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2357 return -1;
2358
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002359 return print_event_with_time(tool, event, sample, machine,
2360 event->fork.pid, event->fork.tid,
2361 event->fork.time);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002362}
2363static int process_exit_event(struct perf_tool *tool,
2364 union perf_event *event,
2365 struct perf_sample *sample,
2366 struct machine *machine)
2367{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002368 /* Print before 'exit' deletes anything */
2369 if (print_event_with_time(tool, event, sample, machine, event->fork.pid,
2370 event->fork.tid, event->fork.time))
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002371 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002372
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002373 return perf_event__process_exit(tool, event, sample, machine);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002374}
2375
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002376static int process_mmap_event(struct perf_tool *tool,
2377 union perf_event *event,
2378 struct perf_sample *sample,
2379 struct machine *machine)
2380{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002381 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2382 return -1;
2383
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002384 return print_event(tool, event, sample, machine, event->mmap.pid,
2385 event->mmap.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002386}
2387
2388static int process_mmap2_event(struct perf_tool *tool,
2389 union perf_event *event,
2390 struct perf_sample *sample,
2391 struct machine *machine)
2392{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002393 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2394 return -1;
2395
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002396 return print_event(tool, event, sample, machine, event->mmap2.pid,
2397 event->mmap2.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002398}
2399
Adrian Hunter7c148982015-07-21 12:44:06 +03002400static int process_switch_event(struct perf_tool *tool,
2401 union perf_event *event,
2402 struct perf_sample *sample,
2403 struct machine *machine)
2404{
Adrian Hunter7c148982015-07-21 12:44:06 +03002405 struct perf_script *script = container_of(tool, struct perf_script, tool);
Adrian Hunter7c148982015-07-21 12:44:06 +03002406
2407 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2408 return -1;
2409
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002410 if (scripting_ops && scripting_ops->process_switch)
2411 scripting_ops->process_switch(event, sample, machine);
2412
2413 if (!script->show_switch_events)
2414 return 0;
2415
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002416 return print_event(tool, event, sample, machine, sample->pid,
2417 sample->tid);
Adrian Hunter7c148982015-07-21 12:44:06 +03002418}
2419
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002420static int
2421process_lost_event(struct perf_tool *tool,
2422 union perf_event *event,
2423 struct perf_sample *sample,
2424 struct machine *machine)
2425{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002426 return print_event(tool, event, sample, machine, sample->pid,
2427 sample->tid);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002428}
2429
Jiri Olsa3233b372018-02-06 19:17:59 +01002430static int
2431process_finished_round_event(struct perf_tool *tool __maybe_unused,
2432 union perf_event *event,
2433 struct ordered_events *oe __maybe_unused)
2434
2435{
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002436 perf_event__fprintf(event, NULL, stdout);
Jiri Olsa3233b372018-02-06 19:17:59 +01002437 return 0;
2438}
2439
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002440static int
2441process_bpf_events(struct perf_tool *tool __maybe_unused,
2442 union perf_event *event,
2443 struct perf_sample *sample,
2444 struct machine *machine)
2445{
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002446 if (machine__process_ksymbol(machine, event, sample) < 0)
2447 return -1;
2448
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002449 return print_event(tool, event, sample, machine, sample->pid,
2450 sample->tid);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002451}
2452
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002453static int process_text_poke_events(struct perf_tool *tool,
2454 union perf_event *event,
2455 struct perf_sample *sample,
2456 struct machine *machine)
2457{
2458 if (perf_event__process_text_poke(tool, event, sample, machine) < 0)
2459 return -1;
2460
2461 return print_event(tool, event, sample, machine, sample->pid,
2462 sample->tid);
2463}
2464
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002465static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002466{
2467 session_done = 1;
2468}
2469
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002470static void perf_script__fclose_per_event_dump(struct perf_script *script)
2471{
Jiri Olsa63503db2019-07-21 13:23:52 +02002472 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002473 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002474
2475 evlist__for_each_entry(evlist, evsel) {
2476 if (!evsel->priv)
2477 break;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002478 perf_evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002479 evsel->priv = NULL;
2480 }
2481}
2482
2483static int perf_script__fopen_per_event_dump(struct perf_script *script)
2484{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002485 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002486
2487 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002488 /*
2489 * Already setup? I.e. we may be called twice in cases like
2490 * Intel PT, one for the intel_pt// and dummy events, then
2491 * for the evsels syntheized from the auxtrace info.
2492 *
2493 * Ses perf_script__process_auxtrace_info.
2494 */
2495 if (evsel->priv != NULL)
2496 continue;
2497
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002498 evsel->priv = perf_evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002499 if (evsel->priv == NULL)
2500 goto out_err_fclose;
2501 }
2502
2503 return 0;
2504
2505out_err_fclose:
2506 perf_script__fclose_per_event_dump(script);
2507 return -1;
2508}
2509
2510static int perf_script__setup_per_event_dump(struct perf_script *script)
2511{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002512 struct evsel *evsel;
2513 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002514
2515 if (script->per_event_dump)
2516 return perf_script__fopen_per_event_dump(script);
2517
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002518 es_stdout.fp = stdout;
2519
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002520 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002521 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002522
2523 return 0;
2524}
2525
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002526static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2527{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002528 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002529
2530 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002531 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002532
2533 perf_evsel_script__fprintf(es, stdout);
2534 perf_evsel_script__delete(es);
2535 evsel->priv = NULL;
2536 }
2537}
2538
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002539static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002540{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002541 int ret;
2542
Tom Zanussic239da32010-04-01 23:59:18 -05002543 signal(SIGINT, sig_handler);
2544
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002545 perf_stat__init_shadow_stats();
2546
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002547 /* override event processing functions */
2548 if (script->show_task_events) {
2549 script->tool.comm = process_comm_event;
2550 script->tool.fork = process_fork_event;
2551 script->tool.exit = process_exit_event;
2552 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002553 if (script->show_mmap_events) {
2554 script->tool.mmap = process_mmap_event;
2555 script->tool.mmap2 = process_mmap2_event;
2556 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002557 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002558 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302559 if (script->show_namespace_events)
2560 script->tool.namespaces = process_namespaces_event;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002561 if (script->show_cgroup_events)
2562 script->tool.cgroup = process_cgroup_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002563 if (script->show_lost_events)
2564 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002565 if (script->show_round_events) {
2566 script->tool.ordered_events = false;
2567 script->tool.finished_round = process_finished_round_event;
2568 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002569 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002570 script->tool.ksymbol = process_bpf_events;
2571 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002572 }
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002573 if (script->show_text_poke_events) {
2574 script->tool.ksymbol = process_bpf_events;
2575 script->tool.text_poke = process_text_poke_events;
2576 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002577
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002578 if (perf_script__setup_per_event_dump(script)) {
2579 pr_err("Couldn't create the per event dump files\n");
2580 return -1;
2581 }
2582
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002583 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002584
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002585 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002586 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002587
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002588 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002589 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002590
2591 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002592}
2593
Tom Zanussi956ffd02009-11-25 01:15:46 -06002594struct script_spec {
2595 struct list_head node;
2596 struct scripting_ops *ops;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -05002597 char spec[];
Tom Zanussi956ffd02009-11-25 01:15:46 -06002598};
2599
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002600static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002601
2602static struct script_spec *script_spec__new(const char *spec,
2603 struct scripting_ops *ops)
2604{
2605 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2606
2607 if (s != NULL) {
2608 strcpy(s->spec, spec);
2609 s->ops = ops;
2610 }
2611
2612 return s;
2613}
2614
Tom Zanussi956ffd02009-11-25 01:15:46 -06002615static void script_spec__add(struct script_spec *s)
2616{
2617 list_add_tail(&s->node, &script_specs);
2618}
2619
2620static struct script_spec *script_spec__find(const char *spec)
2621{
2622 struct script_spec *s;
2623
2624 list_for_each_entry(s, &script_specs, node)
2625 if (strcasecmp(s->spec, spec) == 0)
2626 return s;
2627 return NULL;
2628}
2629
Tom Zanussi956ffd02009-11-25 01:15:46 -06002630int script_spec_register(const char *spec, struct scripting_ops *ops)
2631{
2632 struct script_spec *s;
2633
2634 s = script_spec__find(spec);
2635 if (s)
2636 return -1;
2637
Taeung Song8560bae2016-02-26 00:13:10 +09002638 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002639 if (!s)
2640 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002641 else
2642 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002643
2644 return 0;
2645}
2646
2647static struct scripting_ops *script_spec__lookup(const char *spec)
2648{
2649 struct script_spec *s = script_spec__find(spec);
2650 if (!s)
2651 return NULL;
2652
2653 return s->ops;
2654}
2655
2656static void list_available_languages(void)
2657{
2658 struct script_spec *s;
2659
2660 fprintf(stderr, "\n");
2661 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002662 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002663
2664 list_for_each_entry(s, &script_specs, node)
2665 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2666
2667 fprintf(stderr, "\n");
2668}
2669
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002670static int parse_scriptname(const struct option *opt __maybe_unused,
2671 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002672{
2673 char spec[PATH_MAX];
2674 const char *script, *ext;
2675 int len;
2676
Tom Zanussif526d682010-01-27 02:27:52 -06002677 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002678 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002679 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002680 }
2681
2682 script = strchr(str, ':');
2683 if (script) {
2684 len = script - str;
2685 if (len >= PATH_MAX) {
2686 fprintf(stderr, "invalid language specifier");
2687 return -1;
2688 }
2689 strncpy(spec, str, len);
2690 spec[len] = '\0';
2691 scripting_ops = script_spec__lookup(spec);
2692 if (!scripting_ops) {
2693 fprintf(stderr, "invalid language specifier");
2694 return -1;
2695 }
2696 script++;
2697 } else {
2698 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002699 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002700 if (!ext) {
2701 fprintf(stderr, "invalid script extension");
2702 return -1;
2703 }
2704 scripting_ops = script_spec__lookup(++ext);
2705 if (!scripting_ops) {
2706 fprintf(stderr, "invalid script extension");
2707 return -1;
2708 }
2709 }
2710
2711 script_name = strdup(script);
2712
2713 return 0;
2714}
2715
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002716static int parse_output_fields(const struct option *opt __maybe_unused,
2717 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002718{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002719 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002720 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002721 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002722 int rc = 0;
2723 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002724 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002725 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002726
2727 if (!str)
2728 return -ENOMEM;
2729
David Ahern2c9e45f72011-03-17 10:03:21 -06002730 /* first word can state for which event type the user is specifying
2731 * the fields. If no type exists, the specified fields apply to all
2732 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002733 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002734 tok = strchr(str, ':');
2735 if (tok) {
2736 *tok = '\0';
2737 tok++;
2738 if (!strcmp(str, "hw"))
2739 type = PERF_TYPE_HARDWARE;
2740 else if (!strcmp(str, "sw"))
2741 type = PERF_TYPE_SOFTWARE;
2742 else if (!strcmp(str, "trace"))
2743 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002744 else if (!strcmp(str, "raw"))
2745 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002746 else if (!strcmp(str, "break"))
2747 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002748 else if (!strcmp(str, "synth"))
2749 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002750 else {
2751 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002752 rc = -EINVAL;
2753 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002754 }
2755
2756 if (output[type].user_set)
2757 pr_warning("Overriding previous field request for %s events.\n",
2758 event_type(type));
2759
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002760 /* Don't override defaults for +- */
2761 if (strchr(tok, '+') || strchr(tok, '-'))
2762 goto parse;
2763
David Ahern2c9e45f72011-03-17 10:03:21 -06002764 output[type].fields = 0;
2765 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002766 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002767
2768 } else {
2769 tok = str;
2770 if (strlen(str) == 0) {
2771 fprintf(stderr,
2772 "Cannot set fields to 'none' for all event types.\n");
2773 rc = -EINVAL;
2774 goto out;
2775 }
2776
Andi Kleen36ce5652017-06-02 08:48:10 -07002777 /* Don't override defaults for +- */
2778 if (strchr(str, '+') || strchr(str, '-'))
2779 goto parse;
2780
David Ahern2c9e45f72011-03-17 10:03:21 -06002781 if (output_set_by_user())
2782 pr_warning("Overriding previous field request for all events.\n");
2783
Adrian Hunter14057202017-06-21 13:17:19 +03002784 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002785 output[j].fields = 0;
2786 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002787 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002788 }
David Ahern1424dc92011-03-09 22:23:28 -07002789 }
2790
Andi Kleen36ce5652017-06-02 08:48:10 -07002791parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002792 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002793 if (*tok == '+') {
2794 if (change == SET)
2795 goto out_badmix;
2796 change = ADD;
2797 tok++;
2798 } else if (*tok == '-') {
2799 if (change == SET)
2800 goto out_badmix;
2801 change = REMOVE;
2802 tok++;
2803 } else {
2804 if (change != SET && change != DEFAULT)
2805 goto out_badmix;
2806 change = SET;
2807 }
2808
David Ahern745f43e2011-03-09 22:23:26 -07002809 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002810 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002811 break;
David Ahern745f43e2011-03-09 22:23:26 -07002812 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002813 if (i == imax && strcmp(tok, "flags") == 0) {
Yang Li85247112021-02-08 16:45:36 +08002814 print_flags = change != REMOVE;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002815 continue;
2816 }
David Ahern745f43e2011-03-09 22:23:26 -07002817 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002818 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002819 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002820 goto out;
2821 }
2822
2823 if (type == -1) {
2824 /* add user option to all events types for
2825 * which it is valid
2826 */
Adrian Hunter14057202017-06-21 13:17:19 +03002827 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002828 if (output[j].invalid_fields & all_output_options[i].field) {
2829 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2830 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002831 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002832 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002833 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002834 output[j].user_set_fields &= ~all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002835 output[j].user_unset_fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002836 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002837 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002838 output[j].user_set_fields |= all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002839 output[j].user_unset_fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002840 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002841 output[j].user_set = true;
2842 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002843 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002844 }
2845 } else {
2846 if (output[type].invalid_fields & all_output_options[i].field) {
2847 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2848 all_output_options[i].str, event_type(type));
2849
2850 rc = -EINVAL;
2851 goto out;
2852 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002853 if (change == REMOVE)
2854 output[type].fields &= ~all_output_options[i].field;
2855 else
2856 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002857 output[type].user_set = true;
2858 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002859 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002860 }
2861
2862 if (type >= 0) {
2863 if (output[type].fields == 0) {
2864 pr_debug("No fields requested for %s type. "
2865 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002866 }
David Ahern1424dc92011-03-09 22:23:28 -07002867 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002868 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002869
Andi Kleen36ce5652017-06-02 08:48:10 -07002870out_badmix:
2871 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2872 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002873out:
David Ahern745f43e2011-03-09 22:23:26 -07002874 free(str);
2875 return rc;
2876}
2877
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002878#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2879 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2880 if ((lang_dirent->d_type == DT_DIR || \
2881 (lang_dirent->d_type == DT_UNKNOWN && \
2882 is_directory(scripts_path, lang_dirent))) && \
2883 (strcmp(lang_dirent->d_name, ".")) && \
2884 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002885
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002886#define for_each_script(lang_path, lang_dir, script_dirent) \
2887 while ((script_dirent = readdir(lang_dir)) != NULL) \
2888 if (script_dirent->d_type != DT_DIR && \
2889 (script_dirent->d_type != DT_UNKNOWN || \
2890 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002891
2892
2893#define RECORD_SUFFIX "-record"
2894#define REPORT_SUFFIX "-report"
2895
2896struct script_desc {
2897 struct list_head node;
2898 char *name;
2899 char *half_liner;
2900 char *args;
2901};
2902
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002903static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002904
2905static struct script_desc *script_desc__new(const char *name)
2906{
2907 struct script_desc *s = zalloc(sizeof(*s));
2908
Tom Zanussib5b87312010-11-10 08:16:51 -06002909 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002910 s->name = strdup(name);
2911
2912 return s;
2913}
2914
2915static void script_desc__delete(struct script_desc *s)
2916{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002917 zfree(&s->name);
2918 zfree(&s->half_liner);
2919 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002920 free(s);
2921}
2922
2923static void script_desc__add(struct script_desc *s)
2924{
2925 list_add_tail(&s->node, &script_descs);
2926}
2927
2928static struct script_desc *script_desc__find(const char *name)
2929{
2930 struct script_desc *s;
2931
2932 list_for_each_entry(s, &script_descs, node)
2933 if (strcasecmp(s->name, name) == 0)
2934 return s;
2935 return NULL;
2936}
2937
2938static struct script_desc *script_desc__findnew(const char *name)
2939{
2940 struct script_desc *s = script_desc__find(name);
2941
2942 if (s)
2943 return s;
2944
2945 s = script_desc__new(name);
2946 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002947 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002948
2949 script_desc__add(s);
2950
2951 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002952}
2953
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002954static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002955{
2956 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002957 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002958
2959 if (strlen(str) > suffix_len) {
2960 p = str + strlen(str) - suffix_len;
2961 if (!strncmp(p, suffix, suffix_len))
2962 return p;
2963 }
2964
2965 return NULL;
2966}
2967
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002968static int read_script_info(struct script_desc *desc, const char *filename)
2969{
2970 char line[BUFSIZ], *p;
2971 FILE *fp;
2972
2973 fp = fopen(filename, "r");
2974 if (!fp)
2975 return -1;
2976
2977 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002978 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002979 if (strlen(p) == 0)
2980 continue;
2981 if (*p != '#')
2982 continue;
2983 p++;
2984 if (strlen(p) && *p == '!')
2985 continue;
2986
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002987 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002988 if (strlen(p) && p[strlen(p) - 1] == '\n')
2989 p[strlen(p) - 1] = '\0';
2990
2991 if (!strncmp(p, "description:", strlen("description:"))) {
2992 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002993 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002994 continue;
2995 }
2996
2997 if (!strncmp(p, "args:", strlen("args:"))) {
2998 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002999 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003000 continue;
3001 }
3002 }
3003
3004 fclose(fp);
3005
3006 return 0;
3007}
3008
Robert Richter38efb532011-11-25 11:38:40 +01003009static char *get_script_root(struct dirent *script_dirent, const char *suffix)
3010{
3011 char *script_root, *str;
3012
3013 script_root = strdup(script_dirent->d_name);
3014 if (!script_root)
3015 return NULL;
3016
3017 str = (char *)ends_with(script_root, suffix);
3018 if (!str) {
3019 free(script_root);
3020 return NULL;
3021 }
3022
3023 *str = '\0';
3024 return script_root;
3025}
3026
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003027static int list_available_scripts(const struct option *opt __maybe_unused,
3028 const char *s __maybe_unused,
3029 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003030{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003031 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003032 char scripts_path[MAXPATHLEN];
3033 DIR *scripts_dir, *lang_dir;
3034 char script_path[MAXPATHLEN];
3035 char lang_path[MAXPATHLEN];
3036 struct script_desc *desc;
3037 char first_half[BUFSIZ];
3038 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003039
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003040 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003041
3042 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003043 if (!scripts_dir) {
3044 fprintf(stdout,
3045 "open(%s) failed.\n"
3046 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3047 scripts_path);
3048 exit(-1);
3049 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003050
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003051 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003052 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3053 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003054 lang_dir = opendir(lang_path);
3055 if (!lang_dir)
3056 continue;
3057
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003058 for_each_script(lang_path, lang_dir, script_dirent) {
3059 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003060 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003061 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003062 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3063 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003064 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003065 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003066 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003067 }
3068 }
3069
3070 fprintf(stdout, "List of available trace scripts:\n");
3071 list_for_each_entry(desc, &script_descs, node) {
3072 sprintf(first_half, "%s %s", desc->name,
3073 desc->args ? desc->args : "");
3074 fprintf(stdout, " %-36s %s\n", first_half,
3075 desc->half_liner ? desc->half_liner : "");
3076 }
3077
3078 exit(0);
3079}
3080
Feng Tange5f37052012-09-07 16:42:26 +08003081/*
Feng Tang49e639e2012-10-30 11:56:03 +08003082 * Some scripts specify the required events in their "xxx-record" file,
3083 * this function will check if the events in perf.data match those
3084 * mentioned in the "xxx-record".
3085 *
3086 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3087 * which is covered well now. And new parsing code should be added to
3088 * cover the future complexing formats like event groups etc.
3089 */
3090static int check_ev_match(char *dir_name, char *scriptname,
3091 struct perf_session *session)
3092{
3093 char filename[MAXPATHLEN], evname[128];
3094 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003095 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003096 int match, len;
3097 FILE *fp;
3098
Jiri Olsa77f18152018-03-19 09:29:01 +01003099 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003100
3101 fp = fopen(filename, "r");
3102 if (!fp)
3103 return -1;
3104
3105 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003106 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003107 if (*p == '#')
3108 continue;
3109
3110 while (strlen(p)) {
3111 p = strstr(p, "-e");
3112 if (!p)
3113 break;
3114
3115 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003116 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003117 len = strcspn(p, " \t");
3118 if (!len)
3119 break;
3120
3121 snprintf(evname, len + 1, "%s", p);
3122
3123 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003124 evlist__for_each_entry(session->evlist, pos) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03003125 if (!strcmp(evsel__name(pos), evname)) {
Feng Tang49e639e2012-10-30 11:56:03 +08003126 match = 1;
3127 break;
3128 }
3129 }
3130
3131 if (!match) {
3132 fclose(fp);
3133 return -1;
3134 }
3135 }
3136 }
3137
3138 fclose(fp);
3139 return 0;
3140}
3141
3142/*
Feng Tange5f37052012-09-07 16:42:26 +08003143 * Return -1 if none is found, otherwise the actual scripts number.
3144 *
3145 * Currently the only user of this function is the script browser, which
3146 * will list all statically runnable scripts, select one, execute it and
3147 * show the output in a perf browser.
3148 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003149int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3150 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003151{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003152 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003153 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003154 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003155 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003156 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003157 .path = input_name,
3158 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003159 };
Feng Tange5f37052012-09-07 16:42:26 +08003160 char *temp;
3161 int i = 0;
3162
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003163 session = perf_session__new(&data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303164 if (IS_ERR(session))
3165 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003166
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003167 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003168
3169 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003170 if (!scripts_dir) {
3171 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003172 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003173 }
Feng Tange5f37052012-09-07 16:42:26 +08003174
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003175 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003176 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3177 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003178#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003179 if (strstr(lang_path, "perl"))
3180 continue;
3181#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003182#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003183 if (strstr(lang_path, "python"))
3184 continue;
3185#endif
3186
3187 lang_dir = opendir(lang_path);
3188 if (!lang_dir)
3189 continue;
3190
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003191 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08003192 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003193 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003194 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003195 if (i >= num)
3196 break;
3197 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3198 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003199 script_dirent->d_name);
3200 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003201 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003202 (temp - script_dirent->d_name) + 1,
3203 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003204
3205 if (check_ev_match(lang_path,
3206 scripts_array[i], session))
3207 continue;
3208
Feng Tange5f37052012-09-07 16:42:26 +08003209 i++;
3210 }
Feng Tang49e639e2012-10-30 11:56:03 +08003211 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003212 }
3213
Feng Tang49e639e2012-10-30 11:56:03 +08003214 closedir(scripts_dir);
3215 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003216 return i;
3217}
3218
Tom Zanussi38752942009-12-15 02:53:39 -06003219static char *get_script_path(const char *script_root, const char *suffix)
3220{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003221 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003222 char scripts_path[MAXPATHLEN];
3223 char script_path[MAXPATHLEN];
3224 DIR *scripts_dir, *lang_dir;
3225 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003226 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003227
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003228 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003229
3230 scripts_dir = opendir(scripts_path);
3231 if (!scripts_dir)
3232 return NULL;
3233
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003234 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003235 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3236 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003237 lang_dir = opendir(lang_path);
3238 if (!lang_dir)
3239 continue;
3240
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003241 for_each_script(lang_path, lang_dir, script_dirent) {
3242 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003243 if (__script_root && !strcmp(script_root, __script_root)) {
3244 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003245 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003246 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3247 lang_path, script_dirent->d_name);
Andreas Gerstmayr27486a82020-04-02 14:43:38 +02003248 closedir(lang_dir);
Robert Richter38efb532011-11-25 11:38:40 +01003249 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003250 }
3251 free(__script_root);
3252 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003253 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003254 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003255 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003256
Robert Richter38efb532011-11-25 11:38:40 +01003257 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003258}
3259
Tom Zanussib5b87312010-11-10 08:16:51 -06003260static bool is_top_script(const char *script_path)
3261{
Yang Li85247112021-02-08 16:45:36 +08003262 return ends_with(script_path, "top") != NULL;
Tom Zanussib5b87312010-11-10 08:16:51 -06003263}
3264
3265static int has_required_arg(char *script_path)
3266{
3267 struct script_desc *desc;
3268 int n_args = 0;
3269 char *p;
3270
3271 desc = script_desc__new(NULL);
3272
3273 if (read_script_info(desc, script_path))
3274 goto out;
3275
3276 if (!desc->args)
3277 goto out;
3278
3279 for (p = desc->args; *p; p++)
3280 if (*p == '<')
3281 n_args++;
3282out:
3283 script_desc__delete(desc);
3284
3285 return n_args;
3286}
3287
David Ahernd54b1a92012-08-26 12:24:46 -06003288static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003289{
3290 char **__argv = malloc(sizeof(const char *) * argc);
3291
David Ahernd54b1a92012-08-26 12:24:46 -06003292 if (!__argv) {
3293 pr_err("malloc failed\n");
3294 return -1;
3295 }
3296
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003297 memcpy(__argv, argv, sizeof(const char *) * argc);
3298 argc = parse_options(argc, (const char **)__argv, record_options,
3299 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3300 free(__argv);
3301
David Ahernd54b1a92012-08-26 12:24:46 -06003302 system_wide = (argc == 0);
3303
3304 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003305}
3306
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003307static void script__setup_sample_type(struct perf_script *script)
3308{
3309 struct perf_session *session = script->session;
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03003310 u64 sample_type = evlist__combined_sample_type(session->evlist);
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003311
3312 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3313 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003314 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003315 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003316 dwarf_callchain_users = true;
3317 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003318 callchain_param.record_mode = CALLCHAIN_LBR;
3319 else
3320 callchain_param.record_mode = CALLCHAIN_FP;
3321 }
Kan Liang680d1252020-03-19 13:25:14 -07003322
3323 if (script->stitch_lbr && (callchain_param.record_mode != CALLCHAIN_LBR)) {
3324 pr_warning("Can't find LBR callchain. Switch off --stitch-lbr.\n"
3325 "Please apply --call-graph lbr when recording.\n");
3326 script->stitch_lbr = false;
3327 }
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003328}
3329
Jiri Olsa89f16882018-09-13 14:54:03 +02003330static int process_stat_round_event(struct perf_session *session,
3331 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003332{
Jiri Olsa72932372019-08-28 15:57:16 +02003333 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003334 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003335
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003336 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003337 perf_stat_process_counter(&stat_config, counter);
3338 process_stat(counter, round->time);
3339 }
3340
3341 process_stat_interval(round->time);
3342 return 0;
3343}
3344
Jiri Olsa89f16882018-09-13 14:54:03 +02003345static int process_stat_config_event(struct perf_session *session __maybe_unused,
3346 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003347{
3348 perf_event__read_stat_config(&stat_config, &event->stat_config);
3349 return 0;
3350}
3351
Jiri Olsacfc88742016-01-05 22:09:06 +01003352static int set_maps(struct perf_script *script)
3353{
Jiri Olsa63503db2019-07-21 13:23:52 +02003354 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003355
3356 if (!script->cpus || !script->threads)
3357 return 0;
3358
3359 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3360 return -EINVAL;
3361
Jiri Olsa453fa032019-07-21 13:24:43 +02003362 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003363
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003364 if (evlist__alloc_stats(evlist, true))
Jiri Olsacfc88742016-01-05 22:09:06 +01003365 return -ENOMEM;
3366
3367 script->allocated = true;
3368 return 0;
3369}
3370
3371static
Jiri Olsa89f16882018-09-13 14:54:03 +02003372int process_thread_map_event(struct perf_session *session,
3373 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003374{
Jiri Olsa89f16882018-09-13 14:54:03 +02003375 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003376 struct perf_script *script = container_of(tool, struct perf_script, tool);
3377
3378 if (script->threads) {
3379 pr_warning("Extra thread map event, ignoring.\n");
3380 return 0;
3381 }
3382
3383 script->threads = thread_map__new_event(&event->thread_map);
3384 if (!script->threads)
3385 return -ENOMEM;
3386
3387 return set_maps(script);
3388}
3389
3390static
Jiri Olsa89f16882018-09-13 14:54:03 +02003391int process_cpu_map_event(struct perf_session *session,
3392 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003393{
Jiri Olsa89f16882018-09-13 14:54:03 +02003394 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003395 struct perf_script *script = container_of(tool, struct perf_script, tool);
3396
3397 if (script->cpus) {
3398 pr_warning("Extra cpu map event, ignoring.\n");
3399 return 0;
3400 }
3401
3402 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3403 if (!script->cpus)
3404 return -ENOMEM;
3405
3406 return set_maps(script);
3407}
3408
Jiri Olsa89f16882018-09-13 14:54:03 +02003409static int process_feature_event(struct perf_session *session,
3410 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303411{
3412 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003413 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303414 return 0;
3415}
3416
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003417#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003418static int perf_script__process_auxtrace_info(struct perf_session *session,
3419 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003420{
Jiri Olsa89f16882018-09-13 14:54:03 +02003421 struct perf_tool *tool = session->tool;
3422
3423 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003424
3425 if (ret == 0) {
3426 struct perf_script *script = container_of(tool, struct perf_script, tool);
3427
3428 ret = perf_script__setup_per_event_dump(script);
3429 }
3430
3431 return ret;
3432}
3433#else
3434#define perf_script__process_auxtrace_info 0
3435#endif
3436
Andi Kleenb585ebd2018-09-20 11:05:36 -07003437static int parse_insn_trace(const struct option *opt __maybe_unused,
3438 const char *str __maybe_unused,
3439 int unset __maybe_unused)
3440{
3441 parse_output_fields(NULL, "+insn,-event,-period", 0);
3442 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003443 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003444 return 0;
3445}
3446
3447static int parse_xed(const struct option *opt __maybe_unused,
3448 const char *str __maybe_unused,
3449 int unset __maybe_unused)
3450{
Andi Kleen8c3e05c2020-05-21 19:09:14 -07003451 if (isatty(1))
3452 force_pager("xed -F insn: -A -64 | less");
3453 else
3454 force_pager("xed -F insn: -A -64");
Andi Kleenb585ebd2018-09-20 11:05:36 -07003455 return 0;
3456}
3457
Andi Kleend1b15522018-09-20 11:05:38 -07003458static int parse_call_trace(const struct option *opt __maybe_unused,
3459 const char *str __maybe_unused,
3460 int unset __maybe_unused)
3461{
3462 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3463 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003464 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003465 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003466 return 0;
3467}
3468
3469static int parse_callret_trace(const struct option *opt __maybe_unused,
3470 const char *str __maybe_unused,
3471 int unset __maybe_unused)
3472{
3473 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3474 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003475 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003476 return 0;
3477}
3478
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003479int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003480{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003481 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003482 bool header = false;
3483 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003484 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003485 char *rec_script_path = NULL;
3486 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003487 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003488 struct itrace_synth_opts itrace_synth_opts = {
3489 .set = false,
3490 .default_no_sample = true,
3491 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003492 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003493 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003494 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003495 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003496 struct perf_script script = {
3497 .tool = {
3498 .sample = process_sample_event,
3499 .mmap = perf_event__process_mmap,
3500 .mmap2 = perf_event__process_mmap2,
3501 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303502 .namespaces = perf_event__process_namespaces,
Namhyung Kim160d4af2020-03-25 21:45:36 +09003503 .cgroup = perf_event__process_cgroup,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003504 .exit = perf_event__process_exit,
3505 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003506 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003507 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003508 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303509 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003510 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003511 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003512 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003513 .auxtrace = perf_event__process_auxtrace,
3514 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003515 .stat = perf_event__process_stat_event,
3516 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003517 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003518 .thread_map = process_thread_map_event,
3519 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003520 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003521 .ordering_requires_timestamps = true,
3522 },
3523 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003524 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003525 .mode = PERF_DATA_MODE_READ,
3526 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003527 const struct option options[] = {
3528 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3529 "dump raw trace in ASCII"),
3530 OPT_INCR('v', "verbose", &verbose,
3531 "be more verbose (show symbol address, etc)"),
3532 OPT_BOOLEAN('L', "Latency", &latency_format,
3533 "show latency attributes (irqs/preemption disabled, etc)"),
3534 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3535 list_available_scripts),
3536 OPT_CALLBACK('s', "script", NULL, "name",
3537 "script file name (lang:script name, script name, or *)",
3538 parse_scriptname),
3539 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3540 "generate perf-script.xx script in specified language"),
3541 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3542 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3543 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003544 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3545 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003546 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3547 "file", "vmlinux pathname"),
3548 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3549 "file", "kallsyms pathname"),
3550 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3551 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003552 OPT_CALLBACK(0, "symfs", NULL, "directory",
3553 "Look for files with symbols relative to this directory",
3554 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003555 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003556 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003557 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003558 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003559 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303560 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3561 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Kan Liang6b9bae62020-12-16 10:57:57 -08003562 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc,tod,"
Stephane Eranianc513de82021-01-05 11:57:50 -08003563 "data_page_size,code_page_size",
Andi Kleen48d02a12017-02-23 15:46:34 -08003564 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003565 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3566 "system-wide collection from all CPUs"),
Jin Yao4b799a92021-01-25 07:27:50 +08003567 OPT_STRING(0, "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
3568 "only consider symbols in these DSOs"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003569 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3570 "only consider these symbols"),
Jin Yao61d9fc42021-02-07 16:09:35 +08003571 OPT_INTEGER(0, "addr-range", &symbol_conf.addr_range,
3572 "Use with -S to list traced records within address range"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003573 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3574 "Decode instructions from itrace", parse_insn_trace),
3575 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3576 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003577 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3578 "Decode calls from from itrace", parse_call_trace),
3579 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3580 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003581 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3582 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003583 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3584 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003585 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3586 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3587 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003588 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3589 "only consider symbols in these pids"),
3590 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3591 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003592 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3593 "Set the maximum stack depth when parsing the callchain, "
3594 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003595 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003596 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003597 OPT_BOOLEAN(0, "deltatime", &deltatime, "Show time stamps relative to previous event"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003598 OPT_BOOLEAN('I', "show-info", &show_full_info,
3599 "display extended information from perf.data file"),
3600 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3601 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003602 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3603 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003604 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3605 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003606 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3607 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303608 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3609 "Show namespace events (if recorded)"),
Namhyung Kim160d4af2020-03-25 21:45:36 +09003610 OPT_BOOLEAN('\0', "show-cgroup-events", &script.show_cgroup_events,
3611 "Show cgroup events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003612 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3613 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003614 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3615 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003616 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3617 "Show bpf related events (if recorded)"),
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03003618 OPT_BOOLEAN('\0', "show-text-poke-events", &script.show_text_poke_events,
3619 "Show text poke related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003620 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3621 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003622 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003623 OPT_INTEGER(0, "max-blocks", &max_blocks,
3624 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003625 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003626 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003627 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003628 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003629 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003630 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3631 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003632 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3633 "Enable symbol demangling"),
3634 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3635 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003636 OPT_STRING(0, "time", &script.time_str, "str",
3637 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003638 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3639 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003640 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3641 "guest mount directory under which every guest os"
3642 " instance has a subdir"),
3643 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3644 "file", "file saving guest os vmlinux"),
3645 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3646 "file", "file saving guest os /proc/kallsyms"),
3647 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3648 "file", "file saving guest os /proc/modules"),
Kan Liang680d1252020-03-19 13:25:14 -07003649 OPT_BOOLEAN('\0', "stitch-lbr", &script.stitch_lbr,
3650 "Enable LBR callgraph stitching approach"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003651 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003652 OPT_END()
3653 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003654 const char * const script_subcommands[] = { "record", "report", NULL };
3655 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003656 "perf script [<options>]",
3657 "perf script [<options>] record <script> [<record-options>] <command>",
3658 "perf script [<options>] report <script> [script-args]",
3659 "perf script [<options>] <script> [<record-options>] <command>",
3660 "perf script [<options>] <top-script> [script-args]",
3661 NULL
3662 };
Tom Zanussi38752942009-12-15 02:53:39 -06003663
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003664 perf_set_singlethreaded();
3665
Tom Zanussib5b87312010-11-10 08:16:51 -06003666 setup_scripting();
3667
Yunlong Song40cae2b2015-03-18 21:35:54 +08003668 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003669 PARSE_OPT_STOP_AT_NON_OPTION);
3670
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003671 if (symbol_conf.guestmount ||
3672 symbol_conf.default_guest_vmlinux_name ||
3673 symbol_conf.default_guest_kallsyms ||
3674 symbol_conf.default_guest_modules) {
3675 /*
3676 * Enable guest sample processing.
3677 */
3678 perf_guest = true;
3679 }
3680
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003681 data.path = input_name;
3682 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003683
Tom Zanussib5b87312010-11-10 08:16:51 -06003684 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3685 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3686 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003687 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003688 }
3689
Tom Zanussib5b87312010-11-10 08:16:51 -06003690 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3691 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3692 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003693 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003694 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003695 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003696 return -1;
3697 }
Tom Zanussi38752942009-12-15 02:53:39 -06003698 }
3699
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003700 if (reltime && deltatime) {
3701 fprintf(stderr,
3702 "reltime and deltatime - the two don't get along well. "
3703 "Please limit to --reltime or --deltatime.\n");
3704 return -1;
3705 }
3706
Adrian Hunter1c5c25b2020-04-01 13:16:05 +03003707 if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003708 itrace_synth_opts.callchain_sz > scripting_max_stack)
3709 scripting_max_stack = itrace_synth_opts.callchain_sz;
3710
Ben Hutchings44e668c2010-10-10 16:10:03 +01003711 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003712 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003713
Tom Zanussib5b87312010-11-10 08:16:51 -06003714 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003715 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003716 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003717 pid_t pid;
3718
Tom Zanussib5b87312010-11-10 08:16:51 -06003719 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3720 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3721
3722 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003723 usage_with_options_msg(script_usage, options,
3724 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003725 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003726 }
3727
Tom Zanussib5b87312010-11-10 08:16:51 -06003728 if (is_top_script(argv[0])) {
3729 rep_args = argc - 1;
3730 } else {
3731 int rec_args;
3732
3733 rep_args = has_required_arg(rep_script_path);
3734 rec_args = (argc - 1) - rep_args;
3735 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003736 usage_with_options_msg(script_usage, options,
3737 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003738 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003739 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003740 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003741 }
3742
3743 if (pipe(live_pipe) < 0) {
3744 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003745 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003746 }
3747
3748 pid = fork();
3749 if (pid < 0) {
3750 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003751 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003752 }
3753
3754 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003755 j = 0;
3756
Tom Zanussia0cccc22010-04-01 23:59:25 -05003757 dup2(live_pipe[1], 1);
3758 close(live_pipe[0]);
3759
Robert Richter317df652011-11-25 15:05:25 +01003760 if (is_top_script(argv[0])) {
3761 system_wide = true;
3762 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003763 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3764 err = -1;
3765 goto out;
3766 }
Robert Richter317df652011-11-25 15:05:25 +01003767 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003768
3769 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003770 if (!__argv) {
3771 pr_err("malloc failed\n");
3772 err = -ENOMEM;
3773 goto out;
3774 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003775
Tom Zanussib5b87312010-11-10 08:16:51 -06003776 __argv[j++] = "/bin/sh";
3777 __argv[j++] = rec_script_path;
3778 if (system_wide)
3779 __argv[j++] = "-a";
3780 __argv[j++] = "-q";
3781 __argv[j++] = "-o";
3782 __argv[j++] = "-";
3783 for (i = rep_args + 1; i < argc; i++)
3784 __argv[j++] = argv[i];
3785 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003786
3787 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003788 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003789 exit(-1);
3790 }
3791
3792 dup2(live_pipe[0], 0);
3793 close(live_pipe[1]);
3794
Tom Zanussib5b87312010-11-10 08:16:51 -06003795 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003796 if (!__argv) {
3797 pr_err("malloc failed\n");
3798 err = -ENOMEM;
3799 goto out;
3800 }
3801
Tom Zanussib5b87312010-11-10 08:16:51 -06003802 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003803 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003804 __argv[j++] = rep_script_path;
3805 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003806 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003807 __argv[j++] = "-i";
3808 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003809 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003810
3811 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003812 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003813 exit(-1);
3814 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06003815
Tom Zanussib5b87312010-11-10 08:16:51 -06003816 if (rec_script_path)
3817 script_path = rec_script_path;
3818 if (rep_script_path)
3819 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003820
Tom Zanussib5b87312010-11-10 08:16:51 -06003821 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003822 j = 0;
3823
Robert Richter317df652011-11-25 15:05:25 +01003824 if (!rec_script_path)
3825 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003826 else if (!system_wide) {
3827 if (have_cmd(argc - 1, &argv[1]) != 0) {
3828 err = -1;
3829 goto out;
3830 }
3831 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003832
3833 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003834 if (!__argv) {
3835 pr_err("malloc failed\n");
3836 err = -ENOMEM;
3837 goto out;
3838 }
3839
Tom Zanussib5b87312010-11-10 08:16:51 -06003840 __argv[j++] = "/bin/sh";
3841 __argv[j++] = script_path;
3842 if (system_wide)
3843 __argv[j++] = "-a";
3844 for (i = 2; i < argc; i++)
3845 __argv[j++] = argv[i];
3846 __argv[j++] = NULL;
3847
3848 execvp("/bin/sh", (char **)__argv);
3849 free(__argv);
3850 exit(-1);
3851 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003852
Milian Wolffc1c9b962018-10-21 21:14:23 +02003853 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06003854 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02003855 use_browser = 0;
3856 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003857
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003858 session = perf_session__new(&data, false, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303859 if (IS_ERR(session))
3860 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003861
Jiri Olsae90debd2013-12-09 11:02:50 +01003862 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003863 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003864 perf_session__fprintf_info(session, stdout, show_full_info);
3865 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003866 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003867 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003868 if (show_full_info)
3869 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003870
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003871 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003872 goto out_delete;
3873
Andi Kleen3ab481a2019-03-05 06:47:45 -08003874 uname(&uts);
Song Liu9d491692019-06-20 18:44:38 -07003875 if (data.is_pipe || /* assume pipe_mode indicates native_arch */
3876 !strcmp(uts.machine, session->header.env.arch) ||
Andi Kleen3ab481a2019-03-05 06:47:45 -08003877 (!strcmp(uts.machine, "x86_64") &&
3878 !strcmp(session->header.env.arch, "i386")))
3879 native_arch = true;
3880
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003881 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003882 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003883
Andi Kleen99f753f2018-09-20 11:05:39 -07003884 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
3885 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03003886 itrace_synth_opts.thread_stack = true;
3887
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003888 session->itrace_synth_opts = &itrace_synth_opts;
3889
Anton Blanchard5d67be92011-07-04 21:57:50 +10003890 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003891 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3892 if (err < 0)
3893 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003894 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003895 }
3896
David Ahern1424dc92011-03-09 22:23:28 -07003897 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003898 symbol_conf.use_callchain = true;
3899 else
3900 symbol_conf.use_callchain = false;
3901
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003902 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04003903 tep_set_function_resolver(session->tevent.pevent,
3904 machine__resolve_kernel_addr,
3905 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003906 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003907 err = -1;
3908 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003909 }
3910
Tom Zanussi956ffd02009-11-25 01:15:46 -06003911 if (generate_script_lang) {
3912 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003913 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003914
David Ahern2c9e45f72011-03-17 10:03:21 -06003915 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003916 fprintf(stderr,
3917 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003918 err = -EINVAL;
3919 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003920 }
3921
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003922 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003923 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003924 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003925 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003926 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003927 }
3928
3929 err = fstat(input, &perf_stat);
3930 if (err < 0) {
3931 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003932 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003933 }
3934
3935 if (!perf_stat.st_size) {
3936 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003937 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003938 }
3939
3940 scripting_ops = script_spec__lookup(generate_script_lang);
3941 if (!scripting_ops) {
3942 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003943 err = -ENOENT;
3944 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003945 }
3946
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003947 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003948 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003949 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003950 }
3951
3952 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003953 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003954 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003955 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003956 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003957 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003958 }
3959
David Ahern9cbdb702011-04-06 21:54:20 -06003960
3961 err = perf_session__check_output_opt(session);
3962 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003963 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003964
Jin Yao284c4e12019-03-01 18:13:06 +08003965 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07003966 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08003967 &script.ptime_range,
3968 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07003969 &script.range_num,
3970 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08003971 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08003972 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03003973
3974 itrace_synth_opts__set_time_range(&itrace_synth_opts,
3975 script.ptime_range,
3976 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07003977 }
3978
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03003979 err = evswitch__init(&script.evswitch, session->evlist, stderr);
3980 if (err)
3981 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03003982
Milian Wolffb13b04d2020-06-13 01:03:33 +02003983 if (zstd_init(&(session->zstd_data), 0) < 0)
3984 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
3985
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003986 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003987
Adrian Hunterd445dd22014-08-15 22:08:37 +03003988 flush_scripting();
3989
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003990out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03003991 if (script.ptime_range) {
3992 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08003993 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03003994 }
Jin Yaocc2ef582018-01-10 23:00:33 +08003995
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003996 evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003997 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003998
3999 if (script_started)
4000 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06004001out:
4002 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004003}