blob: 656b347f6dd84876a2f82ce5985265ba2d45597e [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"
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030033#include "ui/ui.h"
Arnaldo Carvalho de Melofea01392017-04-17 16:23:22 -030034#include "print_binary.h"
Andi Kleen3ab481a2019-03-05 06:47:45 -080035#include "archinsn.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100036#include <linux/bitmap.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030037#include <linux/kernel.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030038#include <linux/stringify.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030039#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030040#include <linux/zalloc.h>
Andi Kleen3ab481a2019-03-05 06:47:45 -080041#include <sys/utsname.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010042#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010043#include "util/mem-events.h"
Andi Kleen48d02a12017-02-23 15:46:34 -080044#include "util/dump-insn.h"
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -030045#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030046#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030047#include <inttypes.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030048#include <signal.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030049#include <sys/param.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030050#include <sys/types.h>
51#include <sys/stat.h>
Arnaldo Carvalho de Melobafae982018-01-22 16:42:16 -030052#include <fcntl.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030053#include <unistd.h>
Andi Kleenb585ebd2018-09-20 11:05:36 -070054#include <subcmd/pager.h>
Jiri Olsa453fa032019-07-21 13:24:43 +020055#include <perf/evlist.h>
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053056#include <linux/err.h>
Arnaldo Carvalho de Meloaeb00b12019-08-22 15:40:29 -030057#include "util/record.h"
Arnaldo Carvalho de Melo2da39f12019-08-27 11:51:18 -030058#include "util/util.h"
Arnaldo Carvalho de Meloc1a604d2019-08-29 15:20:59 -030059#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020060
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030061#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030062
Tom Zanussi956ffd02009-11-25 01:15:46 -060063static char const *script_name;
64static char const *generate_script_lang;
Andi Kleen90b10f42019-03-14 15:50:00 -070065static bool reltime;
66static u64 initial_time;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020067static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020068static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020069static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070070static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090071static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010072static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030073static bool print_flags;
Anton Blanchard5d67be92011-07-04 21:57:50 +100074static const char *cpu_list;
75static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010076static struct perf_stat_config stat_config;
Andi Kleen48d02a12017-02-23 15:46:34 -080077static int max_blocks;
Andi Kleen3ab481a2019-03-05 06:47:45 -080078static bool native_arch;
Tom Zanussi956ffd02009-11-25 01:15:46 -060079
Adrian Hunter44cbe722015-09-25 16:15:50 +030080unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030081
David Ahern745f43e2011-03-09 22:23:26 -070082enum perf_output_field {
83 PERF_OUTPUT_COMM = 1U << 0,
84 PERF_OUTPUT_TID = 1U << 1,
85 PERF_OUTPUT_PID = 1U << 2,
86 PERF_OUTPUT_TIME = 1U << 3,
87 PERF_OUTPUT_CPU = 1U << 4,
88 PERF_OUTPUT_EVNAME = 1U << 5,
89 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060090 PERF_OUTPUT_IP = 1U << 7,
91 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060092 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060093 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090094 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020095 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaae2014-08-25 16:45:42 +020096 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020097 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020098 PERF_OUTPUT_BRSTACK = 1U << 15,
99 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100100 PERF_OUTPUT_DATA_SRC = 1U << 17,
101 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +0000102 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
Adrian Huntere2167082016-06-23 16:40:58 +0300103 PERF_OUTPUT_CALLINDENT = 1U << 20,
Andi Kleen224e2c92016-10-07 16:42:27 +0300104 PERF_OUTPUT_INSN = 1U << 21,
105 PERF_OUTPUT_INSNLEN = 1U << 22,
Andi Kleen48d02a12017-02-23 15:46:34 -0800106 PERF_OUTPUT_BRSTACKINSN = 1U << 23,
Mark Santaniello106dacd2017-06-19 09:38:25 -0700107 PERF_OUTPUT_BRSTACKOFF = 1U << 24,
Adrian Hunter47e78082017-05-26 11:17:22 +0300108 PERF_OUTPUT_SYNTH = 1U << 25,
Kan Liang49d58f02017-08-29 13:11:11 -0400109 PERF_OUTPUT_PHYS_ADDR = 1U << 26,
Andi Kleenb1491ac2017-09-05 11:40:57 -0700110 PERF_OUTPUT_UREGS = 1U << 27,
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800111 PERF_OUTPUT_METRIC = 1U << 28,
Jiri Olsa28a0b392018-01-07 17:03:52 +0100112 PERF_OUTPUT_MISC = 1U << 29,
Andi Kleendd2e18e2018-12-03 16:18:48 -0800113 PERF_OUTPUT_SRCCODE = 1U << 30,
Adrian Hunter68fb45b2019-05-20 14:37:14 +0300114 PERF_OUTPUT_IPC = 1U << 31,
David Ahern745f43e2011-03-09 22:23:26 -0700115};
116
117struct output_option {
118 const char *str;
119 enum perf_output_field field;
120} all_output_options[] = {
121 {.str = "comm", .field = PERF_OUTPUT_COMM},
122 {.str = "tid", .field = PERF_OUTPUT_TID},
123 {.str = "pid", .field = PERF_OUTPUT_PID},
124 {.str = "time", .field = PERF_OUTPUT_TIME},
125 {.str = "cpu", .field = PERF_OUTPUT_CPU},
126 {.str = "event", .field = PERF_OUTPUT_EVNAME},
127 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -0600128 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -0700129 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -0600130 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -0600131 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900132 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +0200133 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200134 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +0200135 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Andi Kleenb1491ac2017-09-05 11:40:57 -0700136 {.str = "uregs", .field = PERF_OUTPUT_UREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200137 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
138 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100139 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
140 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +0000141 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +0300142 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
Andi Kleen224e2c92016-10-07 16:42:27 +0300143 {.str = "insn", .field = PERF_OUTPUT_INSN},
144 {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
Andi Kleen48d02a12017-02-23 15:46:34 -0800145 {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
Mark Santaniello106dacd2017-06-19 09:38:25 -0700146 {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
Adrian Hunter47e78082017-05-26 11:17:22 +0300147 {.str = "synth", .field = PERF_OUTPUT_SYNTH},
Kan Liang49d58f02017-08-29 13:11:11 -0400148 {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800149 {.str = "metric", .field = PERF_OUTPUT_METRIC},
Jiri Olsa28a0b392018-01-07 17:03:52 +0100150 {.str = "misc", .field = PERF_OUTPUT_MISC},
Andi Kleendd2e18e2018-12-03 16:18:48 -0800151 {.str = "srccode", .field = PERF_OUTPUT_SRCCODE},
Adrian Hunter68fb45b2019-05-20 14:37:14 +0300152 {.str = "ipc", .field = PERF_OUTPUT_IPC},
David Ahern745f43e2011-03-09 22:23:26 -0700153};
154
Adrian Hunter14057202017-06-21 13:17:19 +0300155enum {
156 OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
157 OUTPUT_TYPE_MAX
158};
159
David Ahern745f43e2011-03-09 22:23:26 -0700160/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600161static struct {
162 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600163 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400164 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600165 u64 fields;
166 u64 invalid_fields;
Andi Kleen4b6ac812019-02-24 07:37:12 -0800167 u64 user_set_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300168} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700169
David Ahern2c9e45f72011-03-17 10:03:21 -0600170 [PERF_TYPE_HARDWARE] = {
171 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700172
David Ahern2c9e45f72011-03-17 10:03:21 -0600173 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
174 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600175 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530176 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
177 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600178
Wang Nan30372f02016-02-24 11:20:45 +0000179 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600180 },
181
182 [PERF_TYPE_SOFTWARE] = {
183 .user_set = false,
184
185 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
186 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600187 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530188 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
189 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
190 PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600191
192 .invalid_fields = PERF_OUTPUT_TRACE,
193 },
194
195 [PERF_TYPE_TRACEPOINT] = {
196 .user_set = false,
197
198 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
199 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000200 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600201 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700202
Seeteena Thoufeekfad76d42018-06-08 16:32:28 +0530203 [PERF_TYPE_HW_CACHE] = {
204 .user_set = false,
205
206 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
207 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
208 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
209 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
210 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
211
212 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
213 },
214
Arun Sharma0817a6a2011-04-14 10:38:18 -0700215 [PERF_TYPE_RAW] = {
216 .user_set = false,
217
218 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
219 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600220 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530221 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
222 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD |
223 PERF_OUTPUT_ADDR | PERF_OUTPUT_DATA_SRC |
224 PERF_OUTPUT_WEIGHT | PERF_OUTPUT_PHYS_ADDR,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700225
Wang Nan30372f02016-02-24 11:20:45 +0000226 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700227 },
Wang Nan27cfef02015-12-08 02:25:43 +0000228
229 [PERF_TYPE_BREAKPOINT] = {
230 .user_set = false,
231
232 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
233 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
234 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530235 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
236 PERF_OUTPUT_DSO | PERF_OUTPUT_PERIOD,
Wang Nan27cfef02015-12-08 02:25:43 +0000237
Wang Nan30372f02016-02-24 11:20:45 +0000238 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000239 },
Adrian Hunter14057202017-06-21 13:17:19 +0300240
241 [OUTPUT_TYPE_SYNTH] = {
242 .user_set = false,
243
244 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
245 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
246 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Sandipan Das7903a702018-05-17 12:03:26 +0530247 PERF_OUTPUT_SYM | PERF_OUTPUT_SYMOFFSET |
248 PERF_OUTPUT_DSO | PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300249
250 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
251 },
David Ahern1424dc92011-03-09 22:23:28 -0700252};
David Ahern745f43e2011-03-09 22:23:26 -0700253
Jiri Olsa32dcd022019-07-21 13:23:51 +0200254struct evsel_script {
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300255 char *filename;
256 FILE *fp;
257 u64 samples;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800258 /* For metric output */
259 u64 val;
260 int gnum;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300261};
262
Jiri Olsa32dcd022019-07-21 13:23:51 +0200263static inline struct evsel_script *evsel_script(struct evsel *evsel)
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800264{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200265 return (struct evsel_script *)evsel->priv;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800266}
267
Jiri Olsa32dcd022019-07-21 13:23:51 +0200268static struct evsel_script *perf_evsel_script__new(struct evsel *evsel,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100269 struct perf_data *data)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300270{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200271 struct evsel_script *es = zalloc(sizeof(*es));
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300272
273 if (es != NULL) {
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100274 if (asprintf(&es->filename, "%s.%s.dump", data->file.path, perf_evsel__name(evsel)) < 0)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300275 goto out_free;
276 es->fp = fopen(es->filename, "w");
277 if (es->fp == NULL)
278 goto out_free_filename;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300279 }
280
281 return es;
282out_free_filename:
283 zfree(&es->filename);
284out_free:
285 free(es);
286 return NULL;
287}
288
Jiri Olsa32dcd022019-07-21 13:23:51 +0200289static void perf_evsel_script__delete(struct evsel_script *es)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300290{
291 zfree(&es->filename);
292 fclose(es->fp);
293 es->fp = NULL;
294 free(es);
295}
296
Jiri Olsa32dcd022019-07-21 13:23:51 +0200297static int perf_evsel_script__fprintf(struct evsel_script *es, FILE *fp)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300298{
299 struct stat st;
300
301 fstat(fileno(es->fp), &st);
302 return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
303 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
304}
305
Adrian Hunter14057202017-06-21 13:17:19 +0300306static inline int output_type(unsigned int type)
307{
308 switch (type) {
309 case PERF_TYPE_SYNTH:
310 return OUTPUT_TYPE_SYNTH;
311 default:
312 return type;
313 }
314}
315
316static inline unsigned int attr_type(unsigned int type)
317{
318 switch (type) {
319 case OUTPUT_TYPE_SYNTH:
320 return PERF_TYPE_SYNTH;
321 default:
322 return type;
323 }
324}
325
David Ahern2c9e45f72011-03-17 10:03:21 -0600326static bool output_set_by_user(void)
327{
328 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300329 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600330 if (output[j].user_set)
331 return true;
332 }
333 return false;
334}
David Ahern745f43e2011-03-09 22:23:26 -0700335
David Ahern9cbdb702011-04-06 21:54:20 -0600336static const char *output_field2str(enum perf_output_field field)
337{
338 int i, imax = ARRAY_SIZE(all_output_options);
339 const char *str = "";
340
341 for (i = 0; i < imax; ++i) {
342 if (all_output_options[i].field == field) {
343 str = all_output_options[i].str;
344 break;
345 }
346 }
347 return str;
348}
349
Adrian Hunter14057202017-06-21 13:17:19 +0300350#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700351
Jiri Olsa32dcd022019-07-21 13:23:51 +0200352static int perf_evsel__do_check_stype(struct evsel *evsel,
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300353 u64 sample_type, const char *sample_msg,
354 enum perf_output_field field,
355 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700356{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200357 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300358 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600359 const char *evname;
360
361 if (attr->sample_type & sample_type)
362 return 0;
363
Andi Kleen4b6ac812019-02-24 07:37:12 -0800364 if (output[type].user_set_fields & field) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300365 if (allow_user_set)
366 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300367 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600368 pr_err("Samples for '%s' event do not have %s attribute set. "
369 "Cannot print '%s' field.\n",
370 evname, sample_msg, output_field2str(field));
371 return -1;
372 }
373
374 /* user did not ask for it explicitly so remove from the default list */
375 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300376 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600377 pr_debug("Samples for '%s' event do not have %s attribute set. "
378 "Skipping '%s' field.\n",
379 evname, sample_msg, output_field2str(field));
380
381 return 0;
382}
383
Jiri Olsa32dcd022019-07-21 13:23:51 +0200384static int perf_evsel__check_stype(struct evsel *evsel,
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300385 u64 sample_type, const char *sample_msg,
386 enum perf_output_field field)
387{
388 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
389 false);
390}
391
Jiri Olsa32dcd022019-07-21 13:23:51 +0200392static int perf_evsel__check_attr(struct evsel *evsel,
David Ahern9cbdb702011-04-06 21:54:20 -0600393 struct perf_session *session)
394{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200395 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300396 bool allow_user_set;
397
Jiri Olsae099eba2016-01-05 22:09:09 +0100398 if (perf_header__has_feat(&session->header, HEADER_STAT))
399 return 0;
400
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300401 allow_user_set = perf_header__has_feat(&session->header,
402 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600403
David Ahern1424dc92011-03-09 22:23:28 -0700404 if (PRINT_FIELD(TRACE) &&
405 !perf_session__has_traces(session, "record -R"))
406 return -EINVAL;
407
David Ahern787bef12011-05-27 14:28:43 -0600408 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300409 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
410 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700411 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700412 }
David Ahern7cec0922011-05-30 13:08:23 -0600413
414 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300415 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
416 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600417 return -EINVAL;
418
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100419 if (PRINT_FIELD(DATA_SRC) &&
420 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
421 PERF_OUTPUT_DATA_SRC))
422 return -EINVAL;
423
424 if (PRINT_FIELD(WEIGHT) &&
425 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
426 PERF_OUTPUT_WEIGHT))
427 return -EINVAL;
428
Andi Kleen37fed3d2018-09-18 05:32:09 -0700429 if (PRINT_FIELD(SYM) &&
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200430 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
David Ahern7cec0922011-05-30 13:08:23 -0600431 pr_err("Display of symbols requested but neither sample IP nor "
Andi Kleen37fed3d2018-09-18 05:32:09 -0700432 "sample address\navailable. Hence, no addresses to convert "
David Ahern7cec0922011-05-30 13:08:23 -0600433 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600434 return -EINVAL;
435 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900436 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
437 pr_err("Display of offsets requested but symbol is not"
438 "selected.\n");
439 return -EINVAL;
440 }
Andi Kleen37fed3d2018-09-18 05:32:09 -0700441 if (PRINT_FIELD(DSO) &&
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200442 !(evsel->core.attr.sample_type & (PERF_SAMPLE_IP|PERF_SAMPLE_ADDR))) {
Andi Kleen37fed3d2018-09-18 05:32:09 -0700443 pr_err("Display of DSO requested but no address to convert.\n");
David Ahern610723f2011-05-27 14:28:44 -0600444 return -EINVAL;
445 }
Andi Kleendd2e18e2018-12-03 16:18:48 -0800446 if ((PRINT_FIELD(SRCLINE) || PRINT_FIELD(SRCCODE)) && !PRINT_FIELD(IP)) {
Adrian Huntercc8fae12013-12-06 09:42:57 +0200447 pr_err("Display of source line number requested but sample IP is not\n"
448 "selected. Hence, no address to lookup the source line number.\n");
449 return -EINVAL;
450 }
Adrian Hunter0cd032d2019-11-27 11:53:21 +0200451 if (PRINT_FIELD(BRSTACKINSN) && !allow_user_set &&
Andi Kleen48d02a12017-02-23 15:46:34 -0800452 !(perf_evlist__combined_branch_type(session->evlist) &
453 PERF_SAMPLE_BRANCH_ANY)) {
454 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
455 "Hint: run 'perf record -b ...'\n");
456 return -EINVAL;
457 }
David Ahern1424dc92011-03-09 22:23:28 -0700458 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300459 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
460 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700461 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700462
463 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300464 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
465 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700466 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700467
468 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300469 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
470 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700471 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600472
Stephane Eranianfc36f942015-08-31 18:41:10 +0200473 if (PRINT_FIELD(IREGS) &&
474 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
475 PERF_OUTPUT_IREGS))
476 return -EINVAL;
477
Andi Kleenb1491ac2017-09-05 11:40:57 -0700478 if (PRINT_FIELD(UREGS) &&
479 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS",
480 PERF_OUTPUT_UREGS))
481 return -EINVAL;
482
Kan Liang49d58f02017-08-29 13:11:11 -0400483 if (PRINT_FIELD(PHYS_ADDR) &&
484 perf_evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR",
485 PERF_OUTPUT_PHYS_ADDR))
486 return -EINVAL;
487
David Ahern9cbdb702011-04-06 21:54:20 -0600488 return 0;
489}
490
Adrian Hunter7ea95722013-11-01 15:51:30 +0200491static void set_print_ip_opts(struct perf_event_attr *attr)
492{
Adrian Hunter14057202017-06-21 13:17:19 +0300493 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200494
495 output[type].print_ip_opts = 0;
496 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300497 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200498
499 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300500 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200501
502 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300503 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200504
505 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300506 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200507
508 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300509 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200510}
511
David Ahern9cbdb702011-04-06 21:54:20 -0600512/*
513 * verify all user requested events exist and the samples
514 * have the expected data
515 */
516static int perf_session__check_output_opt(struct perf_session *session)
517{
He Kuang40f20e52016-05-16 04:51:19 +0000518 unsigned int j;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200519 struct evsel *evsel;
David Ahern9cbdb702011-04-06 21:54:20 -0600520
Adrian Hunter14057202017-06-21 13:17:19 +0300521 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
522 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600523
524 /*
525 * even if fields is set to 0 (ie., show nothing) event must
526 * exist if user explicitly includes it on the command line
527 */
Adrian Hunter14057202017-06-21 13:17:19 +0300528 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
529 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600530 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300531 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600532 event_type(j));
533 return -1;
534 }
535
536 if (evsel && output[j].fields &&
537 perf_evsel__check_attr(evsel, session))
538 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400539
540 if (evsel == NULL)
541 continue;
542
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200543 set_print_ip_opts(&evsel->core.attr);
David Ahern1424dc92011-03-09 22:23:28 -0700544 }
545
Adrian Hunter98526ee2014-07-31 09:00:59 +0300546 if (!no_callchain) {
547 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000548 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300549
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300550 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000551 not_pipe = true;
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300552 if (evsel__has_callchain(evsel)) {
Adrian Hunter98526ee2014-07-31 09:00:59 +0300553 use_callchain = true;
554 break;
555 }
556 }
He Kuang71ac8992016-08-04 11:25:43 +0000557 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300558 symbol_conf.use_callchain = false;
559 }
560
David Ahern80b8b492013-11-19 21:07:37 -0700561 /*
562 * set default for tracepoints to print symbols only
563 * if callchains are present
564 */
565 if (symbol_conf.use_callchain &&
566 !output[PERF_TYPE_TRACEPOINT].user_set) {
David Ahern80b8b492013-11-19 21:07:37 -0700567 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700568
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300569 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200570 if (evsel->core.attr.type != j)
He Kuang40f20e52016-05-16 04:51:19 +0000571 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700572
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -0300573 if (evsel__has_callchain(evsel)) {
He Kuang40f20e52016-05-16 04:51:19 +0000574 output[j].fields |= PERF_OUTPUT_IP;
575 output[j].fields |= PERF_OUTPUT_SYM;
Sandipan Das7903a702018-05-17 12:03:26 +0530576 output[j].fields |= PERF_OUTPUT_SYMOFFSET;
He Kuang40f20e52016-05-16 04:51:19 +0000577 output[j].fields |= PERF_OUTPUT_DSO;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200578 set_print_ip_opts(&evsel->core.attr);
He Kuang40f20e52016-05-16 04:51:19 +0000579 goto out;
580 }
David Ahern80b8b492013-11-19 21:07:37 -0700581 }
582 }
583
584out:
David Ahern1424dc92011-03-09 22:23:28 -0700585 return 0;
586}
David Ahern745f43e2011-03-09 22:23:26 -0700587
Milian Wolff9add8fe2018-11-07 23:34:37 +0100588static int perf_sample__fprintf_regs(struct regs_dump *regs, uint64_t mask,
589 FILE *fp
590)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200591{
Andi Kleenb1491ac2017-09-05 11:40:57 -0700592 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300593 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700594
595 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300596 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700597
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300598 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700599
600 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
601 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300602 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700603 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300604
Milian Wolffb07d16f2018-11-07 10:37:05 +0100605 fprintf(fp, "\n");
606
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300607 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700608}
609
Milian Wolff9add8fe2018-11-07 23:34:37 +0100610static int perf_sample__fprintf_iregs(struct perf_sample *sample,
611 struct perf_event_attr *attr, FILE *fp)
612{
613 return perf_sample__fprintf_regs(&sample->intr_regs,
614 attr->sample_regs_intr, fp);
615}
616
617static int perf_sample__fprintf_uregs(struct perf_sample *sample,
618 struct perf_event_attr *attr, FILE *fp)
619{
620 return perf_sample__fprintf_regs(&sample->user_regs,
621 attr->sample_regs_user, fp);
622}
623
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300624static int perf_sample__fprintf_start(struct perf_sample *sample,
625 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200626 struct evsel *evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +0100627 u32 type, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700628{
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200629 struct perf_event_attr *attr = &evsel->core.attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700630 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700631 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300632 int printed = 0;
David Ahernc70c94b2011-03-09 22:23:25 -0700633
David Ahern745f43e2011-03-09 22:23:26 -0700634 if (PRINT_FIELD(COMM)) {
635 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300636 printed += fprintf(fp, "%8.8s ", thread__comm_str(thread));
Arnaldo Carvalho de Melob8798332018-06-04 10:34:20 -0300637 else if (PRINT_FIELD(IP) && evsel__has_callchain(evsel) && symbol_conf.use_callchain)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300638 printed += fprintf(fp, "%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700639 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300640 printed += fprintf(fp, "%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700641 }
David Ahernc70c94b2011-03-09 22:23:25 -0700642
David Ahern745f43e2011-03-09 22:23:26 -0700643 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300644 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700645 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300646 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700647 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300648 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700649
David Ahern745f43e2011-03-09 22:23:26 -0700650 if (PRINT_FIELD(CPU)) {
651 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300652 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700653 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300654 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700655 }
David Ahernc70c94b2011-03-09 22:23:25 -0700656
Jiri Olsa28a0b392018-01-07 17:03:52 +0100657 if (PRINT_FIELD(MISC)) {
658 int ret = 0;
659
660 #define has(m) \
661 (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
662
663 if (has(KERNEL))
664 ret += fprintf(fp, "K");
665 if (has(USER))
666 ret += fprintf(fp, "U");
667 if (has(HYPERVISOR))
668 ret += fprintf(fp, "H");
669 if (has(GUEST_KERNEL))
670 ret += fprintf(fp, "G");
671 if (has(GUEST_USER))
672 ret += fprintf(fp, "g");
673
674 switch (type) {
675 case PERF_RECORD_MMAP:
676 case PERF_RECORD_MMAP2:
677 if (has(MMAP_DATA))
678 ret += fprintf(fp, "M");
679 break;
680 case PERF_RECORD_COMM:
681 if (has(COMM_EXEC))
682 ret += fprintf(fp, "E");
683 break;
684 case PERF_RECORD_SWITCH:
685 case PERF_RECORD_SWITCH_CPU_WIDE:
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300686 if (has(SWITCH_OUT)) {
Jiri Olsa28a0b392018-01-07 17:03:52 +0100687 ret += fprintf(fp, "S");
Alexey Budankovbf30cc12018-04-09 10:26:46 +0300688 if (sample->misc & PERF_RECORD_MISC_SWITCH_OUT_PREEMPT)
689 ret += fprintf(fp, "p");
690 }
Jiri Olsa28a0b392018-01-07 17:03:52 +0100691 default:
692 break;
693 }
694
695 #undef has
696
697 ret += fprintf(fp, "%*s", 6 - ret, " ");
698 printed += ret;
699 }
700
David Ahern745f43e2011-03-09 22:23:26 -0700701 if (PRINT_FIELD(TIME)) {
Andi Kleen90b10f42019-03-14 15:50:00 -0700702 u64 t = sample->time;
703 if (reltime) {
704 if (!initial_time)
705 initial_time = sample->time;
706 t = sample->time - initial_time;
707 }
708 nsecs = t;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300709 secs = nsecs / NSEC_PER_SEC;
710 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900711
Andi Kleen52bab882019-03-05 06:47:47 -0800712 if (symbol_conf.nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300713 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900714 else {
715 char sample_time[32];
Andi Kleen90b10f42019-03-14 15:50:00 -0700716 timestamp__scnprintf_usec(t, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300717 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900718 }
David Ahern745f43e2011-03-09 22:23:26 -0700719 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300720
721 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700722}
723
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200724static inline char
725mispred_str(struct branch_entry *br)
726{
727 if (!(br->flags.mispred || br->flags.predicted))
728 return '-';
729
730 return br->flags.predicted ? 'P' : 'M';
731}
732
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300733static int perf_sample__fprintf_brstack(struct perf_sample *sample,
734 struct thread *thread,
735 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200736{
737 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800738 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700739 struct addr_location alf, alt;
740 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300741 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200742
743 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300744 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200745
746 for (i = 0; i < br->nr; i++) {
Kan Liang42bbabe2020-02-28 08:30:00 -0800747 from = entries[i].from;
748 to = entries[i].to;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700749
750 if (PRINT_FIELD(DSO)) {
751 memset(&alf, 0, sizeof(alf));
752 memset(&alt, 0, sizeof(alt));
Adrian Hunter692d0e62018-11-06 23:07:12 +0200753 thread__find_map_fb(thread, sample->cpumode, from, &alf);
754 thread__find_map_fb(thread, sample->cpumode, to, &alt);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700755 }
756
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300757 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700758 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300759 printed += fprintf(fp, "(");
760 printed += map__fprintf_dsoname(alf.map, fp);
761 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700762 }
763
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300764 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700765 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300766 printed += fprintf(fp, "(");
767 printed += map__fprintf_dsoname(alt.map, fp);
768 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700769 }
770
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300771 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800772 mispred_str(entries + i),
773 entries[i].flags.in_tx ? 'X' : '-',
774 entries[i].flags.abort ? 'A' : '-',
775 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200776 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300777
778 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200779}
780
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300781static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
782 struct thread *thread,
783 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200784{
785 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800786 struct branch_entry *entries = perf_sample__branch_entries(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200787 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200788 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300789 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200790
791 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300792 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200793
794 for (i = 0; i < br->nr; i++) {
795
796 memset(&alf, 0, sizeof(alf));
797 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800798 from = entries[i].from;
799 to = entries[i].to;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200800
Adrian Hunter692d0e62018-11-06 23:07:12 +0200801 thread__find_symbol_fb(thread, sample->cpumode, from, &alf);
802 thread__find_symbol_fb(thread, sample->cpumode, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200803
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300804 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700805 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300806 printed += fprintf(fp, "(");
807 printed += map__fprintf_dsoname(alf.map, fp);
808 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700809 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300810 printed += fprintf(fp, "%c", '/');
811 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700812 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300813 printed += fprintf(fp, "(");
814 printed += map__fprintf_dsoname(alt.map, fp);
815 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700816 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300817 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800818 mispred_str(entries + i),
819 entries[i].flags.in_tx ? 'X' : '-',
820 entries[i].flags.abort ? 'A' : '-',
821 entries[i].flags.cycles);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200822 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300823
824 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200825}
826
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300827static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
828 struct thread *thread,
829 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700830{
831 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -0800832 struct branch_entry *entries = perf_sample__branch_entries(sample);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700833 struct addr_location alf, alt;
834 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300835 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700836
837 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300838 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700839
840 for (i = 0; i < br->nr; i++) {
841
842 memset(&alf, 0, sizeof(alf));
843 memset(&alt, 0, sizeof(alt));
Kan Liang42bbabe2020-02-28 08:30:00 -0800844 from = entries[i].from;
845 to = entries[i].to;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700846
Adrian Hunter692d0e62018-11-06 23:07:12 +0200847 if (thread__find_map_fb(thread, sample->cpumode, from, &alf) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300848 !alf.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700849 from = map__map_ip(alf.map, from);
850
Adrian Hunter692d0e62018-11-06 23:07:12 +0200851 if (thread__find_map_fb(thread, sample->cpumode, to, &alt) &&
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300852 !alt.map->dso->adjust_symbols)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700853 to = map__map_ip(alt.map, to);
854
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300855 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -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 Santaniello106dacd2017-06-19 09:38:25 -0700860 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300861 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700862 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300863 printed += fprintf(fp, "(");
864 printed += map__fprintf_dsoname(alt.map, fp);
865 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700866 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300867 printed += fprintf(fp, "/%c/%c/%c/%d ",
Kan Liang42bbabe2020-02-28 08:30:00 -0800868 mispred_str(entries + i),
869 entries[i].flags.in_tx ? 'X' : '-',
870 entries[i].flags.abort ? 'A' : '-',
871 entries[i].flags.cycles);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700872 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300873
874 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700875}
Andi Kleen48d02a12017-02-23 15:46:34 -0800876#define MAXBB 16384UL
877
878static int grab_bb(u8 *buffer, u64 start, u64 end,
879 struct machine *machine, struct thread *thread,
880 bool *is64bit, u8 *cpumode, bool last)
881{
882 long offset, len;
883 struct addr_location al;
884 bool kernel;
885
886 if (!start || !end)
887 return 0;
888
889 kernel = machine__kernel_ip(machine, start);
890 if (kernel)
891 *cpumode = PERF_RECORD_MISC_KERNEL;
892 else
893 *cpumode = PERF_RECORD_MISC_USER;
894
895 /*
896 * Block overlaps between kernel and user.
897 * This can happen due to ring filtering
898 * On Intel CPUs the entry into the kernel is filtered,
899 * but the exit is not. Let the caller patch it up.
900 */
901 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300902 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800903 return -ENXIO;
904 }
905
906 memset(&al, 0, sizeof(al));
907 if (end - start > MAXBB - MAXINSN) {
908 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300909 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800910 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300911 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -0800912 return 0;
913 }
914
Arnaldo Carvalho de Melo71a84b52018-04-24 11:58:56 -0300915 if (!thread__find_map(thread, *cpumode, start, &al) || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300916 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800917 return 0;
918 }
919 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300920 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800921 return 0;
922 }
923
924 /* Load maps to ensure dso->is_64_bit has been updated */
925 map__load(al.map);
926
927 offset = al.map->map_ip(al.map, start);
928 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
929 end - start + MAXINSN);
930
931 *is64bit = al.map->dso->is_64_bit;
932 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300933 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -0800934 start, end);
935 return len;
936}
937
Arnaldo Carvalho de Melo540a63e2019-11-22 12:39:06 -0300938static int map__fprintf_srccode(struct map *map, u64 addr, FILE *fp, struct srccode_state *state)
939{
940 char *srcfile;
941 int ret = 0;
942 unsigned line;
943 int len;
944 char *srccode;
945
946 if (!map || !map->dso)
947 return 0;
948 srcfile = get_srcline_split(map->dso,
949 map__rip_2objdump(map, addr),
950 &line);
951 if (!srcfile)
952 return 0;
953
954 /* Avoid redundant printing */
955 if (state &&
956 state->srcfile &&
957 !strcmp(state->srcfile, srcfile) &&
958 state->line == line) {
959 free(srcfile);
960 return 0;
961 }
962
963 srccode = find_sourceline(srcfile, line, &len);
964 if (!srccode)
965 goto out_free_line;
966
967 ret = fprintf(fp, "|%-8d %.*s", line, len, srccode);
968
969 if (state) {
970 state->srcfile = srcfile;
971 state->line = line;
972 }
973 return ret;
974
975out_free_line:
976 free(srcfile);
977 return ret;
978}
979
Andi Kleendd2e18e2018-12-03 16:18:48 -0800980static int print_srccode(struct thread *thread, u8 cpumode, uint64_t addr)
981{
982 struct addr_location al;
983 int ret = 0;
984
985 memset(&al, 0, sizeof(al));
986 thread__find_map(thread, cpumode, addr, &al);
987 if (!al.map)
988 return 0;
989 ret = map__fprintf_srccode(al.map, al.addr, stdout,
990 &thread->srccode_state);
991 if (ret)
992 ret += printf("\n");
993 return ret;
994}
995
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300996static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
997 struct perf_insn *x, u8 *inbuf, int len,
Andi Kleenfe571202018-09-24 10:07:32 -0700998 int insn, FILE *fp, int *total_cycles)
Andi Kleen48d02a12017-02-23 15:46:34 -0800999{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001000 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
1001 dump_insn(x, ip, inbuf, len, NULL),
1002 en->flags.predicted ? " PRED" : "",
1003 en->flags.mispred ? " MISPRED" : "",
1004 en->flags.in_tx ? " INTX" : "",
1005 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -08001006 if (en->flags.cycles) {
Andi Kleenfe571202018-09-24 10:07:32 -07001007 *total_cycles += en->flags.cycles;
1008 printed += fprintf(fp, " %d cycles [%d]", en->flags.cycles, *total_cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001009 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001010 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -08001011 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001012 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001013}
1014
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001015static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
1016 u8 cpumode, int cpu, struct symbol **lastsym,
1017 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001018{
1019 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001020 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001021
1022 memset(&al, 0, sizeof(al));
1023
Arnaldo Carvalho de Melo404eb5a2018-04-26 09:34:37 -03001024 thread__find_map(thread, cpumode, addr, &al);
1025
Andi Kleen48d02a12017-02-23 15:46:34 -08001026 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001027 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001028
1029 al.cpu = cpu;
1030 al.sym = NULL;
1031 if (al.map)
1032 al.sym = map__find_symbol(al.map, al.addr);
1033
1034 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001035 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001036
1037 if (al.addr < al.sym->end)
1038 off = al.addr - al.sym->start;
1039 else
1040 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001041 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -08001042 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001043 printed += fprintf(fp, "%+d", off);
1044 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -08001045 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001046 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
1047 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001048 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001049
1050 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001051}
1052
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001053static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
1054 struct thread *thread,
1055 struct perf_event_attr *attr,
1056 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -08001057{
1058 struct branch_stack *br = sample->branch_stack;
Kan Liang42bbabe2020-02-28 08:30:00 -08001059 struct branch_entry *entries = perf_sample__branch_entries(sample);
Andi Kleen48d02a12017-02-23 15:46:34 -08001060 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001061 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001062 struct perf_insn x;
1063 u8 buffer[MAXBB];
1064 unsigned off;
1065 struct symbol *lastsym = NULL;
Andi Kleenfe571202018-09-24 10:07:32 -07001066 int total_cycles = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001067
1068 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001069 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -08001070 nr = br->nr;
1071 if (max_blocks && nr > max_blocks + 1)
1072 nr = max_blocks + 1;
1073
1074 x.thread = thread;
1075 x.cpu = sample->cpu;
1076
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001077 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -08001078
1079 /* Handle first from jump, of which we don't know the entry. */
Kan Liang42bbabe2020-02-28 08:30:00 -08001080 len = grab_bb(buffer, entries[nr-1].from,
1081 entries[nr-1].from,
Andi Kleen48d02a12017-02-23 15:46:34 -08001082 machine, thread, &x.is64bit, &x.cpumode, false);
1083 if (len > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001084 printed += ip__fprintf_sym(entries[nr - 1].from, thread,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001085 x.cpumode, x.cpu, &lastsym, attr, fp);
Kan Liang42bbabe2020-02-28 08:30:00 -08001086 printed += ip__fprintf_jump(entries[nr - 1].from, &entries[nr - 1],
Andi Kleenfe571202018-09-24 10:07:32 -07001087 &x, buffer, len, 0, fp, &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001088 if (PRINT_FIELD(SRCCODE))
Kan Liang42bbabe2020-02-28 08:30:00 -08001089 printed += print_srccode(thread, x.cpumode, entries[nr - 1].from);
Andi Kleen48d02a12017-02-23 15:46:34 -08001090 }
1091
1092 /* Print all blocks */
1093 for (i = nr - 2; i >= 0; i--) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001094 if (entries[i].from || entries[i].to)
Andi Kleen48d02a12017-02-23 15:46:34 -08001095 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
Kan Liang42bbabe2020-02-28 08:30:00 -08001096 entries[i].from,
1097 entries[i].to);
1098 start = entries[i + 1].to;
1099 end = entries[i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001100
1101 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1102 /* Patch up missing kernel transfers due to ring filters */
1103 if (len == -ENXIO && i > 0) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001104 end = entries[--i].from;
Andi Kleen48d02a12017-02-23 15:46:34 -08001105 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
1106 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
1107 }
1108 if (len <= 0)
1109 continue;
1110
1111 insn = 0;
Andi Kleene98df282019-09-27 16:35:44 -07001112 for (off = 0; off < (unsigned)len; off += ilen) {
Andi Kleen48d02a12017-02-23 15:46:34 -08001113 uint64_t ip = start + off;
1114
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001115 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001116 if (ip == end) {
Kan Liang42bbabe2020-02-28 08:30:00 -08001117 printed += ip__fprintf_jump(ip, &entries[i], &x, buffer + off, len - off, ++insn, fp,
Andi Kleenfe571202018-09-24 10:07:32 -07001118 &total_cycles);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001119 if (PRINT_FIELD(SRCCODE))
1120 printed += print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001121 break;
1122 } else {
Andi Kleene98df282019-09-27 16:35:44 -07001123 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001124 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
1125 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001126 if (ilen == 0)
1127 break;
Andi Kleendd2e18e2018-12-03 16:18:48 -08001128 if (PRINT_FIELD(SRCCODE))
1129 print_srccode(thread, x.cpumode, ip);
Andi Kleen48d02a12017-02-23 15:46:34 -08001130 insn++;
1131 }
1132 }
Adrian Hunter51726722019-11-27 11:56:31 +02001133 if (off != end - start)
Andi Kleene98df282019-09-27 16:35:44 -07001134 printed += fprintf(fp, "\tmismatch of LBR data and executable\n");
Andi Kleen48d02a12017-02-23 15:46:34 -08001135 }
1136
1137 /*
1138 * Hit the branch? In this case we are already done, and the target
1139 * has not been executed yet.
1140 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001141 if (entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001142 goto out;
Kan Liang42bbabe2020-02-28 08:30:00 -08001143 if (entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001144 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001145
1146 /*
1147 * Print final block upto sample
Andi Kleen61f61152018-11-19 21:06:17 -08001148 *
1149 * Due to pipeline delays the LBRs might be missing a branch
1150 * or two, which can result in very large or negative blocks
1151 * between final branch and sample. When this happens just
1152 * continue walking after the last TO until we hit a branch.
Andi Kleen48d02a12017-02-23 15:46:34 -08001153 */
Kan Liang42bbabe2020-02-28 08:30:00 -08001154 start = entries[0].to;
Andi Kleen48d02a12017-02-23 15:46:34 -08001155 end = sample->ip;
Andi Kleen61f61152018-11-19 21:06:17 -08001156 if (end < start) {
1157 /* Missing jump. Scan 128 bytes for the next branch */
1158 end = start + 128;
1159 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001160 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001161 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001162 if (len <= 0) {
1163 /* Print at least last IP if basic block did not work */
1164 len = grab_bb(buffer, sample->ip, sample->ip,
1165 machine, thread, &x.is64bit, &x.cpumode, false);
1166 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001167 goto out;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001168 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -08001169 dump_insn(&x, sample->ip, buffer, len, NULL));
Andi Kleendd2e18e2018-12-03 16:18:48 -08001170 if (PRINT_FIELD(SRCCODE))
1171 print_srccode(thread, x.cpumode, sample->ip);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001172 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001173 }
1174 for (off = 0; off <= end - start; off += ilen) {
Andi Kleene98df282019-09-27 16:35:44 -07001175 ilen = 0;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001176 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
1177 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001178 if (ilen == 0)
1179 break;
Andi Kleen61f61152018-11-19 21:06:17 -08001180 if (arch_is_branch(buffer + off, len - off, x.is64bit) && start + off != sample->ip) {
1181 /*
1182 * Hit a missing branch. Just stop.
1183 */
1184 printed += fprintf(fp, "\t... not reaching sample ...\n");
1185 break;
1186 }
Andi Kleendd2e18e2018-12-03 16:18:48 -08001187 if (PRINT_FIELD(SRCCODE))
1188 print_srccode(thread, x.cpumode, start + off);
Andi Kleen48d02a12017-02-23 15:46:34 -08001189 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001190out:
1191 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001192}
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001193
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001194static int perf_sample__fprintf_addr(struct perf_sample *sample,
1195 struct thread *thread,
1196 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -06001197{
1198 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001199 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -06001200
1201 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001202 goto out;
David Ahern7cec0922011-05-30 13:08:23 -06001203
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -03001204 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -06001205
1206 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001207 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001208 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001209 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001210 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001211 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001212 }
1213
1214 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001215 printed += fprintf(fp, " (");
1216 printed += map__fprintf_dsoname(al.map, fp);
1217 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001218 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001219out:
1220 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001221}
1222
Andi Kleen99f753f2018-09-20 11:05:39 -07001223static const char *resolve_branch_sym(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001224 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001225 struct thread *thread,
1226 struct addr_location *al,
1227 u64 *ip)
1228{
1229 struct addr_location addr_al;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001230 struct perf_event_attr *attr = &evsel->core.attr;
Andi Kleen99f753f2018-09-20 11:05:39 -07001231 const char *name = NULL;
1232
1233 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1234 if (sample_addr_correlates_sym(attr)) {
1235 thread__resolve(thread, &addr_al, sample);
1236 if (addr_al.sym)
1237 name = addr_al.sym->name;
1238 else
1239 *ip = sample->addr;
1240 } else {
1241 *ip = sample->addr;
1242 }
1243 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1244 if (al->sym)
1245 name = al->sym->name;
1246 else
1247 *ip = sample->ip;
1248 }
1249 return name;
1250}
1251
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001252static int perf_sample__fprintf_callindent(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001253 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001254 struct thread *thread,
1255 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001256{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001257 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter256d92b2018-12-21 14:06:19 +02001258 size_t depth = thread_stack__depth(thread, sample->cpu);
Adrian Huntere2167082016-06-23 16:40:58 +03001259 const char *name = NULL;
1260 static int spacing;
1261 int len = 0;
Andi Kleena78cdee2018-09-18 05:32:10 -07001262 int dlen = 0;
Adrian Huntere2167082016-06-23 16:40:58 +03001263 u64 ip = 0;
1264
1265 /*
1266 * The 'return' has already been popped off the stack so the depth has
1267 * to be adjusted to match the 'call'.
1268 */
1269 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1270 depth += 1;
1271
Andi Kleen99f753f2018-09-20 11:05:39 -07001272 name = resolve_branch_sym(sample, evsel, thread, al, &ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001273
Andi Kleena78cdee2018-09-18 05:32:10 -07001274 if (PRINT_FIELD(DSO) && !(PRINT_FIELD(IP) || PRINT_FIELD(ADDR))) {
1275 dlen += fprintf(fp, "(");
1276 dlen += map__fprintf_dsoname(al->map, fp);
1277 dlen += fprintf(fp, ")\t");
1278 }
1279
Adrian Huntere2167082016-06-23 16:40:58 +03001280 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001281 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001282 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001283 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001284
1285 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001286 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001287
1288 /*
1289 * Try to keep the output length from changing frequently so that the
1290 * output lines up more nicely.
1291 */
1292 if (len > spacing || (len && len < spacing - 52))
1293 spacing = round_up(len + 4, 32);
1294
1295 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001296 len += fprintf(fp, "%*s", spacing - len, "");
1297
Andi Kleena78cdee2018-09-18 05:32:10 -07001298 return len + dlen;
Adrian Huntere2167082016-06-23 16:40:58 +03001299}
1300
Andi Kleen3ab481a2019-03-05 06:47:45 -08001301__weak void arch_fetch_insn(struct perf_sample *sample __maybe_unused,
1302 struct thread *thread __maybe_unused,
1303 struct machine *machine __maybe_unused)
1304{
1305}
1306
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001307static int perf_sample__fprintf_insn(struct perf_sample *sample,
1308 struct perf_event_attr *attr,
1309 struct thread *thread,
1310 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001311{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001312 int printed = 0;
1313
Andi Kleen3ab481a2019-03-05 06:47:45 -08001314 if (sample->insn_len == 0 && native_arch)
1315 arch_fetch_insn(sample, thread, machine);
1316
Andi Kleen224e2c92016-10-07 16:42:27 +03001317 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001318 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen3ab481a2019-03-05 06:47:45 -08001319 if (PRINT_FIELD(INSN) && sample->insn_len) {
Andi Kleen224e2c92016-10-07 16:42:27 +03001320 int i;
1321
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001322 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001323 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001324 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001325 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001326 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001327 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1328
1329 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001330}
1331
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001332static int perf_sample__fprintf_ipc(struct perf_sample *sample,
1333 struct perf_event_attr *attr, FILE *fp)
1334{
1335 unsigned int ipc;
1336
1337 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt)
1338 return 0;
1339
1340 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt;
1341
1342 return fprintf(fp, " \t IPC: %u.%02u (%" PRIu64 "/%" PRIu64 ") ",
1343 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt);
1344}
1345
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001346static int perf_sample__fprintf_bts(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001347 struct evsel *evsel,
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001348 struct thread *thread,
1349 struct addr_location *al,
1350 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001351{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001352 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001353 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001354 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001355 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001356
Adrian Huntere2167082016-06-23 16:40:58 +03001357 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001358 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001359
Akihiro Nagai95582592012-01-30 13:43:09 +09001360 /* print branch_from information */
1361 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001362 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001363 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001364
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001365 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001366 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001367 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001368 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001369
1370 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001371 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001372 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001373 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001374 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001375 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001376 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001377 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001378
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001379 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor,
1380 symbol_conf.bt_stop_list, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001381 }
1382
Akihiro Nagai95582592012-01-30 13:43:09 +09001383 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001384 if (PRINT_FIELD(ADDR) ||
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001385 ((evsel->core.attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001386 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001387 printed += fprintf(fp, " => ");
1388 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001389 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001390
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001391 printed += perf_sample__fprintf_ipc(sample, attr, fp);
1392
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001393 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001394 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001395
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001396 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Andi Kleendd2e18e2018-12-03 16:18:48 -08001397 printed += fprintf(fp, "\n");
1398 if (PRINT_FIELD(SRCCODE)) {
1399 int ret = map__fprintf_srccode(al->map, al->addr, stdout,
1400 &thread->srccode_state);
1401 if (ret) {
1402 printed += ret;
1403 printed += printf("\n");
1404 }
1405 }
1406 return printed;
Akihiro Nagai95582592012-01-30 13:43:09 +09001407}
1408
Adrian Hunter055cd332016-06-23 16:40:56 +03001409static struct {
1410 u32 flags;
1411 const char *name;
1412} sample_flags[] = {
1413 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1414 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1415 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1416 {PERF_IP_FLAG_BRANCH, "jmp"},
1417 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1418 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1419 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1420 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1421 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1422 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1423 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1424 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1425 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
1426 {0, NULL}
1427};
1428
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001429static const char *sample_flags_to_name(u32 flags)
1430{
1431 int i;
1432
1433 for (i = 0; sample_flags[i].name ; i++) {
1434 if (sample_flags[i].flags == flags)
1435 return sample_flags[i].name;
1436 }
1437
1438 return NULL;
1439}
1440
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001441static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001442{
1443 const char *chars = PERF_IP_FLAG_CHARS;
1444 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001445 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1446 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001447 char str[33];
1448 int i, pos = 0;
1449
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001450 name = sample_flags_to_name(flags & ~PERF_IP_FLAG_IN_TX);
1451 if (name)
1452 return fprintf(fp, " %-15s%4s ", name, in_tx ? "(x)" : "");
1453
1454 if (flags & PERF_IP_FLAG_TRACE_BEGIN) {
1455 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_BEGIN));
1456 if (name)
1457 return fprintf(fp, " tr strt %-7s%4s ", name, in_tx ? "(x)" : "");
1458 }
1459
1460 if (flags & PERF_IP_FLAG_TRACE_END) {
1461 name = sample_flags_to_name(flags & ~(PERF_IP_FLAG_IN_TX | PERF_IP_FLAG_TRACE_END));
1462 if (name)
1463 return fprintf(fp, " tr end %-7s%4s ", name, in_tx ? "(x)" : "");
Adrian Hunter055cd332016-06-23 16:40:56 +03001464 }
1465
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001466 for (i = 0; i < n; i++, flags >>= 1) {
1467 if (flags & 1)
1468 str[pos++] = chars[i];
1469 }
1470 for (; i < 32; i++, flags >>= 1) {
1471 if (flags & 1)
1472 str[pos++] = '?';
1473 }
1474 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001475
Adrian Hunter62cb1b82018-09-20 16:00:43 +03001476 return fprintf(fp, " %-19s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001477}
1478
Wang Nan30372f02016-02-24 11:20:45 +00001479struct printer_data {
1480 int line_no;
1481 bool hit_nul;
1482 bool is_printable;
1483};
1484
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001485static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1486 unsigned int val,
1487 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001488{
1489 unsigned char ch = (unsigned char)val;
1490 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001491 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001492
1493 switch (op) {
1494 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001495 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001496 break;
1497 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001498 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001499 " ");
1500 break;
1501 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001502 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001503 break;
1504 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001505 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001506 break;
1507 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001508 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001509 break;
1510 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001511 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001512 break;
1513 case BINARY_PRINT_CHAR_DATA:
1514 if (printer_data->hit_nul && ch)
1515 printer_data->is_printable = false;
1516
1517 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001518 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001519
1520 if (!printer_data->is_printable)
1521 break;
1522
1523 if (ch == '\0')
1524 printer_data->hit_nul = true;
1525 else
1526 printer_data->is_printable = false;
1527 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001528 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001529 }
1530 break;
1531 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001532 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001533 break;
1534 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001535 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001536 printer_data->line_no++;
1537 break;
1538 case BINARY_PRINT_DATA_END:
1539 default:
1540 break;
1541 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001542
1543 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001544}
1545
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001546static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001547{
1548 unsigned int nr_bytes = sample->raw_size;
1549 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001550 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1551 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001552
1553 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001554 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1555
1556 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001557}
1558
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001559static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001560{
1561 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001562 return fprintf(fp, "%*s", spacing - len, "");
1563
1564 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001565}
1566
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001567static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001568{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001569 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001570}
1571
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001572static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001573{
1574 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1575 int len;
1576
1577 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001578 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001579
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001580 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001581 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001582 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001583}
1584
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001585static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001586{
1587 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1588 int len;
1589
1590 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001591 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001592
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001593 len = fprintf(fp, " hints: %#x extensions: %#x ",
1594 data->hints, data->extensions);
1595 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001596}
1597
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001598static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001599{
1600 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1601 int len;
1602
1603 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001604 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001605
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001606 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1607 data->hw, data->cstate, data->subcstate);
1608 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001609}
1610
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001611static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001612{
1613 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1614 int len;
1615
1616 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001617 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001618
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001619 len = fprintf(fp, " IP: %u ", data->ip);
1620 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001621}
1622
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001623static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001624{
1625 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1626 int len;
1627
1628 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001629 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001630
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001631 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001632 data->deepest_cstate, data->last_cstate,
1633 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001634 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001635}
1636
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001637static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001638{
1639 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1640 unsigned int percent, freq;
1641 int len;
1642
1643 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001644 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001645
1646 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001647 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001648 if (data->max_nonturbo) {
1649 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001650 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001651 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001652 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001653}
1654
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001655static int perf_sample__fprintf_synth(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001656 struct evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001657{
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001658 switch (evsel->core.attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001659 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001660 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001661 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001662 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001663 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001664 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001665 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001666 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001667 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001668 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001669 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001670 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001671 default:
1672 break;
1673 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001674
1675 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001676}
1677
Jiri Olsa809e9422015-11-26 18:55:21 +01001678struct perf_script {
1679 struct perf_tool tool;
1680 struct perf_session *session;
1681 bool show_task_events;
1682 bool show_mmap_events;
1683 bool show_switch_events;
Hari Bathini96a44bb2017-03-08 02:12:06 +05301684 bool show_namespace_events;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01001685 bool show_lost_events;
Jiri Olsa3233b372018-02-06 19:17:59 +01001686 bool show_round_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02001687 bool show_bpf_events;
Jiri Olsacfc88742016-01-05 22:09:06 +01001688 bool allocated;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03001689 bool per_event_dump;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001690 struct evswitch evswitch;
Jiri Olsaf8548392019-07-21 13:23:49 +02001691 struct perf_cpu_map *cpus;
Jiri Olsa9749b902019-07-21 13:23:50 +02001692 struct perf_thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001693 int name_width;
David Aherna91f4c42016-11-29 10:15:43 -07001694 const char *time_str;
Jin Yaocc2ef582018-01-10 23:00:33 +08001695 struct perf_time_interval *ptime_range;
1696 int range_size;
Jin Yao2ab046c2017-12-08 21:13:46 +08001697 int range_num;
Jiri Olsa809e9422015-11-26 18:55:21 +01001698};
1699
Jiri Olsa63503db2019-07-21 13:23:52 +02001700static int perf_evlist__max_name_len(struct evlist *evlist)
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001701{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001702 struct evsel *evsel;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001703 int max = 0;
1704
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001705 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001706 int len = strlen(perf_evsel__name(evsel));
1707
1708 max = MAX(len, max);
1709 }
1710
1711 return max;
1712}
1713
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001714static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001715{
1716 struct mem_info mi = { .data_src.val = data_src };
1717 char decode[100];
1718 char out[100];
1719 static int maxlen;
1720 int len;
1721
1722 perf_script__meminfo_scnprintf(decode, 100, &mi);
1723
1724 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1725 if (maxlen < len)
1726 maxlen = len;
1727
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001728 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001729}
1730
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001731struct metric_ctx {
1732 struct perf_sample *sample;
1733 struct thread *thread;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001734 struct evsel *evsel;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001735 FILE *fp;
1736};
1737
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001738static void script_print_metric(struct perf_stat_config *config __maybe_unused,
1739 void *ctx, const char *color,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001740 const char *fmt,
1741 const char *unit, double val)
1742{
1743 struct metric_ctx *mctx = ctx;
1744
1745 if (!fmt)
1746 return;
1747 perf_sample__fprintf_start(mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001748 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001749 fputs("\tmetric: ", mctx->fp);
1750 if (color)
1751 color_fprintf(mctx->fp, color, fmt, val);
1752 else
1753 printf(fmt, val);
1754 fprintf(mctx->fp, " %s\n", unit);
1755}
1756
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001757static void script_new_line(struct perf_stat_config *config __maybe_unused,
1758 void *ctx)
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001759{
1760 struct metric_ctx *mctx = ctx;
1761
1762 perf_sample__fprintf_start(mctx->sample, mctx->thread, mctx->evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01001763 PERF_RECORD_SAMPLE, mctx->fp);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001764 fputs("\tmetric: ", mctx->fp);
1765}
1766
1767static void perf_sample__fprint_metric(struct perf_script *script,
1768 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001769 struct evsel *evsel,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001770 struct perf_sample *sample,
1771 FILE *fp)
1772{
1773 struct perf_stat_output_ctx ctx = {
1774 .print_metric = script_print_metric,
1775 .new_line = script_new_line,
1776 .ctx = &(struct metric_ctx) {
1777 .sample = sample,
1778 .thread = thread,
1779 .evsel = evsel,
1780 .fp = fp,
1781 },
1782 .force_header = false,
1783 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02001784 struct evsel *ev2;
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001785 u64 val;
1786
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001787 if (!evsel->stats)
1788 perf_evlist__alloc_stats(script->session->evlist, false);
1789 if (evsel_script(evsel->leader)->gnum++ == 0)
1790 perf_stat__reset_shadow_stats();
1791 val = sample->period * evsel->scale;
1792 perf_stat__update_shadow_stats(evsel,
1793 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001794 sample->cpu,
1795 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001796 evsel_script(evsel)->val = val;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02001797 if (evsel_script(evsel->leader)->gnum == evsel->leader->core.nr_members) {
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001798 for_each_group_member (ev2, evsel->leader) {
Jiri Olsa6ca9a082018-08-30 08:32:28 +02001799 perf_stat__print_shadow_stats(&stat_config, ev2,
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001800 evsel_script(ev2)->val,
1801 sample->cpu,
1802 &ctx,
Jin Yaoe0128b32017-12-05 22:03:05 +08001803 NULL,
1804 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001805 }
1806 evsel_script(evsel->leader)->gnum = 0;
1807 }
1808}
1809
Andi Kleen99f753f2018-09-20 11:05:39 -07001810static bool show_event(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001811 struct evsel *evsel,
Andi Kleen99f753f2018-09-20 11:05:39 -07001812 struct thread *thread,
1813 struct addr_location *al)
1814{
Adrian Hunter256d92b2018-12-21 14:06:19 +02001815 int depth = thread_stack__depth(thread, sample->cpu);
Andi Kleen99f753f2018-09-20 11:05:39 -07001816
1817 if (!symbol_conf.graph_function)
1818 return true;
1819
1820 if (thread->filter) {
1821 if (depth <= thread->filter_entry_depth) {
1822 thread->filter = false;
1823 return false;
1824 }
1825 return true;
1826 } else {
1827 const char *s = symbol_conf.graph_function;
1828 u64 ip;
1829 const char *name = resolve_branch_sym(sample, evsel, thread, al,
1830 &ip);
1831 unsigned nlen;
1832
1833 if (!name)
1834 return false;
1835 nlen = strlen(name);
1836 while (*s) {
1837 unsigned len = strcspn(s, ",");
1838 if (nlen == len && !strncmp(name, s, len)) {
1839 thread->filter = true;
1840 thread->filter_entry_depth = depth;
1841 return true;
1842 }
1843 s += len;
1844 if (*s == ',')
1845 s++;
1846 }
1847 return false;
1848 }
1849}
1850
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001851static void process_event(struct perf_script *script,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001852 struct perf_sample *sample, struct evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001853 struct addr_location *al,
1854 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001855{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001856 struct thread *thread = al->thread;
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001857 struct perf_event_attr *attr = &evsel->core.attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001858 unsigned int type = output_type(attr->type);
Jiri Olsa32dcd022019-07-21 13:23:51 +02001859 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001860 FILE *fp = es->fp;
David Ahern1424dc92011-03-09 22:23:28 -07001861
Adrian Hunter14057202017-06-21 13:17:19 +03001862 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001863 return;
1864
Andi Kleen99f753f2018-09-20 11:05:39 -07001865 if (!show_event(sample, evsel, thread, al))
1866 return;
1867
Arnaldo Carvalho de Melo8829e562019-08-15 11:00:11 -03001868 if (evswitch__discard(&script->evswitch, evsel))
1869 return;
Arnaldo Carvalho de Melof90a2412019-08-14 16:20:13 -03001870
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001871 ++es->samples;
1872
Jiri Olsa28a0b392018-01-07 17:03:52 +01001873 perf_sample__fprintf_start(sample, thread, evsel,
1874 PERF_RECORD_SAMPLE, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001875
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001876 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001877 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001878
Namhyung Kime944d3d2013-11-18 14:34:52 +09001879 if (PRINT_FIELD(EVNAME)) {
1880 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001881
1882 if (!script->name_width)
1883 script->name_width = perf_evlist__max_name_len(script->session->evlist);
1884
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001885 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001886 }
1887
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001888 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001889 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001890
Akihiro Nagai95582592012-01-30 13:43:09 +09001891 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001892 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001893 return;
1894 }
1895
Andi Kleen96167162019-01-17 11:48:34 -08001896 if (PRINT_FIELD(TRACE) && sample->raw_data) {
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03001897 event_format__fprintf(evsel->tp_format, sample->cpu,
1898 sample->raw_data, sample->raw_size, fp);
1899 }
Adrian Hunter47e78082017-05-26 11:17:22 +03001900
1901 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001902 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001903
David Ahern7cec0922011-05-30 13:08:23 -06001904 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001905 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001906
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001907 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001908 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001909
1910 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001911 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001912
David Ahern787bef12011-05-27 14:28:43 -06001913 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07001914 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04001915
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03001916 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001917 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001918 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001919 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001920
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001921 fputc(cursor ? '\n' : ' ', fp);
Arnaldo Carvalho de Melo9620bc362019-09-25 15:06:59 -03001922 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor,
1923 symbol_conf.bt_stop_list, fp);
David Ahernc0230b22011-03-09 22:23:27 -07001924 }
1925
Stephane Eranianfc36f942015-08-31 18:41:10 +02001926 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001927 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02001928
Andi Kleenb1491ac2017-09-05 11:40:57 -07001929 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001930 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07001931
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001932 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001933 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001934 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001935 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07001936 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001937 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001938
Wang Nan30372f02016-02-24 11:20:45 +00001939 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001940 perf_sample__fprintf_bpf_output(sample, fp);
1941 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04001942
1943 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001944 fprintf(fp, "%16" PRIx64, sample->phys_addr);
Adrian Hunter68fb45b2019-05-20 14:37:14 +03001945
1946 perf_sample__fprintf_ipc(sample, attr, fp);
1947
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001948 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001949
Andi Kleendd2e18e2018-12-03 16:18:48 -08001950 if (PRINT_FIELD(SRCCODE)) {
1951 if (map__fprintf_srccode(al->map, al->addr, stdout,
1952 &thread->srccode_state))
1953 printf("\n");
1954 }
1955
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001956 if (PRINT_FIELD(METRIC))
1957 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
Milian Wolff7ee40672018-10-21 21:14:24 +02001958
1959 if (verbose)
1960 fflush(fp);
David Ahernbe6d8422011-03-09 22:23:23 -07001961}
1962
Tom Zanussi956ffd02009-11-25 01:15:46 -06001963static struct scripting_ops *scripting_ops;
1964
Jiri Olsa32dcd022019-07-21 13:23:51 +02001965static void __process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsa36e33c52016-01-06 11:49:56 +01001966{
Jiri Olsaa2f354e2019-08-22 13:11:41 +02001967 int nthreads = perf_thread_map__nr(counter->core.threads);
Jiri Olsa36e33c52016-01-06 11:49:56 +01001968 int ncpus = perf_evsel__nr_cpus(counter);
1969 int cpu, thread;
1970 static int header_printed;
1971
Jiri Olsa648b5af2019-08-06 11:35:19 +02001972 if (counter->core.system_wide)
Jiri Olsa36e33c52016-01-06 11:49:56 +01001973 nthreads = 1;
1974
1975 if (!header_printed) {
1976 printf("%3s %8s %15s %15s %15s %15s %s\n",
1977 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
1978 header_printed = 1;
1979 }
1980
1981 for (thread = 0; thread < nthreads; thread++) {
1982 for (cpu = 0; cpu < ncpus; cpu++) {
1983 struct perf_counts_values *counts;
1984
1985 counts = perf_counts(counter->counts, cpu, thread);
1986
1987 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
Jiri Olsad400bd32019-07-21 13:24:37 +02001988 counter->core.cpus->map[cpu],
Jiri Olsaa2f354e2019-08-22 13:11:41 +02001989 perf_thread_map__pid(counter->core.threads, thread),
Jiri Olsa36e33c52016-01-06 11:49:56 +01001990 counts->val,
1991 counts->ena,
1992 counts->run,
1993 tstamp,
1994 perf_evsel__name(counter));
1995 }
1996 }
1997}
1998
Jiri Olsa32dcd022019-07-21 13:23:51 +02001999static void process_stat(struct evsel *counter, u64 tstamp)
Jiri Olsae099eba2016-01-05 22:09:09 +01002000{
2001 if (scripting_ops && scripting_ops->process_stat)
2002 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01002003 else
2004 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01002005}
2006
2007static void process_stat_interval(u64 tstamp)
2008{
2009 if (scripting_ops && scripting_ops->process_stat_interval)
2010 scripting_ops->process_stat_interval(tstamp);
2011}
2012
Tom Zanussi956ffd02009-11-25 01:15:46 -06002013static void setup_scripting(void)
2014{
Tom Zanussi16c632d2009-11-25 01:15:48 -06002015 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06002016 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002017}
2018
Adrian Hunterd445dd22014-08-15 22:08:37 +03002019static int flush_scripting(void)
2020{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002021 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03002022}
2023
Tom Zanussi956ffd02009-11-25 01:15:46 -06002024static int cleanup_scripting(void)
2025{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002026 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05002027
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002028 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002029}
2030
Andi Kleene87e5482019-03-11 07:44:52 -07002031static bool filter_cpu(struct perf_sample *sample)
2032{
2033 if (cpu_list)
2034 return !test_bit(sample->cpu, cpu_bitmap);
2035 return false;
2036}
2037
Jiri Olsa809e9422015-11-26 18:55:21 +01002038static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02002039 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002040 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002041 struct evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002042 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002043{
Jiri Olsa809e9422015-11-26 18:55:21 +01002044 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07002045 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002046
Jin Yao2ab046c2017-12-08 21:13:46 +08002047 if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
2048 sample->time)) {
David Aherna91f4c42016-11-29 10:15:43 -07002049 return 0;
Jin Yao2ab046c2017-12-08 21:13:46 +08002050 }
David Aherna91f4c42016-11-29 10:15:43 -07002051
David Ahern1424dc92011-03-09 22:23:28 -07002052 if (debug_mode) {
2053 if (sample->time < last_timestamp) {
2054 pr_err("Samples misordered, previous: %" PRIu64
2055 " this: %" PRIu64 "\n", last_timestamp,
2056 sample->time);
2057 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02002058 }
David Ahern1424dc92011-03-09 22:23:28 -07002059 last_timestamp = sample->time;
2060 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002061 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10002062
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03002063 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07002064 pr_err("problem processing %d event, skipping it.\n",
2065 event->header.type);
2066 return -1;
2067 }
2068
2069 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002070 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07002071
Andi Kleene87e5482019-03-11 07:44:52 -07002072 if (filter_cpu(sample))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002073 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002074
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002075 if (scripting_ops)
2076 scripting_ops->process_event(event, sample, evsel, &al);
2077 else
Andi Kleen48d02a12017-02-23 15:46:34 -08002078 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01002079
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002080out_put:
2081 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002082 return 0;
2083}
2084
Adrian Hunter7ea95722013-11-01 15:51:30 +02002085static int process_attr(struct perf_tool *tool, union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02002086 struct evlist **pevlist)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002087{
2088 struct perf_script *scr = container_of(tool, struct perf_script, tool);
Jiri Olsa63503db2019-07-21 13:23:52 +02002089 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002090 struct evsel *evsel, *pos;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002091 int err;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002092 static struct evsel_script *es;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002093
2094 err = perf_event__process_attr(tool, event, pevlist);
2095 if (err)
2096 return err;
2097
2098 evlist = *pevlist;
Jiri Olsa515dbe42019-09-03 10:39:52 +02002099 evsel = evlist__last(*pevlist);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002100
Ravi Bangoriaa3af66f2018-06-25 18:12:19 +05302101 if (!evsel->priv) {
2102 if (scr->per_event_dump) {
2103 evsel->priv = perf_evsel_script__new(evsel,
2104 scr->session->data);
2105 } else {
2106 es = zalloc(sizeof(*es));
2107 if (!es)
2108 return -ENOMEM;
2109 es->fp = stdout;
2110 evsel->priv = es;
2111 }
2112 }
2113
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002114 if (evsel->core.attr.type >= PERF_TYPE_MAX &&
2115 evsel->core.attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002116 return 0;
2117
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002118 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002119 if (pos->core.attr.type == evsel->core.attr.type && pos != evsel)
Adrian Hunter7ea95722013-11-01 15:51:30 +02002120 return 0;
2121 }
2122
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002123 set_print_ip_opts(&evsel->core.attr);
Adrian Hunter7ea95722013-11-01 15:51:30 +02002124
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002125 if (evsel->core.attr.sample_type)
Jiri Olsad2b5a312015-10-16 12:41:25 +02002126 err = perf_evsel__check_attr(evsel, scr->session);
2127
2128 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +02002129}
2130
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002131static int process_comm_event(struct perf_tool *tool,
2132 union perf_event *event,
2133 struct perf_sample *sample,
2134 struct machine *machine)
2135{
2136 struct thread *thread;
2137 struct perf_script *script = container_of(tool, struct perf_script, tool);
2138 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002139 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002140 int ret = -1;
2141
2142 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
2143 if (thread == NULL) {
2144 pr_debug("problem processing COMM event, skipping it.\n");
2145 return -1;
2146 }
2147
2148 if (perf_event__process_comm(tool, event, sample, machine) < 0)
2149 goto out;
2150
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002151 if (!evsel->core.attr.sample_id_all) {
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002152 sample->cpu = 0;
2153 sample->time = 0;
2154 sample->tid = event->comm.tid;
2155 sample->pid = event->comm.pid;
2156 }
Andi Kleene87e5482019-03-11 07:44:52 -07002157 if (!filter_cpu(sample)) {
2158 perf_sample__fprintf_start(sample, thread, evsel,
Jiri Olsa28a0b392018-01-07 17:03:52 +01002159 PERF_RECORD_COMM, stdout);
Andi Kleene87e5482019-03-11 07:44:52 -07002160 perf_event__fprintf(event, stdout);
2161 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002162 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002163out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002164 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002165 return ret;
2166}
2167
Hari Bathini96a44bb2017-03-08 02:12:06 +05302168static int process_namespaces_event(struct perf_tool *tool,
2169 union perf_event *event,
2170 struct perf_sample *sample,
2171 struct machine *machine)
2172{
2173 struct thread *thread;
2174 struct perf_script *script = container_of(tool, struct perf_script, tool);
2175 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002176 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Hari Bathini96a44bb2017-03-08 02:12:06 +05302177 int ret = -1;
2178
2179 thread = machine__findnew_thread(machine, event->namespaces.pid,
2180 event->namespaces.tid);
2181 if (thread == NULL) {
2182 pr_debug("problem processing NAMESPACES event, skipping it.\n");
2183 return -1;
2184 }
2185
2186 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
2187 goto out;
2188
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002189 if (!evsel->core.attr.sample_id_all) {
Hari Bathini96a44bb2017-03-08 02:12:06 +05302190 sample->cpu = 0;
2191 sample->time = 0;
2192 sample->tid = event->namespaces.tid;
2193 sample->pid = event->namespaces.pid;
2194 }
Andi Kleene87e5482019-03-11 07:44:52 -07002195 if (!filter_cpu(sample)) {
2196 perf_sample__fprintf_start(sample, thread, evsel,
2197 PERF_RECORD_NAMESPACES, stdout);
2198 perf_event__fprintf(event, stdout);
2199 }
Hari Bathini96a44bb2017-03-08 02:12:06 +05302200 ret = 0;
2201out:
2202 thread__put(thread);
2203 return ret;
2204}
2205
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002206static int process_fork_event(struct perf_tool *tool,
2207 union perf_event *event,
2208 struct perf_sample *sample,
2209 struct machine *machine)
2210{
2211 struct thread *thread;
2212 struct perf_script *script = container_of(tool, struct perf_script, tool);
2213 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002214 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002215
2216 if (perf_event__process_fork(tool, event, sample, machine) < 0)
2217 return -1;
2218
2219 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
2220 if (thread == NULL) {
2221 pr_debug("problem processing FORK event, skipping it.\n");
2222 return -1;
2223 }
2224
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002225 if (!evsel->core.attr.sample_id_all) {
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002226 sample->cpu = 0;
2227 sample->time = event->fork.time;
2228 sample->tid = event->fork.tid;
2229 sample->pid = event->fork.pid;
2230 }
Andi Kleene87e5482019-03-11 07:44:52 -07002231 if (!filter_cpu(sample)) {
2232 perf_sample__fprintf_start(sample, thread, evsel,
2233 PERF_RECORD_FORK, stdout);
2234 perf_event__fprintf(event, stdout);
2235 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002236 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002237
2238 return 0;
2239}
2240static int process_exit_event(struct perf_tool *tool,
2241 union perf_event *event,
2242 struct perf_sample *sample,
2243 struct machine *machine)
2244{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002245 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002246 struct thread *thread;
2247 struct perf_script *script = container_of(tool, struct perf_script, tool);
2248 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002249 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002250
2251 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
2252 if (thread == NULL) {
2253 pr_debug("problem processing EXIT event, skipping it.\n");
2254 return -1;
2255 }
2256
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002257 if (!evsel->core.attr.sample_id_all) {
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002258 sample->cpu = 0;
2259 sample->time = 0;
Adrian Hunter53ff6bc32015-08-18 12:07:05 +03002260 sample->tid = event->fork.tid;
2261 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002262 }
Andi Kleene87e5482019-03-11 07:44:52 -07002263 if (!filter_cpu(sample)) {
2264 perf_sample__fprintf_start(sample, thread, evsel,
2265 PERF_RECORD_EXIT, stdout);
2266 perf_event__fprintf(event, stdout);
2267 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002268
2269 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002270 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002271
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002272 thread__put(thread);
2273 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002274}
2275
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002276static int process_mmap_event(struct perf_tool *tool,
2277 union perf_event *event,
2278 struct perf_sample *sample,
2279 struct machine *machine)
2280{
2281 struct thread *thread;
2282 struct perf_script *script = container_of(tool, struct perf_script, tool);
2283 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002284 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002285
2286 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
2287 return -1;
2288
2289 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
2290 if (thread == NULL) {
2291 pr_debug("problem processing MMAP event, skipping it.\n");
2292 return -1;
2293 }
2294
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002295 if (!evsel->core.attr.sample_id_all) {
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002296 sample->cpu = 0;
2297 sample->time = 0;
2298 sample->tid = event->mmap.tid;
2299 sample->pid = event->mmap.pid;
2300 }
Andi Kleene87e5482019-03-11 07:44:52 -07002301 if (!filter_cpu(sample)) {
2302 perf_sample__fprintf_start(sample, thread, evsel,
2303 PERF_RECORD_MMAP, stdout);
2304 perf_event__fprintf(event, stdout);
2305 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002306 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002307 return 0;
2308}
2309
2310static int process_mmap2_event(struct perf_tool *tool,
2311 union perf_event *event,
2312 struct perf_sample *sample,
2313 struct machine *machine)
2314{
2315 struct thread *thread;
2316 struct perf_script *script = container_of(tool, struct perf_script, tool);
2317 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002318 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002319
2320 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
2321 return -1;
2322
2323 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
2324 if (thread == NULL) {
2325 pr_debug("problem processing MMAP2 event, skipping it.\n");
2326 return -1;
2327 }
2328
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002329 if (!evsel->core.attr.sample_id_all) {
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002330 sample->cpu = 0;
2331 sample->time = 0;
2332 sample->tid = event->mmap2.tid;
2333 sample->pid = event->mmap2.pid;
2334 }
Andi Kleene87e5482019-03-11 07:44:52 -07002335 if (!filter_cpu(sample)) {
2336 perf_sample__fprintf_start(sample, thread, evsel,
2337 PERF_RECORD_MMAP2, stdout);
2338 perf_event__fprintf(event, stdout);
2339 }
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03002340 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002341 return 0;
2342}
2343
Adrian Hunter7c148982015-07-21 12:44:06 +03002344static int process_switch_event(struct perf_tool *tool,
2345 union perf_event *event,
2346 struct perf_sample *sample,
2347 struct machine *machine)
2348{
2349 struct thread *thread;
2350 struct perf_script *script = container_of(tool, struct perf_script, tool);
2351 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002352 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Adrian Hunter7c148982015-07-21 12:44:06 +03002353
2354 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2355 return -1;
2356
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002357 if (scripting_ops && scripting_ops->process_switch)
2358 scripting_ops->process_switch(event, sample, machine);
2359
2360 if (!script->show_switch_events)
2361 return 0;
2362
Adrian Hunter7c148982015-07-21 12:44:06 +03002363 thread = machine__findnew_thread(machine, sample->pid,
2364 sample->tid);
2365 if (thread == NULL) {
2366 pr_debug("problem processing SWITCH event, skipping it.\n");
2367 return -1;
2368 }
2369
Andi Kleene87e5482019-03-11 07:44:52 -07002370 if (!filter_cpu(sample)) {
2371 perf_sample__fprintf_start(sample, thread, evsel,
2372 PERF_RECORD_SWITCH, stdout);
2373 perf_event__fprintf(event, stdout);
2374 }
Adrian Hunter7c148982015-07-21 12:44:06 +03002375 thread__put(thread);
2376 return 0;
2377}
2378
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002379static int
2380process_lost_event(struct perf_tool *tool,
2381 union perf_event *event,
2382 struct perf_sample *sample,
2383 struct machine *machine)
2384{
2385 struct perf_script *script = container_of(tool, struct perf_script, tool);
2386 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002387 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002388 struct thread *thread;
2389
2390 thread = machine__findnew_thread(machine, sample->pid,
2391 sample->tid);
2392 if (thread == NULL)
2393 return -1;
2394
Andi Kleene87e5482019-03-11 07:44:52 -07002395 if (!filter_cpu(sample)) {
2396 perf_sample__fprintf_start(sample, thread, evsel,
2397 PERF_RECORD_LOST, stdout);
2398 perf_event__fprintf(event, stdout);
2399 }
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002400 thread__put(thread);
2401 return 0;
2402}
2403
Jiri Olsa3233b372018-02-06 19:17:59 +01002404static int
2405process_finished_round_event(struct perf_tool *tool __maybe_unused,
2406 union perf_event *event,
2407 struct ordered_events *oe __maybe_unused)
2408
2409{
2410 perf_event__fprintf(event, stdout);
2411 return 0;
2412}
2413
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002414static int
2415process_bpf_events(struct perf_tool *tool __maybe_unused,
2416 union perf_event *event,
2417 struct perf_sample *sample,
2418 struct machine *machine)
2419{
2420 struct thread *thread;
2421 struct perf_script *script = container_of(tool, struct perf_script, tool);
2422 struct perf_session *session = script->session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002423 struct evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002424
2425 if (machine__process_ksymbol(machine, event, sample) < 0)
2426 return -1;
2427
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002428 if (!evsel->core.attr.sample_id_all) {
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002429 perf_event__fprintf(event, stdout);
2430 return 0;
2431 }
2432
2433 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2434 if (thread == NULL) {
2435 pr_debug("problem processing MMAP event, skipping it.\n");
2436 return -1;
2437 }
2438
2439 if (!filter_cpu(sample)) {
2440 perf_sample__fprintf_start(sample, thread, evsel,
2441 event->header.type, stdout);
2442 perf_event__fprintf(event, stdout);
2443 }
2444
2445 thread__put(thread);
2446 return 0;
2447}
2448
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002449static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002450{
2451 session_done = 1;
2452}
2453
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002454static void perf_script__fclose_per_event_dump(struct perf_script *script)
2455{
Jiri Olsa63503db2019-07-21 13:23:52 +02002456 struct evlist *evlist = script->session->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002457 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002458
2459 evlist__for_each_entry(evlist, evsel) {
2460 if (!evsel->priv)
2461 break;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002462 perf_evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002463 evsel->priv = NULL;
2464 }
2465}
2466
2467static int perf_script__fopen_per_event_dump(struct perf_script *script)
2468{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002469 struct evsel *evsel;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002470
2471 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002472 /*
2473 * Already setup? I.e. we may be called twice in cases like
2474 * Intel PT, one for the intel_pt// and dummy events, then
2475 * for the evsels syntheized from the auxtrace info.
2476 *
2477 * Ses perf_script__process_auxtrace_info.
2478 */
2479 if (evsel->priv != NULL)
2480 continue;
2481
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002482 evsel->priv = perf_evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002483 if (evsel->priv == NULL)
2484 goto out_err_fclose;
2485 }
2486
2487 return 0;
2488
2489out_err_fclose:
2490 perf_script__fclose_per_event_dump(script);
2491 return -1;
2492}
2493
2494static int perf_script__setup_per_event_dump(struct perf_script *script)
2495{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002496 struct evsel *evsel;
2497 static struct evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002498
2499 if (script->per_event_dump)
2500 return perf_script__fopen_per_event_dump(script);
2501
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002502 es_stdout.fp = stdout;
2503
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002504 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002505 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002506
2507 return 0;
2508}
2509
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002510static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2511{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002512 struct evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002513
2514 evlist__for_each_entry(script->session->evlist, evsel) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002515 struct evsel_script *es = evsel->priv;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002516
2517 perf_evsel_script__fprintf(es, stdout);
2518 perf_evsel_script__delete(es);
2519 evsel->priv = NULL;
2520 }
2521}
2522
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002523static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002524{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002525 int ret;
2526
Tom Zanussic239da32010-04-01 23:59:18 -05002527 signal(SIGINT, sig_handler);
2528
Tony Jones8bf8c6d2019-01-20 11:14:14 -08002529 perf_stat__init_shadow_stats();
2530
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002531 /* override event processing functions */
2532 if (script->show_task_events) {
2533 script->tool.comm = process_comm_event;
2534 script->tool.fork = process_fork_event;
2535 script->tool.exit = process_exit_event;
2536 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002537 if (script->show_mmap_events) {
2538 script->tool.mmap = process_mmap_event;
2539 script->tool.mmap2 = process_mmap2_event;
2540 }
Adrian Hunter5bf83c22019-07-10 11:58:06 +03002541 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
Adrian Hunter7c148982015-07-21 12:44:06 +03002542 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302543 if (script->show_namespace_events)
2544 script->tool.namespaces = process_namespaces_event;
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01002545 if (script->show_lost_events)
2546 script->tool.lost = process_lost_event;
Jiri Olsa3233b372018-02-06 19:17:59 +01002547 if (script->show_round_events) {
2548 script->tool.ordered_events = false;
2549 script->tool.finished_round = process_finished_round_event;
2550 }
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002551 if (script->show_bpf_events) {
Arnaldo Carvalho de Melo3f604b52019-08-26 19:28:13 -03002552 script->tool.ksymbol = process_bpf_events;
2553 script->tool.bpf = process_bpf_events;
Jiri Olsa490c8cc2019-05-08 15:20:08 +02002554 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002555
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002556 if (perf_script__setup_per_event_dump(script)) {
2557 pr_err("Couldn't create the per event dump files\n");
2558 return -1;
2559 }
2560
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002561 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002562
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002563 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002564 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002565
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002566 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002567 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002568
2569 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002570}
2571
Tom Zanussi956ffd02009-11-25 01:15:46 -06002572struct script_spec {
2573 struct list_head node;
2574 struct scripting_ops *ops;
2575 char spec[0];
2576};
2577
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002578static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002579
2580static struct script_spec *script_spec__new(const char *spec,
2581 struct scripting_ops *ops)
2582{
2583 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2584
2585 if (s != NULL) {
2586 strcpy(s->spec, spec);
2587 s->ops = ops;
2588 }
2589
2590 return s;
2591}
2592
Tom Zanussi956ffd02009-11-25 01:15:46 -06002593static void script_spec__add(struct script_spec *s)
2594{
2595 list_add_tail(&s->node, &script_specs);
2596}
2597
2598static struct script_spec *script_spec__find(const char *spec)
2599{
2600 struct script_spec *s;
2601
2602 list_for_each_entry(s, &script_specs, node)
2603 if (strcasecmp(s->spec, spec) == 0)
2604 return s;
2605 return NULL;
2606}
2607
Tom Zanussi956ffd02009-11-25 01:15:46 -06002608int script_spec_register(const char *spec, struct scripting_ops *ops)
2609{
2610 struct script_spec *s;
2611
2612 s = script_spec__find(spec);
2613 if (s)
2614 return -1;
2615
Taeung Song8560bae2016-02-26 00:13:10 +09002616 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002617 if (!s)
2618 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002619 else
2620 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002621
2622 return 0;
2623}
2624
2625static struct scripting_ops *script_spec__lookup(const char *spec)
2626{
2627 struct script_spec *s = script_spec__find(spec);
2628 if (!s)
2629 return NULL;
2630
2631 return s->ops;
2632}
2633
2634static void list_available_languages(void)
2635{
2636 struct script_spec *s;
2637
2638 fprintf(stderr, "\n");
2639 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002640 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002641
2642 list_for_each_entry(s, &script_specs, node)
2643 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2644
2645 fprintf(stderr, "\n");
2646}
2647
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002648static int parse_scriptname(const struct option *opt __maybe_unused,
2649 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002650{
2651 char spec[PATH_MAX];
2652 const char *script, *ext;
2653 int len;
2654
Tom Zanussif526d682010-01-27 02:27:52 -06002655 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002656 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002657 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002658 }
2659
2660 script = strchr(str, ':');
2661 if (script) {
2662 len = script - str;
2663 if (len >= PATH_MAX) {
2664 fprintf(stderr, "invalid language specifier");
2665 return -1;
2666 }
2667 strncpy(spec, str, len);
2668 spec[len] = '\0';
2669 scripting_ops = script_spec__lookup(spec);
2670 if (!scripting_ops) {
2671 fprintf(stderr, "invalid language specifier");
2672 return -1;
2673 }
2674 script++;
2675 } else {
2676 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002677 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002678 if (!ext) {
2679 fprintf(stderr, "invalid script extension");
2680 return -1;
2681 }
2682 scripting_ops = script_spec__lookup(++ext);
2683 if (!scripting_ops) {
2684 fprintf(stderr, "invalid script extension");
2685 return -1;
2686 }
2687 }
2688
2689 script_name = strdup(script);
2690
2691 return 0;
2692}
2693
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002694static int parse_output_fields(const struct option *opt __maybe_unused,
2695 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002696{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002697 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002698 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002699 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002700 int rc = 0;
2701 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002702 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002703 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002704
2705 if (!str)
2706 return -ENOMEM;
2707
David Ahern2c9e45f72011-03-17 10:03:21 -06002708 /* first word can state for which event type the user is specifying
2709 * the fields. If no type exists, the specified fields apply to all
2710 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002711 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002712 tok = strchr(str, ':');
2713 if (tok) {
2714 *tok = '\0';
2715 tok++;
2716 if (!strcmp(str, "hw"))
2717 type = PERF_TYPE_HARDWARE;
2718 else if (!strcmp(str, "sw"))
2719 type = PERF_TYPE_SOFTWARE;
2720 else if (!strcmp(str, "trace"))
2721 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002722 else if (!strcmp(str, "raw"))
2723 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002724 else if (!strcmp(str, "break"))
2725 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002726 else if (!strcmp(str, "synth"))
2727 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002728 else {
2729 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002730 rc = -EINVAL;
2731 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002732 }
2733
2734 if (output[type].user_set)
2735 pr_warning("Overriding previous field request for %s events.\n",
2736 event_type(type));
2737
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002738 /* Don't override defaults for +- */
2739 if (strchr(tok, '+') || strchr(tok, '-'))
2740 goto parse;
2741
David Ahern2c9e45f72011-03-17 10:03:21 -06002742 output[type].fields = 0;
2743 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002744 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002745
2746 } else {
2747 tok = str;
2748 if (strlen(str) == 0) {
2749 fprintf(stderr,
2750 "Cannot set fields to 'none' for all event types.\n");
2751 rc = -EINVAL;
2752 goto out;
2753 }
2754
Andi Kleen36ce5652017-06-02 08:48:10 -07002755 /* Don't override defaults for +- */
2756 if (strchr(str, '+') || strchr(str, '-'))
2757 goto parse;
2758
David Ahern2c9e45f72011-03-17 10:03:21 -06002759 if (output_set_by_user())
2760 pr_warning("Overriding previous field request for all events.\n");
2761
Adrian Hunter14057202017-06-21 13:17:19 +03002762 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002763 output[j].fields = 0;
2764 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002765 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002766 }
David Ahern1424dc92011-03-09 22:23:28 -07002767 }
2768
Andi Kleen36ce5652017-06-02 08:48:10 -07002769parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002770 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002771 if (*tok == '+') {
2772 if (change == SET)
2773 goto out_badmix;
2774 change = ADD;
2775 tok++;
2776 } else if (*tok == '-') {
2777 if (change == SET)
2778 goto out_badmix;
2779 change = REMOVE;
2780 tok++;
2781 } else {
2782 if (change != SET && change != DEFAULT)
2783 goto out_badmix;
2784 change = SET;
2785 }
2786
David Ahern745f43e2011-03-09 22:23:26 -07002787 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002788 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002789 break;
David Ahern745f43e2011-03-09 22:23:26 -07002790 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002791 if (i == imax && strcmp(tok, "flags") == 0) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002792 print_flags = change == REMOVE ? false : true;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002793 continue;
2794 }
David Ahern745f43e2011-03-09 22:23:26 -07002795 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002796 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002797 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002798 goto out;
2799 }
2800
2801 if (type == -1) {
2802 /* add user option to all events types for
2803 * which it is valid
2804 */
Adrian Hunter14057202017-06-21 13:17:19 +03002805 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002806 if (output[j].invalid_fields & all_output_options[i].field) {
2807 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2808 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002809 } else {
Andi Kleen4b6ac812019-02-24 07:37:12 -08002810 if (change == REMOVE) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002811 output[j].fields &= ~all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002812 output[j].user_set_fields &= ~all_output_options[i].field;
2813 } else {
Andi Kleen36ce5652017-06-02 08:48:10 -07002814 output[j].fields |= all_output_options[i].field;
Andi Kleen4b6ac812019-02-24 07:37:12 -08002815 output[j].user_set_fields |= all_output_options[i].field;
2816 }
Andi Kleen37fed3d2018-09-18 05:32:09 -07002817 output[j].user_set = true;
2818 output[j].wildcard_set = true;
Andi Kleen36ce5652017-06-02 08:48:10 -07002819 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002820 }
2821 } else {
2822 if (output[type].invalid_fields & all_output_options[i].field) {
2823 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2824 all_output_options[i].str, event_type(type));
2825
2826 rc = -EINVAL;
2827 goto out;
2828 }
Jiri Olsa6ef362f2019-02-20 13:27:57 +01002829 if (change == REMOVE)
2830 output[type].fields &= ~all_output_options[i].field;
2831 else
2832 output[type].fields |= all_output_options[i].field;
Andi Kleen37fed3d2018-09-18 05:32:09 -07002833 output[type].user_set = true;
2834 output[type].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002835 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002836 }
2837
2838 if (type >= 0) {
2839 if (output[type].fields == 0) {
2840 pr_debug("No fields requested for %s type. "
2841 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002842 }
David Ahern1424dc92011-03-09 22:23:28 -07002843 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002844 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002845
Andi Kleen36ce5652017-06-02 08:48:10 -07002846out_badmix:
2847 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2848 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002849out:
David Ahern745f43e2011-03-09 22:23:26 -07002850 free(str);
2851 return rc;
2852}
2853
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002854#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2855 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2856 if ((lang_dirent->d_type == DT_DIR || \
2857 (lang_dirent->d_type == DT_UNKNOWN && \
2858 is_directory(scripts_path, lang_dirent))) && \
2859 (strcmp(lang_dirent->d_name, ".")) && \
2860 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002861
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002862#define for_each_script(lang_path, lang_dir, script_dirent) \
2863 while ((script_dirent = readdir(lang_dir)) != NULL) \
2864 if (script_dirent->d_type != DT_DIR && \
2865 (script_dirent->d_type != DT_UNKNOWN || \
2866 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002867
2868
2869#define RECORD_SUFFIX "-record"
2870#define REPORT_SUFFIX "-report"
2871
2872struct script_desc {
2873 struct list_head node;
2874 char *name;
2875 char *half_liner;
2876 char *args;
2877};
2878
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002879static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002880
2881static struct script_desc *script_desc__new(const char *name)
2882{
2883 struct script_desc *s = zalloc(sizeof(*s));
2884
Tom Zanussib5b87312010-11-10 08:16:51 -06002885 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002886 s->name = strdup(name);
2887
2888 return s;
2889}
2890
2891static void script_desc__delete(struct script_desc *s)
2892{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002893 zfree(&s->name);
2894 zfree(&s->half_liner);
2895 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002896 free(s);
2897}
2898
2899static void script_desc__add(struct script_desc *s)
2900{
2901 list_add_tail(&s->node, &script_descs);
2902}
2903
2904static struct script_desc *script_desc__find(const char *name)
2905{
2906 struct script_desc *s;
2907
2908 list_for_each_entry(s, &script_descs, node)
2909 if (strcasecmp(s->name, name) == 0)
2910 return s;
2911 return NULL;
2912}
2913
2914static struct script_desc *script_desc__findnew(const char *name)
2915{
2916 struct script_desc *s = script_desc__find(name);
2917
2918 if (s)
2919 return s;
2920
2921 s = script_desc__new(name);
2922 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002923 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002924
2925 script_desc__add(s);
2926
2927 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002928}
2929
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002930static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002931{
2932 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002933 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002934
2935 if (strlen(str) > suffix_len) {
2936 p = str + strlen(str) - suffix_len;
2937 if (!strncmp(p, suffix, suffix_len))
2938 return p;
2939 }
2940
2941 return NULL;
2942}
2943
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002944static int read_script_info(struct script_desc *desc, const char *filename)
2945{
2946 char line[BUFSIZ], *p;
2947 FILE *fp;
2948
2949 fp = fopen(filename, "r");
2950 if (!fp)
2951 return -1;
2952
2953 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002954 p = skip_spaces(line);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002955 if (strlen(p) == 0)
2956 continue;
2957 if (*p != '#')
2958 continue;
2959 p++;
2960 if (strlen(p) && *p == '!')
2961 continue;
2962
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002963 p = skip_spaces(p);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002964 if (strlen(p) && p[strlen(p) - 1] == '\n')
2965 p[strlen(p) - 1] = '\0';
2966
2967 if (!strncmp(p, "description:", strlen("description:"))) {
2968 p += strlen("description:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002969 desc->half_liner = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002970 continue;
2971 }
2972
2973 if (!strncmp(p, "args:", strlen("args:"))) {
2974 p += strlen("args:");
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03002975 desc->args = strdup(skip_spaces(p));
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002976 continue;
2977 }
2978 }
2979
2980 fclose(fp);
2981
2982 return 0;
2983}
2984
Robert Richter38efb532011-11-25 11:38:40 +01002985static char *get_script_root(struct dirent *script_dirent, const char *suffix)
2986{
2987 char *script_root, *str;
2988
2989 script_root = strdup(script_dirent->d_name);
2990 if (!script_root)
2991 return NULL;
2992
2993 str = (char *)ends_with(script_root, suffix);
2994 if (!str) {
2995 free(script_root);
2996 return NULL;
2997 }
2998
2999 *str = '\0';
3000 return script_root;
3001}
3002
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003003static int list_available_scripts(const struct option *opt __maybe_unused,
3004 const char *s __maybe_unused,
3005 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003006{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003007 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003008 char scripts_path[MAXPATHLEN];
3009 DIR *scripts_dir, *lang_dir;
3010 char script_path[MAXPATHLEN];
3011 char lang_path[MAXPATHLEN];
3012 struct script_desc *desc;
3013 char first_half[BUFSIZ];
3014 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003015
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003016 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003017
3018 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00003019 if (!scripts_dir) {
3020 fprintf(stdout,
3021 "open(%s) failed.\n"
3022 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
3023 scripts_path);
3024 exit(-1);
3025 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003026
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003027 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003028 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3029 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003030 lang_dir = opendir(lang_path);
3031 if (!lang_dir)
3032 continue;
3033
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003034 for_each_script(lang_path, lang_dir, script_dirent) {
3035 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01003036 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003037 desc = script_desc__findnew(script_root);
Jiri Olsa77f18152018-03-19 09:29:01 +01003038 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3039 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003040 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01003041 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003042 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06003043 }
3044 }
3045
3046 fprintf(stdout, "List of available trace scripts:\n");
3047 list_for_each_entry(desc, &script_descs, node) {
3048 sprintf(first_half, "%s %s", desc->name,
3049 desc->args ? desc->args : "");
3050 fprintf(stdout, " %-36s %s\n", first_half,
3051 desc->half_liner ? desc->half_liner : "");
3052 }
3053
3054 exit(0);
3055}
3056
Feng Tange5f37052012-09-07 16:42:26 +08003057/*
Feng Tang49e639e2012-10-30 11:56:03 +08003058 * Some scripts specify the required events in their "xxx-record" file,
3059 * this function will check if the events in perf.data match those
3060 * mentioned in the "xxx-record".
3061 *
3062 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
3063 * which is covered well now. And new parsing code should be added to
3064 * cover the future complexing formats like event groups etc.
3065 */
3066static int check_ev_match(char *dir_name, char *scriptname,
3067 struct perf_session *session)
3068{
3069 char filename[MAXPATHLEN], evname[128];
3070 char line[BUFSIZ], *p;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003071 struct evsel *pos;
Feng Tang49e639e2012-10-30 11:56:03 +08003072 int match, len;
3073 FILE *fp;
3074
Jiri Olsa77f18152018-03-19 09:29:01 +01003075 scnprintf(filename, MAXPATHLEN, "%s/bin/%s-record", dir_name, scriptname);
Feng Tang49e639e2012-10-30 11:56:03 +08003076
3077 fp = fopen(filename, "r");
3078 if (!fp)
3079 return -1;
3080
3081 while (fgets(line, sizeof(line), fp)) {
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003082 p = skip_spaces(line);
Feng Tang49e639e2012-10-30 11:56:03 +08003083 if (*p == '#')
3084 continue;
3085
3086 while (strlen(p)) {
3087 p = strstr(p, "-e");
3088 if (!p)
3089 break;
3090
3091 p += 2;
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -03003092 p = skip_spaces(p);
Feng Tang49e639e2012-10-30 11:56:03 +08003093 len = strcspn(p, " \t");
3094 if (!len)
3095 break;
3096
3097 snprintf(evname, len + 1, "%s", p);
3098
3099 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003100 evlist__for_each_entry(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08003101 if (!strcmp(perf_evsel__name(pos), evname)) {
3102 match = 1;
3103 break;
3104 }
3105 }
3106
3107 if (!match) {
3108 fclose(fp);
3109 return -1;
3110 }
3111 }
3112 }
3113
3114 fclose(fp);
3115 return 0;
3116}
3117
3118/*
Feng Tange5f37052012-09-07 16:42:26 +08003119 * Return -1 if none is found, otherwise the actual scripts number.
3120 *
3121 * Currently the only user of this function is the script browser, which
3122 * will list all statically runnable scripts, select one, execute it and
3123 * show the output in a perf browser.
3124 */
Andi Kleen905e4af2019-03-11 07:45:01 -07003125int find_scripts(char **scripts_array, char **scripts_path_array, int num,
3126 int pathlen)
Feng Tange5f37052012-09-07 16:42:26 +08003127{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003128 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08003129 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08003130 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08003131 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003132 struct perf_data data = {
Jiri Olsa2d4f27992019-02-21 10:41:30 +01003133 .path = input_name,
3134 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003135 };
Feng Tange5f37052012-09-07 16:42:26 +08003136 char *temp;
3137 int i = 0;
3138
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003139 session = perf_session__new(&data, false, NULL);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303140 if (IS_ERR(session))
3141 return PTR_ERR(session);
Feng Tang49e639e2012-10-30 11:56:03 +08003142
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003143 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08003144
3145 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08003146 if (!scripts_dir) {
3147 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003148 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08003149 }
Feng Tange5f37052012-09-07 16:42:26 +08003150
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003151 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003152 scnprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
3153 lang_dirent->d_name);
Jin Yao90ce61b2018-04-09 18:26:47 +08003154#ifndef HAVE_LIBPERL_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003155 if (strstr(lang_path, "perl"))
3156 continue;
3157#endif
Jin Yao90ce61b2018-04-09 18:26:47 +08003158#ifndef HAVE_LIBPYTHON_SUPPORT
Feng Tange5f37052012-09-07 16:42:26 +08003159 if (strstr(lang_path, "python"))
3160 continue;
3161#endif
3162
3163 lang_dir = opendir(lang_path);
3164 if (!lang_dir)
3165 continue;
3166
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003167 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08003168 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003169 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08003170 continue;
Andi Kleen905e4af2019-03-11 07:45:01 -07003171 if (i >= num)
3172 break;
3173 snprintf(scripts_path_array[i], pathlen, "%s/%s",
3174 lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003175 script_dirent->d_name);
3176 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08003177 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003178 (temp - script_dirent->d_name) + 1,
3179 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08003180
3181 if (check_ev_match(lang_path,
3182 scripts_array[i], session))
3183 continue;
3184
Feng Tange5f37052012-09-07 16:42:26 +08003185 i++;
3186 }
Feng Tang49e639e2012-10-30 11:56:03 +08003187 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08003188 }
3189
Feng Tang49e639e2012-10-30 11:56:03 +08003190 closedir(scripts_dir);
3191 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08003192 return i;
3193}
3194
Tom Zanussi38752942009-12-15 02:53:39 -06003195static char *get_script_path(const char *script_root, const char *suffix)
3196{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003197 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06003198 char scripts_path[MAXPATHLEN];
3199 char script_path[MAXPATHLEN];
3200 DIR *scripts_dir, *lang_dir;
3201 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01003202 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06003203
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003204 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06003205
3206 scripts_dir = opendir(scripts_path);
3207 if (!scripts_dir)
3208 return NULL;
3209
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003210 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Jiri Olsa77f18152018-03-19 09:29:01 +01003211 scnprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
3212 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06003213 lang_dir = opendir(lang_path);
3214 if (!lang_dir)
3215 continue;
3216
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03003217 for_each_script(lang_path, lang_dir, script_dirent) {
3218 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01003219 if (__script_root && !strcmp(script_root, __script_root)) {
3220 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003221 closedir(lang_dir);
3222 closedir(scripts_dir);
Jiri Olsa77f18152018-03-19 09:29:01 +01003223 scnprintf(script_path, MAXPATHLEN, "%s/%s",
3224 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01003225 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06003226 }
3227 free(__script_root);
3228 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003229 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003230 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09003231 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06003232
Robert Richter38efb532011-11-25 11:38:40 +01003233 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003234}
3235
Tom Zanussib5b87312010-11-10 08:16:51 -06003236static bool is_top_script(const char *script_path)
3237{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02003238 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06003239}
3240
3241static int has_required_arg(char *script_path)
3242{
3243 struct script_desc *desc;
3244 int n_args = 0;
3245 char *p;
3246
3247 desc = script_desc__new(NULL);
3248
3249 if (read_script_info(desc, script_path))
3250 goto out;
3251
3252 if (!desc->args)
3253 goto out;
3254
3255 for (p = desc->args; *p; p++)
3256 if (*p == '<')
3257 n_args++;
3258out:
3259 script_desc__delete(desc);
3260
3261 return n_args;
3262}
3263
David Ahernd54b1a92012-08-26 12:24:46 -06003264static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003265{
3266 char **__argv = malloc(sizeof(const char *) * argc);
3267
David Ahernd54b1a92012-08-26 12:24:46 -06003268 if (!__argv) {
3269 pr_err("malloc failed\n");
3270 return -1;
3271 }
3272
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003273 memcpy(__argv, argv, sizeof(const char *) * argc);
3274 argc = parse_options(argc, (const char **)__argv, record_options,
3275 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
3276 free(__argv);
3277
David Ahernd54b1a92012-08-26 12:24:46 -06003278 system_wide = (argc == 0);
3279
3280 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003281}
3282
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003283static void script__setup_sample_type(struct perf_script *script)
3284{
3285 struct perf_session *session = script->session;
3286 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
3287
3288 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
3289 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003290 (sample_type & PERF_SAMPLE_STACK_USER)) {
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003291 callchain_param.record_mode = CALLCHAIN_DWARF;
Arnaldo Carvalho de Meloeabad8c2018-01-15 16:48:46 -03003292 dwarf_callchain_users = true;
3293 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003294 callchain_param.record_mode = CALLCHAIN_LBR;
3295 else
3296 callchain_param.record_mode = CALLCHAIN_FP;
3297 }
3298}
3299
Jiri Olsa89f16882018-09-13 14:54:03 +02003300static int process_stat_round_event(struct perf_session *session,
3301 union perf_event *event)
Jiri Olsae099eba2016-01-05 22:09:09 +01003302{
Jiri Olsa72932372019-08-28 15:57:16 +02003303 struct perf_record_stat_round *round = &event->stat_round;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003304 struct evsel *counter;
Jiri Olsae099eba2016-01-05 22:09:09 +01003305
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003306 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01003307 perf_stat_process_counter(&stat_config, counter);
3308 process_stat(counter, round->time);
3309 }
3310
3311 process_stat_interval(round->time);
3312 return 0;
3313}
3314
Jiri Olsa89f16882018-09-13 14:54:03 +02003315static int process_stat_config_event(struct perf_session *session __maybe_unused,
3316 union perf_event *event)
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003317{
3318 perf_event__read_stat_config(&stat_config, &event->stat_config);
3319 return 0;
3320}
3321
Jiri Olsacfc88742016-01-05 22:09:06 +01003322static int set_maps(struct perf_script *script)
3323{
Jiri Olsa63503db2019-07-21 13:23:52 +02003324 struct evlist *evlist = script->session->evlist;
Jiri Olsacfc88742016-01-05 22:09:06 +01003325
3326 if (!script->cpus || !script->threads)
3327 return 0;
3328
3329 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
3330 return -EINVAL;
3331
Jiri Olsa453fa032019-07-21 13:24:43 +02003332 perf_evlist__set_maps(&evlist->core, script->cpus, script->threads);
Jiri Olsacfc88742016-01-05 22:09:06 +01003333
3334 if (perf_evlist__alloc_stats(evlist, true))
3335 return -ENOMEM;
3336
3337 script->allocated = true;
3338 return 0;
3339}
3340
3341static
Jiri Olsa89f16882018-09-13 14:54:03 +02003342int process_thread_map_event(struct perf_session *session,
3343 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003344{
Jiri Olsa89f16882018-09-13 14:54:03 +02003345 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003346 struct perf_script *script = container_of(tool, struct perf_script, tool);
3347
3348 if (script->threads) {
3349 pr_warning("Extra thread map event, ignoring.\n");
3350 return 0;
3351 }
3352
3353 script->threads = thread_map__new_event(&event->thread_map);
3354 if (!script->threads)
3355 return -ENOMEM;
3356
3357 return set_maps(script);
3358}
3359
3360static
Jiri Olsa89f16882018-09-13 14:54:03 +02003361int process_cpu_map_event(struct perf_session *session,
3362 union perf_event *event)
Jiri Olsacfc88742016-01-05 22:09:06 +01003363{
Jiri Olsa89f16882018-09-13 14:54:03 +02003364 struct perf_tool *tool = session->tool;
Jiri Olsacfc88742016-01-05 22:09:06 +01003365 struct perf_script *script = container_of(tool, struct perf_script, tool);
3366
3367 if (script->cpus) {
3368 pr_warning("Extra cpu map event, ignoring.\n");
3369 return 0;
3370 }
3371
3372 script->cpus = cpu_map__new_data(&event->cpu_map.data);
3373 if (!script->cpus)
3374 return -ENOMEM;
3375
3376 return set_maps(script);
3377}
3378
Jiri Olsa89f16882018-09-13 14:54:03 +02003379static int process_feature_event(struct perf_session *session,
3380 union perf_event *event)
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303381{
3382 if (event->feat.feat_id < HEADER_LAST_FEATURE)
Jiri Olsa89f16882018-09-13 14:54:03 +02003383 return perf_event__process_feature(session, event);
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303384 return 0;
3385}
3386
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003387#ifdef HAVE_AUXTRACE_SUPPORT
Jiri Olsa89f16882018-09-13 14:54:03 +02003388static int perf_script__process_auxtrace_info(struct perf_session *session,
3389 union perf_event *event)
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003390{
Jiri Olsa89f16882018-09-13 14:54:03 +02003391 struct perf_tool *tool = session->tool;
3392
3393 int ret = perf_event__process_auxtrace_info(session, event);
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003394
3395 if (ret == 0) {
3396 struct perf_script *script = container_of(tool, struct perf_script, tool);
3397
3398 ret = perf_script__setup_per_event_dump(script);
3399 }
3400
3401 return ret;
3402}
3403#else
3404#define perf_script__process_auxtrace_info 0
3405#endif
3406
Andi Kleenb585ebd2018-09-20 11:05:36 -07003407static int parse_insn_trace(const struct option *opt __maybe_unused,
3408 const char *str __maybe_unused,
3409 int unset __maybe_unused)
3410{
3411 parse_output_fields(NULL, "+insn,-event,-period", 0);
3412 itrace_parse_synth_opts(opt, "i0ns", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003413 symbol_conf.nanosecs = true;
Andi Kleenb585ebd2018-09-20 11:05:36 -07003414 return 0;
3415}
3416
3417static int parse_xed(const struct option *opt __maybe_unused,
3418 const char *str __maybe_unused,
3419 int unset __maybe_unused)
3420{
3421 force_pager("xed -F insn: -A -64 | less");
3422 return 0;
3423}
3424
Andi Kleend1b15522018-09-20 11:05:38 -07003425static int parse_call_trace(const struct option *opt __maybe_unused,
3426 const char *str __maybe_unused,
3427 int unset __maybe_unused)
3428{
3429 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent", 0);
3430 itrace_parse_synth_opts(opt, "cewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003431 symbol_conf.nanosecs = true;
Jiri Olsa1c492422019-05-08 15:20:05 +02003432 symbol_conf.pad_output_len_dso = 50;
Andi Kleend1b15522018-09-20 11:05:38 -07003433 return 0;
3434}
3435
3436static int parse_callret_trace(const struct option *opt __maybe_unused,
3437 const char *str __maybe_unused,
3438 int unset __maybe_unused)
3439{
3440 parse_output_fields(NULL, "-ip,-addr,-event,-period,+callindent,+flags", 0);
3441 itrace_parse_synth_opts(opt, "crewp", 0);
Andi Kleen52bab882019-03-05 06:47:47 -08003442 symbol_conf.nanosecs = true;
Andi Kleend1b15522018-09-20 11:05:38 -07003443 return 0;
3444}
3445
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003446int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003447{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003448 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01003449 bool header = false;
3450 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003451 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06003452 char *rec_script_path = NULL;
3453 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003454 struct perf_session *session;
Andi Kleen4eb06812018-09-20 11:05:37 -07003455 struct itrace_synth_opts itrace_synth_opts = {
3456 .set = false,
3457 .default_no_sample = true,
3458 };
Andi Kleen3ab481a2019-03-05 06:47:45 -08003459 struct utsname uts;
Tom Zanussib5b87312010-11-10 08:16:51 -06003460 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003461 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003462 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003463 struct perf_script script = {
3464 .tool = {
3465 .sample = process_sample_event,
3466 .mmap = perf_event__process_mmap,
3467 .mmap2 = perf_event__process_mmap2,
3468 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303469 .namespaces = perf_event__process_namespaces,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003470 .exit = perf_event__process_exit,
3471 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02003472 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02003473 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003474 .tracing_data = perf_event__process_tracing_data,
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303475 .feature = process_feature_event,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003476 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003477 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03003478 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003479 .auxtrace = perf_event__process_auxtrace,
3480 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01003481 .stat = perf_event__process_stat_event,
3482 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01003483 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01003484 .thread_map = process_thread_map_event,
3485 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003486 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003487 .ordering_requires_timestamps = true,
3488 },
3489 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003490 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003491 .mode = PERF_DATA_MODE_READ,
3492 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003493 const struct option options[] = {
3494 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3495 "dump raw trace in ASCII"),
3496 OPT_INCR('v', "verbose", &verbose,
3497 "be more verbose (show symbol address, etc)"),
3498 OPT_BOOLEAN('L', "Latency", &latency_format,
3499 "show latency attributes (irqs/preemption disabled, etc)"),
3500 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3501 list_available_scripts),
3502 OPT_CALLBACK('s', "script", NULL, "name",
3503 "script file name (lang:script name, script name, or *)",
3504 parse_scriptname),
3505 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3506 "generate perf-script.xx script in specified language"),
3507 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3508 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3509 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003510 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3511 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003512 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3513 "file", "vmlinux pathname"),
3514 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3515 "file", "kallsyms pathname"),
3516 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3517 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003518 OPT_CALLBACK(0, "symfs", NULL, "directory",
3519 "Look for files with symbols relative to this directory",
3520 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003521 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003522 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003523 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003524 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003525 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Ravi Bangoria10e9cec2018-06-25 18:12:18 +05303526 "addr,symoff,srcline,period,iregs,uregs,brstack,"
3527 "brstacksym,flags,bpf-output,brstackinsn,brstackoff,"
Adrian Hunter68fb45b2019-05-20 14:37:14 +03003528 "callindent,insn,insnlen,synth,phys_addr,metric,misc,ipc",
Andi Kleen48d02a12017-02-23 15:46:34 -08003529 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003530 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3531 "system-wide collection from all CPUs"),
3532 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3533 "only consider these symbols"),
Andi Kleenb585ebd2018-09-20 11:05:36 -07003534 OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3535 "Decode instructions from itrace", parse_insn_trace),
3536 OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
3537 "Run xed disassembler on output", parse_xed),
Andi Kleend1b15522018-09-20 11:05:38 -07003538 OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
3539 "Decode calls from from itrace", parse_call_trace),
3540 OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
3541 "Decode calls and returns from itrace", parse_callret_trace),
Andi Kleen99f753f2018-09-20 11:05:39 -07003542 OPT_STRING(0, "graph-function", &symbol_conf.graph_function, "symbol[,symbol...]",
3543 "Only print symbols and callees with --call-trace/--call-ret-trace"),
David Ahern64eff7d2016-11-25 13:00:21 -07003544 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3545 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003546 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3547 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3548 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003549 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3550 "only consider symbols in these pids"),
3551 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3552 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003553 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3554 "Set the maximum stack depth when parsing the callchain, "
3555 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003556 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Andi Kleen90b10f42019-03-14 15:50:00 -07003557 OPT_BOOLEAN(0, "reltime", &reltime, "Show time stamps relative to start"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003558 OPT_BOOLEAN('I', "show-info", &show_full_info,
3559 "display extended information from perf.data file"),
3560 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3561 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003562 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3563 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003564 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3565 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003566 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3567 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303568 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3569 "Show namespace events (if recorded)"),
Jiri Olsa3d7c27b2018-01-07 17:03:53 +01003570 OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
3571 "Show lost events (if recorded)"),
Jiri Olsa3233b372018-02-06 19:17:59 +01003572 OPT_BOOLEAN('\0', "show-round-events", &script.show_round_events,
3573 "Show round events (if recorded)"),
Jiri Olsa490c8cc2019-05-08 15:20:08 +02003574 OPT_BOOLEAN('\0', "show-bpf-events", &script.show_bpf_events,
3575 "Show bpf related events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003576 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3577 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003578 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003579 OPT_INTEGER(0, "max-blocks", &max_blocks,
3580 "Maximum number of code blocks to dump with brstackinsn"),
Andi Kleen52bab882019-03-05 06:47:47 -08003581 OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs,
Adrian Hunter83e19862015-09-25 16:15:36 +03003582 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003583 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
Andi Kleenc12e0392018-09-13 20:10:31 -07003584 "Instruction Tracing options\n" ITRACE_HELP,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003585 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003586 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3587 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003588 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3589 "Enable symbol demangling"),
3590 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3591 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003592 OPT_STRING(0, "time", &script.time_str, "str",
3593 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003594 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3595 "Show inline function"),
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003596 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
3597 "guest mount directory under which every guest os"
3598 " instance has a subdir"),
3599 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
3600 "file", "file saving guest os vmlinux"),
3601 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
3602 "file", "file saving guest os /proc/kallsyms"),
3603 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
3604 "file", "file saving guest os /proc/modules"),
Arnaldo Carvalho de Meloadd3a712019-08-15 11:21:21 -03003605 OPTS_EVSWITCH(&script.evswitch),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003606 OPT_END()
3607 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003608 const char * const script_subcommands[] = { "record", "report", NULL };
3609 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003610 "perf script [<options>]",
3611 "perf script [<options>] record <script> [<record-options>] <command>",
3612 "perf script [<options>] report <script> [script-args]",
3613 "perf script [<options>] <script> [<record-options>] <command>",
3614 "perf script [<options>] <top-script> [script-args]",
3615 NULL
3616 };
Tom Zanussi38752942009-12-15 02:53:39 -06003617
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003618 perf_set_singlethreaded();
3619
Tom Zanussib5b87312010-11-10 08:16:51 -06003620 setup_scripting();
3621
Yunlong Song40cae2b2015-03-18 21:35:54 +08003622 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003623 PARSE_OPT_STOP_AT_NON_OPTION);
3624
Arnaldo Carvalho de Melo15a108a2019-06-28 17:16:58 -03003625 if (symbol_conf.guestmount ||
3626 symbol_conf.default_guest_vmlinux_name ||
3627 symbol_conf.default_guest_kallsyms ||
3628 symbol_conf.default_guest_modules) {
3629 /*
3630 * Enable guest sample processing.
3631 */
3632 perf_guest = true;
3633 }
3634
Jiri Olsa2d4f27992019-02-21 10:41:30 +01003635 data.path = input_name;
3636 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003637
Tom Zanussib5b87312010-11-10 08:16:51 -06003638 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3639 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3640 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003641 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003642 }
3643
Tom Zanussib5b87312010-11-10 08:16:51 -06003644 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3645 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3646 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003647 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003648 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003649 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003650 return -1;
3651 }
Tom Zanussi38752942009-12-15 02:53:39 -06003652 }
3653
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003654 if (itrace_synth_opts.callchain &&
3655 itrace_synth_opts.callchain_sz > scripting_max_stack)
3656 scripting_max_stack = itrace_synth_opts.callchain_sz;
3657
Ben Hutchings44e668c2010-10-10 16:10:03 +01003658 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003659 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003660
Tom Zanussib5b87312010-11-10 08:16:51 -06003661 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003662 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003663 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003664 pid_t pid;
3665
Tom Zanussib5b87312010-11-10 08:16:51 -06003666 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3667 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3668
3669 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003670 usage_with_options_msg(script_usage, options,
3671 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003672 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003673 }
3674
Tom Zanussib5b87312010-11-10 08:16:51 -06003675 if (is_top_script(argv[0])) {
3676 rep_args = argc - 1;
3677 } else {
3678 int rec_args;
3679
3680 rep_args = has_required_arg(rep_script_path);
3681 rec_args = (argc - 1) - rep_args;
3682 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003683 usage_with_options_msg(script_usage, options,
3684 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003685 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003686 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003687 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003688 }
3689
3690 if (pipe(live_pipe) < 0) {
3691 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003692 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003693 }
3694
3695 pid = fork();
3696 if (pid < 0) {
3697 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003698 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003699 }
3700
3701 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003702 j = 0;
3703
Tom Zanussia0cccc22010-04-01 23:59:25 -05003704 dup2(live_pipe[1], 1);
3705 close(live_pipe[0]);
3706
Robert Richter317df652011-11-25 15:05:25 +01003707 if (is_top_script(argv[0])) {
3708 system_wide = true;
3709 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003710 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3711 err = -1;
3712 goto out;
3713 }
Robert Richter317df652011-11-25 15:05:25 +01003714 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003715
3716 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003717 if (!__argv) {
3718 pr_err("malloc failed\n");
3719 err = -ENOMEM;
3720 goto out;
3721 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003722
Tom Zanussib5b87312010-11-10 08:16:51 -06003723 __argv[j++] = "/bin/sh";
3724 __argv[j++] = rec_script_path;
3725 if (system_wide)
3726 __argv[j++] = "-a";
3727 __argv[j++] = "-q";
3728 __argv[j++] = "-o";
3729 __argv[j++] = "-";
3730 for (i = rep_args + 1; i < argc; i++)
3731 __argv[j++] = argv[i];
3732 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003733
3734 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003735 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003736 exit(-1);
3737 }
3738
3739 dup2(live_pipe[0], 0);
3740 close(live_pipe[1]);
3741
Tom Zanussib5b87312010-11-10 08:16:51 -06003742 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003743 if (!__argv) {
3744 pr_err("malloc failed\n");
3745 err = -ENOMEM;
3746 goto out;
3747 }
3748
Tom Zanussib5b87312010-11-10 08:16:51 -06003749 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003750 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003751 __argv[j++] = rep_script_path;
3752 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003753 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003754 __argv[j++] = "-i";
3755 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003756 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003757
3758 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003759 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003760 exit(-1);
3761 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06003762
Tom Zanussib5b87312010-11-10 08:16:51 -06003763 if (rec_script_path)
3764 script_path = rec_script_path;
3765 if (rep_script_path)
3766 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003767
Tom Zanussib5b87312010-11-10 08:16:51 -06003768 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003769 j = 0;
3770
Robert Richter317df652011-11-25 15:05:25 +01003771 if (!rec_script_path)
3772 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003773 else if (!system_wide) {
3774 if (have_cmd(argc - 1, &argv[1]) != 0) {
3775 err = -1;
3776 goto out;
3777 }
3778 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003779
3780 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003781 if (!__argv) {
3782 pr_err("malloc failed\n");
3783 err = -ENOMEM;
3784 goto out;
3785 }
3786
Tom Zanussib5b87312010-11-10 08:16:51 -06003787 __argv[j++] = "/bin/sh";
3788 __argv[j++] = script_path;
3789 if (system_wide)
3790 __argv[j++] = "-a";
3791 for (i = 2; i < argc; i++)
3792 __argv[j++] = argv[i];
3793 __argv[j++] = NULL;
3794
3795 execvp("/bin/sh", (char **)__argv);
3796 free(__argv);
3797 exit(-1);
3798 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003799
Milian Wolffc1c9b962018-10-21 21:14:23 +02003800 if (!script_name) {
Tom Zanussicf4fee52010-03-03 01:04:33 -06003801 setup_pager();
Milian Wolffc1c9b962018-10-21 21:14:23 +02003802 use_browser = 0;
3803 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003804
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003805 session = perf_session__new(&data, false, &script.tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05303806 if (IS_ERR(session))
3807 return PTR_ERR(session);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003808
Jiri Olsae90debd2013-12-09 11:02:50 +01003809 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003810 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003811 perf_session__fprintf_info(session, stdout, show_full_info);
3812 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003813 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003814 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003815 if (show_full_info)
3816 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003817
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003818 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003819 goto out_delete;
3820
Andi Kleen3ab481a2019-03-05 06:47:45 -08003821 uname(&uts);
Song Liu9d491692019-06-20 18:44:38 -07003822 if (data.is_pipe || /* assume pipe_mode indicates native_arch */
3823 !strcmp(uts.machine, session->header.env.arch) ||
Andi Kleen3ab481a2019-03-05 06:47:45 -08003824 (!strcmp(uts.machine, "x86_64") &&
3825 !strcmp(session->header.env.arch, "i386")))
3826 native_arch = true;
3827
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003828 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003829 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003830
Andi Kleen99f753f2018-09-20 11:05:39 -07003831 if ((output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT) ||
3832 symbol_conf.graph_function)
Adrian Huntere2167082016-06-23 16:40:58 +03003833 itrace_synth_opts.thread_stack = true;
3834
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003835 session->itrace_synth_opts = &itrace_synth_opts;
3836
Anton Blanchard5d67be92011-07-04 21:57:50 +10003837 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003838 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3839 if (err < 0)
3840 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003841 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003842 }
3843
David Ahern1424dc92011-03-09 22:23:28 -07003844 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003845 symbol_conf.use_callchain = true;
3846 else
3847 symbol_conf.use_callchain = false;
3848
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003849 if (session->tevent.pevent &&
Tzvetomir Stoyanov (VMware)ece2a4f2018-08-08 14:02:55 -04003850 tep_set_function_resolver(session->tevent.pevent,
3851 machine__resolve_kernel_addr,
3852 &session->machines.host) < 0) {
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003853 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003854 err = -1;
3855 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003856 }
3857
Tom Zanussi956ffd02009-11-25 01:15:46 -06003858 if (generate_script_lang) {
3859 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003860 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003861
David Ahern2c9e45f72011-03-17 10:03:21 -06003862 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003863 fprintf(stderr,
3864 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003865 err = -EINVAL;
3866 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003867 }
3868
Jiri Olsa2d4f27992019-02-21 10:41:30 +01003869 input = open(data.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003870 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003871 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003872 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003873 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003874 }
3875
3876 err = fstat(input, &perf_stat);
3877 if (err < 0) {
3878 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003879 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003880 }
3881
3882 if (!perf_stat.st_size) {
3883 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003884 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003885 }
3886
3887 scripting_ops = script_spec__lookup(generate_script_lang);
3888 if (!scripting_ops) {
3889 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003890 err = -ENOENT;
3891 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003892 }
3893
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003894 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003895 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003896 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003897 }
3898
3899 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003900 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003901 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003902 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003903 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003904 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003905 }
3906
David Ahern9cbdb702011-04-06 21:54:20 -06003907
3908 err = perf_session__check_output_opt(session);
3909 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003910 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003911
Jin Yao284c4e12019-03-01 18:13:06 +08003912 if (script.time_str) {
Andi Kleenb3509b62019-10-11 11:21:39 -07003913 err = perf_time__parse_for_ranges_reltime(script.time_str, session,
Jin Yao284c4e12019-03-01 18:13:06 +08003914 &script.ptime_range,
3915 &script.range_size,
Andi Kleenb3509b62019-10-11 11:21:39 -07003916 &script.range_num,
3917 reltime);
Jin Yao284c4e12019-03-01 18:13:06 +08003918 if (err < 0)
Jin Yao2ab046c2017-12-08 21:13:46 +08003919 goto out_delete;
Adrian Hunter400ae982019-06-04 16:00:00 +03003920
3921 itrace_synth_opts__set_time_range(&itrace_synth_opts,
3922 script.ptime_range,
3923 script.range_num);
David Aherna91f4c42016-11-29 10:15:43 -07003924 }
3925
Arnaldo Carvalho de Melo124e02b2019-08-15 11:31:29 -03003926 err = evswitch__init(&script.evswitch, session->evlist, stderr);
3927 if (err)
3928 goto out_delete;
Arnaldo Carvalho de Melodd41f662019-08-14 16:51:28 -03003929
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003930 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003931
Adrian Hunterd445dd22014-08-15 22:08:37 +03003932 flush_scripting();
3933
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003934out_delete:
Adrian Hunter400ae982019-06-04 16:00:00 +03003935 if (script.ptime_range) {
3936 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
Jin Yao284c4e12019-03-01 18:13:06 +08003937 zfree(&script.ptime_range);
Adrian Hunter400ae982019-06-04 16:00:00 +03003938 }
Jin Yaocc2ef582018-01-10 23:00:33 +08003939
Jiri Olsacfc88742016-01-05 22:09:06 +01003940 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003941 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003942
3943 if (script_started)
3944 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06003945out:
3946 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003947}