blob: b27f21638207e91a8efe98303cf4706781a2b3f0 [file] [log] [blame]
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001#include "builtin.h"
2
Andrea Gelminib7eead82010-08-05 15:51:38 +02003#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004#include "util/cache.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02005#include "util/debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06006#include <subcmd/exec-cmd.h>
Andrea Gelminib7eead82010-08-05 15:51:38 +02007#include "util/header.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06008#include <subcmd/parse-options.h>
Stephane Eranianfc36f942015-08-31 18:41:10 +02009#include "util/perf_regs.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020010#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020011#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020012#include "util/symbol.h"
13#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010014#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020015#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070016#include "util/evlist.h"
17#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080018#include "util/sort.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020019#include "util/data.h"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030020#include "util/auxtrace.h"
Jiri Olsacfc88742016-01-05 22:09:06 +010021#include "util/cpumap.h"
22#include "util/thread_map.h"
23#include "util/stat.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030024#include "util/string2.h"
Adrian Huntere2167082016-06-23 16:40:58 +030025#include "util/thread-stack.h"
David Aherna91f4c42016-11-29 10:15:43 -070026#include "util/time-utils.h"
Arnaldo Carvalho de Melofea01392017-04-17 16:23:22 -030027#include "print_binary.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100028#include <linux/bitmap.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030029#include <linux/kernel.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030030#include <linux/stringify.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030031#include <linux/time64.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010032#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010033#include "util/mem-events.h"
Andi Kleen48d02a12017-02-23 15:46:34 -080034#include "util/dump-insn.h"
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -030035#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030036#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030037#include <inttypes.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030038#include <signal.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030039#include <sys/param.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030040#include <sys/types.h>
41#include <sys/stat.h>
42#include <unistd.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020043
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030044#include "sane_ctype.h"
45
Tom Zanussi956ffd02009-11-25 01:15:46 -060046static char const *script_name;
47static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020048static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020049static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020050static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070051static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090052static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010053static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030054static bool print_flags;
Adrian Hunter83e19862015-09-25 16:15:36 +030055static bool nanosecs;
Anton Blanchard5d67be92011-07-04 21:57:50 +100056static const char *cpu_list;
57static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010058static struct perf_stat_config stat_config;
Andi Kleen48d02a12017-02-23 15:46:34 -080059static int max_blocks;
Tom Zanussi956ffd02009-11-25 01:15:46 -060060
Adrian Hunter44cbe722015-09-25 16:15:50 +030061unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030062
David Ahern745f43e2011-03-09 22:23:26 -070063enum perf_output_field {
64 PERF_OUTPUT_COMM = 1U << 0,
65 PERF_OUTPUT_TID = 1U << 1,
66 PERF_OUTPUT_PID = 1U << 2,
67 PERF_OUTPUT_TIME = 1U << 3,
68 PERF_OUTPUT_CPU = 1U << 4,
69 PERF_OUTPUT_EVNAME = 1U << 5,
70 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060071 PERF_OUTPUT_IP = 1U << 7,
72 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060073 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060074 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090075 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020076 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaae2014-08-25 16:45:42 +020077 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020078 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020079 PERF_OUTPUT_BRSTACK = 1U << 15,
80 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +010081 PERF_OUTPUT_DATA_SRC = 1U << 17,
82 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +000083 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
Adrian Huntere2167082016-06-23 16:40:58 +030084 PERF_OUTPUT_CALLINDENT = 1U << 20,
Andi Kleen224e2c92016-10-07 16:42:27 +030085 PERF_OUTPUT_INSN = 1U << 21,
86 PERF_OUTPUT_INSNLEN = 1U << 22,
Andi Kleen48d02a12017-02-23 15:46:34 -080087 PERF_OUTPUT_BRSTACKINSN = 1U << 23,
Mark Santaniello106dacd2017-06-19 09:38:25 -070088 PERF_OUTPUT_BRSTACKOFF = 1U << 24,
Adrian Hunter47e78082017-05-26 11:17:22 +030089 PERF_OUTPUT_SYNTH = 1U << 25,
Kan Liang49d58f02017-08-29 13:11:11 -040090 PERF_OUTPUT_PHYS_ADDR = 1U << 26,
Andi Kleenb1491ac2017-09-05 11:40:57 -070091 PERF_OUTPUT_UREGS = 1U << 27,
David Ahern745f43e2011-03-09 22:23:26 -070092};
93
94struct output_option {
95 const char *str;
96 enum perf_output_field field;
97} all_output_options[] = {
98 {.str = "comm", .field = PERF_OUTPUT_COMM},
99 {.str = "tid", .field = PERF_OUTPUT_TID},
100 {.str = "pid", .field = PERF_OUTPUT_PID},
101 {.str = "time", .field = PERF_OUTPUT_TIME},
102 {.str = "cpu", .field = PERF_OUTPUT_CPU},
103 {.str = "event", .field = PERF_OUTPUT_EVNAME},
104 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -0600105 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -0700106 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -0600107 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -0600108 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900109 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +0200110 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200111 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +0200112 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Andi Kleenb1491ac2017-09-05 11:40:57 -0700113 {.str = "uregs", .field = PERF_OUTPUT_UREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200114 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
115 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100116 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
117 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +0000118 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +0300119 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
Andi Kleen224e2c92016-10-07 16:42:27 +0300120 {.str = "insn", .field = PERF_OUTPUT_INSN},
121 {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
Andi Kleen48d02a12017-02-23 15:46:34 -0800122 {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
Mark Santaniello106dacd2017-06-19 09:38:25 -0700123 {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
Adrian Hunter47e78082017-05-26 11:17:22 +0300124 {.str = "synth", .field = PERF_OUTPUT_SYNTH},
Kan Liang49d58f02017-08-29 13:11:11 -0400125 {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
David Ahern745f43e2011-03-09 22:23:26 -0700126};
127
Adrian Hunter14057202017-06-21 13:17:19 +0300128enum {
129 OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
130 OUTPUT_TYPE_MAX
131};
132
David Ahern745f43e2011-03-09 22:23:26 -0700133/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600134static struct {
135 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600136 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400137 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600138 u64 fields;
139 u64 invalid_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300140} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700141
David Ahern2c9e45f72011-03-17 10:03:21 -0600142 [PERF_TYPE_HARDWARE] = {
143 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700144
David Ahern2c9e45f72011-03-17 10:03:21 -0600145 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
146 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600147 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200148 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
149 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600150
Wang Nan30372f02016-02-24 11:20:45 +0000151 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600152 },
153
154 [PERF_TYPE_SOFTWARE] = {
155 .user_set = false,
156
157 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
158 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600159 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200160 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Wang Nan30372f02016-02-24 11:20:45 +0000161 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600162
163 .invalid_fields = PERF_OUTPUT_TRACE,
164 },
165
166 [PERF_TYPE_TRACEPOINT] = {
167 .user_set = false,
168
169 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
170 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000171 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600172 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700173
174 [PERF_TYPE_RAW] = {
175 .user_set = false,
176
177 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
178 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600179 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200180 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Jiri Olsaff7b1912016-02-15 09:34:52 +0100181 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
Kan Liang49d58f02017-08-29 13:11:11 -0400182 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT |
183 PERF_OUTPUT_PHYS_ADDR,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700184
Wang Nan30372f02016-02-24 11:20:45 +0000185 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700186 },
Wang Nan27cfef02015-12-08 02:25:43 +0000187
188 [PERF_TYPE_BREAKPOINT] = {
189 .user_set = false,
190
191 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
192 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
193 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
194 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
195 PERF_OUTPUT_PERIOD,
196
Wang Nan30372f02016-02-24 11:20:45 +0000197 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000198 },
Adrian Hunter14057202017-06-21 13:17:19 +0300199
200 [OUTPUT_TYPE_SYNTH] = {
201 .user_set = false,
202
203 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
204 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
205 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Adrian Hunter47e78082017-05-26 11:17:22 +0300206 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
207 PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300208
209 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
210 },
David Ahern1424dc92011-03-09 22:23:28 -0700211};
David Ahern745f43e2011-03-09 22:23:26 -0700212
Adrian Hunter14057202017-06-21 13:17:19 +0300213static inline int output_type(unsigned int type)
214{
215 switch (type) {
216 case PERF_TYPE_SYNTH:
217 return OUTPUT_TYPE_SYNTH;
218 default:
219 return type;
220 }
221}
222
223static inline unsigned int attr_type(unsigned int type)
224{
225 switch (type) {
226 case OUTPUT_TYPE_SYNTH:
227 return PERF_TYPE_SYNTH;
228 default:
229 return type;
230 }
231}
232
David Ahern2c9e45f72011-03-17 10:03:21 -0600233static bool output_set_by_user(void)
234{
235 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300236 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600237 if (output[j].user_set)
238 return true;
239 }
240 return false;
241}
David Ahern745f43e2011-03-09 22:23:26 -0700242
David Ahern9cbdb702011-04-06 21:54:20 -0600243static const char *output_field2str(enum perf_output_field field)
244{
245 int i, imax = ARRAY_SIZE(all_output_options);
246 const char *str = "";
247
248 for (i = 0; i < imax; ++i) {
249 if (all_output_options[i].field == field) {
250 str = all_output_options[i].str;
251 break;
252 }
253 }
254 return str;
255}
256
Adrian Hunter14057202017-06-21 13:17:19 +0300257#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700258
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300259static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
260 u64 sample_type, const char *sample_msg,
261 enum perf_output_field field,
262 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700263{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300264 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300265 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600266 const char *evname;
267
268 if (attr->sample_type & sample_type)
269 return 0;
270
271 if (output[type].user_set) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300272 if (allow_user_set)
273 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300274 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600275 pr_err("Samples for '%s' event do not have %s attribute set. "
276 "Cannot print '%s' field.\n",
277 evname, sample_msg, output_field2str(field));
278 return -1;
279 }
280
281 /* user did not ask for it explicitly so remove from the default list */
282 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300283 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600284 pr_debug("Samples for '%s' event do not have %s attribute set. "
285 "Skipping '%s' field.\n",
286 evname, sample_msg, output_field2str(field));
287
288 return 0;
289}
290
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300291static int perf_evsel__check_stype(struct perf_evsel *evsel,
292 u64 sample_type, const char *sample_msg,
293 enum perf_output_field field)
294{
295 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
296 false);
297}
298
David Ahern9cbdb702011-04-06 21:54:20 -0600299static int perf_evsel__check_attr(struct perf_evsel *evsel,
300 struct perf_session *session)
301{
302 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300303 bool allow_user_set;
304
Jiri Olsae099eba2016-01-05 22:09:09 +0100305 if (perf_header__has_feat(&session->header, HEADER_STAT))
306 return 0;
307
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300308 allow_user_set = perf_header__has_feat(&session->header,
309 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600310
David Ahern1424dc92011-03-09 22:23:28 -0700311 if (PRINT_FIELD(TRACE) &&
312 !perf_session__has_traces(session, "record -R"))
313 return -EINVAL;
314
David Ahern787bef12011-05-27 14:28:43 -0600315 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300316 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
317 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700318 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700319 }
David Ahern7cec0922011-05-30 13:08:23 -0600320
321 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300322 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
323 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600324 return -EINVAL;
325
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100326 if (PRINT_FIELD(DATA_SRC) &&
327 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
328 PERF_OUTPUT_DATA_SRC))
329 return -EINVAL;
330
331 if (PRINT_FIELD(WEIGHT) &&
332 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
333 PERF_OUTPUT_WEIGHT))
334 return -EINVAL;
335
David Ahern7cec0922011-05-30 13:08:23 -0600336 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
337 pr_err("Display of symbols requested but neither sample IP nor "
338 "sample address\nis selected. Hence, no addresses to convert "
339 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600340 return -EINVAL;
341 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900342 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
343 pr_err("Display of offsets requested but symbol is not"
344 "selected.\n");
345 return -EINVAL;
346 }
Mark Santaniello55b9b502017-06-19 09:38:24 -0700347 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR) &&
Mark Santaniello106dacd2017-06-19 09:38:25 -0700348 !PRINT_FIELD(BRSTACK) && !PRINT_FIELD(BRSTACKSYM) && !PRINT_FIELD(BRSTACKOFF)) {
349 pr_err("Display of DSO requested but no address to convert. Select\n"
350 "sample IP, sample address, brstack, brstacksym, or brstackoff.\n");
David Ahern610723f2011-05-27 14:28:44 -0600351 return -EINVAL;
352 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200353 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
354 pr_err("Display of source line number requested but sample IP is not\n"
355 "selected. Hence, no address to lookup the source line number.\n");
356 return -EINVAL;
357 }
Andi Kleen48d02a12017-02-23 15:46:34 -0800358 if (PRINT_FIELD(BRSTACKINSN) &&
359 !(perf_evlist__combined_branch_type(session->evlist) &
360 PERF_SAMPLE_BRANCH_ANY)) {
361 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
362 "Hint: run 'perf record -b ...'\n");
363 return -EINVAL;
364 }
David Ahern1424dc92011-03-09 22:23:28 -0700365 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300366 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
367 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700368 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700369
370 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300371 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
372 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700373 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700374
375 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300376 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
377 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700378 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600379
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200380 if (PRINT_FIELD(PERIOD) &&
381 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
382 PERF_OUTPUT_PERIOD))
383 return -EINVAL;
384
Stephane Eranianfc36f942015-08-31 18:41:10 +0200385 if (PRINT_FIELD(IREGS) &&
386 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
387 PERF_OUTPUT_IREGS))
388 return -EINVAL;
389
Andi Kleenb1491ac2017-09-05 11:40:57 -0700390 if (PRINT_FIELD(UREGS) &&
391 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS",
392 PERF_OUTPUT_UREGS))
393 return -EINVAL;
394
Kan Liang49d58f02017-08-29 13:11:11 -0400395 if (PRINT_FIELD(PHYS_ADDR) &&
396 perf_evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR",
397 PERF_OUTPUT_PHYS_ADDR))
398 return -EINVAL;
399
David Ahern9cbdb702011-04-06 21:54:20 -0600400 return 0;
401}
402
Adrian Hunter7ea95722013-11-01 15:51:30 +0200403static void set_print_ip_opts(struct perf_event_attr *attr)
404{
Adrian Hunter14057202017-06-21 13:17:19 +0300405 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200406
407 output[type].print_ip_opts = 0;
408 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300409 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200410
411 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300412 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200413
414 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300415 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200416
417 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300418 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200419
420 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300421 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200422}
423
David Ahern9cbdb702011-04-06 21:54:20 -0600424/*
425 * verify all user requested events exist and the samples
426 * have the expected data
427 */
428static int perf_session__check_output_opt(struct perf_session *session)
429{
He Kuang40f20e52016-05-16 04:51:19 +0000430 unsigned int j;
David Ahern9cbdb702011-04-06 21:54:20 -0600431 struct perf_evsel *evsel;
432
Adrian Hunter14057202017-06-21 13:17:19 +0300433 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
434 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600435
436 /*
437 * even if fields is set to 0 (ie., show nothing) event must
438 * exist if user explicitly includes it on the command line
439 */
Adrian Hunter14057202017-06-21 13:17:19 +0300440 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
441 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600442 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300443 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600444 event_type(j));
445 return -1;
446 }
447
448 if (evsel && output[j].fields &&
449 perf_evsel__check_attr(evsel, session))
450 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400451
452 if (evsel == NULL)
453 continue;
454
Adrian Hunter7ea95722013-11-01 15:51:30 +0200455 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700456 }
457
Adrian Hunter98526ee2014-07-31 09:00:59 +0300458 if (!no_callchain) {
459 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000460 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300461
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300462 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000463 not_pipe = true;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300464 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
465 use_callchain = true;
466 break;
467 }
468 }
He Kuang71ac8992016-08-04 11:25:43 +0000469 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300470 symbol_conf.use_callchain = false;
471 }
472
David Ahern80b8b492013-11-19 21:07:37 -0700473 /*
474 * set default for tracepoints to print symbols only
475 * if callchains are present
476 */
477 if (symbol_conf.use_callchain &&
478 !output[PERF_TYPE_TRACEPOINT].user_set) {
479 struct perf_event_attr *attr;
480
481 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700482
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300483 evlist__for_each_entry(session->evlist, evsel) {
He Kuang40f20e52016-05-16 04:51:19 +0000484 if (evsel->attr.type != j)
485 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700486
He Kuang40f20e52016-05-16 04:51:19 +0000487 attr = &evsel->attr;
488
489 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
490 output[j].fields |= PERF_OUTPUT_IP;
491 output[j].fields |= PERF_OUTPUT_SYM;
492 output[j].fields |= PERF_OUTPUT_DSO;
493 set_print_ip_opts(attr);
494 goto out;
495 }
David Ahern80b8b492013-11-19 21:07:37 -0700496 }
497 }
498
499out:
David Ahern1424dc92011-03-09 22:23:28 -0700500 return 0;
501}
David Ahern745f43e2011-03-09 22:23:26 -0700502
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300503static int perf_sample__fprintf_iregs(struct perf_sample *sample,
504 struct perf_event_attr *attr, FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200505{
506 struct regs_dump *regs = &sample->intr_regs;
507 uint64_t mask = attr->sample_regs_intr;
508 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300509 int printed = 0;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200510
511 if (!regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300512 return 0;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200513
514 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
515 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300516 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Stephane Eranianfc36f942015-08-31 18:41:10 +0200517 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300518
519 return printed;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200520}
521
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300522static int perf_sample__fprintf_uregs(struct perf_sample *sample,
523 struct perf_event_attr *attr, FILE *fp)
Andi Kleenb1491ac2017-09-05 11:40:57 -0700524{
525 struct regs_dump *regs = &sample->user_regs;
526 uint64_t mask = attr->sample_regs_user;
527 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300528 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700529
530 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300531 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700532
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300533 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700534
535 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
536 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300537 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700538 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300539
540 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700541}
542
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300543static int perf_sample__fprintf_start(struct perf_sample *sample,
544 struct thread *thread,
545 struct perf_evsel *evsel, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700546{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300547 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700548 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700549 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300550 int printed = 0;
David Ahernc70c94b2011-03-09 22:23:25 -0700551
David Ahern745f43e2011-03-09 22:23:26 -0700552 if (PRINT_FIELD(COMM)) {
553 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300554 printed += fprintf(fp, "%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600555 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300556 printed += fprintf(fp, "%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700557 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300558 printed += fprintf(fp, "%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700559 }
David Ahernc70c94b2011-03-09 22:23:25 -0700560
David Ahern745f43e2011-03-09 22:23:26 -0700561 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300562 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700563 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300564 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700565 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300566 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700567
David Ahern745f43e2011-03-09 22:23:26 -0700568 if (PRINT_FIELD(CPU)) {
569 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300570 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700571 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300572 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700573 }
David Ahernc70c94b2011-03-09 22:23:25 -0700574
David Ahern745f43e2011-03-09 22:23:26 -0700575 if (PRINT_FIELD(TIME)) {
576 nsecs = sample->time;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300577 secs = nsecs / NSEC_PER_SEC;
578 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900579
Adrian Hunter83e19862015-09-25 16:15:36 +0300580 if (nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300581 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900582 else {
583 char sample_time[32];
584 timestamp__scnprintf_usec(sample->time, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300585 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900586 }
David Ahern745f43e2011-03-09 22:23:26 -0700587 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300588
589 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700590}
591
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200592static inline char
593mispred_str(struct branch_entry *br)
594{
595 if (!(br->flags.mispred || br->flags.predicted))
596 return '-';
597
598 return br->flags.predicted ? 'P' : 'M';
599}
600
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300601static int perf_sample__fprintf_brstack(struct perf_sample *sample,
602 struct thread *thread,
603 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200604{
605 struct branch_stack *br = sample->branch_stack;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700606 struct addr_location alf, alt;
607 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300608 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200609
610 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300611 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200612
613 for (i = 0; i < br->nr; i++) {
Mark Santaniello55b9b502017-06-19 09:38:24 -0700614 from = br->entries[i].from;
615 to = br->entries[i].to;
616
617 if (PRINT_FIELD(DSO)) {
618 memset(&alf, 0, sizeof(alf));
619 memset(&alt, 0, sizeof(alt));
620 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
621 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
622 }
623
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300624 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700625 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300626 printed += fprintf(fp, "(");
627 printed += map__fprintf_dsoname(alf.map, fp);
628 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700629 }
630
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300631 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700632 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300633 printed += fprintf(fp, "(");
634 printed += map__fprintf_dsoname(alt.map, fp);
635 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700636 }
637
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300638 printed += fprintf(fp, "/%c/%c/%c/%d ",
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200639 mispred_str( br->entries + i),
640 br->entries[i].flags.in_tx? 'X' : '-',
641 br->entries[i].flags.abort? 'A' : '-',
642 br->entries[i].flags.cycles);
643 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300644
645 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200646}
647
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300648static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
649 struct thread *thread,
650 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200651{
652 struct branch_stack *br = sample->branch_stack;
653 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200654 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300655 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200656
657 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300658 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200659
660 for (i = 0; i < br->nr; i++) {
661
662 memset(&alf, 0, sizeof(alf));
663 memset(&alt, 0, sizeof(alt));
664 from = br->entries[i].from;
665 to = br->entries[i].to;
666
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300667 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200668 if (alf.map)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300669 alf.sym = map__find_symbol(alf.map, alf.addr);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200670
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300671 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200672 if (alt.map)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300673 alt.sym = map__find_symbol(alt.map, alt.addr);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200674
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300675 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700676 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300677 printed += fprintf(fp, "(");
678 printed += map__fprintf_dsoname(alf.map, fp);
679 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700680 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300681 printed += fprintf(fp, "%c", '/');
682 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700683 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300684 printed += fprintf(fp, "(");
685 printed += map__fprintf_dsoname(alt.map, fp);
686 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700687 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300688 printed += fprintf(fp, "/%c/%c/%c/%d ",
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200689 mispred_str( br->entries + i),
690 br->entries[i].flags.in_tx? 'X' : '-',
691 br->entries[i].flags.abort? 'A' : '-',
692 br->entries[i].flags.cycles);
693 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300694
695 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200696}
697
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300698static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
699 struct thread *thread,
700 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700701{
702 struct branch_stack *br = sample->branch_stack;
703 struct addr_location alf, alt;
704 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300705 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700706
707 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300708 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700709
710 for (i = 0; i < br->nr; i++) {
711
712 memset(&alf, 0, sizeof(alf));
713 memset(&alt, 0, sizeof(alt));
714 from = br->entries[i].from;
715 to = br->entries[i].to;
716
717 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
718 if (alf.map && !alf.map->dso->adjust_symbols)
719 from = map__map_ip(alf.map, from);
720
721 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
722 if (alt.map && !alt.map->dso->adjust_symbols)
723 to = map__map_ip(alt.map, to);
724
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300725 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700726 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300727 printed += fprintf(fp, "(");
728 printed += map__fprintf_dsoname(alf.map, fp);
729 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700730 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300731 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700732 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300733 printed += fprintf(fp, "(");
734 printed += map__fprintf_dsoname(alt.map, fp);
735 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700736 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300737 printed += fprintf(fp, "/%c/%c/%c/%d ",
Mark Santaniello106dacd2017-06-19 09:38:25 -0700738 mispred_str(br->entries + i),
739 br->entries[i].flags.in_tx ? 'X' : '-',
740 br->entries[i].flags.abort ? 'A' : '-',
741 br->entries[i].flags.cycles);
742 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300743
744 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700745}
Andi Kleen48d02a12017-02-23 15:46:34 -0800746#define MAXBB 16384UL
747
748static int grab_bb(u8 *buffer, u64 start, u64 end,
749 struct machine *machine, struct thread *thread,
750 bool *is64bit, u8 *cpumode, bool last)
751{
752 long offset, len;
753 struct addr_location al;
754 bool kernel;
755
756 if (!start || !end)
757 return 0;
758
759 kernel = machine__kernel_ip(machine, start);
760 if (kernel)
761 *cpumode = PERF_RECORD_MISC_KERNEL;
762 else
763 *cpumode = PERF_RECORD_MISC_USER;
764
765 /*
766 * Block overlaps between kernel and user.
767 * This can happen due to ring filtering
768 * On Intel CPUs the entry into the kernel is filtered,
769 * but the exit is not. Let the caller patch it up.
770 */
771 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300772 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800773 return -ENXIO;
774 }
775
776 memset(&al, 0, sizeof(al));
777 if (end - start > MAXBB - MAXINSN) {
778 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300779 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800780 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300781 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -0800782 return 0;
783 }
784
785 thread__find_addr_map(thread, *cpumode, MAP__FUNCTION, start, &al);
786 if (!al.map || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300787 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800788 return 0;
789 }
790 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300791 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800792 return 0;
793 }
794
795 /* Load maps to ensure dso->is_64_bit has been updated */
796 map__load(al.map);
797
798 offset = al.map->map_ip(al.map, start);
799 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
800 end - start + MAXINSN);
801
802 *is64bit = al.map->dso->is_64_bit;
803 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300804 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -0800805 start, end);
806 return len;
807}
808
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300809static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
810 struct perf_insn *x, u8 *inbuf, int len,
811 int insn, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800812{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300813 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
814 dump_insn(x, ip, inbuf, len, NULL),
815 en->flags.predicted ? " PRED" : "",
816 en->flags.mispred ? " MISPRED" : "",
817 en->flags.in_tx ? " INTX" : "",
818 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -0800819 if (en->flags.cycles) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300820 printed += fprintf(fp, " %d cycles", en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -0800821 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300822 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -0800823 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300824 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -0800825}
826
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300827static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
828 u8 cpumode, int cpu, struct symbol **lastsym,
829 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800830{
831 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300832 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800833
834 memset(&al, 0, sizeof(al));
835
836 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, addr, &al);
837 if (!al.map)
838 thread__find_addr_map(thread, cpumode, MAP__VARIABLE,
839 addr, &al);
840 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300841 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800842
843 al.cpu = cpu;
844 al.sym = NULL;
845 if (al.map)
846 al.sym = map__find_symbol(al.map, al.addr);
847
848 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300849 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800850
851 if (al.addr < al.sym->end)
852 off = al.addr - al.sym->start;
853 else
854 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300855 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -0800856 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300857 printed += fprintf(fp, "%+d", off);
858 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -0800859 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300860 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
861 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -0800862 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300863
864 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -0800865}
866
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300867static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
868 struct thread *thread,
869 struct perf_event_attr *attr,
870 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800871{
872 struct branch_stack *br = sample->branch_stack;
873 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300874 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800875 struct perf_insn x;
876 u8 buffer[MAXBB];
877 unsigned off;
878 struct symbol *lastsym = NULL;
879
880 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300881 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800882 nr = br->nr;
883 if (max_blocks && nr > max_blocks + 1)
884 nr = max_blocks + 1;
885
886 x.thread = thread;
887 x.cpu = sample->cpu;
888
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300889 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -0800890
891 /* Handle first from jump, of which we don't know the entry. */
892 len = grab_bb(buffer, br->entries[nr-1].from,
893 br->entries[nr-1].from,
894 machine, thread, &x.is64bit, &x.cpumode, false);
895 if (len > 0) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300896 printed += ip__fprintf_sym(br->entries[nr - 1].from, thread,
897 x.cpumode, x.cpu, &lastsym, attr, fp);
898 printed += ip__fprintf_jump(br->entries[nr - 1].from, &br->entries[nr - 1],
899 &x, buffer, len, 0, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800900 }
901
902 /* Print all blocks */
903 for (i = nr - 2; i >= 0; i--) {
904 if (br->entries[i].from || br->entries[i].to)
905 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
906 br->entries[i].from,
907 br->entries[i].to);
908 start = br->entries[i + 1].to;
909 end = br->entries[i].from;
910
911 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
912 /* Patch up missing kernel transfers due to ring filters */
913 if (len == -ENXIO && i > 0) {
914 end = br->entries[--i].from;
915 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
916 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
917 }
918 if (len <= 0)
919 continue;
920
921 insn = 0;
922 for (off = 0;; off += ilen) {
923 uint64_t ip = start + off;
924
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300925 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800926 if (ip == end) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300927 printed += ip__fprintf_jump(ip, &br->entries[i], &x, buffer + off, len - off, insn, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800928 break;
929 } else {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300930 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
931 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -0800932 if (ilen == 0)
933 break;
934 insn++;
935 }
936 }
937 }
938
939 /*
940 * Hit the branch? In this case we are already done, and the target
941 * has not been executed yet.
942 */
943 if (br->entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300944 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800945 if (br->entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300946 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800947
948 /*
949 * Print final block upto sample
950 */
951 start = br->entries[0].to;
952 end = sample->ip;
953 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300954 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800955 if (len <= 0) {
956 /* Print at least last IP if basic block did not work */
957 len = grab_bb(buffer, sample->ip, sample->ip,
958 machine, thread, &x.is64bit, &x.cpumode, false);
959 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300960 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800961
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300962 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -0800963 dump_insn(&x, sample->ip, buffer, len, NULL));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300964 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800965 }
966 for (off = 0; off <= end - start; off += ilen) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300967 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
968 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -0800969 if (ilen == 0)
970 break;
971 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300972out:
973 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -0800974}
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200975
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300976static int perf_sample__fprintf_addr(struct perf_sample *sample,
977 struct thread *thread,
978 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -0600979{
980 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300981 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -0600982
983 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300984 goto out;
David Ahern7cec0922011-05-30 13:08:23 -0600985
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -0300986 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -0600987
988 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300989 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900990 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300991 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900992 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300993 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -0600994 }
995
996 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300997 printed += fprintf(fp, " (");
998 printed += map__fprintf_dsoname(al.map, fp);
999 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001000 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001001out:
1002 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001003}
1004
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001005static int perf_sample__fprintf_callindent(struct perf_sample *sample,
1006 struct perf_evsel *evsel,
1007 struct thread *thread,
1008 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001009{
1010 struct perf_event_attr *attr = &evsel->attr;
1011 size_t depth = thread_stack__depth(thread);
1012 struct addr_location addr_al;
1013 const char *name = NULL;
1014 static int spacing;
1015 int len = 0;
1016 u64 ip = 0;
1017
1018 /*
1019 * The 'return' has already been popped off the stack so the depth has
1020 * to be adjusted to match the 'call'.
1021 */
1022 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1023 depth += 1;
1024
1025 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1026 if (sample_addr_correlates_sym(attr)) {
1027 thread__resolve(thread, &addr_al, sample);
1028 if (addr_al.sym)
1029 name = addr_al.sym->name;
1030 else
1031 ip = sample->addr;
1032 } else {
1033 ip = sample->addr;
1034 }
1035 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1036 if (al->sym)
1037 name = al->sym->name;
1038 else
1039 ip = sample->ip;
1040 }
1041
1042 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001043 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001044 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001045 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001046
1047 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001048 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001049
1050 /*
1051 * Try to keep the output length from changing frequently so that the
1052 * output lines up more nicely.
1053 */
1054 if (len > spacing || (len && len < spacing - 52))
1055 spacing = round_up(len + 4, 32);
1056
1057 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001058 len += fprintf(fp, "%*s", spacing - len, "");
1059
1060 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001061}
1062
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001063static int perf_sample__fprintf_insn(struct perf_sample *sample,
1064 struct perf_event_attr *attr,
1065 struct thread *thread,
1066 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001067{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001068 int printed = 0;
1069
Andi Kleen224e2c92016-10-07 16:42:27 +03001070 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001071 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen224e2c92016-10-07 16:42:27 +03001072 if (PRINT_FIELD(INSN)) {
1073 int i;
1074
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001075 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001076 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001077 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001078 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001079 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001080 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1081
1082 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001083}
1084
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001085static int perf_sample__fprintf_bts(struct perf_sample *sample,
1086 struct perf_evsel *evsel,
1087 struct thread *thread,
1088 struct addr_location *al,
1089 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001090{
1091 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001092 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001093 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001094 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001095
Adrian Huntere2167082016-06-23 16:40:58 +03001096 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001097 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001098
Akihiro Nagai95582592012-01-30 13:43:09 +09001099 /* print branch_from information */
1100 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001101 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001102 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001103
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001104 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001105 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001106 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001107 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001108
1109 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001110 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001111 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001112 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001113 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001114 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001115 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001116 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001117
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001118 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001119 }
1120
Akihiro Nagai95582592012-01-30 13:43:09 +09001121 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001122 if (PRINT_FIELD(ADDR) ||
1123 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001124 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001125 printed += fprintf(fp, " => ");
1126 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001127 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001128
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001129 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001130 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001131
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001132 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
1133 return printed + fprintf(fp, "\n");
Akihiro Nagai95582592012-01-30 13:43:09 +09001134}
1135
Adrian Hunter055cd332016-06-23 16:40:56 +03001136static struct {
1137 u32 flags;
1138 const char *name;
1139} sample_flags[] = {
1140 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1141 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1142 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1143 {PERF_IP_FLAG_BRANCH, "jmp"},
1144 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1145 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1146 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1147 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1148 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1149 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1150 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1151 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1152 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
1153 {0, NULL}
1154};
1155
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001156static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001157{
1158 const char *chars = PERF_IP_FLAG_CHARS;
1159 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001160 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1161 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001162 char str[33];
1163 int i, pos = 0;
1164
Adrian Hunter055cd332016-06-23 16:40:56 +03001165 for (i = 0; sample_flags[i].name ; i++) {
1166 if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
1167 name = sample_flags[i].name;
1168 break;
1169 }
1170 }
1171
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001172 for (i = 0; i < n; i++, flags >>= 1) {
1173 if (flags & 1)
1174 str[pos++] = chars[i];
1175 }
1176 for (; i < 32; i++, flags >>= 1) {
1177 if (flags & 1)
1178 str[pos++] = '?';
1179 }
1180 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001181
1182 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001183 return fprintf(fp, " %-7s%4s ", name, in_tx ? "(x)" : "");
1184
1185 return fprintf(fp, " %-11s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001186}
1187
Wang Nan30372f02016-02-24 11:20:45 +00001188struct printer_data {
1189 int line_no;
1190 bool hit_nul;
1191 bool is_printable;
1192};
1193
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001194static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1195 unsigned int val,
1196 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001197{
1198 unsigned char ch = (unsigned char)val;
1199 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001200 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001201
1202 switch (op) {
1203 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001204 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001205 break;
1206 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001207 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001208 " ");
1209 break;
1210 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001211 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001212 break;
1213 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001214 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001215 break;
1216 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001217 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001218 break;
1219 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001220 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001221 break;
1222 case BINARY_PRINT_CHAR_DATA:
1223 if (printer_data->hit_nul && ch)
1224 printer_data->is_printable = false;
1225
1226 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001227 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001228
1229 if (!printer_data->is_printable)
1230 break;
1231
1232 if (ch == '\0')
1233 printer_data->hit_nul = true;
1234 else
1235 printer_data->is_printable = false;
1236 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001237 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001238 }
1239 break;
1240 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001241 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001242 break;
1243 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001244 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001245 printer_data->line_no++;
1246 break;
1247 case BINARY_PRINT_DATA_END:
1248 default:
1249 break;
1250 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001251
1252 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001253}
1254
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001255static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001256{
1257 unsigned int nr_bytes = sample->raw_size;
1258 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001259 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1260 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001261
1262 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001263 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1264
1265 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001266}
1267
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001268static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001269{
1270 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001271 return fprintf(fp, "%*s", spacing - len, "");
1272
1273 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001274}
1275
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001276static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001277{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001278 return perf_sample__fprintf_spacing(len, 34, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001279}
1280
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001281static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001282{
1283 struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
1284 int len;
1285
1286 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001287 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001288
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001289 len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001290 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001291 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001292}
1293
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001294static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001295{
1296 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1297 int len;
1298
1299 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001300 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001301
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001302 len = fprintf(fp, " hints: %#x extensions: %#x ",
1303 data->hints, data->extensions);
1304 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001305}
1306
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001307static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001308{
1309 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1310 int len;
1311
1312 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001313 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001314
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001315 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1316 data->hw, data->cstate, data->subcstate);
1317 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001318}
1319
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001320static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001321{
1322 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1323 int len;
1324
1325 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001326 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001327
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001328 len = fprintf(fp, " IP: %u ", data->ip);
1329 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001330}
1331
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001332static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001333{
1334 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1335 int len;
1336
1337 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001338 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001339
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001340 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001341 data->deepest_cstate, data->last_cstate,
1342 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001343 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001344}
1345
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001346static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001347{
1348 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1349 unsigned int percent, freq;
1350 int len;
1351
1352 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001353 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001354
1355 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001356 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001357 if (data->max_nonturbo) {
1358 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001359 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001360 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001361 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001362}
1363
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001364static int perf_sample__fprintf_synth(struct perf_sample *sample,
1365 struct perf_evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001366{
1367 switch (evsel->attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001368 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001369 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001370 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001371 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001372 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001373 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001374 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001375 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001376 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001377 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001378 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001379 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001380 default:
1381 break;
1382 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001383
1384 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001385}
1386
Jiri Olsa809e9422015-11-26 18:55:21 +01001387struct perf_script {
1388 struct perf_tool tool;
1389 struct perf_session *session;
1390 bool show_task_events;
1391 bool show_mmap_events;
1392 bool show_switch_events;
Hari Bathini96a44bb2017-03-08 02:12:06 +05301393 bool show_namespace_events;
Jiri Olsacfc88742016-01-05 22:09:06 +01001394 bool allocated;
1395 struct cpu_map *cpus;
1396 struct thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001397 int name_width;
David Aherna91f4c42016-11-29 10:15:43 -07001398 const char *time_str;
1399 struct perf_time_interval ptime;
Jiri Olsa809e9422015-11-26 18:55:21 +01001400};
1401
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001402static int perf_evlist__max_name_len(struct perf_evlist *evlist)
1403{
1404 struct perf_evsel *evsel;
1405 int max = 0;
1406
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001407 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001408 int len = strlen(perf_evsel__name(evsel));
1409
1410 max = MAX(len, max);
1411 }
1412
1413 return max;
1414}
1415
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001416static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001417{
1418 struct mem_info mi = { .data_src.val = data_src };
1419 char decode[100];
1420 char out[100];
1421 static int maxlen;
1422 int len;
1423
1424 perf_script__meminfo_scnprintf(decode, 100, &mi);
1425
1426 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1427 if (maxlen < len)
1428 maxlen = len;
1429
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001430 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001431}
1432
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001433static void process_event(struct perf_script *script,
Jiri Olsa809e9422015-11-26 18:55:21 +01001434 struct perf_sample *sample, struct perf_evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001435 struct addr_location *al,
1436 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001437{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001438 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001439 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001440 unsigned int type = output_type(attr->type);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001441 FILE *fp = stdout;
David Ahern1424dc92011-03-09 22:23:28 -07001442
Adrian Hunter14057202017-06-21 13:17:19 +03001443 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001444 return;
1445
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001446 perf_sample__fprintf_start(sample, thread, evsel, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001447
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001448 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001449 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001450
Namhyung Kime944d3d2013-11-18 14:34:52 +09001451 if (PRINT_FIELD(EVNAME)) {
1452 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001453
1454 if (!script->name_width)
1455 script->name_width = perf_evlist__max_name_len(script->session->evlist);
1456
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001457 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001458 }
1459
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001460 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001461 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001462
Akihiro Nagai95582592012-01-30 13:43:09 +09001463 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001464 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001465 return;
1466 }
1467
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03001468 if (PRINT_FIELD(TRACE)) {
1469 event_format__fprintf(evsel->tp_format, sample->cpu,
1470 sample->raw_data, sample->raw_size, fp);
1471 }
Adrian Hunter47e78082017-05-26 11:17:22 +03001472
1473 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001474 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001475
David Ahern7cec0922011-05-30 13:08:23 -06001476 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001477 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001478
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001479 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001480 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001481
1482 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001483 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001484
David Ahern787bef12011-05-27 14:28:43 -06001485 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07001486 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04001487
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03001488 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001489 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001490 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001491 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001492
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001493 fputc(cursor ? '\n' : ' ', fp);
1494 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor, fp);
David Ahernc0230b22011-03-09 22:23:27 -07001495 }
1496
Stephane Eranianfc36f942015-08-31 18:41:10 +02001497 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001498 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02001499
Andi Kleenb1491ac2017-09-05 11:40:57 -07001500 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001501 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07001502
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001503 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001504 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001505 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001506 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07001507 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001508 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001509
Wang Nan30372f02016-02-24 11:20:45 +00001510 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001511 perf_sample__fprintf_bpf_output(sample, fp);
1512 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04001513
1514 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001515 fprintf(fp, "%16" PRIx64, sample->phys_addr);
1516 fprintf(fp, "\n");
David Ahernbe6d8422011-03-09 22:23:23 -07001517}
1518
Tom Zanussi956ffd02009-11-25 01:15:46 -06001519static struct scripting_ops *scripting_ops;
1520
Jiri Olsa36e33c52016-01-06 11:49:56 +01001521static void __process_stat(struct perf_evsel *counter, u64 tstamp)
1522{
1523 int nthreads = thread_map__nr(counter->threads);
1524 int ncpus = perf_evsel__nr_cpus(counter);
1525 int cpu, thread;
1526 static int header_printed;
1527
1528 if (counter->system_wide)
1529 nthreads = 1;
1530
1531 if (!header_printed) {
1532 printf("%3s %8s %15s %15s %15s %15s %s\n",
1533 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
1534 header_printed = 1;
1535 }
1536
1537 for (thread = 0; thread < nthreads; thread++) {
1538 for (cpu = 0; cpu < ncpus; cpu++) {
1539 struct perf_counts_values *counts;
1540
1541 counts = perf_counts(counter->counts, cpu, thread);
1542
1543 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
1544 counter->cpus->map[cpu],
1545 thread_map__pid(counter->threads, thread),
1546 counts->val,
1547 counts->ena,
1548 counts->run,
1549 tstamp,
1550 perf_evsel__name(counter));
1551 }
1552 }
1553}
1554
Jiri Olsae099eba2016-01-05 22:09:09 +01001555static void process_stat(struct perf_evsel *counter, u64 tstamp)
1556{
1557 if (scripting_ops && scripting_ops->process_stat)
1558 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01001559 else
1560 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01001561}
1562
1563static void process_stat_interval(u64 tstamp)
1564{
1565 if (scripting_ops && scripting_ops->process_stat_interval)
1566 scripting_ops->process_stat_interval(tstamp);
1567}
1568
Tom Zanussi956ffd02009-11-25 01:15:46 -06001569static void setup_scripting(void)
1570{
Tom Zanussi16c632d2009-11-25 01:15:48 -06001571 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06001572 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06001573}
1574
Adrian Hunterd445dd22014-08-15 22:08:37 +03001575static int flush_scripting(void)
1576{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001577 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03001578}
1579
Tom Zanussi956ffd02009-11-25 01:15:46 -06001580static int cleanup_scripting(void)
1581{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001582 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05001583
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001584 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001585}
1586
Jiri Olsa809e9422015-11-26 18:55:21 +01001587static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02001588 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001589 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001590 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001591 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001592{
Jiri Olsa809e9422015-11-26 18:55:21 +01001593 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07001594 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001595
David Aherna91f4c42016-11-29 10:15:43 -07001596 if (perf_time__skip_sample(&scr->ptime, sample->time))
1597 return 0;
1598
David Ahern1424dc92011-03-09 22:23:28 -07001599 if (debug_mode) {
1600 if (sample->time < last_timestamp) {
1601 pr_err("Samples misordered, previous: %" PRIu64
1602 " this: %" PRIu64 "\n", last_timestamp,
1603 sample->time);
1604 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02001605 }
David Ahern1424dc92011-03-09 22:23:28 -07001606 last_timestamp = sample->time;
1607 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001608 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001609
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03001610 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07001611 pr_err("problem processing %d event, skipping it.\n",
1612 event->header.type);
1613 return -1;
1614 }
1615
1616 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001617 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07001618
Anton Blanchard5d67be92011-07-04 21:57:50 +10001619 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001620 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001621
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001622 if (scripting_ops)
1623 scripting_ops->process_event(event, sample, evsel, &al);
1624 else
Andi Kleen48d02a12017-02-23 15:46:34 -08001625 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001626
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001627out_put:
1628 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001629 return 0;
1630}
1631
Adrian Hunter7ea95722013-11-01 15:51:30 +02001632static int process_attr(struct perf_tool *tool, union perf_event *event,
1633 struct perf_evlist **pevlist)
1634{
1635 struct perf_script *scr = container_of(tool, struct perf_script, tool);
1636 struct perf_evlist *evlist;
1637 struct perf_evsel *evsel, *pos;
1638 int err;
1639
1640 err = perf_event__process_attr(tool, event, pevlist);
1641 if (err)
1642 return err;
1643
1644 evlist = *pevlist;
1645 evsel = perf_evlist__last(*pevlist);
1646
Adrian Hunter14057202017-06-21 13:17:19 +03001647 if (evsel->attr.type >= PERF_TYPE_MAX &&
1648 evsel->attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02001649 return 0;
1650
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001651 evlist__for_each_entry(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +02001652 if (pos->attr.type == evsel->attr.type && pos != evsel)
1653 return 0;
1654 }
1655
1656 set_print_ip_opts(&evsel->attr);
1657
Jiri Olsad2b5a312015-10-16 12:41:25 +02001658 if (evsel->attr.sample_type)
1659 err = perf_evsel__check_attr(evsel, scr->session);
1660
1661 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +02001662}
1663
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001664static int process_comm_event(struct perf_tool *tool,
1665 union perf_event *event,
1666 struct perf_sample *sample,
1667 struct machine *machine)
1668{
1669 struct thread *thread;
1670 struct perf_script *script = container_of(tool, struct perf_script, tool);
1671 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001672 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001673 int ret = -1;
1674
1675 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
1676 if (thread == NULL) {
1677 pr_debug("problem processing COMM event, skipping it.\n");
1678 return -1;
1679 }
1680
1681 if (perf_event__process_comm(tool, event, sample, machine) < 0)
1682 goto out;
1683
1684 if (!evsel->attr.sample_id_all) {
1685 sample->cpu = 0;
1686 sample->time = 0;
1687 sample->tid = event->comm.tid;
1688 sample->pid = event->comm.pid;
1689 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001690 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001691 perf_event__fprintf(event, stdout);
1692 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001693out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001694 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001695 return ret;
1696}
1697
Hari Bathini96a44bb2017-03-08 02:12:06 +05301698static int process_namespaces_event(struct perf_tool *tool,
1699 union perf_event *event,
1700 struct perf_sample *sample,
1701 struct machine *machine)
1702{
1703 struct thread *thread;
1704 struct perf_script *script = container_of(tool, struct perf_script, tool);
1705 struct perf_session *session = script->session;
1706 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1707 int ret = -1;
1708
1709 thread = machine__findnew_thread(machine, event->namespaces.pid,
1710 event->namespaces.tid);
1711 if (thread == NULL) {
1712 pr_debug("problem processing NAMESPACES event, skipping it.\n");
1713 return -1;
1714 }
1715
1716 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
1717 goto out;
1718
1719 if (!evsel->attr.sample_id_all) {
1720 sample->cpu = 0;
1721 sample->time = 0;
1722 sample->tid = event->namespaces.tid;
1723 sample->pid = event->namespaces.pid;
1724 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001725 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Hari Bathini96a44bb2017-03-08 02:12:06 +05301726 perf_event__fprintf(event, stdout);
1727 ret = 0;
1728out:
1729 thread__put(thread);
1730 return ret;
1731}
1732
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001733static int process_fork_event(struct perf_tool *tool,
1734 union perf_event *event,
1735 struct perf_sample *sample,
1736 struct machine *machine)
1737{
1738 struct thread *thread;
1739 struct perf_script *script = container_of(tool, struct perf_script, tool);
1740 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001741 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001742
1743 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1744 return -1;
1745
1746 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1747 if (thread == NULL) {
1748 pr_debug("problem processing FORK event, skipping it.\n");
1749 return -1;
1750 }
1751
1752 if (!evsel->attr.sample_id_all) {
1753 sample->cpu = 0;
1754 sample->time = event->fork.time;
1755 sample->tid = event->fork.tid;
1756 sample->pid = event->fork.pid;
1757 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001758 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001759 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001760 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001761
1762 return 0;
1763}
1764static int process_exit_event(struct perf_tool *tool,
1765 union perf_event *event,
1766 struct perf_sample *sample,
1767 struct machine *machine)
1768{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001769 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001770 struct thread *thread;
1771 struct perf_script *script = container_of(tool, struct perf_script, tool);
1772 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001773 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001774
1775 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1776 if (thread == NULL) {
1777 pr_debug("problem processing EXIT event, skipping it.\n");
1778 return -1;
1779 }
1780
1781 if (!evsel->attr.sample_id_all) {
1782 sample->cpu = 0;
1783 sample->time = 0;
Adrian Hunter53ff6bc2015-08-18 12:07:05 +03001784 sample->tid = event->fork.tid;
1785 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001786 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001787 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001788 perf_event__fprintf(event, stdout);
1789
1790 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001791 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001792
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001793 thread__put(thread);
1794 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001795}
1796
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001797static int process_mmap_event(struct perf_tool *tool,
1798 union perf_event *event,
1799 struct perf_sample *sample,
1800 struct machine *machine)
1801{
1802 struct thread *thread;
1803 struct perf_script *script = container_of(tool, struct perf_script, tool);
1804 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001805 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001806
1807 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1808 return -1;
1809
1810 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1811 if (thread == NULL) {
1812 pr_debug("problem processing MMAP event, skipping it.\n");
1813 return -1;
1814 }
1815
1816 if (!evsel->attr.sample_id_all) {
1817 sample->cpu = 0;
1818 sample->time = 0;
1819 sample->tid = event->mmap.tid;
1820 sample->pid = event->mmap.pid;
1821 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001822 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001823 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001824 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001825 return 0;
1826}
1827
1828static int process_mmap2_event(struct perf_tool *tool,
1829 union perf_event *event,
1830 struct perf_sample *sample,
1831 struct machine *machine)
1832{
1833 struct thread *thread;
1834 struct perf_script *script = container_of(tool, struct perf_script, tool);
1835 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001836 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001837
1838 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1839 return -1;
1840
1841 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1842 if (thread == NULL) {
1843 pr_debug("problem processing MMAP2 event, skipping it.\n");
1844 return -1;
1845 }
1846
1847 if (!evsel->attr.sample_id_all) {
1848 sample->cpu = 0;
1849 sample->time = 0;
1850 sample->tid = event->mmap2.tid;
1851 sample->pid = event->mmap2.pid;
1852 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001853 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001854 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001855 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001856 return 0;
1857}
1858
Adrian Hunter7c148982015-07-21 12:44:06 +03001859static int process_switch_event(struct perf_tool *tool,
1860 union perf_event *event,
1861 struct perf_sample *sample,
1862 struct machine *machine)
1863{
1864 struct thread *thread;
1865 struct perf_script *script = container_of(tool, struct perf_script, tool);
1866 struct perf_session *session = script->session;
1867 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1868
1869 if (perf_event__process_switch(tool, event, sample, machine) < 0)
1870 return -1;
1871
1872 thread = machine__findnew_thread(machine, sample->pid,
1873 sample->tid);
1874 if (thread == NULL) {
1875 pr_debug("problem processing SWITCH event, skipping it.\n");
1876 return -1;
1877 }
1878
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001879 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Adrian Hunter7c148982015-07-21 12:44:06 +03001880 perf_event__fprintf(event, stdout);
1881 thread__put(thread);
1882 return 0;
1883}
1884
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001885static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05001886{
1887 session_done = 1;
1888}
1889
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001890static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001891{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001892 int ret;
1893
Tom Zanussic239da32010-04-01 23:59:18 -05001894 signal(SIGINT, sig_handler);
1895
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001896 /* override event processing functions */
1897 if (script->show_task_events) {
1898 script->tool.comm = process_comm_event;
1899 script->tool.fork = process_fork_event;
1900 script->tool.exit = process_exit_event;
1901 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001902 if (script->show_mmap_events) {
1903 script->tool.mmap = process_mmap_event;
1904 script->tool.mmap2 = process_mmap2_event;
1905 }
Adrian Hunter7c148982015-07-21 12:44:06 +03001906 if (script->show_switch_events)
1907 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05301908 if (script->show_namespace_events)
1909 script->tool.namespaces = process_namespaces_event;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001910
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001911 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001912
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02001913 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001914 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001915
1916 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001917}
1918
Tom Zanussi956ffd02009-11-25 01:15:46 -06001919struct script_spec {
1920 struct list_head node;
1921 struct scripting_ops *ops;
1922 char spec[0];
1923};
1924
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001925static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001926
1927static struct script_spec *script_spec__new(const char *spec,
1928 struct scripting_ops *ops)
1929{
1930 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
1931
1932 if (s != NULL) {
1933 strcpy(s->spec, spec);
1934 s->ops = ops;
1935 }
1936
1937 return s;
1938}
1939
Tom Zanussi956ffd02009-11-25 01:15:46 -06001940static void script_spec__add(struct script_spec *s)
1941{
1942 list_add_tail(&s->node, &script_specs);
1943}
1944
1945static struct script_spec *script_spec__find(const char *spec)
1946{
1947 struct script_spec *s;
1948
1949 list_for_each_entry(s, &script_specs, node)
1950 if (strcasecmp(s->spec, spec) == 0)
1951 return s;
1952 return NULL;
1953}
1954
Tom Zanussi956ffd02009-11-25 01:15:46 -06001955int script_spec_register(const char *spec, struct scripting_ops *ops)
1956{
1957 struct script_spec *s;
1958
1959 s = script_spec__find(spec);
1960 if (s)
1961 return -1;
1962
Taeung Song8560bae2016-02-26 00:13:10 +09001963 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001964 if (!s)
1965 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09001966 else
1967 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001968
1969 return 0;
1970}
1971
1972static struct scripting_ops *script_spec__lookup(const char *spec)
1973{
1974 struct script_spec *s = script_spec__find(spec);
1975 if (!s)
1976 return NULL;
1977
1978 return s->ops;
1979}
1980
1981static void list_available_languages(void)
1982{
1983 struct script_spec *s;
1984
1985 fprintf(stderr, "\n");
1986 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001987 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001988
1989 list_for_each_entry(s, &script_specs, node)
1990 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
1991
1992 fprintf(stderr, "\n");
1993}
1994
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001995static int parse_scriptname(const struct option *opt __maybe_unused,
1996 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06001997{
1998 char spec[PATH_MAX];
1999 const char *script, *ext;
2000 int len;
2001
Tom Zanussif526d682010-01-27 02:27:52 -06002002 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002003 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002004 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002005 }
2006
2007 script = strchr(str, ':');
2008 if (script) {
2009 len = script - str;
2010 if (len >= PATH_MAX) {
2011 fprintf(stderr, "invalid language specifier");
2012 return -1;
2013 }
2014 strncpy(spec, str, len);
2015 spec[len] = '\0';
2016 scripting_ops = script_spec__lookup(spec);
2017 if (!scripting_ops) {
2018 fprintf(stderr, "invalid language specifier");
2019 return -1;
2020 }
2021 script++;
2022 } else {
2023 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002024 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002025 if (!ext) {
2026 fprintf(stderr, "invalid script extension");
2027 return -1;
2028 }
2029 scripting_ops = script_spec__lookup(++ext);
2030 if (!scripting_ops) {
2031 fprintf(stderr, "invalid script extension");
2032 return -1;
2033 }
2034 }
2035
2036 script_name = strdup(script);
2037
2038 return 0;
2039}
2040
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002041static int parse_output_fields(const struct option *opt __maybe_unused,
2042 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002043{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002044 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002045 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002046 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002047 int rc = 0;
2048 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002049 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002050 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002051
2052 if (!str)
2053 return -ENOMEM;
2054
David Ahern2c9e45f72011-03-17 10:03:21 -06002055 /* first word can state for which event type the user is specifying
2056 * the fields. If no type exists, the specified fields apply to all
2057 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002058 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002059 tok = strchr(str, ':');
2060 if (tok) {
2061 *tok = '\0';
2062 tok++;
2063 if (!strcmp(str, "hw"))
2064 type = PERF_TYPE_HARDWARE;
2065 else if (!strcmp(str, "sw"))
2066 type = PERF_TYPE_SOFTWARE;
2067 else if (!strcmp(str, "trace"))
2068 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002069 else if (!strcmp(str, "raw"))
2070 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002071 else if (!strcmp(str, "break"))
2072 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002073 else if (!strcmp(str, "synth"))
2074 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002075 else {
2076 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002077 rc = -EINVAL;
2078 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002079 }
2080
2081 if (output[type].user_set)
2082 pr_warning("Overriding previous field request for %s events.\n",
2083 event_type(type));
2084
2085 output[type].fields = 0;
2086 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002087 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002088
2089 } else {
2090 tok = str;
2091 if (strlen(str) == 0) {
2092 fprintf(stderr,
2093 "Cannot set fields to 'none' for all event types.\n");
2094 rc = -EINVAL;
2095 goto out;
2096 }
2097
Andi Kleen36ce5652017-06-02 08:48:10 -07002098 /* Don't override defaults for +- */
2099 if (strchr(str, '+') || strchr(str, '-'))
2100 goto parse;
2101
David Ahern2c9e45f72011-03-17 10:03:21 -06002102 if (output_set_by_user())
2103 pr_warning("Overriding previous field request for all events.\n");
2104
Adrian Hunter14057202017-06-21 13:17:19 +03002105 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002106 output[j].fields = 0;
2107 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002108 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002109 }
David Ahern1424dc92011-03-09 22:23:28 -07002110 }
2111
Andi Kleen36ce5652017-06-02 08:48:10 -07002112parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002113 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002114 if (*tok == '+') {
2115 if (change == SET)
2116 goto out_badmix;
2117 change = ADD;
2118 tok++;
2119 } else if (*tok == '-') {
2120 if (change == SET)
2121 goto out_badmix;
2122 change = REMOVE;
2123 tok++;
2124 } else {
2125 if (change != SET && change != DEFAULT)
2126 goto out_badmix;
2127 change = SET;
2128 }
2129
David Ahern745f43e2011-03-09 22:23:26 -07002130 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002131 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002132 break;
David Ahern745f43e2011-03-09 22:23:26 -07002133 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002134 if (i == imax && strcmp(tok, "flags") == 0) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002135 print_flags = change == REMOVE ? false : true;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002136 continue;
2137 }
David Ahern745f43e2011-03-09 22:23:26 -07002138 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002139 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002140 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002141 goto out;
2142 }
2143
2144 if (type == -1) {
2145 /* add user option to all events types for
2146 * which it is valid
2147 */
Adrian Hunter14057202017-06-21 13:17:19 +03002148 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002149 if (output[j].invalid_fields & all_output_options[i].field) {
2150 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2151 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002152 } else {
2153 if (change == REMOVE)
2154 output[j].fields &= ~all_output_options[i].field;
2155 else
2156 output[j].fields |= all_output_options[i].field;
2157 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002158 }
2159 } else {
2160 if (output[type].invalid_fields & all_output_options[i].field) {
2161 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2162 all_output_options[i].str, event_type(type));
2163
2164 rc = -EINVAL;
2165 goto out;
2166 }
2167 output[type].fields |= all_output_options[i].field;
2168 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002169 }
2170
2171 if (type >= 0) {
2172 if (output[type].fields == 0) {
2173 pr_debug("No fields requested for %s type. "
2174 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002175 }
David Ahern1424dc92011-03-09 22:23:28 -07002176 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002177 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002178
Andi Kleen36ce5652017-06-02 08:48:10 -07002179out_badmix:
2180 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2181 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002182out:
David Ahern745f43e2011-03-09 22:23:26 -07002183 free(str);
2184 return rc;
2185}
2186
Shawn Bohrer008f29d2010-11-21 10:09:39 -06002187/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
2188static int is_directory(const char *base_path, const struct dirent *dent)
2189{
2190 char path[PATH_MAX];
2191 struct stat st;
2192
2193 sprintf(path, "%s/%s", base_path, dent->d_name);
2194 if (stat(path, &st))
2195 return 0;
2196
2197 return S_ISDIR(st.st_mode);
2198}
2199
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002200#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2201 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2202 if ((lang_dirent->d_type == DT_DIR || \
2203 (lang_dirent->d_type == DT_UNKNOWN && \
2204 is_directory(scripts_path, lang_dirent))) && \
2205 (strcmp(lang_dirent->d_name, ".")) && \
2206 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002207
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002208#define for_each_script(lang_path, lang_dir, script_dirent) \
2209 while ((script_dirent = readdir(lang_dir)) != NULL) \
2210 if (script_dirent->d_type != DT_DIR && \
2211 (script_dirent->d_type != DT_UNKNOWN || \
2212 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002213
2214
2215#define RECORD_SUFFIX "-record"
2216#define REPORT_SUFFIX "-report"
2217
2218struct script_desc {
2219 struct list_head node;
2220 char *name;
2221 char *half_liner;
2222 char *args;
2223};
2224
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002225static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002226
2227static struct script_desc *script_desc__new(const char *name)
2228{
2229 struct script_desc *s = zalloc(sizeof(*s));
2230
Tom Zanussib5b87312010-11-10 08:16:51 -06002231 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002232 s->name = strdup(name);
2233
2234 return s;
2235}
2236
2237static void script_desc__delete(struct script_desc *s)
2238{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002239 zfree(&s->name);
2240 zfree(&s->half_liner);
2241 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002242 free(s);
2243}
2244
2245static void script_desc__add(struct script_desc *s)
2246{
2247 list_add_tail(&s->node, &script_descs);
2248}
2249
2250static struct script_desc *script_desc__find(const char *name)
2251{
2252 struct script_desc *s;
2253
2254 list_for_each_entry(s, &script_descs, node)
2255 if (strcasecmp(s->name, name) == 0)
2256 return s;
2257 return NULL;
2258}
2259
2260static struct script_desc *script_desc__findnew(const char *name)
2261{
2262 struct script_desc *s = script_desc__find(name);
2263
2264 if (s)
2265 return s;
2266
2267 s = script_desc__new(name);
2268 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002269 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002270
2271 script_desc__add(s);
2272
2273 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002274}
2275
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002276static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002277{
2278 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002279 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002280
2281 if (strlen(str) > suffix_len) {
2282 p = str + strlen(str) - suffix_len;
2283 if (!strncmp(p, suffix, suffix_len))
2284 return p;
2285 }
2286
2287 return NULL;
2288}
2289
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002290static int read_script_info(struct script_desc *desc, const char *filename)
2291{
2292 char line[BUFSIZ], *p;
2293 FILE *fp;
2294
2295 fp = fopen(filename, "r");
2296 if (!fp)
2297 return -1;
2298
2299 while (fgets(line, sizeof(line), fp)) {
2300 p = ltrim(line);
2301 if (strlen(p) == 0)
2302 continue;
2303 if (*p != '#')
2304 continue;
2305 p++;
2306 if (strlen(p) && *p == '!')
2307 continue;
2308
2309 p = ltrim(p);
2310 if (strlen(p) && p[strlen(p) - 1] == '\n')
2311 p[strlen(p) - 1] = '\0';
2312
2313 if (!strncmp(p, "description:", strlen("description:"))) {
2314 p += strlen("description:");
2315 desc->half_liner = strdup(ltrim(p));
2316 continue;
2317 }
2318
2319 if (!strncmp(p, "args:", strlen("args:"))) {
2320 p += strlen("args:");
2321 desc->args = strdup(ltrim(p));
2322 continue;
2323 }
2324 }
2325
2326 fclose(fp);
2327
2328 return 0;
2329}
2330
Robert Richter38efb532011-11-25 11:38:40 +01002331static char *get_script_root(struct dirent *script_dirent, const char *suffix)
2332{
2333 char *script_root, *str;
2334
2335 script_root = strdup(script_dirent->d_name);
2336 if (!script_root)
2337 return NULL;
2338
2339 str = (char *)ends_with(script_root, suffix);
2340 if (!str) {
2341 free(script_root);
2342 return NULL;
2343 }
2344
2345 *str = '\0';
2346 return script_root;
2347}
2348
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002349static int list_available_scripts(const struct option *opt __maybe_unused,
2350 const char *s __maybe_unused,
2351 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002352{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002353 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002354 char scripts_path[MAXPATHLEN];
2355 DIR *scripts_dir, *lang_dir;
2356 char script_path[MAXPATHLEN];
2357 char lang_path[MAXPATHLEN];
2358 struct script_desc *desc;
2359 char first_half[BUFSIZ];
2360 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002361
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002362 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002363
2364 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00002365 if (!scripts_dir) {
2366 fprintf(stdout,
2367 "open(%s) failed.\n"
2368 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
2369 scripts_path);
2370 exit(-1);
2371 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002372
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002373 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002374 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002375 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002376 lang_dir = opendir(lang_path);
2377 if (!lang_dir)
2378 continue;
2379
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002380 for_each_script(lang_path, lang_dir, script_dirent) {
2381 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01002382 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002383 desc = script_desc__findnew(script_root);
2384 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002385 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002386 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01002387 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002388 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002389 }
2390 }
2391
2392 fprintf(stdout, "List of available trace scripts:\n");
2393 list_for_each_entry(desc, &script_descs, node) {
2394 sprintf(first_half, "%s %s", desc->name,
2395 desc->args ? desc->args : "");
2396 fprintf(stdout, " %-36s %s\n", first_half,
2397 desc->half_liner ? desc->half_liner : "");
2398 }
2399
2400 exit(0);
2401}
2402
Feng Tange5f37052012-09-07 16:42:26 +08002403/*
Feng Tang49e639e2012-10-30 11:56:03 +08002404 * Some scripts specify the required events in their "xxx-record" file,
2405 * this function will check if the events in perf.data match those
2406 * mentioned in the "xxx-record".
2407 *
2408 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
2409 * which is covered well now. And new parsing code should be added to
2410 * cover the future complexing formats like event groups etc.
2411 */
2412static int check_ev_match(char *dir_name, char *scriptname,
2413 struct perf_session *session)
2414{
2415 char filename[MAXPATHLEN], evname[128];
2416 char line[BUFSIZ], *p;
2417 struct perf_evsel *pos;
2418 int match, len;
2419 FILE *fp;
2420
2421 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
2422
2423 fp = fopen(filename, "r");
2424 if (!fp)
2425 return -1;
2426
2427 while (fgets(line, sizeof(line), fp)) {
2428 p = ltrim(line);
2429 if (*p == '#')
2430 continue;
2431
2432 while (strlen(p)) {
2433 p = strstr(p, "-e");
2434 if (!p)
2435 break;
2436
2437 p += 2;
2438 p = ltrim(p);
2439 len = strcspn(p, " \t");
2440 if (!len)
2441 break;
2442
2443 snprintf(evname, len + 1, "%s", p);
2444
2445 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002446 evlist__for_each_entry(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08002447 if (!strcmp(perf_evsel__name(pos), evname)) {
2448 match = 1;
2449 break;
2450 }
2451 }
2452
2453 if (!match) {
2454 fclose(fp);
2455 return -1;
2456 }
2457 }
2458 }
2459
2460 fclose(fp);
2461 return 0;
2462}
2463
2464/*
Feng Tange5f37052012-09-07 16:42:26 +08002465 * Return -1 if none is found, otherwise the actual scripts number.
2466 *
2467 * Currently the only user of this function is the script browser, which
2468 * will list all statically runnable scripts, select one, execute it and
2469 * show the output in a perf browser.
2470 */
2471int find_scripts(char **scripts_array, char **scripts_path_array)
2472{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002473 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08002474 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08002475 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08002476 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002477 struct perf_data_file file = {
2478 .path = input_name,
2479 .mode = PERF_DATA_MODE_READ,
2480 };
Feng Tange5f37052012-09-07 16:42:26 +08002481 char *temp;
2482 int i = 0;
2483
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002484 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08002485 if (!session)
2486 return -1;
2487
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002488 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08002489
2490 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08002491 if (!scripts_dir) {
2492 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08002493 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08002494 }
Feng Tange5f37052012-09-07 16:42:26 +08002495
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002496 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08002497 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002498 lang_dirent->d_name);
Feng Tange5f37052012-09-07 16:42:26 +08002499#ifdef NO_LIBPERL
2500 if (strstr(lang_path, "perl"))
2501 continue;
2502#endif
2503#ifdef NO_LIBPYTHON
2504 if (strstr(lang_path, "python"))
2505 continue;
2506#endif
2507
2508 lang_dir = opendir(lang_path);
2509 if (!lang_dir)
2510 continue;
2511
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002512 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08002513 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002514 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08002515 continue;
2516 sprintf(scripts_path_array[i], "%s/%s", lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002517 script_dirent->d_name);
2518 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08002519 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002520 (temp - script_dirent->d_name) + 1,
2521 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08002522
2523 if (check_ev_match(lang_path,
2524 scripts_array[i], session))
2525 continue;
2526
Feng Tange5f37052012-09-07 16:42:26 +08002527 i++;
2528 }
Feng Tang49e639e2012-10-30 11:56:03 +08002529 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08002530 }
2531
Feng Tang49e639e2012-10-30 11:56:03 +08002532 closedir(scripts_dir);
2533 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08002534 return i;
2535}
2536
Tom Zanussi38752942009-12-15 02:53:39 -06002537static char *get_script_path(const char *script_root, const char *suffix)
2538{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002539 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06002540 char scripts_path[MAXPATHLEN];
2541 char script_path[MAXPATHLEN];
2542 DIR *scripts_dir, *lang_dir;
2543 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01002544 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06002545
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002546 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06002547
2548 scripts_dir = opendir(scripts_path);
2549 if (!scripts_dir)
2550 return NULL;
2551
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002552 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi38752942009-12-15 02:53:39 -06002553 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002554 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06002555 lang_dir = opendir(lang_path);
2556 if (!lang_dir)
2557 continue;
2558
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002559 for_each_script(lang_path, lang_dir, script_dirent) {
2560 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01002561 if (__script_root && !strcmp(script_root, __script_root)) {
2562 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002563 closedir(lang_dir);
2564 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002565 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002566 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01002567 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06002568 }
2569 free(__script_root);
2570 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002571 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002572 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002573 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002574
Robert Richter38efb532011-11-25 11:38:40 +01002575 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002576}
2577
Tom Zanussib5b87312010-11-10 08:16:51 -06002578static bool is_top_script(const char *script_path)
2579{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002580 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06002581}
2582
2583static int has_required_arg(char *script_path)
2584{
2585 struct script_desc *desc;
2586 int n_args = 0;
2587 char *p;
2588
2589 desc = script_desc__new(NULL);
2590
2591 if (read_script_info(desc, script_path))
2592 goto out;
2593
2594 if (!desc->args)
2595 goto out;
2596
2597 for (p = desc->args; *p; p++)
2598 if (*p == '<')
2599 n_args++;
2600out:
2601 script_desc__delete(desc);
2602
2603 return n_args;
2604}
2605
David Ahernd54b1a92012-08-26 12:24:46 -06002606static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002607{
2608 char **__argv = malloc(sizeof(const char *) * argc);
2609
David Ahernd54b1a92012-08-26 12:24:46 -06002610 if (!__argv) {
2611 pr_err("malloc failed\n");
2612 return -1;
2613 }
2614
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002615 memcpy(__argv, argv, sizeof(const char *) * argc);
2616 argc = parse_options(argc, (const char **)__argv, record_options,
2617 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
2618 free(__argv);
2619
David Ahernd54b1a92012-08-26 12:24:46 -06002620 system_wide = (argc == 0);
2621
2622 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002623}
2624
Jiri Olsa7322d6c2015-08-13 09:17:24 +02002625static void script__setup_sample_type(struct perf_script *script)
2626{
2627 struct perf_session *session = script->session;
2628 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
2629
2630 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
2631 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
2632 (sample_type & PERF_SAMPLE_STACK_USER))
2633 callchain_param.record_mode = CALLCHAIN_DWARF;
2634 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
2635 callchain_param.record_mode = CALLCHAIN_LBR;
2636 else
2637 callchain_param.record_mode = CALLCHAIN_FP;
2638 }
2639}
2640
Jiri Olsae099eba2016-01-05 22:09:09 +01002641static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
2642 union perf_event *event,
2643 struct perf_session *session)
2644{
2645 struct stat_round_event *round = &event->stat_round;
2646 struct perf_evsel *counter;
2647
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002648 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01002649 perf_stat_process_counter(&stat_config, counter);
2650 process_stat(counter, round->time);
2651 }
2652
2653 process_stat_interval(round->time);
2654 return 0;
2655}
2656
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002657static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
2658 union perf_event *event,
2659 struct perf_session *session __maybe_unused)
2660{
2661 perf_event__read_stat_config(&stat_config, &event->stat_config);
2662 return 0;
2663}
2664
Jiri Olsacfc88742016-01-05 22:09:06 +01002665static int set_maps(struct perf_script *script)
2666{
2667 struct perf_evlist *evlist = script->session->evlist;
2668
2669 if (!script->cpus || !script->threads)
2670 return 0;
2671
2672 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
2673 return -EINVAL;
2674
2675 perf_evlist__set_maps(evlist, script->cpus, script->threads);
2676
2677 if (perf_evlist__alloc_stats(evlist, true))
2678 return -ENOMEM;
2679
2680 script->allocated = true;
2681 return 0;
2682}
2683
2684static
2685int process_thread_map_event(struct perf_tool *tool,
2686 union perf_event *event,
2687 struct perf_session *session __maybe_unused)
2688{
2689 struct perf_script *script = container_of(tool, struct perf_script, tool);
2690
2691 if (script->threads) {
2692 pr_warning("Extra thread map event, ignoring.\n");
2693 return 0;
2694 }
2695
2696 script->threads = thread_map__new_event(&event->thread_map);
2697 if (!script->threads)
2698 return -ENOMEM;
2699
2700 return set_maps(script);
2701}
2702
2703static
2704int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
2705 union perf_event *event,
2706 struct perf_session *session __maybe_unused)
2707{
2708 struct perf_script *script = container_of(tool, struct perf_script, tool);
2709
2710 if (script->cpus) {
2711 pr_warning("Extra cpu map event, ignoring.\n");
2712 return 0;
2713 }
2714
2715 script->cpus = cpu_map__new_data(&event->cpu_map.data);
2716 if (!script->cpus)
2717 return -ENOMEM;
2718
2719 return set_maps(script);
2720}
2721
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002722int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002723{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002724 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01002725 bool header = false;
2726 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002727 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06002728 char *rec_script_path = NULL;
2729 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002730 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002731 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06002732 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002733 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002734 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002735 struct perf_script script = {
2736 .tool = {
2737 .sample = process_sample_event,
2738 .mmap = perf_event__process_mmap,
2739 .mmap2 = perf_event__process_mmap2,
2740 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05302741 .namespaces = perf_event__process_namespaces,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002742 .exit = perf_event__process_exit,
2743 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02002744 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02002745 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002746 .tracing_data = perf_event__process_tracing_data,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07002747 .feature = perf_event__process_feature,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002748 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002749 .id_index = perf_event__process_id_index,
2750 .auxtrace_info = perf_event__process_auxtrace_info,
2751 .auxtrace = perf_event__process_auxtrace,
2752 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01002753 .stat = perf_event__process_stat_event,
2754 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002755 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01002756 .thread_map = process_thread_map_event,
2757 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02002758 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002759 .ordering_requires_timestamps = true,
2760 },
2761 };
Yunlong Song06af0f22015-04-02 21:47:16 +08002762 struct perf_data_file file = {
2763 .mode = PERF_DATA_MODE_READ,
2764 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002765 const struct option options[] = {
2766 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2767 "dump raw trace in ASCII"),
2768 OPT_INCR('v', "verbose", &verbose,
2769 "be more verbose (show symbol address, etc)"),
2770 OPT_BOOLEAN('L', "Latency", &latency_format,
2771 "show latency attributes (irqs/preemption disabled, etc)"),
2772 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
2773 list_available_scripts),
2774 OPT_CALLBACK('s', "script", NULL, "name",
2775 "script file name (lang:script name, script name, or *)",
2776 parse_scriptname),
2777 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
2778 "generate perf-script.xx script in specified language"),
2779 OPT_STRING('i', "input", &input_name, "file", "input file name"),
2780 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
2781 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01002782 OPT_BOOLEAN(0, "header", &header, "Show data header."),
2783 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002784 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2785 "file", "vmlinux pathname"),
2786 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2787 "file", "kallsyms pathname"),
2788 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
2789 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00002790 OPT_CALLBACK(0, "symfs", NULL, "directory",
2791 "Look for files with symbols relative to this directory",
2792 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08002793 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002794 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07002795 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03002796 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002797 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Andi Kleenb1491ac2017-09-05 11:40:57 -07002798 "addr,symoff,period,iregs,uregs,brstack,brstacksym,flags,"
Kan Liang49d58f02017-08-29 13:11:11 -04002799 "bpf-output,callindent,insn,insnlen,brstackinsn,synth,phys_addr",
Andi Kleen48d02a12017-02-23 15:46:34 -08002800 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002801 OPT_BOOLEAN('a', "all-cpus", &system_wide,
2802 "system-wide collection from all CPUs"),
2803 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
2804 "only consider these symbols"),
David Ahern64eff7d2016-11-25 13:00:21 -07002805 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
2806 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002807 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
2808 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
2809 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06002810 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
2811 "only consider symbols in these pids"),
2812 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
2813 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03002814 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
2815 "Set the maximum stack depth when parsing the callchain, "
2816 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03002817 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002818 OPT_BOOLEAN('I', "show-info", &show_full_info,
2819 "display extended information from perf.data file"),
2820 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
2821 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002822 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
2823 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002824 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
2825 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03002826 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
2827 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05302828 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
2829 "Show namespace events (if recorded)"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05002830 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08002831 OPT_INTEGER(0, "max-blocks", &max_blocks,
2832 "Maximum number of code blocks to dump with brstackinsn"),
Adrian Hunter83e19862015-09-25 16:15:36 +03002833 OPT_BOOLEAN(0, "ns", &nanosecs,
2834 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002835 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
2836 "Instruction Tracing options",
2837 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07002838 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
2839 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07002840 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
2841 "Enable symbol demangling"),
2842 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
2843 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07002844 OPT_STRING(0, "time", &script.time_str, "str",
2845 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09002846 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
2847 "Show inline function"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002848 OPT_END()
2849 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08002850 const char * const script_subcommands[] = { "record", "report", NULL };
2851 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002852 "perf script [<options>]",
2853 "perf script [<options>] record <script> [<record-options>] <command>",
2854 "perf script [<options>] report <script> [script-args]",
2855 "perf script [<options>] <script> [<record-options>] <command>",
2856 "perf script [<options>] <top-script> [script-args]",
2857 NULL
2858 };
Tom Zanussi38752942009-12-15 02:53:39 -06002859
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03002860 perf_set_singlethreaded();
2861
Tom Zanussib5b87312010-11-10 08:16:51 -06002862 setup_scripting();
2863
Yunlong Song40cae2b2015-03-18 21:35:54 +08002864 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06002865 PARSE_OPT_STOP_AT_NON_OPTION);
2866
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002867 file.path = input_name;
Yannick Brosseaube3d4662017-01-13 13:25:27 -05002868 file.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002869
Tom Zanussib5b87312010-11-10 08:16:51 -06002870 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
2871 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
2872 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002873 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002874 }
2875
Tom Zanussib5b87312010-11-10 08:16:51 -06002876 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
2877 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
2878 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06002879 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06002880 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002881 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06002882 return -1;
2883 }
Tom Zanussi38752942009-12-15 02:53:39 -06002884 }
2885
Adrian Hunter3c5b6452015-09-25 16:15:51 +03002886 if (itrace_synth_opts.callchain &&
2887 itrace_synth_opts.callchain_sz > scripting_max_stack)
2888 scripting_max_stack = itrace_synth_opts.callchain_sz;
2889
Ben Hutchings44e668c2010-10-10 16:10:03 +01002890 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002891 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01002892
Tom Zanussib5b87312010-11-10 08:16:51 -06002893 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05002894 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06002895 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002896 pid_t pid;
2897
Tom Zanussib5b87312010-11-10 08:16:51 -06002898 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
2899 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
2900
2901 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002902 usage_with_options_msg(script_usage, options,
2903 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002904 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002905 }
2906
Tom Zanussib5b87312010-11-10 08:16:51 -06002907 if (is_top_script(argv[0])) {
2908 rep_args = argc - 1;
2909 } else {
2910 int rec_args;
2911
2912 rep_args = has_required_arg(rep_script_path);
2913 rec_args = (argc - 1) - rep_args;
2914 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002915 usage_with_options_msg(script_usage, options,
2916 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002917 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06002918 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06002919 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05002920 }
2921
2922 if (pipe(live_pipe) < 0) {
2923 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06002924 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002925 }
2926
2927 pid = fork();
2928 if (pid < 0) {
2929 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06002930 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002931 }
2932
2933 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002934 j = 0;
2935
Tom Zanussia0cccc22010-04-01 23:59:25 -05002936 dup2(live_pipe[1], 1);
2937 close(live_pipe[0]);
2938
Robert Richter317df652011-11-25 15:05:25 +01002939 if (is_top_script(argv[0])) {
2940 system_wide = true;
2941 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06002942 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
2943 err = -1;
2944 goto out;
2945 }
Robert Richter317df652011-11-25 15:05:25 +01002946 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002947
2948 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002949 if (!__argv) {
2950 pr_err("malloc failed\n");
2951 err = -ENOMEM;
2952 goto out;
2953 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06002954
Tom Zanussib5b87312010-11-10 08:16:51 -06002955 __argv[j++] = "/bin/sh";
2956 __argv[j++] = rec_script_path;
2957 if (system_wide)
2958 __argv[j++] = "-a";
2959 __argv[j++] = "-q";
2960 __argv[j++] = "-o";
2961 __argv[j++] = "-";
2962 for (i = rep_args + 1; i < argc; i++)
2963 __argv[j++] = argv[i];
2964 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002965
2966 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002967 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002968 exit(-1);
2969 }
2970
2971 dup2(live_pipe[0], 0);
2972 close(live_pipe[1]);
2973
Tom Zanussib5b87312010-11-10 08:16:51 -06002974 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002975 if (!__argv) {
2976 pr_err("malloc failed\n");
2977 err = -ENOMEM;
2978 goto out;
2979 }
2980
Tom Zanussib5b87312010-11-10 08:16:51 -06002981 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002982 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06002983 __argv[j++] = rep_script_path;
2984 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002985 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06002986 __argv[j++] = "-i";
2987 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002988 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002989
2990 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002991 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002992 exit(-1);
2993 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06002994
Tom Zanussib5b87312010-11-10 08:16:51 -06002995 if (rec_script_path)
2996 script_path = rec_script_path;
2997 if (rep_script_path)
2998 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002999
Tom Zanussib5b87312010-11-10 08:16:51 -06003000 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003001 j = 0;
3002
Robert Richter317df652011-11-25 15:05:25 +01003003 if (!rec_script_path)
3004 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003005 else if (!system_wide) {
3006 if (have_cmd(argc - 1, &argv[1]) != 0) {
3007 err = -1;
3008 goto out;
3009 }
3010 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003011
3012 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003013 if (!__argv) {
3014 pr_err("malloc failed\n");
3015 err = -ENOMEM;
3016 goto out;
3017 }
3018
Tom Zanussib5b87312010-11-10 08:16:51 -06003019 __argv[j++] = "/bin/sh";
3020 __argv[j++] = script_path;
3021 if (system_wide)
3022 __argv[j++] = "-a";
3023 for (i = 2; i < argc; i++)
3024 __argv[j++] = argv[i];
3025 __argv[j++] = NULL;
3026
3027 execvp("/bin/sh", (char **)__argv);
3028 free(__argv);
3029 exit(-1);
3030 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003031
Tom Zanussicf4fee52010-03-03 01:04:33 -06003032 if (!script_name)
3033 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003034
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003035 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003036 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09003037 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003038
Jiri Olsae90debd2013-12-09 11:02:50 +01003039 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003040 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003041 perf_session__fprintf_info(session, stdout, show_full_info);
3042 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003043 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003044 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003045 if (show_full_info)
3046 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003047
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003048 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003049 goto out_delete;
3050
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003051 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003052 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003053
Adrian Huntere2167082016-06-23 16:40:58 +03003054 if (output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT)
3055 itrace_synth_opts.thread_stack = true;
3056
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003057 session->itrace_synth_opts = &itrace_synth_opts;
3058
Anton Blanchard5d67be92011-07-04 21:57:50 +10003059 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003060 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3061 if (err < 0)
3062 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003063 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003064 }
3065
David Ahern1424dc92011-03-09 22:23:28 -07003066 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003067 symbol_conf.use_callchain = true;
3068 else
3069 symbol_conf.use_callchain = false;
3070
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003071 if (session->tevent.pevent &&
3072 pevent_set_function_resolver(session->tevent.pevent,
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003073 machine__resolve_kernel_addr,
3074 &session->machines.host) < 0) {
3075 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003076 err = -1;
3077 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003078 }
3079
Tom Zanussi956ffd02009-11-25 01:15:46 -06003080 if (generate_script_lang) {
3081 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003082 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003083
David Ahern2c9e45f72011-03-17 10:03:21 -06003084 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003085 fprintf(stderr,
3086 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003087 err = -EINVAL;
3088 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003089 }
3090
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003091 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003092 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003093 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003094 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003095 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003096 }
3097
3098 err = fstat(input, &perf_stat);
3099 if (err < 0) {
3100 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003101 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003102 }
3103
3104 if (!perf_stat.st_size) {
3105 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003106 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003107 }
3108
3109 scripting_ops = script_spec__lookup(generate_script_lang);
3110 if (!scripting_ops) {
3111 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003112 err = -ENOENT;
3113 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003114 }
3115
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003116 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003117 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003118 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003119 }
3120
3121 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003122 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003123 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003124 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003125 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003126 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003127 }
3128
David Ahern9cbdb702011-04-06 21:54:20 -06003129
3130 err = perf_session__check_output_opt(session);
3131 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003132 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003133
David Aherna91f4c42016-11-29 10:15:43 -07003134 /* needs to be parsed after looking up reference time */
3135 if (perf_time__parse_str(&script.ptime, script.time_str) != 0) {
3136 pr_err("Invalid time string\n");
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003137 err = -EINVAL;
3138 goto out_delete;
David Aherna91f4c42016-11-29 10:15:43 -07003139 }
3140
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003141 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003142
Adrian Hunterd445dd22014-08-15 22:08:37 +03003143 flush_scripting();
3144
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003145out_delete:
Jiri Olsacfc88742016-01-05 22:09:06 +01003146 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003147 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003148
3149 if (script_started)
3150 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06003151out:
3152 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003153}