blob: 9e995311a9b8d33304ea16ed4d74760e6b7fd622 [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,
191 OUTPUT_TYPE_MAX
192};
193
David Ahern745f43e2011-03-09 22:23:26 -0700194/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600195static struct {
196 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600197 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400198 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600199 u64 fields;
200 u64 invalid_fields;
Andi Kleen4b6ac812019-02-24 07:37:12 -0800201 u64 user_set_fields;
Adrian Hunterb5164082020-05-27 21:02:50 +0300202 u64 user_unset_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300203} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700204
David Ahern2c9e45f72011-03-17 10:03:21 -0600205 [PERF_TYPE_HARDWARE] = {
206 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700207
David Ahern2c9e45f72011-03-17 10:03:21 -0600208 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
209 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600210 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530211 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
212 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600213
Wang Nan30372f02016-02-24 11:20:45 +0000214 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600215 },
216
217 [PERF_TYPE_SOFTWARE] = {
218 .user_set = false,
219
220 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
221 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600222 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530223 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
224 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
225 PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600226
227 .invalid_fields = PERF_OUTPUT_TRACE,
228 },
229
230 [PERF_TYPE_TRACEPOINT] = {
231 .user_set = false,
232
233 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
234 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000235 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600236 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700237
Seeteena Thoufeekfad76d42018-06-08 16:32:28 +0530238 [PERF_TYPE_HW_CACHE] = {
239 .user_set = false,
240
241 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
242 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
243 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
244 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
245 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
246
247 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
248 },
249
Arun Sharma0817a6a2011-04-14 10:38:18 -0700250 [PERF_TYPE_RAW] = {
251 .user_set = false,
252
253 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
254 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600255 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530256 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
257 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
258 PERF_OUTPUT_ADDR | PERF_OUTPUT_DATA_SRC |
Kan Liang6b9bae62020-12-16 10:57:57 -0800259 PERF_OUTPUT_WEIGHT | PERF_OUTPUT_PHYS_ADDR |
Stephane Eranianc513de82021-01-05 11:57:50 -0800260 PERF_OUTPUT_DATA_PAGE_SIZE | PERF_OUTPUT_CODE_PAGE_SIZE,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700261
Wang Nan30372f02016-02-24 11:20:45 +0000262 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700263 },
Wang Nan27cfef02015-12-08 02:25:43 +0000264
265 [PERF_TYPE_BREAKPOINT] = {
266 .user_set = false,
267
268 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
269 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
270 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530271 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
272 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
Wang Nan27cfef02015-12-08 02:25:43 +0000273
Wang Nan30372f02016-02-24 11:20:45 +0000274 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000275 },
Adrian Hunter14057202017-06-21 13:17:19 +0300276
277 [OUTPUT_TYPE_SYNTH] = {
278 .user_set = false,
279
280 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
281 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
282 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530283 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
284 PERF_OUTPUT_DSO | PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300285
286 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
287 },
David Ahern1424dc92011-03-09 22:23:28 -0700288};
David Ahern745f43e2011-03-09 22:23:26 -0700289
Jiri Olsa32dcd022019-07-21 13:23:51 +0200290struct evsel_script {
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300291 char *filename;
292 FILE *fp;
293 u64 samples;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800294 /* For metric output */
295 u64 val;
296 int gnum;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300297};
298
Jiri Olsa32dcd022019-07-21 13:23:51 +0200299static inline struct evsel_script *evsel_script(struct evsel *evsel)
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800300{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200301 return (struct evsel_script *)evsel->priv;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800302}
303
Jiri Olsa32dcd022019-07-21 13:23:51 +0200304static struct evsel_script *perf_evsel_script__new(struct evsel *evsel,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100305 struct perf_data *data)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300306{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200307 struct evsel_script *es = zalloc(sizeof(*es));
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300308
309 if (es != NULL) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300310 if (asprintf(&es->filename, "%s.%s.dump", data->file.path, evsel__name(evsel)) < 0)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300311 goto out_free;
312 es->fp = fopen(es->filename, "w");
313 if (es->fp == NULL)
314 goto out_free_filename;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300315 }
316
317 return es;
318out_free_filename:
319 zfree(&es->filename);
320out_free:
321 free(es);
322 return NULL;
323}
324
Jiri Olsa32dcd022019-07-21 13:23:51 +0200325static void perf_evsel_script__delete(struct evsel_script *es)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300326{
327 zfree(&es->filename);
328 fclose(es->fp);
329 es->fp = NULL;
330 free(es);
331}
332
Jiri Olsa32dcd022019-07-21 13:23:51 +0200333static int perf_evsel_script__fprintf(struct evsel_script *es, FILE *fp)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300334{
335 struct stat st;
336
337 fstat(fileno(es->fp), &st);
338 return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
339 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
340}
341
Adrian Hunter14057202017-06-21 13:17:19 +0300342static inline int output_type(unsigned int type)
343{
344 switch (type) {
345 case PERF_TYPE_SYNTH:
346 return OUTPUT_TYPE_SYNTH;
347 default:
348 return type;
349 }
350}
351
352static inline unsigned int attr_type(unsigned int type)
353{
354 switch (type) {
355 case OUTPUT_TYPE_SYNTH:
356 return PERF_TYPE_SYNTH;
357 default:
358 return type;
359 }
360}
361
David Ahern2c9e45f72011-03-17 10:03:21 -0600362static bool output_set_by_user(void)
363{
364 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300365 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600366 if (output[j].user_set)
367 return true;
368 }
369 return false;
370}
David Ahern745f43e2011-03-09 22:23:26 -0700371
David Ahern9cbdb702011-04-06 21:54:20 -0600372static const char *output_field2str(enum perf_output_field field)
373{
374 int i, imax = ARRAY_SIZE(all_output_options);
375 const char *str = "";
376
377 for (i = 0; i < imax; ++i) {
378 if (all_output_options[i].field == field) {
379 str = all_output_options[i].str;
380 break;
381 }
382 }
383 return str;
384}
385
Adrian Hunter14057202017-06-21 13:17:19 +0300386#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700387
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300388static int evsel__do_check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
389 enum perf_output_field field, bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700390{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200391 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300392 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600393 const char *evname;
394
395 if (attr->sample_type & sample_type)
396 return 0;
397
Andi Kleen4b6ac812019-02-24 07:37:12 -0800398 if (output[type].user_set_fields & field) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300399 if (allow_user_set)
400 return 0;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300401 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600402 pr_err("Samples for '%s' event do not have %s attribute set. "
403 "Cannot print '%s' field.\n",
404 evname, sample_msg, output_field2str(field));
405 return -1;
406 }
407
408 /* user did not ask for it explicitly so remove from the default list */
409 output[type].fields &= ~field;
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300410 evname = evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600411 pr_debug("Samples for '%s' event do not have %s attribute set. "
412 "Skipping '%s' field.\n",
413 evname, sample_msg, output_field2str(field));
414
415 return 0;
416}
417
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300418static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg,
419 enum perf_output_field field)
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300420{
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300421 return evsel__do_check_stype(evsel, sample_type, sample_msg, field, false);
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300422}
423
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300424static int evsel__check_attr(struct evsel *evsel, struct perf_session *session)
David Ahern9cbdb702011-04-06 21:54:20 -0600425{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200426 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300427 bool allow_user_set;
428
Jiri Olsae099eba2016-01-05 22:09:09 +0100429 if (perf_header__has_feat(&session->header, HEADER_STAT))
430 return 0;
431
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300432 allow_user_set = perf_header__has_feat(&session->header,
433 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600434
David Ahern1424dc92011-03-09 22:23:28 -0700435 if (PRINT_FIELD(TRACE) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300436 !perf_session__has_traces(session, "record -R"))
David Ahern1424dc92011-03-09 22:23:28 -0700437 return -EINVAL;
438
David Ahern787bef12011-05-27 14:28:43 -0600439 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300440 if (evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP", PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700441 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700442 }
David Ahern7cec0922011-05-30 13:08:23 -0600443
444 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300445 evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR", PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600446 return -EINVAL;
447
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100448 if (PRINT_FIELD(DATA_SRC) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300449 evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC", PERF_OUTPUT_DATA_SRC))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100450 return -EINVAL;
451
452 if (PRINT_FIELD(WEIGHT) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300453 evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT", PERF_OUTPUT_WEIGHT))
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100454 return -EINVAL;
455
Andi Kleen37fed3d2018-09-18 05:32:09 -0700456 if (PRINT_FIELD(SYM) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300457 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
David Ahern7cec0922011-05-30 13:08:23 -0600458 pr_err("Display of symbols requested but neither sample IP nor "
Andi Kleen37fed3d2018-09-18 05:32:09 -0700459 "sample address\navailable. Hence, no addresses to convert "
David Ahern7cec0922011-05-30 13:08:23 -0600460 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600461 return -EINVAL;
462 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900463 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
464 pr_err("Display of offsets requested but symbol is not"
465 "selected.\n");
466 return -EINVAL;
467 }
Andi Kleen37fed3d2018-09-18 05:32:09 -0700468 if (PRINT_FIELD(DSO) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300469 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
Andi Kleen37fed3d2018-09-18 05:32:09 -0700470 pr_err("Display of DSO requested but no address to convert.\n");
David Ahern610723f2011-05-27 14:28:44 -0600471 return -EINVAL;
472 }
Andi Kleendd2e18e2018-12-03 16:18:48 -0800473 if ((PRINT_FIELD(SRCLINE) || PRINT_FIELD(SRCCODE)) && !PRINT_FIELD(IP)) {
Adrian Huntercc8fae12013-12-06 09:42:57 +0200474 pr_err("Display of source line number requested but sample IP is not\n"
475 "selected. Hence, no address to lookup the source line number.\n");
476 return -EINVAL;
477 }
Adrian Hunter0cd032d2019-11-27 11:53:21 +0200478 if (PRINT_FIELD(BRSTACKINSN) && !allow_user_set &&
Arnaldo Carvalho de Melo92c7d7c2020-06-17 09:31:25 -0300479 !(evlist__combined_branch_type(session->evlist) & PERF_SAMPLE_BRANCH_ANY)) {
Andi Kleen48d02a12017-02-23 15:46:34 -0800480 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
481 "Hint: run 'perf record -b ...'\n");
482 return -EINVAL;
483 }
David Ahern1424dc92011-03-09 22:23:28 -0700484 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300485 evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID", PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700486 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700487
488 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300489 evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME", PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700490 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700491
492 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300493 evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU", PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700494 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600495
Stephane Eranianfc36f942015-08-31 18:41:10 +0200496 if (PRINT_FIELD(IREGS) &&
Adrian Hunteradd07cc2020-06-30 16:39:34 +0300497 evsel__do_check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS", PERF_OUTPUT_IREGS, allow_user_set))
Stephane Eranianfc36f942015-08-31 18:41:10 +0200498 return -EINVAL;
499
Andi Kleenb1491ac2017-09-05 11:40:57 -0700500 if (PRINT_FIELD(UREGS) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300501 evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS", PERF_OUTPUT_UREGS))
Andi Kleenb1491ac2017-09-05 11:40:57 -0700502 return -EINVAL;
503
Kan Liang49d58f02017-08-29 13:11:11 -0400504 if (PRINT_FIELD(PHYS_ADDR) &&
Arnaldo Carvalho de Meloec98b6d2020-05-04 13:57:01 -0300505 evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR", PERF_OUTPUT_PHYS_ADDR))
Kan Liang49d58f02017-08-29 13:11:11 -0400506 return -EINVAL;
507
Kan Liang6b9bae62020-12-16 10:57:57 -0800508 if (PRINT_FIELD(DATA_PAGE_SIZE) &&
509 evsel__check_stype(evsel, PERF_SAMPLE_DATA_PAGE_SIZE, "DATA_PAGE_SIZE", PERF_OUTPUT_DATA_PAGE_SIZE))
510 return -EINVAL;
511
Stephane Eranianc513de82021-01-05 11:57:50 -0800512 if (PRINT_FIELD(CODE_PAGE_SIZE) &&
513 evsel__check_stype(evsel, PERF_SAMPLE_CODE_PAGE_SIZE, "CODE_PAGE_SIZE", PERF_OUTPUT_CODE_PAGE_SIZE))
514 return -EINVAL;
515
David Ahern9cbdb702011-04-06 21:54:20 -0600516 return 0;
517}
518
Adrian Hunter7ea95722013-11-01 15:51:30 +0200519static void set_print_ip_opts(struct perf_event_attr *attr)
520{
Adrian Hunter14057202017-06-21 13:17:19 +0300521 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200522
523 output[type].print_ip_opts = 0;
524 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300525 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200526
527 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300528 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200529
530 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300531 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200532
533 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300534 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200535
536 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300537 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200538}
539
David Ahern9cbdb702011-04-06 21:54:20 -0600540/*
541 * verify all user requested events exist and the samples
542 * have the expected data
543 */
544static int perf_session__check_output_opt(struct perf_session *session)
545{
Jiri Olsae534bfb2020-08-05 11:34:44 +0200546 bool tod = false;
He Kuang40f20e52016-05-16 04:51:19 +0000547 unsigned int j;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200548 struct evsel *evsel;
David Ahern9cbdb702011-04-06 21:54:20 -0600549
Adrian Hunter14057202017-06-21 13:17:19 +0300550 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
551 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600552
553 /*
554 * even if fields is set to 0 (ie., show nothing) event must
555 * exist if user explicitly includes it on the command line
556 */
Adrian Hunter14057202017-06-21 13:17:19 +0300557 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
558 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600559 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300560 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600561 event_type(j));
562 return -1;
563 }
564
565 if (evsel && output[j].fields &&
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -0300566 evsel__check_attr(evsel, session))
David Ahern9cbdb702011-04-06 21:54:20 -0600567 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400568
569 if (evsel == NULL)
570 continue;
571
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200572 set_print_ip_opts(&evsel->core.attr);
Jiri Olsae534bfb2020-08-05 11:34:44 +0200573 tod |= output[j].fields & PERF_OUTPUT_TOD;
David Ahern1424dc92011-03-09 22:23:28 -0700574 }
575
Adrian Hunter98526ee2014-07-31 09:00:59 +0300576 if (!no_callchain) {
577 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000578 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300579
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300580 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000581 not_pipe = true;
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300582 if (evsel__has_callchain(evsel)) {
Adrian Hunter98526ee2014-07-31 09:00:59 +0300583 use_callchain = true;
584 break;
585 }
586 }
He Kuang71ac8992016-08-04 11:25:43 +0000587 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300588 symbol_conf.use_callchain = false;
589 }
590
David Ahern80b8b492013-11-19 21:07:37 -0700591 /*
592 * set default for tracepoints to print symbols only
593 * if callchains are present
594 */
595 if (symbol_conf.use_callchain &&
596 !output[PERF_TYPE_TRACEPOINT].user_set) {
David Ahern80b8b492013-11-19 21:07:37 -0700597 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700598
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300599 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200600 if (evsel->core.attr.type != j)
He Kuang40f20e52016-05-16 04:51:19 +0000601 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700602
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300603 if (evsel__has_callchain(evsel)) {
He Kuang40f20e52016-05-16 04:51:19 +0000604 output[j].fields |= PERF_OUTPUT_IP;
605 output[j].fields |= PERF_OUTPUT_SYM;
Sandipan Das7903a702018-05-17 12:03:26 +0530606 output[j].fields |= PERF_OUTPUT_SYMOFFSET;
He Kuang40f20e52016-05-16 04:51:19 +0000607 output[j].fields |= PERF_OUTPUT_DSO;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200608 set_print_ip_opts(&evsel->core.attr);
He Kuang40f20e52016-05-16 04:51:19 +0000609 goto out;
610 }
David Ahern80b8b492013-11-19 21:07:37 -0700611 }
612 }
613
Jiri Olsae534bfb2020-08-05 11:34:44 +0200614 if (tod && !session->header.env.clock.enabled) {
615 pr_err("Can't provide 'tod' time, missing clock data. "
616 "Please record with -k/--clockid option.\n");
617 return -1;
618 }
David Ahern80b8b492013-11-19 21:07:37 -0700619out:
David Ahern1424dc92011-03-09 22:23:28 -0700620 return 0;
621}
David Ahern745f43e2011-03-09 22:23:26 -0700622
Milian Wolff9add8fe2018-11-07 23:34:37 +0100623static int perf_sample__fprintf_regs(struct regs_dump *regs, uint64_t mask,
Jiri Olsae534bfb2020-08-05 11:34:44 +0200624 FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200625{
Andi Kleenb1491ac2017-09-05 11:40:57 -0700626 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300627 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700628
629 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300630 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700631
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300632 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700633
634 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
635 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300636 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700637 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300638
639 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700640}
641
Jiri Olsae534bfb2020-08-05 11:34:44 +0200642#define DEFAULT_TOD_FMT "%F %H:%M:%S"
643
644static char*
645tod_scnprintf(struct perf_script *script, char *buf, int buflen,
646 u64 timestamp)
647{
648 u64 tod_ns, clockid_ns;
649 struct perf_env *env;
650 unsigned long nsec;
651 struct tm ltime;
652 char date[64];
653 time_t sec;
654
655 buf[0] = '\0';
656 if (buflen < 64 || !script)
657 return buf;
658
659 env = &script->session->header.env;
660 if (!env->clock.enabled) {
661 scnprintf(buf, buflen, "disabled");
662 return buf;
663 }
664
665 clockid_ns = env->clock.clockid_ns;
666 tod_ns = env->clock.tod_ns;
667
668 if (timestamp > clockid_ns)
669 tod_ns += timestamp - clockid_ns;
670 else
671 tod_ns -= clockid_ns - timestamp;
672
673 sec = (time_t) (tod_ns / NSEC_PER_SEC);
674 nsec = tod_ns - sec * NSEC_PER_SEC;
675
676 if (localtime_r(&sec, &ltime) == NULL) {
677 scnprintf(buf, buflen, "failed");
678 } else {
679 strftime(date, sizeof(date), DEFAULT_TOD_FMT, &ltime);
680
681 if (symbol_conf.nanosecs) {
682 snprintf(buf, buflen, "%s.%09lu", date, nsec);
683 } else {
684 snprintf(buf, buflen, "%s.%06lu",
685 date, nsec / NSEC_PER_USEC);
686 }
687 }
688
689 return buf;
690}
691
Milian Wolff9add8fe2018-11-07 23:34:37 +0100692static int perf_sample__fprintf_iregs(struct perf_sample *sample,
693 struct perf_event_attr *attr, FILE *fp)
694{
695 return perf_sample__fprintf_regs(&sample->intr_regs,
696 attr->sample_regs_intr, fp);
697}
698
699static int perf_sample__fprintf_uregs(struct perf_sample *sample,
700 struct perf_event_attr *attr, FILE *fp)
701{
702 return perf_sample__fprintf_regs(&sample->user_regs,
703 attr->sample_regs_user, fp);
704}
705
Jiri Olsae534bfb2020-08-05 11:34:44 +0200706static int perf_sample__fprintf_start(struct perf_script *script,
707 struct perf_sample *sample,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300708 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200709 struct evsel *evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +0100710 u32 type, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700711{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200712 struct perf_event_attr *attr = &evsel->core.attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700713 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700714 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300715 int printed = 0;
Jiri Olsae534bfb2020-08-05 11:34:44 +0200716 char tstr[128];
David Ahernc70c94b2011-03-09 22:23:25 -0700717
David Ahern745f43e2011-03-09 22:23:26 -0700718 if (PRINT_FIELD(COMM)) {
Adrian Hunterfc183802020-09-09 11:49:22 +0300719 const char *comm = thread ? thread__comm_str(thread) : ":-1";
720
David Ahern745f43e2011-03-09 22:23:26 -0700721 if (latency_format)
Adrian Hunterfc183802020-09-09 11:49:22 +0300722 printed += fprintf(fp, "%8.8s ", comm);
Arnaldo Carvalho de Melob8798332018-06-04 10:34:20 -0300723 else if (PRINT_FIELD(IP) && evsel__has_callchain(evsel) && symbol_conf.use_callchain)
Adrian Hunterfc183802020-09-09 11:49:22 +0300724 printed += fprintf(fp, "%s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700725 else
Adrian Hunterfc183802020-09-09 11:49:22 +0300726 printed += fprintf(fp, "%16s ", comm);
David Ahern745f43e2011-03-09 22:23:26 -0700727 }
David Ahernc70c94b2011-03-09 22:23:25 -0700728
David Ahern745f43e2011-03-09 22:23:26 -0700729 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300730 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700731 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300732 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700733 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300734 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700735
David Ahern745f43e2011-03-09 22:23:26 -0700736 if (PRINT_FIELD(CPU)) {
737 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300738 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700739 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300740 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700741 }
David Ahernc70c94b2011-03-09 22:23:25 -0700742
Jiri Olsa28a0b392018-01-07 17:03:52 +0100743 if (PRINT_FIELD(MISC)) {
744 int ret = 0;
745
746 #define has(m) \
747 (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
748
749 if (has(KERNEL))
750 ret += fprintf(fp, "K");
751 if (has(USER))
752 ret += fprintf(fp, "U");
753 if (has(HYPERVISOR))
754 ret += fprintf(fp, "H");
755 if (has(GUEST_KERNEL))
756 ret += fprintf(fp, "G");
757 if (has(GUEST_USER))
758 ret += fprintf(fp, "g");
759
760 switch (type) {
761 case PERF_RECORD_MMAP:
762 case PERF_RECORD_MMAP2:
763 if (has(MMAP_DATA))
764 ret += fprintf(fp, "M");
765 break;
766 case PERF_RECORD_COMM:
767 if (has(COMM_EXEC))
768 ret += fprintf(fp, "E");
769 break;
770 case PERF_RECORD_SWITCH:
771 case PERF_RECORD_SWITCH_CPU_WIDE:
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300772 if (has(SWITCH_OUT)) {
Jiri Olsa28a0b392018-01-07 17:03:52 +0100773 ret += fprintf(fp, "S");
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300774 if (sample->misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT)
775 ret += fprintf(fp, "p");
776 }
Jiri Olsa28a0b392018-01-07 17:03:52 +0100777 default:
778 break;
779 }
780
781 #undef has
782
783 ret += fprintf(fp, "%*s", 6 - ret, " ");
784 printed += ret;
785 }
786
Jiri Olsae534bfb2020-08-05 11:34:44 +0200787 if (PRINT_FIELD(TOD)) {
788 tod_scnprintf(script, tstr, sizeof(tstr), sample->time);
789 printed += fprintf(fp, "%s ", tstr);
790 }
791
David Ahern745f43e2011-03-09 22:23:26 -0700792 if (PRINT_FIELD(TIME)) {
Andi Kleen90b10f42019-03-14 15:50:00 -0700793 u64 t = sample->time;
794 if (reltime) {
795 if (!initial_time)
796 initial_time = sample->time;
797 t = sample->time - initial_time;
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +0100798 } else if (deltatime) {
799 if (previous_time)
800 t = sample->time - previous_time;
801 else {
802 t = 0;
803 }
804 previous_time = sample->time;
Andi Kleen90b10f42019-03-14 15:50:00 -0700805 }
806 nsecs = t;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300807 secs = nsecs / NSEC_PER_SEC;
808 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900809
Andi Kleen52bab882019-03-05 06:47:47 -0800810 if (symbol_conf.nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300811 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900812 else {
813 char sample_time[32];
Andi Kleen90b10f42019-03-14 15:50:00 -0700814 timestamp__scnprintf_usec(t, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300815 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900816 }
David Ahern745f43e2011-03-09 22:23:26 -0700817 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300818
819 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700820}
821
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200822static inline char
823mispred_str(struct branch_entry *br)
824{
825 if (!(br->flags.mispred || br->flags.predicted))
826 return '-';
827
828 return br->flags.predicted ? 'P' : 'M';
829}
830
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300831static int perf_sample__fprintf_brstack(struct perf_sample *sample,
832 struct thread *thread,
833 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200834{
835 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800836 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700837 struct addr_location alf, alt;
838 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300839 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200840
841 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300842 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200843
844 for (i = 0; i < br->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -0800845 from = entries[i].from;
846 to = entries[i].to;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700847
848 if (PRINT_FIELD(DSO)) {
849 memset(&alf, 0, sizeof(alf));
850 memset(&alt, 0, sizeof(alt));
Adrian Hunter692d0e62018-11-06 23:07:12 +0200851 thread__find_map_fb(thread, sample->cpumode, from, &alf);
852 thread__find_map_fb(thread, sample->cpumode, to, &alt);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700853 }
854
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300855 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700856 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300857 printed += fprintf(fp, "(");
858 printed += map__fprintf_dsoname(alf.map, fp);
859 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700860 }
861
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300862 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700863 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300864 printed += fprintf(fp, "(");
865 printed += map__fprintf_dsoname(alt.map, fp);
866 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700867 }
868
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300869 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800870 mispred_str(entries + i),
871 entries[i].flags.in_tx ? 'X' : '-',
872 entries[i].flags.abort ? 'A' : '-',
873 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200874 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300875
876 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200877}
878
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300879static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
880 struct thread *thread,
881 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200882{
883 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800884 struct branch_entry *entries = perf_sample__branch_entries(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200885 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200886 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300887 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200888
889 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300890 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200891
892 for (i = 0; i < br->nr; i++) {
893
894 memset(&alf, 0, sizeof(alf));
895 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800896 from = entries[i].from;
897 to = entries[i].to;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200898
Adrian Hunter692d0e62018-11-06 23:07:12 +0200899 thread__find_symbol_fb(thread, sample->cpumode, from, &alf);
900 thread__find_symbol_fb(thread, sample->cpumode, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200901
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300902 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700903 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300904 printed += fprintf(fp, "(");
905 printed += map__fprintf_dsoname(alf.map, fp);
906 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700907 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300908 printed += fprintf(fp, "%c", '/');
909 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700910 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300911 printed += fprintf(fp, "(");
912 printed += map__fprintf_dsoname(alt.map, fp);
913 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700914 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300915 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800916 mispred_str(entries + i),
917 entries[i].flags.in_tx ? 'X' : '-',
918 entries[i].flags.abort ? 'A' : '-',
919 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200920 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300921
922 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200923}
924
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300925static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
926 struct thread *thread,
927 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700928{
929 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800930 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700931 struct addr_location alf, alt;
932 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300933 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700934
935 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300936 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700937
938 for (i = 0; i < br->nr; i++) {
939
940 memset(&alf, 0, sizeof(alf));
941 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800942 from = entries[i].from;
943 to = entries[i].to;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700944
Adrian Hunter692d0e62018-11-06 23:07:12 +0200945 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300946 !alf.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700947 from = map__map_ip(alf.map, from);
948
Adrian Hunter692d0e62018-11-06 23:07:12 +0200949 if (thread__find_map_fb(thread, sample->cpumode, to, &alt) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300950 !alt.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700951 to = map__map_ip(alt.map, to);
952
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300953 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700954 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300955 printed += fprintf(fp, "(");
956 printed += map__fprintf_dsoname(alf.map, fp);
957 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700958 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300959 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700960 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300961 printed += fprintf(fp, "(");
962 printed += map__fprintf_dsoname(alt.map, fp);
963 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700964 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300965 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800966 mispred_str(entries + i),
967 entries[i].flags.in_tx ? 'X' : '-',
968 entries[i].flags.abort ? 'A' : '-',
969 entries[i].flags.cycles);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700970 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300971
972 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700973}
Andi Kleen48d02a12017-02-23 15:46:34 -0800974#define MAXBB 16384UL
975
976static int grab_bb(u8 *buffer, u64 start, u64 end,
977 struct machine *machine, struct thread *thread,
978 bool *is64bit, u8 *cpumode, bool last)
979{
980 long offset, len;
981 struct addr_location al;
982 bool kernel;
983
984 if (!start || !end)
985 return 0;
986
987 kernel = machine__kernel_ip(machine, start);
988 if (kernel)
989 *cpumode = PERF_RECORD_MISC_KERNEL;
990 else
991 *cpumode = PERF_RECORD_MISC_USER;
992
993 /*
994 * Block overlaps between kernel and user.
995 * This can happen due to ring filtering
996 * On Intel CPUs the entry into the kernel is filtered,
997 * but the exit is not. Let the caller patch it up.
998 */
999 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001000 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001001 return -ENXIO;
1002 }
1003
1004 memset(&al, 0, sizeof(al));
1005 if (end - start > MAXBB - MAXINSN) {
1006 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001007 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001008 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001009 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -08001010 return 0;
1011 }
1012
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -03001013 if (!thread__find_map(thread, *cpumode, start, &al) || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001014 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001015 return 0;
1016 }
1017 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001018 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -08001019 return 0;
1020 }
1021
1022 /* Load maps to ensure dso->is_64_bit has been updated */
1023 map__load(al.map);
1024
1025 offset = al.map->map_ip(al.map, start);
1026 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
1027 end - start + MAXINSN);
1028
1029 *is64bit = al.map->dso->is_64_bit;
1030 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -03001031 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -08001032 start, end);
1033 return len;
1034}
1035
Arnaldo Carvalho de Melo540a63e2019-11-22 12:39:06 -03001036static int map__fprintf_srccode(struct map *map, u64 addr, FILE *fp, struct srccode_state *state)
1037{
1038 char *srcfile;
1039 int ret = 0;
1040 unsigned line;
1041 int len;
1042 char *srccode;
1043
1044 if (!map || !map->dso)
1045 return 0;
1046 srcfile = get_srcline_split(map->dso,
1047 map__rip_2objdump(map, addr),
1048 &line);
1049 if (!srcfile)
1050 return 0;
1051
1052 /* Avoid redundant printing */
1053 if (state &&
1054 state->srcfile &&
1055 !strcmp(state->srcfile, srcfile) &&
1056 state->line == line) {
1057 free(srcfile);
1058 return 0;
1059 }
1060
1061 srccode = find_sourceline(srcfile, line, &len);
1062 if (!srccode)
1063 goto out_free_line;
1064
1065 ret = fprintf(fp, "|%-8d %.*s", line, len, srccode);
1066
1067 if (state) {
1068 state->srcfile = srcfile;
1069 state->line = line;
1070 }
1071 return ret;
1072
1073out_free_line:
1074 free(srcfile);
1075 return ret;
1076}
1077
Andi Kleendd2e18e2018-12-03 16:18:48 -08001078static int print_srccode(struct thread *thread, u8 cpumode, uint64_t addr)
1079{
1080 struct addr_location al;
1081 int ret = 0;
1082
1083 memset(&al, 0, sizeof(al));
1084 thread__find_map(thread, cpumode, addr, &al);
1085 if (!al.map)
1086 return 0;
1087 ret = map__fprintf_srccode(al.map, al.addr, stdout,
1088 &thread->srccode_state);
1089 if (ret)
1090 ret += printf("\n");
1091 return ret;
1092}
1093
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001094static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
1095 struct perf_insn *x, u8 *inbuf, int len,
Andi Kleenfe571202018-09-24 10:07:32 -07001096 int insn, FILE *fp, int *total_cycles)
Andi Kleen48d02a12017-02-23 15:46:34 -08001097{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001098 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
1099 dump_insn(x, ip, inbuf, len, NULL),
1100 en->flags.predicted ? " PRED" : "",
1101 en->flags.mispred ? " MISPRED" : "",
1102 en->flags.in_tx ? " INTX" : "",
1103 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -08001104 if (en->flags.cycles) {
Andi Kleenfe571202018-09-24 10:07:32 -07001105 *total_cycles += en->flags.cycles;
1106 printed += fprintf(fp, " %d cycles [%d]", en->flags.cycles, *total_cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001107 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001108 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001109 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001110 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001111}
1112
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001113static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
1114 u8 cpumode, int cpu, struct symbol **lastsym,
1115 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001116{
1117 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001118 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001119
1120 memset(&al, 0, sizeof(al));
1121
Arnaldo Carvalho de Melo404eb5a2018-04-26 09:34:37 -03001122 thread__find_map(thread, cpumode, addr, &al);
1123
Andi Kleen48d02a12017-02-23 15:46:34 -08001124 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001125 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001126
1127 al.cpu = cpu;
1128 al.sym = NULL;
1129 if (al.map)
1130 al.sym = map__find_symbol(al.map, al.addr);
1131
1132 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001133 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001134
1135 if (al.addr < al.sym->end)
1136 off = al.addr - al.sym->start;
1137 else
1138 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001139 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -08001140 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001141 printed += fprintf(fp, "%+d", off);
1142 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -08001143 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001144 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
1145 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001146 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001147
1148 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001149}
1150
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001151static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
1152 struct thread *thread,
1153 struct perf_event_attr *attr,
1154 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001155{
1156 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001157 struct branch_entry *entries = perf_sample__branch_entries(sample);
Andi Kleen48d02a12017-02-23 15:46:34 -08001158 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001159 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001160 struct perf_insn x;
1161 u8 buffer[MAXBB];
1162 unsigned off;
1163 struct symbol *lastsym = NULL;
Andi Kleenfe571202018-09-24 10:07:32 -07001164 int total_cycles = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001165
1166 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001167 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001168 nr = br->nr;
1169 if (max_blocks && nr > max_blocks + 1)
1170 nr = max_blocks + 1;
1171
1172 x.thread = thread;
1173 x.cpu = sample->cpu;
1174
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001175 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -08001176
1177 /* Handle first from jump, of which we don't know the entry. */
Kan Liang42bbabe2020-02-28 08:30:00 -08001178 len = grab_bb(buffer, entries[nr-1].from,
1179 entries[nr-1].from,
Andi Kleen48d02a12017-02-23 15:46:34 -08001180 machine, thread, &x.is64bit, &x.cpumode, false);
1181 if (len > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001182 printed += ip__fprintf_sym(entries[nr - 1].from, thread,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001183 x.cpumode, x.cpu, &lastsym, attr, fp);
Kan Liang42bbabe2020-02-28 08:30:00 -08001184 printed += ip__fprintf_jump(entries[nr - 1].from, &entries[nr - 1],
Andi Kleenfe571202018-09-24 10:07:32 -07001185 &x, buffer, len, 0, fp, &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001186 if (PRINT_FIELD(SRCCODE))
Kan Liang42bbabe2020-02-28 08:30:00 -08001187 printed += print_srccode(thread, x.cpumode, entries[nr - 1].from);
Andi Kleen48d02a12017-02-23 15:46:34 -08001188 }
1189
1190 /* Print all blocks */
1191 for (i = nr - 2; i >= 0; i--) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001192 if (entries[i].from || entries[i].to)
Andi Kleen48d02a12017-02-23 15:46:34 -08001193 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
Kan Liang42bbabe2020-02-28 08:30:00 -08001194 entries[i].from,
1195 entries[i].to);
1196 start = entries[i + 1].to;
1197 end = entries[i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001198
1199 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1200 /* Patch up missing kernel transfers due to ring filters */
1201 if (len == -ENXIO && i > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001202 end = entries[--i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001203 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1204 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1205 }
1206 if (len <= 0)
1207 continue;
1208
1209 insn = 0;
Andi Kleene98df282019-09-27 16:35:44 -07001210 for (off = 0; off < (unsigned)len; off += ilen) {
Andi Kleen48d02a12017-02-23 15:46:34 -08001211 uint64_t ip = start + off;
1212
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001213 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001214 if (ip == end) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001215 printed += ip__fprintf_jump(ip, &entries[i], &x, buffer + off, len - off, ++insn, fp,
Andi Kleenfe571202018-09-24 10:07:32 -07001216 &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001217 if (PRINT_FIELD(SRCCODE))
1218 printed += print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001219 break;
1220 } else {
Andi Kleene98df282019-09-27 16:35:44 -07001221 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001222 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
1223 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001224 if (ilen == 0)
1225 break;
Andi Kleendd2e18e2018-12-03 16:18:48 -08001226 if (PRINT_FIELD(SRCCODE))
1227 print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001228 insn++;
1229 }
1230 }
Adrian Hunter51726722019-11-27 11:56:31 +02001231 if (off != end - start)
Andi Kleene98df282019-09-27 16:35:44 -07001232 printed += fprintf(fp, "\tmismatch of LBR data and executable\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001233 }
1234
1235 /*
1236 * Hit the branch? In this case we are already done, and the target
1237 * has not been executed yet.
1238 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001239 if (entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001240 goto out;
Kan Liang42bbabe2020-02-28 08:30:00 -08001241 if (entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001242 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001243
1244 /*
1245 * Print final block upto sample
Andi Kleen61f61152018-11-19 21:06:17 -08001246 *
1247 * Due to pipeline delays the LBRs might be missing a branch
1248 * or two, which can result in very large or negative blocks
1249 * between final branch and sample. When this happens just
1250 * continue walking after the last TO until we hit a branch.
Andi Kleen48d02a12017-02-23 15:46:34 -08001251 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001252 start = entries[0].to;
Andi Kleen48d02a12017-02-23 15:46:34 -08001253 end = sample->ip;
Andi Kleen61f61152018-11-19 21:06:17 -08001254 if (end < start) {
1255 /* Missing jump. Scan 128 bytes for the next branch */
1256 end = start + 128;
1257 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001258 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001259 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001260 if (len <= 0) {
1261 /* Print at least last IP if basic block did not work */
1262 len = grab_bb(buffer, sample->ip, sample->ip,
1263 machine, thread, &x.is64bit, &x.cpumode, false);
1264 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001265 goto out;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001266 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -08001267 dump_insn(&x, sample->ip, buffer, len, NULL));
Andi Kleendd2e18e2018-12-03 16:18:48 -08001268 if (PRINT_FIELD(SRCCODE))
1269 print_srccode(thread, x.cpumode, sample->ip);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001270 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001271 }
1272 for (off = 0; off <= end - start; off += ilen) {
Andi Kleene98df282019-09-27 16:35:44 -07001273 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001274 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
1275 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001276 if (ilen == 0)
1277 break;
Andi Kleen61f61152018-11-19 21:06:17 -08001278 if (arch_is_branch(buffer + off, len - off, x.is64bit) && start + off != sample->ip) {
1279 /*
1280 * Hit a missing branch. Just stop.
1281 */
1282 printed += fprintf(fp, "\t... not reaching sample ...\n");
1283 break;
1284 }
Andi Kleendd2e18e2018-12-03 16:18:48 -08001285 if (PRINT_FIELD(SRCCODE))
1286 print_srccode(thread, x.cpumode, start + off);
Andi Kleen48d02a12017-02-23 15:46:34 -08001287 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001288out:
1289 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001290}
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001291
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001292static int perf_sample__fprintf_addr(struct perf_sample *sample,
1293 struct thread *thread,
1294 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -06001295{
1296 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001297 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -06001298
1299 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001300 goto out;
David Ahern7cec0922011-05-30 13:08:23 -06001301
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -03001302 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -06001303
1304 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001305 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001306 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001307 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001308 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001309 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001310 }
1311
1312 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001313 printed += fprintf(fp, " (");
1314 printed += map__fprintf_dsoname(al.map, fp);
1315 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001316 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001317out:
1318 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001319}
1320
Andi Kleen99f753f2018-09-20 11:05:39 -07001321static const char *resolve_branch_sym(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001322 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001323 struct thread *thread,
1324 struct addr_location *al,
1325 u64 *ip)
1326{
1327 struct addr_location addr_al;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001328 struct perf_event_attr *attr = &evsel->core.attr;
Andi Kleen99f753f2018-09-20 11:05:39 -07001329 const char *name = NULL;
1330
1331 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1332 if (sample_addr_correlates_sym(attr)) {
1333 thread__resolve(thread, &addr_al, sample);
1334 if (addr_al.sym)
1335 name = addr_al.sym->name;
1336 else
1337 *ip = sample->addr;
1338 } else {
1339 *ip = sample->addr;
1340 }
1341 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1342 if (al->sym)
1343 name = al->sym->name;
1344 else
1345 *ip = sample->ip;
1346 }
1347 return name;
1348}
1349
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001350static int perf_sample__fprintf_callindent(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001351 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001352 struct thread *thread,
1353 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001354{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001355 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter256d92b2018-12-21 14:06:19 +02001356 size_t depth = thread_stack__depth(thread, sample->cpu);
Adrian Huntere2167082016-06-23 16:40:58 +03001357 const char *name = NULL;
1358 static int spacing;
1359 int len = 0;
Andi Kleena78cdee2018-09-18 05:32:10 -07001360 int dlen = 0;
Adrian Huntere2167082016-06-23 16:40:58 +03001361 u64 ip = 0;
1362
1363 /*
1364 * The 'return' has already been popped off the stack so the depth has
1365 * to be adjusted to match the 'call'.
1366 */
1367 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1368 depth += 1;
1369
Andi Kleen99f753f2018-09-20 11:05:39 -07001370 name = resolve_branch_sym(sample, evsel, thread, al, &ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001371
Andi Kleena78cdee2018-09-18 05:32:10 -07001372 if (PRINT_FIELD(DSO) && !(PRINT_FIELD(IP) || PRINT_FIELD(ADDR))) {
1373 dlen += fprintf(fp, "(");
1374 dlen += map__fprintf_dsoname(al->map, fp);
1375 dlen += fprintf(fp, ")\t");
1376 }
1377
Adrian Huntere2167082016-06-23 16:40:58 +03001378 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001379 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001380 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001381 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001382
1383 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001384 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001385
1386 /*
1387 * Try to keep the output length from changing frequently so that the
1388 * output lines up more nicely.
1389 */
1390 if (len > spacing || (len && len < spacing - 52))
1391 spacing = round_up(len + 4, 32);
1392
1393 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001394 len += fprintf(fp, "%*s", spacing - len, "");
1395
Andi Kleena78cdee2018-09-18 05:32:10 -07001396 return len + dlen;
Adrian Huntere2167082016-06-23 16:40:58 +03001397}
1398
Andi Kleen3ab481a2019-03-05 06:47:45 -08001399__weak void arch_fetch_insn(struct perf_sample *sample __maybe_unused,
1400 struct thread *thread __maybe_unused,
1401 struct machine *machine __maybe_unused)
1402{
1403}
1404
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001405static int perf_sample__fprintf_insn(struct perf_sample *sample,
1406 struct perf_event_attr *attr,
1407 struct thread *thread,
1408 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001409{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001410 int printed = 0;
1411
Andi Kleen3ab481a2019-03-05 06:47:45 -08001412 if (sample->insn_len == 0 && native_arch)
1413 arch_fetch_insn(sample, thread, machine);
1414
Andi Kleen224e2c92016-10-07 16:42:27 +03001415 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001416 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001417 if (PRINT_FIELD(INSN) && sample->insn_len) {
Andi Kleen224e2c92016-10-07 16:42:27 +03001418 int i;
1419
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001420 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001421 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001422 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001423 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001424 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001425 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1426
1427 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001428}
1429
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001430static int perf_sample__fprintf_ipc(struct perf_sample *sample,
1431 struct perf_event_attr *attr, FILE *fp)
1432{
1433 unsigned int ipc;
1434
1435 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt)
1436 return 0;
1437
1438 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt;
1439
1440 return fprintf(fp, " \t IPC: %u.%02u (%" PRIu64 "/%" PRIu64 ") ",
1441 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt);
1442}
1443
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001444static int perf_sample__fprintf_bts(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001445 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001446 struct thread *thread,
1447 struct addr_location *al,
1448 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001449{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001450 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001451 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001452 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001453 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001454
Adrian Huntere2167082016-06-23 16:40:58 +03001455 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001456 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001457
Akihiro Nagai95582592012-01-30 13:43:09 +09001458 /* print branch_from information */
1459 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001460 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001461 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001462
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001463 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001464 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001465 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001466 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001467
1468 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001469 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001470 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001471 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001472 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001473 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001474 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001475 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001476
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001477 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor,
1478 symbol_conf.bt_stop_list, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001479 }
1480
Akihiro Nagai95582592012-01-30 13:43:09 +09001481 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001482 if (PRINT_FIELD(ADDR) ||
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001483 ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001484 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001485 printed += fprintf(fp, " => ");
1486 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001487 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001488
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001489 printed += perf_sample__fprintf_ipc(sample, attr, fp);
1490
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001491 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001492 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001493
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001494 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001495 printed += fprintf(fp, "\n");
1496 if (PRINT_FIELD(SRCCODE)) {
1497 int ret = map__fprintf_srccode(al->map, al->addr, stdout,
1498 &thread->srccode_state);
1499 if (ret) {
1500 printed += ret;
1501 printed += printf("\n");
1502 }
1503 }
1504 return printed;
Akihiro Nagai95582592012-01-30 13:43:09 +09001505}
1506
Adrian Hunter055cd332016-06-23 16:40:56 +03001507static struct {
1508 u32 flags;
1509 const char *name;
1510} sample_flags[] = {
1511 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1512 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1513 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1514 {PERF_IP_FLAG_BRANCH, "jmp"},
1515 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1516 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1517 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1518 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1519 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1520 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1521 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1522 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1523 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
1524 {0, NULL}
1525};
1526
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001527static const char *sample_flags_to_name(u32 flags)
1528{
1529 int i;
1530
1531 for (i = 0; sample_flags[i].name ; i++) {
1532 if (sample_flags[i].flags == flags)
1533 return sample_flags[i].name;
1534 }
1535
1536 return NULL;
1537}
1538
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001539static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001540{
1541 const char *chars = PERF_IP_FLAG_CHARS;
1542 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001543 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1544 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001545 char str[33];
1546 int i, pos = 0;
1547
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001548 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1549 if (name)
1550 return fprintf(fp, " %-15s%4s ", name, in_tx ? "(x)" : "");
1551
1552 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1553 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1554 if (name)
1555 return fprintf(fp, " tr strt %-7s%4s ", name, in_tx ? "(x)" : "");
1556 }
1557
1558 if (flags & PERF_IP_FLAG_TRACE_END) {
1559 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1560 if (name)
1561 return fprintf(fp, " tr end %-7s%4s ", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001562 }
1563
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001564 for (i = 0; i < n; i++, flags >>= 1) {
1565 if (flags & 1)
1566 str[pos++] = chars[i];
1567 }
1568 for (; i < 32; i++, flags >>= 1) {
1569 if (flags & 1)
1570 str[pos++] = '?';
1571 }
1572 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001573
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001574 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001575}
1576
Wang Nan30372f02016-02-24 11:20:45 +00001577struct printer_data {
1578 int line_no;
1579 bool hit_nul;
1580 bool is_printable;
1581};
1582
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001583static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1584 unsigned int val,
1585 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001586{
1587 unsigned char ch = (unsigned char)val;
1588 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001589 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001590
1591 switch (op) {
1592 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001593 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001594 break;
1595 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001596 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001597 " ");
1598 break;
1599 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001600 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001601 break;
1602 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001603 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001604 break;
1605 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001606 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001607 break;
1608 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001609 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001610 break;
1611 case BINARY_PRINT_CHAR_DATA:
1612 if (printer_data->hit_nul && ch)
1613 printer_data->is_printable = false;
1614
1615 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001616 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001617
1618 if (!printer_data->is_printable)
1619 break;
1620
1621 if (ch == '\0')
1622 printer_data->hit_nul = true;
1623 else
1624 printer_data->is_printable = false;
1625 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001626 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001627 }
1628 break;
1629 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001630 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001631 break;
1632 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001633 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001634 printer_data->line_no++;
1635 break;
1636 case BINARY_PRINT_DATA_END:
1637 default:
1638 break;
1639 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001640
1641 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001642}
1643
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001644static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001645{
1646 unsigned int nr_bytes = sample->raw_size;
1647 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001648 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1649 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001650
1651 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001652 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1653
1654 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001655}
1656
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001657static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001658{
1659 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001660 return fprintf(fp, "%*s", spacing - len, "");
1661
1662 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001663}
1664
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001665static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001666{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001667 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001668}
1669
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001670static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001671{
1672 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1673 int len;
1674
1675 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001676 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001677
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001678 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001679 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001680 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001681}
1682
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001683static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001684{
1685 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1686 int len;
1687
1688 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001689 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001690
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001691 len = fprintf(fp, " hints: %#x extensions: %#x ",
1692 data->hints, data->extensions);
1693 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001694}
1695
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001696static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001697{
1698 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1699 int len;
1700
1701 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001702 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001703
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001704 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1705 data->hw, data->cstate, data->subcstate);
1706 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001707}
1708
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001709static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001710{
1711 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1712 int len;
1713
1714 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001715 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001716
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001717 len = fprintf(fp, " IP: %u ", data->ip);
1718 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001719}
1720
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001721static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001722{
1723 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1724 int len;
1725
1726 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001727 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001728
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001729 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001730 data->deepest_cstate, data->last_cstate,
1731 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001732 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001733}
1734
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001735static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001736{
1737 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1738 unsigned int percent, freq;
1739 int len;
1740
1741 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001742 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001743
1744 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001745 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001746 if (data->max_nonturbo) {
1747 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001748 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001749 }
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(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001754 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001755{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001756 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001757 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001758 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001759 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001760 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001761 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001762 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001763 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001764 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001765 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001766 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001767 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001768 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001769 default:
1770 break;
1771 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001772
1773 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001774}
1775
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001776static int evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001777{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001778 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001779 int max = 0;
1780
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001781 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001782 int len = strlen(evsel__name(evsel));
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001783
1784 max = MAX(len, max);
1785 }
1786
1787 return max;
1788}
1789
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001790static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001791{
1792 struct mem_info mi = { .data_src.val = data_src };
1793 char decode[100];
1794 char out[100];
1795 static int maxlen;
1796 int len;
1797
1798 perf_script__meminfo_scnprintf(decode, 100, &mi);
1799
1800 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1801 if (maxlen < len)
1802 maxlen = len;
1803
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001804 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001805}
1806
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001807struct metric_ctx {
1808 struct perf_sample *sample;
1809 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001810 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001811 FILE *fp;
1812};
1813
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001814static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1815 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001816 const char *fmt,
1817 const char *unit, double val)
1818{
1819 struct metric_ctx *mctx = ctx;
1820
1821 if (!fmt)
1822 return;
Jiri Olsae534bfb2020-08-05 11:34:44 +02001823 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001824 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001825 fputs("\tmetric: ", mctx->fp);
1826 if (color)
1827 color_fprintf(mctx->fp, color, fmt, val);
1828 else
1829 printf(fmt, val);
1830 fprintf(mctx->fp, " %s\n", unit);
1831}
1832
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001833static void script_new_line(struct perf_stat_config *config __maybe_unused,
1834 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001835{
1836 struct metric_ctx *mctx = ctx;
1837
Jiri Olsae534bfb2020-08-05 11:34:44 +02001838 perf_sample__fprintf_start(NULL, mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001839 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001840 fputs("\tmetric: ", mctx->fp);
1841}
1842
1843static void perf_sample__fprint_metric(struct perf_script *script,
1844 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001845 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001846 struct perf_sample *sample,
1847 FILE *fp)
1848{
1849 struct perf_stat_output_ctx ctx = {
1850 .print_metric = script_print_metric,
1851 .new_line = script_new_line,
1852 .ctx = &(struct metric_ctx) {
1853 .sample = sample,
1854 .thread = thread,
1855 .evsel = evsel,
1856 .fp = fp,
1857 },
1858 .force_header = false,
1859 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001860 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001861 u64 val;
1862
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001863 if (!evsel->stats)
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03001864 evlist__alloc_stats(script->session->evlist, false);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001865 if (evsel_script(evsel->leader)->gnum++ == 0)
1866 perf_stat__reset_shadow_stats();
1867 val = sample->period * evsel->scale;
1868 perf_stat__update_shadow_stats(evsel,
1869 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001870 sample->cpu,
1871 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001872 evsel_script(evsel)->val = val;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001873 if (evsel_script(evsel->leader)->gnum == evsel->leader->core.nr_members) {
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001874 for_each_group_member (ev2, evsel->leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001875 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001876 evsel_script(ev2)->val,
1877 sample->cpu,
1878 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001879 NULL,
1880 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001881 }
1882 evsel_script(evsel->leader)->gnum = 0;
1883 }
1884}
1885
Andi Kleen99f753f2018-09-20 11:05:39 -07001886static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001887 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001888 struct thread *thread,
1889 struct addr_location *al)
1890{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001891 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001892
1893 if (!symbol_conf.graph_function)
1894 return true;
1895
1896 if (thread->filter) {
1897 if (depth <= thread->filter_entry_depth) {
1898 thread->filter = false;
1899 return false;
1900 }
1901 return true;
1902 } else {
1903 const char *s = symbol_conf.graph_function;
1904 u64 ip;
1905 const char *name = resolve_branch_sym(sample, evsel, thread, al,
1906 &ip);
1907 unsigned nlen;
1908
1909 if (!name)
1910 return false;
1911 nlen = strlen(name);
1912 while (*s) {
1913 unsigned len = strcspn(s, ",");
1914 if (nlen == len && !strncmp(name, s, len)) {
1915 thread->filter = true;
1916 thread->filter_entry_depth = depth;
1917 return true;
1918 }
1919 s += len;
1920 if (*s == ',')
1921 s++;
1922 }
1923 return false;
1924 }
1925}
1926
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001927static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001928 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001929 struct addr_location *al,
1930 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001931{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001932 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001933 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001934 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02001935 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001936 FILE *fp = es->fp;
Kan Liang6b9bae62020-12-16 10:57:57 -08001937 char str[PAGE_SIZE_NAME_LEN];
David Ahern1424dc92011-03-09 22:23:28 -07001938
Adrian Hunter14057202017-06-21 13:17:19 +03001939 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001940 return;
1941
Andi Kleen99f753f2018-09-20 11:05:39 -07001942 if (!show_event(sample, evsel, thread, al))
1943 return;
1944
Arnaldo Carvalho de Melo8829e562019-08-15 11:00:11 -03001945 if (evswitch__discard(&script->evswitch, evsel))
1946 return;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001947
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001948 ++es->samples;
1949
Jiri Olsae534bfb2020-08-05 11:34:44 +02001950 perf_sample__fprintf_start(script, sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001951 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001952
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001953 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001954 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001955
Namhyung Kime944d3d2013-11-18 14:34:52 +09001956 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03001957 const char *evname = evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001958
1959 if (!script->name_width)
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03001960 script->name_width = evlist__max_name_len(script->session->evlist);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001961
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001962 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001963 }
1964
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001965 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001966 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001967
Akihiro Nagai95582592012-01-30 13:43:09 +09001968 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001969 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001970 return;
1971 }
1972
Andi Kleen96167162019-01-17 11:48:34 -08001973 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03001974 event_format__fprintf(evsel->tp_format, sample->cpu,
1975 sample->raw_data, sample->raw_size, fp);
1976 }
Adrian Hunter47e78082017-05-26 11:17:22 +03001977
1978 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001979 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001980
David Ahern7cec0922011-05-30 13:08:23 -06001981 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001982 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001983
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001984 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001985 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001986
1987 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001988 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001989
David Ahern787bef12011-05-27 14:28:43 -06001990 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07001991 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04001992
Kan Liang680d1252020-03-19 13:25:14 -07001993 if (script->stitch_lbr)
1994 al->thread->lbr_stitch_enable = true;
1995
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03001996 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001997 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001998 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001999 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03002000
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002001 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03002002 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
2003 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07002004 }
2005
Stephane Eranianfc36f942015-08-31 18:41:10 +02002006 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002007 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02002008
Andi Kleenb1491ac2017-09-05 11:40:57 -07002009 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002010 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07002011
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002012 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002013 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002014 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002015 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07002016 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002017 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002018
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002019 if (evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002020 perf_sample__fprintf_bpf_output(sample, fp);
2021 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04002022
2023 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002024 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002025
Kan Liang6b9bae62020-12-16 10:57:57 -08002026 if (PRINT_FIELD(DATA_PAGE_SIZE))
2027 fprintf(fp, " %s", get_page_size_name(sample->data_page_size, str));
2028
Stephane Eranianc513de82021-01-05 11:57:50 -08002029 if (PRINT_FIELD(CODE_PAGE_SIZE))
2030 fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str));
2031
Adrian Hunter68fb45b2019-05-20 14:37:14 +03002032 perf_sample__fprintf_ipc(sample, attr, fp);
2033
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03002034 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002035
Andi Kleendd2e18e2018-12-03 16:18:48 -08002036 if (PRINT_FIELD(SRCCODE)) {
2037 if (map__fprintf_srccode(al->map, al->addr, stdout,
2038 &thread->srccode_state))
2039 printf("\n");
2040 }
2041
Andi Kleen4bd1bef2017-11-17 13:43:00 -08002042 if (PRINT_FIELD(METRIC))
2043 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02002044
2045 if (verbose)
2046 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07002047}
2048
Tom Zanussi956ffd02009-11-25 01:15:46 -06002049static struct scripting_ops *scripting_ops;
2050
Jiri Olsa32dcd022019-07-21 13:23:51 +02002051static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002052{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002053 int nthreads = perf_thread_map__nr(counter->core.threads);
Arnaldo Carvalho de Melo5eb88f02020-04-29 15:45:09 -03002054 int ncpus = evsel__nr_cpus(counter);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002055 int cpu, thread;
2056 static int header_printed;
2057
Jiri Olsa648b5af2019-08-06 11:35:19 +02002058 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01002059 nthreads = 1;
2060
2061 if (!header_printed) {
2062 printf("%3s %8s %15s %15s %15s %15s %s\n",
2063 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
2064 header_printed = 1;
2065 }
2066
2067 for (thread = 0; thread < nthreads; thread++) {
2068 for (cpu = 0; cpu < ncpus; cpu++) {
2069 struct perf_counts_values *counts;
2070
2071 counts = perf_counts(counter->counts, cpu, thread);
2072
2073 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02002074 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02002075 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01002076 counts->val,
2077 counts->ena,
2078 counts->run,
2079 tstamp,
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002080 evsel__name(counter));
Jiri Olsa36e33c52016-01-06 11:49:56 +01002081 }
2082 }
2083}
2084
Jiri Olsa32dcd022019-07-21 13:23:51 +02002085static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002086{
2087 if (scripting_ops && scripting_ops->process_stat)
2088 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002089 else
2090 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002091}
2092
2093static void process_stat_interval(u64 tstamp)
2094{
2095 if (scripting_ops && scripting_ops->process_stat_interval)
2096 scripting_ops->process_stat_interval(tstamp);
2097}
2098
Tom Zanussi956ffd02009-11-25 01:15:46 -06002099static void setup_scripting(void)
2100{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002101 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002102 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002103}
2104
Adrian Hunterd445dd22014-08-15 22:08:37 +03002105static int flush_scripting(void)
2106{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002107 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002108}
2109
Tom Zanussi956ffd02009-11-25 01:15:46 -06002110static int cleanup_scripting(void)
2111{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002112 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002113
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002114 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002115}
2116
Andi Kleene87e5482019-03-11 07:44:52 -07002117static bool filter_cpu(struct perf_sample *sample)
2118{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002119 if (cpu_list && sample->cpu != (u32)-1)
Andi Kleene87e5482019-03-11 07:44:52 -07002120 return !test_bit(sample->cpu, cpu_bitmap);
2121 return false;
2122}
2123
Jiri Olsa809e9422015-11-26 18:55:21 +01002124static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002125 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002126 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002127 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002128 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002129{
Jiri Olsa809e9422015-11-26 18:55:21 +01002130 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002131 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002132
Jin Yao2ab046c2017-12-08 21:13:46 +08002133 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2134 sample->time)) {
David Aherna91f4c42016-11-29 10:15:43 -07002135 return 0;
Jin Yao2ab046c2017-12-08 21:13:46 +08002136 }
David Aherna91f4c42016-11-29 10:15:43 -07002137
David Ahern1424dc92011-03-09 22:23:28 -07002138 if (debug_mode) {
2139 if (sample->time < last_timestamp) {
2140 pr_err("Samples misordered, previous: %" PRIu64
2141 " this: %" PRIu64 "\n", last_timestamp,
2142 sample->time);
2143 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002144 }
David Ahern1424dc92011-03-09 22:23:28 -07002145 last_timestamp = sample->time;
2146 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002147 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002148
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03002149 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002150 pr_err("problem processing %d event, skipping it.\n",
2151 event->header.type);
2152 return -1;
2153 }
2154
2155 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002156 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002157
Andi Kleene87e5482019-03-11 07:44:52 -07002158 if (filter_cpu(sample))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002159 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002160
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002161 if (scripting_ops)
2162 scripting_ops->process_event(event, sample, evsel, &al);
2163 else
Andi Kleen48d02a12017-02-23 15:46:34 -08002164 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002165
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002166out_put:
2167 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002168 return 0;
2169}
2170
Adrian Hunter7ea95722013-11-01 15:51:30 +02002171static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002172 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002173{
2174 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002175 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002176 struct evsel *evsel, *pos;
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002177 u64 sample_type;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002178 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002179 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002180
2181 err = perf_event__process_attr(tool, event, pevlist);
2182 if (err)
2183 return err;
2184
2185 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002186 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002187
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302188 if (!evsel->priv) {
2189 if (scr->per_event_dump) {
2190 evsel->priv = perf_evsel_script__new(evsel,
2191 scr->session->data);
2192 } else {
2193 es = zalloc(sizeof(*es));
2194 if (!es)
2195 return -ENOMEM;
2196 es->fp = stdout;
2197 evsel->priv = es;
2198 }
2199 }
2200
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002201 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2202 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002203 return 0;
2204
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002205 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002206 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002207 return 0;
2208 }
2209
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002210 if (evsel->core.attr.sample_type) {
Arnaldo Carvalho de Meloafdd63f2020-06-10 11:39:16 -03002211 err = evsel__check_attr(evsel, scr->session);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002212 if (err)
2213 return err;
2214 }
Jiri Olsad2b5a312015-10-16 12:41:25 +02002215
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002216 /*
2217 * Check if we need to enable callchains based
2218 * on events sample_type.
2219 */
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03002220 sample_type = evlist__combined_sample_type(evlist);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002221 callchain_param_setup(sample_type);
Jiri Olsa53fb1892020-05-07 11:50:24 +02002222
Adrian Hunterb5164082020-05-27 21:02:50 +03002223 /* Enable fields for callchain entries */
2224 if (symbol_conf.use_callchain &&
2225 (sample_type & PERF_SAMPLE_CALLCHAIN ||
2226 sample_type & PERF_SAMPLE_BRANCH_STACK ||
2227 (sample_type & PERF_SAMPLE_REGS_USER &&
2228 sample_type & PERF_SAMPLE_STACK_USER))) {
2229 int type = output_type(evsel->core.attr.type);
2230
2231 if (!(output[type].user_unset_fields & PERF_OUTPUT_IP))
2232 output[type].fields |= PERF_OUTPUT_IP;
2233 if (!(output[type].user_unset_fields & PERF_OUTPUT_SYM))
2234 output[type].fields |= PERF_OUTPUT_SYM;
Jiri Olsa53fb1892020-05-07 11:50:24 +02002235 }
2236 set_print_ip_opts(&evsel->core.attr);
Jiri Olsa0d71a2b2020-05-07 11:50:23 +02002237 return 0;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002238}
2239
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002240static int print_event_with_time(struct perf_tool *tool,
2241 union perf_event *event,
2242 struct perf_sample *sample,
2243 struct machine *machine,
2244 pid_t pid, pid_t tid, u64 timestamp)
2245{
2246 struct perf_script *script = container_of(tool, struct perf_script, tool);
2247 struct perf_session *session = script->session;
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03002248 struct evsel *evsel = evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002249 struct thread *thread = NULL;
2250
2251 if (evsel && !evsel->core.attr.sample_id_all) {
2252 sample->cpu = 0;
2253 sample->time = timestamp;
2254 sample->pid = pid;
2255 sample->tid = tid;
2256 }
2257
2258 if (filter_cpu(sample))
2259 return 0;
2260
2261 if (tid != -1)
2262 thread = machine__findnew_thread(machine, pid, tid);
2263
Adrian Hunterfc183802020-09-09 11:49:22 +03002264 if (evsel) {
Jiri Olsae534bfb2020-08-05 11:34:44 +02002265 perf_sample__fprintf_start(script, sample, thread, evsel,
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002266 event->header.type, stdout);
2267 }
2268
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002269 perf_event__fprintf(event, machine, stdout);
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002270
2271 thread__put(thread);
2272
2273 return 0;
2274}
2275
2276static int print_event(struct perf_tool *tool, union perf_event *event,
2277 struct perf_sample *sample, struct machine *machine,
2278 pid_t pid, pid_t tid)
2279{
2280 return print_event_with_time(tool, event, sample, machine, pid, tid, 0);
2281}
2282
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002283static int process_comm_event(struct perf_tool *tool,
2284 union perf_event *event,
2285 struct perf_sample *sample,
2286 struct machine *machine)
2287{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002288 if (perf_event__process_comm(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002289 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002290
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002291 return print_event(tool, event, sample, machine, event->comm.pid,
2292 event->comm.tid);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002293}
2294
Hari Bathini96a44bb2017-03-08 02:12:06 +05302295static int process_namespaces_event(struct perf_tool *tool,
2296 union perf_event *event,
2297 struct perf_sample *sample,
2298 struct machine *machine)
2299{
Hari Bathini96a44bb2017-03-08 02:12:06 +05302300 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002301 return -1;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302302
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002303 return print_event(tool, event, sample, machine, event->namespaces.pid,
2304 event->namespaces.tid);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302305}
2306
Namhyung Kim160d4af2020-03-25 21:45:36 +09002307static int process_cgroup_event(struct perf_tool *tool,
2308 union perf_event *event,
2309 struct perf_sample *sample,
2310 struct machine *machine)
2311{
Namhyung Kim160d4af2020-03-25 21:45:36 +09002312 if (perf_event__process_cgroup(tool, event, sample, machine) < 0)
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002313 return -1;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002314
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002315 return print_event(tool, event, sample, machine, sample->pid,
2316 sample->tid);
Namhyung Kim160d4af2020-03-25 21:45:36 +09002317}
2318
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002319static int process_fork_event(struct perf_tool *tool,
2320 union perf_event *event,
2321 struct perf_sample *sample,
2322 struct machine *machine)
2323{
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002324 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2325 return -1;
2326
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002327 return print_event_with_time(tool, event, sample, machine,
2328 event->fork.pid, event->fork.tid,
2329 event->fork.time);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002330}
2331static int process_exit_event(struct perf_tool *tool,
2332 union perf_event *event,
2333 struct perf_sample *sample,
2334 struct machine *machine)
2335{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002336 /* Print before 'exit' deletes anything */
2337 if (print_event_with_time(tool, event, sample, machine, event->fork.pid,
2338 event->fork.tid, event->fork.time))
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002339 return -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002340
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002341 return perf_event__process_exit(tool, event, sample, machine);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002342}
2343
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002344static int process_mmap_event(struct perf_tool *tool,
2345 union perf_event *event,
2346 struct perf_sample *sample,
2347 struct machine *machine)
2348{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002349 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2350 return -1;
2351
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002352 return print_event(tool, event, sample, machine, event->mmap.pid,
2353 event->mmap.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002354}
2355
2356static int process_mmap2_event(struct perf_tool *tool,
2357 union perf_event *event,
2358 struct perf_sample *sample,
2359 struct machine *machine)
2360{
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002361 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2362 return -1;
2363
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002364 return print_event(tool, event, sample, machine, event->mmap2.pid,
2365 event->mmap2.tid);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002366}
2367
Adrian Hunter7c148982015-07-21 12:44:06 +03002368static int process_switch_event(struct perf_tool *tool,
2369 union perf_event *event,
2370 struct perf_sample *sample,
2371 struct machine *machine)
2372{
Adrian Hunter7c148982015-07-21 12:44:06 +03002373 struct perf_script *script = container_of(tool, struct perf_script, tool);
Adrian Hunter7c148982015-07-21 12:44:06 +03002374
2375 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2376 return -1;
2377
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002378 if (scripting_ops && scripting_ops->process_switch)
2379 scripting_ops->process_switch(event, sample, machine);
2380
2381 if (!script->show_switch_events)
2382 return 0;
2383
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002384 return print_event(tool, event, sample, machine, sample->pid,
2385 sample->tid);
Adrian Hunter7c148982015-07-21 12:44:06 +03002386}
2387
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002388static int
2389process_lost_event(struct perf_tool *tool,
2390 union perf_event *event,
2391 struct perf_sample *sample,
2392 struct machine *machine)
2393{
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002394 return print_event(tool, event, sample, machine, sample->pid,
2395 sample->tid);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002396}
2397
Jiri Olsa3233b372018-02-06 19:17:59 +01002398static int
2399process_finished_round_event(struct perf_tool *tool __maybe_unused,
2400 union perf_event *event,
2401 struct ordered_events *oe __maybe_unused)
2402
2403{
Adrian Hunter7eeb9852020-05-12 15:19:22 +03002404 perf_event__fprintf(event, NULL, stdout);
Jiri Olsa3233b372018-02-06 19:17:59 +01002405 return 0;
2406}
2407
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002408static int
2409process_bpf_events(struct perf_tool *tool __maybe_unused,
2410 union perf_event *event,
2411 struct perf_sample *sample,
2412 struct machine *machine)
2413{
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002414 if (machine__process_ksymbol(machine, event, sample) < 0)
2415 return -1;
2416
Adrian Hunter1a2725f2020-04-02 17:15:48 +03002417 return print_event(tool, event, sample, machine, sample->pid,
2418 sample->tid);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002419}
2420
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002421static int process_text_poke_events(struct perf_tool *tool,
2422 union perf_event *event,
2423 struct perf_sample *sample,
2424 struct machine *machine)
2425{
2426 if (perf_event__process_text_poke(tool, event, sample, machine) < 0)
2427 return -1;
2428
2429 return print_event(tool, event, sample, machine, sample->pid,
2430 sample->tid);
2431}
2432
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002433static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002434{
2435 session_done = 1;
2436}
2437
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002438static void perf_script__fclose_per_event_dump(struct perf_script *script)
2439{
Jiri Olsa63503db2019-07-21 13:23:52 +02002440 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002441 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002442
2443 evlist__for_each_entry(evlist, evsel) {
2444 if (!evsel->priv)
2445 break;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002446 perf_evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002447 evsel->priv = NULL;
2448 }
2449}
2450
2451static int perf_script__fopen_per_event_dump(struct perf_script *script)
2452{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002453 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002454
2455 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002456 /*
2457 * Already setup? I.e. we may be called twice in cases like
2458 * Intel PT, one for the intel_pt// and dummy events, then
2459 * for the evsels syntheized from the auxtrace info.
2460 *
2461 * Ses perf_script__process_auxtrace_info.
2462 */
2463 if (evsel->priv != NULL)
2464 continue;
2465
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002466 evsel->priv = perf_evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002467 if (evsel->priv == NULL)
2468 goto out_err_fclose;
2469 }
2470
2471 return 0;
2472
2473out_err_fclose:
2474 perf_script__fclose_per_event_dump(script);
2475 return -1;
2476}
2477
2478static int perf_script__setup_per_event_dump(struct perf_script *script)
2479{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002480 struct evsel *evsel;
2481 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002482
2483 if (script->per_event_dump)
2484 return perf_script__fopen_per_event_dump(script);
2485
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002486 es_stdout.fp = stdout;
2487
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002488 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002489 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002490
2491 return 0;
2492}
2493
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002494static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2495{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002496 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002497
2498 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002499 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002500
2501 perf_evsel_script__fprintf(es, stdout);
2502 perf_evsel_script__delete(es);
2503 evsel->priv = NULL;
2504 }
2505}
2506
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002507static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002508{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002509 int ret;
2510
Tom Zanussic239da32010-04-01 23:59:18 -05002511 signal(SIGINT, sig_handler);
2512
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002513 perf_stat__init_shadow_stats();
2514
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002515 /* override event processing functions */
2516 if (script->show_task_events) {
2517 script->tool.comm = process_comm_event;
2518 script->tool.fork = process_fork_event;
2519 script->tool.exit = process_exit_event;
2520 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002521 if (script->show_mmap_events) {
2522 script->tool.mmap = process_mmap_event;
2523 script->tool.mmap2 = process_mmap2_event;
2524 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002525 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002526 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302527 if (script->show_namespace_events)
2528 script->tool.namespaces = process_namespaces_event;
Namhyung Kim160d4af2020-03-25 21:45:36 +09002529 if (script->show_cgroup_events)
2530 script->tool.cgroup = process_cgroup_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002531 if (script->show_lost_events)
2532 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002533 if (script->show_round_events) {
2534 script->tool.ordered_events = false;
2535 script->tool.finished_round = process_finished_round_event;
2536 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002537 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002538 script->tool.ksymbol = process_bpf_events;
2539 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002540 }
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03002541 if (script->show_text_poke_events) {
2542 script->tool.ksymbol = process_bpf_events;
2543 script->tool.text_poke = process_text_poke_events;
2544 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002545
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002546 if (perf_script__setup_per_event_dump(script)) {
2547 pr_err("Couldn't create the per event dump files\n");
2548 return -1;
2549 }
2550
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002551 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002552
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002553 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002554 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002555
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002556 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002557 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002558
2559 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002560}
2561
Tom Zanussi956ffd02009-11-25 01:15:46 -06002562struct script_spec {
2563 struct list_head node;
2564 struct scripting_ops *ops;
Gustavo A. R. Silva6549a8c2020-05-15 12:29:26 -05002565 char spec[];
Tom Zanussi956ffd02009-11-25 01:15:46 -06002566};
2567
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002568static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002569
2570static struct script_spec *script_spec__new(const char *spec,
2571 struct scripting_ops *ops)
2572{
2573 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2574
2575 if (s != NULL) {
2576 strcpy(s->spec, spec);
2577 s->ops = ops;
2578 }
2579
2580 return s;
2581}
2582
Tom Zanussi956ffd02009-11-25 01:15:46 -06002583static void script_spec__add(struct script_spec *s)
2584{
2585 list_add_tail(&s->node, &script_specs);
2586}
2587
2588static struct script_spec *script_spec__find(const char *spec)
2589{
2590 struct script_spec *s;
2591
2592 list_for_each_entry(s, &script_specs, node)
2593 if (strcasecmp(s->spec, spec) == 0)
2594 return s;
2595 return NULL;
2596}
2597
Tom Zanussi956ffd02009-11-25 01:15:46 -06002598int script_spec_register(const char *spec, struct scripting_ops *ops)
2599{
2600 struct script_spec *s;
2601
2602 s = script_spec__find(spec);
2603 if (s)
2604 return -1;
2605
Taeung Song8560bae2016-02-26 00:13:10 +09002606 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002607 if (!s)
2608 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002609 else
2610 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002611
2612 return 0;
2613}
2614
2615static struct scripting_ops *script_spec__lookup(const char *spec)
2616{
2617 struct script_spec *s = script_spec__find(spec);
2618 if (!s)
2619 return NULL;
2620
2621 return s->ops;
2622}
2623
2624static void list_available_languages(void)
2625{
2626 struct script_spec *s;
2627
2628 fprintf(stderr, "\n");
2629 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002630 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002631
2632 list_for_each_entry(s, &script_specs, node)
2633 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2634
2635 fprintf(stderr, "\n");
2636}
2637
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002638static int parse_scriptname(const struct option *opt __maybe_unused,
2639 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002640{
2641 char spec[PATH_MAX];
2642 const char *script, *ext;
2643 int len;
2644
Tom Zanussif526d682010-01-27 02:27:52 -06002645 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002646 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002647 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002648 }
2649
2650 script = strchr(str, ':');
2651 if (script) {
2652 len = script - str;
2653 if (len >= PATH_MAX) {
2654 fprintf(stderr, "invalid language specifier");
2655 return -1;
2656 }
2657 strncpy(spec, str, len);
2658 spec[len] = '\0';
2659 scripting_ops = script_spec__lookup(spec);
2660 if (!scripting_ops) {
2661 fprintf(stderr, "invalid language specifier");
2662 return -1;
2663 }
2664 script++;
2665 } else {
2666 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002667 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002668 if (!ext) {
2669 fprintf(stderr, "invalid script extension");
2670 return -1;
2671 }
2672 scripting_ops = script_spec__lookup(++ext);
2673 if (!scripting_ops) {
2674 fprintf(stderr, "invalid script extension");
2675 return -1;
2676 }
2677 }
2678
2679 script_name = strdup(script);
2680
2681 return 0;
2682}
2683
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002684static int parse_output_fields(const struct option *opt __maybe_unused,
2685 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002686{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002687 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002688 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002689 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002690 int rc = 0;
2691 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002692 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002693 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002694
2695 if (!str)
2696 return -ENOMEM;
2697
David Ahern2c9e45f72011-03-17 10:03:21 -06002698 /* first word can state for which event type the user is specifying
2699 * the fields. If no type exists, the specified fields apply to all
2700 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002701 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002702 tok = strchr(str, ':');
2703 if (tok) {
2704 *tok = '\0';
2705 tok++;
2706 if (!strcmp(str, "hw"))
2707 type = PERF_TYPE_HARDWARE;
2708 else if (!strcmp(str, "sw"))
2709 type = PERF_TYPE_SOFTWARE;
2710 else if (!strcmp(str, "trace"))
2711 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002712 else if (!strcmp(str, "raw"))
2713 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002714 else if (!strcmp(str, "break"))
2715 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002716 else if (!strcmp(str, "synth"))
2717 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002718 else {
2719 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002720 rc = -EINVAL;
2721 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002722 }
2723
2724 if (output[type].user_set)
2725 pr_warning("Overriding previous field request for %s events.\n",
2726 event_type(type));
2727
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002728 /* Don't override defaults for +- */
2729 if (strchr(tok, '+') || strchr(tok, '-'))
2730 goto parse;
2731
David Ahern2c9e45f72011-03-17 10:03:21 -06002732 output[type].fields = 0;
2733 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002734 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002735
2736 } else {
2737 tok = str;
2738 if (strlen(str) == 0) {
2739 fprintf(stderr,
2740 "Cannot set fields to 'none' for all event types.\n");
2741 rc = -EINVAL;
2742 goto out;
2743 }
2744
Andi Kleen36ce5652017-06-02 08:48:10 -07002745 /* Don't override defaults for +- */
2746 if (strchr(str, '+') || strchr(str, '-'))
2747 goto parse;
2748
David Ahern2c9e45f72011-03-17 10:03:21 -06002749 if (output_set_by_user())
2750 pr_warning("Overriding previous field request for all events.\n");
2751
Adrian Hunter14057202017-06-21 13:17:19 +03002752 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002753 output[j].fields = 0;
2754 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002755 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002756 }
David Ahern1424dc92011-03-09 22:23:28 -07002757 }
2758
Andi Kleen36ce5652017-06-02 08:48:10 -07002759parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002760 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002761 if (*tok == '+') {
2762 if (change == SET)
2763 goto out_badmix;
2764 change = ADD;
2765 tok++;
2766 } else if (*tok == '-') {
2767 if (change == SET)
2768 goto out_badmix;
2769 change = REMOVE;
2770 tok++;
2771 } else {
2772 if (change != SET && change != DEFAULT)
2773 goto out_badmix;
2774 change = SET;
2775 }
2776
David Ahern745f43e2011-03-09 22:23:26 -07002777 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002778 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002779 break;
David Ahern745f43e2011-03-09 22:23:26 -07002780 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002781 if (i == imax && strcmp(tok, "flags") == 0) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002782 print_flags = change == REMOVE ? false : true;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002783 continue;
2784 }
David Ahern745f43e2011-03-09 22:23:26 -07002785 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002786 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002787 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002788 goto out;
2789 }
2790
2791 if (type == -1) {
2792 /* add user option to all events types for
2793 * which it is valid
2794 */
Adrian Hunter14057202017-06-21 13:17:19 +03002795 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002796 if (output[j].invalid_fields & all_output_options[i].field) {
2797 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2798 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002799 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002800 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002801 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002802 output[j].user_set_fields &= ~all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002803 output[j].user_unset_fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002804 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002805 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002806 output[j].user_set_fields |= all_output_options[i].field;
Adrian Hunterb5164082020-05-27 21:02:50 +03002807 output[j].user_unset_fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002808 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002809 output[j].user_set = true;
2810 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002811 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002812 }
2813 } else {
2814 if (output[type].invalid_fields & all_output_options[i].field) {
2815 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2816 all_output_options[i].str, event_type(type));
2817
2818 rc = -EINVAL;
2819 goto out;
2820 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002821 if (change == REMOVE)
2822 output[type].fields &= ~all_output_options[i].field;
2823 else
2824 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002825 output[type].user_set = true;
2826 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002827 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002828 }
2829
2830 if (type >= 0) {
2831 if (output[type].fields == 0) {
2832 pr_debug("No fields requested for %s type. "
2833 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002834 }
David Ahern1424dc92011-03-09 22:23:28 -07002835 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002836 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002837
Andi Kleen36ce5652017-06-02 08:48:10 -07002838out_badmix:
2839 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2840 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002841out:
David Ahern745f43e2011-03-09 22:23:26 -07002842 free(str);
2843 return rc;
2844}
2845
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002846#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2847 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2848 if ((lang_dirent->d_type == DT_DIR || \
2849 (lang_dirent->d_type == DT_UNKNOWN && \
2850 is_directory(scripts_path, lang_dirent))) && \
2851 (strcmp(lang_dirent->d_name, ".")) && \
2852 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002853
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002854#define for_each_script(lang_path, lang_dir, script_dirent) \
2855 while ((script_dirent = readdir(lang_dir)) != NULL) \
2856 if (script_dirent->d_type != DT_DIR && \
2857 (script_dirent->d_type != DT_UNKNOWN || \
2858 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002859
2860
2861#define RECORD_SUFFIX "-record"
2862#define REPORT_SUFFIX "-report"
2863
2864struct script_desc {
2865 struct list_head node;
2866 char *name;
2867 char *half_liner;
2868 char *args;
2869};
2870
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002871static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002872
2873static struct script_desc *script_desc__new(const char *name)
2874{
2875 struct script_desc *s = zalloc(sizeof(*s));
2876
Tom Zanussib5b87312010-11-10 08:16:51 -06002877 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002878 s->name = strdup(name);
2879
2880 return s;
2881}
2882
2883static void script_desc__delete(struct script_desc *s)
2884{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002885 zfree(&s->name);
2886 zfree(&s->half_liner);
2887 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002888 free(s);
2889}
2890
2891static void script_desc__add(struct script_desc *s)
2892{
2893 list_add_tail(&s->node, &script_descs);
2894}
2895
2896static struct script_desc *script_desc__find(const char *name)
2897{
2898 struct script_desc *s;
2899
2900 list_for_each_entry(s, &script_descs, node)
2901 if (strcasecmp(s->name, name) == 0)
2902 return s;
2903 return NULL;
2904}
2905
2906static struct script_desc *script_desc__findnew(const char *name)
2907{
2908 struct script_desc *s = script_desc__find(name);
2909
2910 if (s)
2911 return s;
2912
2913 s = script_desc__new(name);
2914 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002915 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002916
2917 script_desc__add(s);
2918
2919 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002920}
2921
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002922static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002923{
2924 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002925 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002926
2927 if (strlen(str) > suffix_len) {
2928 p = str + strlen(str) - suffix_len;
2929 if (!strncmp(p, suffix, suffix_len))
2930 return p;
2931 }
2932
2933 return NULL;
2934}
2935
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002936static int read_script_info(struct script_desc *desc, const char *filename)
2937{
2938 char line[BUFSIZ], *p;
2939 FILE *fp;
2940
2941 fp = fopen(filename, "r");
2942 if (!fp)
2943 return -1;
2944
2945 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002946 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002947 if (strlen(p) == 0)
2948 continue;
2949 if (*p != '#')
2950 continue;
2951 p++;
2952 if (strlen(p) && *p == '!')
2953 continue;
2954
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002955 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002956 if (strlen(p) && p[strlen(p) - 1] == '\n')
2957 p[strlen(p) - 1] = '\0';
2958
2959 if (!strncmp(p, "description:", strlen("description:"))) {
2960 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002961 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002962 continue;
2963 }
2964
2965 if (!strncmp(p, "args:", strlen("args:"))) {
2966 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002967 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002968 continue;
2969 }
2970 }
2971
2972 fclose(fp);
2973
2974 return 0;
2975}
2976
Robert Richter38efb532011-11-25 11:38:40 +01002977static char *get_script_root(struct dirent *script_dirent, const char *suffix)
2978{
2979 char *script_root, *str;
2980
2981 script_root = strdup(script_dirent->d_name);
2982 if (!script_root)
2983 return NULL;
2984
2985 str = (char *)ends_with(script_root, suffix);
2986 if (!str) {
2987 free(script_root);
2988 return NULL;
2989 }
2990
2991 *str = '\0';
2992 return script_root;
2993}
2994
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002995static int list_available_scripts(const struct option *opt __maybe_unused,
2996 const char *s __maybe_unused,
2997 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002998{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002999 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003000 char scripts_path[MAXPATHLEN];
3001 DIR *scripts_dir, *lang_dir;
3002 char script_path[MAXPATHLEN];
3003 char lang_path[MAXPATHLEN];
3004 struct script_desc *desc;
3005 char first_half[BUFSIZ];
3006 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003007
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003008 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003009
3010 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003011 if (!scripts_dir) {
3012 fprintf(stdout,
3013 "open(%s) failed.\n"
3014 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3015 scripts_path);
3016 exit(-1);
3017 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003018
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003019 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003020 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3021 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003022 lang_dir = opendir(lang_path);
3023 if (!lang_dir)
3024 continue;
3025
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003026 for_each_script(lang_path, lang_dir, script_dirent) {
3027 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003028 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003029 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003030 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3031 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003032 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003033 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003034 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003035 }
3036 }
3037
3038 fprintf(stdout, "List of available trace scripts:\n");
3039 list_for_each_entry(desc, &script_descs, node) {
3040 sprintf(first_half, "%s %s", desc->name,
3041 desc->args ? desc->args : "");
3042 fprintf(stdout, " %-36s %s\n", first_half,
3043 desc->half_liner ? desc->half_liner : "");
3044 }
3045
3046 exit(0);
3047}
3048
Feng Tange5f37052012-09-07 16:42:26 +08003049/*
Feng Tang49e639e2012-10-30 11:56:03 +08003050 * Some scripts specify the required events in their "xxx-record" file,
3051 * this function will check if the events in perf.data match those
3052 * mentioned in the "xxx-record".
3053 *
3054 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3055 * which is covered well now. And new parsing code should be added to
3056 * cover the future complexing formats like event groups etc.
3057 */
3058static int check_ev_match(char *dir_name, char *scriptname,
3059 struct perf_session *session)
3060{
3061 char filename[MAXPATHLEN], evname[128];
3062 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003063 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003064 int match, len;
3065 FILE *fp;
3066
Jiri Olsa77f18152018-03-19 09:29:01 +01003067 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003068
3069 fp = fopen(filename, "r");
3070 if (!fp)
3071 return -1;
3072
3073 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003074 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003075 if (*p == '#')
3076 continue;
3077
3078 while (strlen(p)) {
3079 p = strstr(p, "-e");
3080 if (!p)
3081 break;
3082
3083 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003084 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003085 len = strcspn(p, " \t");
3086 if (!len)
3087 break;
3088
3089 snprintf(evname, len + 1, "%s", p);
3090
3091 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003092 evlist__for_each_entry(session->evlist, pos) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03003093 if (!strcmp(evsel__name(pos), evname)) {
Feng Tang49e639e2012-10-30 11:56:03 +08003094 match = 1;
3095 break;
3096 }
3097 }
3098
3099 if (!match) {
3100 fclose(fp);
3101 return -1;
3102 }
3103 }
3104 }
3105
3106 fclose(fp);
3107 return 0;
3108}
3109
3110/*
Feng Tange5f37052012-09-07 16:42:26 +08003111 * Return -1 if none is found, otherwise the actual scripts number.
3112 *
3113 * Currently the only user of this function is the script browser, which
3114 * will list all statically runnable scripts, select one, execute it and
3115 * show the output in a perf browser.
3116 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003117int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3118 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003119{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003120 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003121 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003122 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003123 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003124 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003125 .path = input_name,
3126 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003127 };
Feng Tange5f37052012-09-07 16:42:26 +08003128 char *temp;
3129 int i = 0;
3130
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003131 session = perf_session__new(&data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303132 if (IS_ERR(session))
3133 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003134
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003135 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003136
3137 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003138 if (!scripts_dir) {
3139 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003140 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003141 }
Feng Tange5f37052012-09-07 16:42:26 +08003142
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003143 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003144 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3145 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003146#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003147 if (strstr(lang_path, "perl"))
3148 continue;
3149#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003150#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003151 if (strstr(lang_path, "python"))
3152 continue;
3153#endif
3154
3155 lang_dir = opendir(lang_path);
3156 if (!lang_dir)
3157 continue;
3158
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003159 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08003160 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003161 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003162 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003163 if (i >= num)
3164 break;
3165 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3166 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003167 script_dirent->d_name);
3168 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003169 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003170 (temp - script_dirent->d_name) + 1,
3171 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003172
3173 if (check_ev_match(lang_path,
3174 scripts_array[i], session))
3175 continue;
3176
Feng Tange5f37052012-09-07 16:42:26 +08003177 i++;
3178 }
Feng Tang49e639e2012-10-30 11:56:03 +08003179 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003180 }
3181
Feng Tang49e639e2012-10-30 11:56:03 +08003182 closedir(scripts_dir);
3183 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003184 return i;
3185}
3186
Tom Zanussi38752942009-12-15 02:53:39 -06003187static char *get_script_path(const char *script_root, const char *suffix)
3188{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003189 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003190 char scripts_path[MAXPATHLEN];
3191 char script_path[MAXPATHLEN];
3192 DIR *scripts_dir, *lang_dir;
3193 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003194 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003195
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003196 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003197
3198 scripts_dir = opendir(scripts_path);
3199 if (!scripts_dir)
3200 return NULL;
3201
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003202 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003203 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3204 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003205 lang_dir = opendir(lang_path);
3206 if (!lang_dir)
3207 continue;
3208
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003209 for_each_script(lang_path, lang_dir, script_dirent) {
3210 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003211 if (__script_root && !strcmp(script_root, __script_root)) {
3212 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003213 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003214 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3215 lang_path, script_dirent->d_name);
Andreas Gerstmayr27486a82020-04-02 14:43:38 +02003216 closedir(lang_dir);
Robert Richter38efb532011-11-25 11:38:40 +01003217 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003218 }
3219 free(__script_root);
3220 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003221 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003222 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003223 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003224
Robert Richter38efb532011-11-25 11:38:40 +01003225 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003226}
3227
Tom Zanussib5b87312010-11-10 08:16:51 -06003228static bool is_top_script(const char *script_path)
3229{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003230 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06003231}
3232
3233static int has_required_arg(char *script_path)
3234{
3235 struct script_desc *desc;
3236 int n_args = 0;
3237 char *p;
3238
3239 desc = script_desc__new(NULL);
3240
3241 if (read_script_info(desc, script_path))
3242 goto out;
3243
3244 if (!desc->args)
3245 goto out;
3246
3247 for (p = desc->args; *p; p++)
3248 if (*p == '<')
3249 n_args++;
3250out:
3251 script_desc__delete(desc);
3252
3253 return n_args;
3254}
3255
David Ahernd54b1a92012-08-26 12:24:46 -06003256static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003257{
3258 char **__argv = malloc(sizeof(const char *) * argc);
3259
David Ahernd54b1a92012-08-26 12:24:46 -06003260 if (!__argv) {
3261 pr_err("malloc failed\n");
3262 return -1;
3263 }
3264
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003265 memcpy(__argv, argv, sizeof(const char *) * argc);
3266 argc = parse_options(argc, (const char **)__argv, record_options,
3267 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3268 free(__argv);
3269
David Ahernd54b1a92012-08-26 12:24:46 -06003270 system_wide = (argc == 0);
3271
3272 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003273}
3274
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003275static void script__setup_sample_type(struct perf_script *script)
3276{
3277 struct perf_session *session = script->session;
Arnaldo Carvalho de Melob3c2cc22020-06-17 09:24:21 -03003278 u64 sample_type = evlist__combined_sample_type(session->evlist);
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003279
3280 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3281 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003282 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003283 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003284 dwarf_callchain_users = true;
3285 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003286 callchain_param.record_mode = CALLCHAIN_LBR;
3287 else
3288 callchain_param.record_mode = CALLCHAIN_FP;
3289 }
Kan Liang680d1252020-03-19 13:25:14 -07003290
3291 if (script->stitch_lbr && (callchain_param.record_mode != CALLCHAIN_LBR)) {
3292 pr_warning("Can't find LBR callchain. Switch off --stitch-lbr.\n"
3293 "Please apply --call-graph lbr when recording.\n");
3294 script->stitch_lbr = false;
3295 }
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003296}
3297
Jiri Olsa89f16882018-09-13 14:54:03 +02003298static int process_stat_round_event(struct perf_session *session,
3299 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003300{
Jiri Olsa72932372019-08-28 15:57:16 +02003301 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003302 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003303
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003304 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003305 perf_stat_process_counter(&stat_config, counter);
3306 process_stat(counter, round->time);
3307 }
3308
3309 process_stat_interval(round->time);
3310 return 0;
3311}
3312
Jiri Olsa89f16882018-09-13 14:54:03 +02003313static int process_stat_config_event(struct perf_session *session __maybe_unused,
3314 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003315{
3316 perf_event__read_stat_config(&stat_config, &event->stat_config);
3317 return 0;
3318}
3319
Jiri Olsacfc88742016-01-05 22:09:06 +01003320static int set_maps(struct perf_script *script)
3321{
Jiri Olsa63503db2019-07-21 13:23:52 +02003322 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003323
3324 if (!script->cpus || !script->threads)
3325 return 0;
3326
3327 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3328 return -EINVAL;
3329
Jiri Olsa453fa032019-07-21 13:24:43 +02003330 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003331
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003332 if (evlist__alloc_stats(evlist, true))
Jiri Olsacfc88742016-01-05 22:09:06 +01003333 return -ENOMEM;
3334
3335 script->allocated = true;
3336 return 0;
3337}
3338
3339static
Jiri Olsa89f16882018-09-13 14:54:03 +02003340int process_thread_map_event(struct perf_session *session,
3341 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003342{
Jiri Olsa89f16882018-09-13 14:54:03 +02003343 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003344 struct perf_script *script = container_of(tool, struct perf_script, tool);
3345
3346 if (script->threads) {
3347 pr_warning("Extra thread map event, ignoring.\n");
3348 return 0;
3349 }
3350
3351 script->threads = thread_map__new_event(&event->thread_map);
3352 if (!script->threads)
3353 return -ENOMEM;
3354
3355 return set_maps(script);
3356}
3357
3358static
Jiri Olsa89f16882018-09-13 14:54:03 +02003359int process_cpu_map_event(struct perf_session *session,
3360 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003361{
Jiri Olsa89f16882018-09-13 14:54:03 +02003362 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003363 struct perf_script *script = container_of(tool, struct perf_script, tool);
3364
3365 if (script->cpus) {
3366 pr_warning("Extra cpu map event, ignoring.\n");
3367 return 0;
3368 }
3369
3370 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3371 if (!script->cpus)
3372 return -ENOMEM;
3373
3374 return set_maps(script);
3375}
3376
Jiri Olsa89f16882018-09-13 14:54:03 +02003377static int process_feature_event(struct perf_session *session,
3378 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303379{
3380 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003381 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303382 return 0;
3383}
3384
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003385#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003386static int perf_script__process_auxtrace_info(struct perf_session *session,
3387 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003388{
Jiri Olsa89f16882018-09-13 14:54:03 +02003389 struct perf_tool *tool = session->tool;
3390
3391 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003392
3393 if (ret == 0) {
3394 struct perf_script *script = container_of(tool, struct perf_script, tool);
3395
3396 ret = perf_script__setup_per_event_dump(script);
3397 }
3398
3399 return ret;
3400}
3401#else
3402#define perf_script__process_auxtrace_info 0
3403#endif
3404
Andi Kleenb585ebd2018-09-20 11:05:36 -07003405static int parse_insn_trace(const struct option *opt __maybe_unused,
3406 const char *str __maybe_unused,
3407 int unset __maybe_unused)
3408{
3409 parse_output_fields(NULL, "+insn,-event,-period", 0);
3410 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003411 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003412 return 0;
3413}
3414
3415static int parse_xed(const struct option *opt __maybe_unused,
3416 const char *str __maybe_unused,
3417 int unset __maybe_unused)
3418{
Andi Kleen8c3e05c2020-05-21 19:09:14 -07003419 if (isatty(1))
3420 force_pager("xed -F insn: -A -64 | less");
3421 else
3422 force_pager("xed -F insn: -A -64");
Andi Kleenb585ebd2018-09-20 11:05:36 -07003423 return 0;
3424}
3425
Andi Kleend1b15522018-09-20 11:05:38 -07003426static int parse_call_trace(const struct option *opt __maybe_unused,
3427 const char *str __maybe_unused,
3428 int unset __maybe_unused)
3429{
3430 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3431 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003432 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003433 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003434 return 0;
3435}
3436
3437static int parse_callret_trace(const struct option *opt __maybe_unused,
3438 const char *str __maybe_unused,
3439 int unset __maybe_unused)
3440{
3441 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3442 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003443 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003444 return 0;
3445}
3446
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003447int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003448{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003449 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003450 bool header = false;
3451 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003452 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003453 char *rec_script_path = NULL;
3454 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003455 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003456 struct itrace_synth_opts itrace_synth_opts = {
3457 .set = false,
3458 .default_no_sample = true,
3459 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003460 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003461 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003462 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003463 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003464 struct perf_script script = {
3465 .tool = {
3466 .sample = process_sample_event,
3467 .mmap = perf_event__process_mmap,
3468 .mmap2 = perf_event__process_mmap2,
3469 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303470 .namespaces = perf_event__process_namespaces,
Namhyung Kim160d4af2020-03-25 21:45:36 +09003471 .cgroup = perf_event__process_cgroup,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003472 .exit = perf_event__process_exit,
3473 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003474 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003475 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003476 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303477 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003478 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003479 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003480 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003481 .auxtrace = perf_event__process_auxtrace,
3482 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003483 .stat = perf_event__process_stat_event,
3484 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003485 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003486 .thread_map = process_thread_map_event,
3487 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003488 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003489 .ordering_requires_timestamps = true,
3490 },
3491 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003492 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003493 .mode = PERF_DATA_MODE_READ,
3494 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003495 const struct option options[] = {
3496 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3497 "dump raw trace in ASCII"),
3498 OPT_INCR('v', "verbose", &verbose,
3499 "be more verbose (show symbol address, etc)"),
3500 OPT_BOOLEAN('L', "Latency", &latency_format,
3501 "show latency attributes (irqs/preemption disabled, etc)"),
3502 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3503 list_available_scripts),
3504 OPT_CALLBACK('s', "script", NULL, "name",
3505 "script file name (lang:script name, script name, or *)",
3506 parse_scriptname),
3507 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3508 "generate perf-script.xx script in specified language"),
3509 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3510 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3511 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003512 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3513 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003514 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3515 "file", "vmlinux pathname"),
3516 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3517 "file", "kallsyms pathname"),
3518 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3519 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003520 OPT_CALLBACK(0, "symfs", NULL, "directory",
3521 "Look for files with symbols relative to this directory",
3522 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003523 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003524 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003525 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003526 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003527 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303528 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3529 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Kan Liang6b9bae62020-12-16 10:57:57 -08003530 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc,tod,"
Stephane Eranianc513de82021-01-05 11:57:50 -08003531 "data_page_size,code_page_size",
Andi Kleen48d02a12017-02-23 15:46:34 -08003532 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003533 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3534 "system-wide collection from all CPUs"),
3535 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3536 "only consider these symbols"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003537 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3538 "Decode instructions from itrace", parse_insn_trace),
3539 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3540 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003541 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3542 "Decode calls from from itrace", parse_call_trace),
3543 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3544 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003545 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3546 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003547 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3548 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003549 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3550 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3551 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003552 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3553 "only consider symbols in these pids"),
3554 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3555 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003556 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3557 "Set the maximum stack depth when parsing the callchain, "
3558 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003559 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003560 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003561 OPT_BOOLEAN(0, "deltatime", &deltatime, "Show time stamps relative to previous event"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003562 OPT_BOOLEAN('I', "show-info", &show_full_info,
3563 "display extended information from perf.data file"),
3564 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3565 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003566 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3567 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003568 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3569 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003570 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3571 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303572 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3573 "Show namespace events (if recorded)"),
Namhyung Kim160d4af2020-03-25 21:45:36 +09003574 OPT_BOOLEAN('\0', "show-cgroup-events", &script.show_cgroup_events,
3575 "Show cgroup events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003576 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3577 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003578 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3579 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003580 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3581 "Show bpf related events (if recorded)"),
Adrian Hunter92ecf3a2020-05-12 15:19:21 +03003582 OPT_BOOLEAN('\0', "show-text-poke-events", &script.show_text_poke_events,
3583 "Show text poke related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003584 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3585 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003586 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003587 OPT_INTEGER(0, "max-blocks", &max_blocks,
3588 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003589 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003590 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003591 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003592 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003593 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003594 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3595 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003596 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3597 "Enable symbol demangling"),
3598 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3599 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003600 OPT_STRING(0, "time", &script.time_str, "str",
3601 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003602 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3603 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003604 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3605 "guest mount directory under which every guest os"
3606 " instance has a subdir"),
3607 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3608 "file", "file saving guest os vmlinux"),
3609 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3610 "file", "file saving guest os /proc/kallsyms"),
3611 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3612 "file", "file saving guest os /proc/modules"),
Kan Liang680d1252020-03-19 13:25:14 -07003613 OPT_BOOLEAN('\0', "stitch-lbr", &script.stitch_lbr,
3614 "Enable LBR callgraph stitching approach"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003615 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003616 OPT_END()
3617 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003618 const char * const script_subcommands[] = { "record", "report", NULL };
3619 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003620 "perf script [<options>]",
3621 "perf script [<options>] record <script> [<record-options>] <command>",
3622 "perf script [<options>] report <script> [script-args]",
3623 "perf script [<options>] <script> [<record-options>] <command>",
3624 "perf script [<options>] <top-script> [script-args]",
3625 NULL
3626 };
Tom Zanussi38752942009-12-15 02:53:39 -06003627
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003628 perf_set_singlethreaded();
3629
Tom Zanussib5b87312010-11-10 08:16:51 -06003630 setup_scripting();
3631
Yunlong Song40cae2b2015-03-18 21:35:54 +08003632 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003633 PARSE_OPT_STOP_AT_NON_OPTION);
3634
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003635 if (symbol_conf.guestmount ||
3636 symbol_conf.default_guest_vmlinux_name ||
3637 symbol_conf.default_guest_kallsyms ||
3638 symbol_conf.default_guest_modules) {
3639 /*
3640 * Enable guest sample processing.
3641 */
3642 perf_guest = true;
3643 }
3644
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003645 data.path = input_name;
3646 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003647
Tom Zanussib5b87312010-11-10 08:16:51 -06003648 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3649 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3650 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003651 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003652 }
3653
Tom Zanussib5b87312010-11-10 08:16:51 -06003654 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3655 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3656 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003657 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003658 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003659 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003660 return -1;
3661 }
Tom Zanussi38752942009-12-15 02:53:39 -06003662 }
3663
Hagen Paul Pfeifer26567ed2020-02-04 18:37:09 +01003664 if (reltime && deltatime) {
3665 fprintf(stderr,
3666 "reltime and deltatime - the two don't get along well. "
3667 "Please limit to --reltime or --deltatime.\n");
3668 return -1;
3669 }
3670
Adrian Hunter1c5c25b2020-04-01 13:16:05 +03003671 if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003672 itrace_synth_opts.callchain_sz > scripting_max_stack)
3673 scripting_max_stack = itrace_synth_opts.callchain_sz;
3674
Ben Hutchings44e668c2010-10-10 16:10:03 +01003675 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003676 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003677
Tom Zanussib5b87312010-11-10 08:16:51 -06003678 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003679 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003680 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003681 pid_t pid;
3682
Tom Zanussib5b87312010-11-10 08:16:51 -06003683 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3684 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3685
3686 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003687 usage_with_options_msg(script_usage, options,
3688 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003689 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003690 }
3691
Tom Zanussib5b87312010-11-10 08:16:51 -06003692 if (is_top_script(argv[0])) {
3693 rep_args = argc - 1;
3694 } else {
3695 int rec_args;
3696
3697 rep_args = has_required_arg(rep_script_path);
3698 rec_args = (argc - 1) - rep_args;
3699 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003700 usage_with_options_msg(script_usage, options,
3701 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003702 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003703 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003704 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003705 }
3706
3707 if (pipe(live_pipe) < 0) {
3708 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003709 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003710 }
3711
3712 pid = fork();
3713 if (pid < 0) {
3714 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003715 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003716 }
3717
3718 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003719 j = 0;
3720
Tom Zanussia0cccc22010-04-01 23:59:25 -05003721 dup2(live_pipe[1], 1);
3722 close(live_pipe[0]);
3723
Robert Richter317df652011-11-25 15:05:25 +01003724 if (is_top_script(argv[0])) {
3725 system_wide = true;
3726 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003727 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3728 err = -1;
3729 goto out;
3730 }
Robert Richter317df652011-11-25 15:05:25 +01003731 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003732
3733 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003734 if (!__argv) {
3735 pr_err("malloc failed\n");
3736 err = -ENOMEM;
3737 goto out;
3738 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003739
Tom Zanussib5b87312010-11-10 08:16:51 -06003740 __argv[j++] = "/bin/sh";
3741 __argv[j++] = rec_script_path;
3742 if (system_wide)
3743 __argv[j++] = "-a";
3744 __argv[j++] = "-q";
3745 __argv[j++] = "-o";
3746 __argv[j++] = "-";
3747 for (i = rep_args + 1; i < argc; i++)
3748 __argv[j++] = argv[i];
3749 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003750
3751 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003752 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003753 exit(-1);
3754 }
3755
3756 dup2(live_pipe[0], 0);
3757 close(live_pipe[1]);
3758
Tom Zanussib5b87312010-11-10 08:16:51 -06003759 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003760 if (!__argv) {
3761 pr_err("malloc failed\n");
3762 err = -ENOMEM;
3763 goto out;
3764 }
3765
Tom Zanussib5b87312010-11-10 08:16:51 -06003766 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003767 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003768 __argv[j++] = rep_script_path;
3769 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003770 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003771 __argv[j++] = "-i";
3772 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003773 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003774
3775 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003776 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003777 exit(-1);
3778 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06003779
Tom Zanussib5b87312010-11-10 08:16:51 -06003780 if (rec_script_path)
3781 script_path = rec_script_path;
3782 if (rep_script_path)
3783 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003784
Tom Zanussib5b87312010-11-10 08:16:51 -06003785 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003786 j = 0;
3787
Robert Richter317df652011-11-25 15:05:25 +01003788 if (!rec_script_path)
3789 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003790 else if (!system_wide) {
3791 if (have_cmd(argc - 1, &argv[1]) != 0) {
3792 err = -1;
3793 goto out;
3794 }
3795 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003796
3797 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003798 if (!__argv) {
3799 pr_err("malloc failed\n");
3800 err = -ENOMEM;
3801 goto out;
3802 }
3803
Tom Zanussib5b87312010-11-10 08:16:51 -06003804 __argv[j++] = "/bin/sh";
3805 __argv[j++] = script_path;
3806 if (system_wide)
3807 __argv[j++] = "-a";
3808 for (i = 2; i < argc; i++)
3809 __argv[j++] = argv[i];
3810 __argv[j++] = NULL;
3811
3812 execvp("/bin/sh", (char **)__argv);
3813 free(__argv);
3814 exit(-1);
3815 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003816
Milian Wolffc1c9b962018-10-21 21:14:23 +02003817 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06003818 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02003819 use_browser = 0;
3820 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003821
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003822 session = perf_session__new(&data, false, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303823 if (IS_ERR(session))
3824 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003825
Jiri Olsae90debd2013-12-09 11:02:50 +01003826 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003827 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003828 perf_session__fprintf_info(session, stdout, show_full_info);
3829 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003830 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003831 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003832 if (show_full_info)
3833 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003834
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003835 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003836 goto out_delete;
3837
Andi Kleen3ab481a2019-03-05 06:47:45 -08003838 uname(&uts);
Song Liu9d491692019-06-20 18:44:38 -07003839 if (data.is_pipe || /* assume pipe_mode indicates native_arch */
3840 !strcmp(uts.machine, session->header.env.arch) ||
Andi Kleen3ab481a2019-03-05 06:47:45 -08003841 (!strcmp(uts.machine, "x86_64") &&
3842 !strcmp(session->header.env.arch, "i386")))
3843 native_arch = true;
3844
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003845 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003846 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003847
Andi Kleen99f753f2018-09-20 11:05:39 -07003848 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
3849 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03003850 itrace_synth_opts.thread_stack = true;
3851
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003852 session->itrace_synth_opts = &itrace_synth_opts;
3853
Anton Blanchard5d67be92011-07-04 21:57:50 +10003854 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003855 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3856 if (err < 0)
3857 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003858 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003859 }
3860
David Ahern1424dc92011-03-09 22:23:28 -07003861 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003862 symbol_conf.use_callchain = true;
3863 else
3864 symbol_conf.use_callchain = false;
3865
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003866 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04003867 tep_set_function_resolver(session->tevent.pevent,
3868 machine__resolve_kernel_addr,
3869 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003870 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003871 err = -1;
3872 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003873 }
3874
Tom Zanussi956ffd02009-11-25 01:15:46 -06003875 if (generate_script_lang) {
3876 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003877 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003878
David Ahern2c9e45f72011-03-17 10:03:21 -06003879 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003880 fprintf(stderr,
3881 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003882 err = -EINVAL;
3883 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003884 }
3885
Jiri Olsa2d4f2792019-02-21 10:41:30 +01003886 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003887 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003888 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003889 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003890 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003891 }
3892
3893 err = fstat(input, &perf_stat);
3894 if (err < 0) {
3895 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003896 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003897 }
3898
3899 if (!perf_stat.st_size) {
3900 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003901 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003902 }
3903
3904 scripting_ops = script_spec__lookup(generate_script_lang);
3905 if (!scripting_ops) {
3906 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003907 err = -ENOENT;
3908 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003909 }
3910
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003911 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003912 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003913 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003914 }
3915
3916 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003917 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003918 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003919 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003920 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003921 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003922 }
3923
David Ahern9cbdb702011-04-06 21:54:20 -06003924
3925 err = perf_session__check_output_opt(session);
3926 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003927 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003928
Jin Yao284c4e12019-03-01 18:13:06 +08003929 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07003930 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08003931 &script.ptime_range,
3932 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07003933 &script.range_num,
3934 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08003935 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08003936 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03003937
3938 itrace_synth_opts__set_time_range(&itrace_synth_opts,
3939 script.ptime_range,
3940 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07003941 }
3942
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03003943 err = evswitch__init(&script.evswitch, session->evlist, stderr);
3944 if (err)
3945 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03003946
Milian Wolffb13b04d2020-06-13 01:03:33 +02003947 if (zstd_init(&(session->zstd_data), 0) < 0)
3948 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
3949
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003950 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003951
Adrian Hunterd445dd22014-08-15 22:08:37 +03003952 flush_scripting();
3953
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003954out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03003955 if (script.ptime_range) {
3956 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08003957 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03003958 }
Jin Yaocc2ef582018-01-10 23:00:33 +08003959
Arnaldo Carvalho de Melo53f5e902020-11-30 09:31:04 -03003960 evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003961 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003962
3963 if (script_started)
3964 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06003965out:
3966 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003967}