blob: 81b39504029821d8965dbcec8528116d99b2c079 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002#include "builtin.h"
3
Andrea Gelminib7eead82010-08-05 15:51:38 +02004#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02005#include "util/cache.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02006#include "util/debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06007#include <subcmd/exec-cmd.h>
Andrea Gelminib7eead82010-08-05 15:51:38 +02008#include "util/header.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06009#include <subcmd/parse-options.h>
Stephane Eranianfc36f942015-08-31 18:41:10 +020010#include "util/perf_regs.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020011#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020013#include "util/symbol.h"
14#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010015#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020016#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070017#include "util/evlist.h"
18#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080019#include "util/sort.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020020#include "util/data.h"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030021#include "util/auxtrace.h"
Jiri Olsacfc88742016-01-05 22:09:06 +010022#include "util/cpumap.h"
23#include "util/thread_map.h"
24#include "util/stat.h"
Andi Kleen4bd1bef2017-11-17 13:43:00 -080025#include "util/color.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030026#include "util/string2.h"
Adrian Huntere2167082016-06-23 16:40:58 +030027#include "util/thread-stack.h"
David Aherna91f4c42016-11-29 10:15:43 -070028#include "util/time-utils.h"
Arnaldo Carvalho de Melofea01392017-04-17 16:23:22 -030029#include "print_binary.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100030#include <linux/bitmap.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030031#include <linux/kernel.h>
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -030032#include <linux/stringify.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030033#include <linux/time64.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010034#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010035#include "util/mem-events.h"
Andi Kleen48d02a12017-02-23 15:46:34 -080036#include "util/dump-insn.h"
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -030037#include <dirent.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030038#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030039#include <inttypes.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030040#include <signal.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030041#include <sys/param.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030042#include <sys/types.h>
43#include <sys/stat.h>
44#include <unistd.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020045
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030046#include "sane_ctype.h"
47
Tom Zanussi956ffd02009-11-25 01:15:46 -060048static char const *script_name;
49static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020050static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020051static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020052static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070053static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090054static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010055static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030056static bool print_flags;
Adrian Hunter83e19862015-09-25 16:15:36 +030057static bool nanosecs;
Anton Blanchard5d67be92011-07-04 21:57:50 +100058static const char *cpu_list;
59static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010060static struct perf_stat_config stat_config;
Andi Kleen48d02a12017-02-23 15:46:34 -080061static int max_blocks;
Tom Zanussi956ffd02009-11-25 01:15:46 -060062
Adrian Hunter44cbe722015-09-25 16:15:50 +030063unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030064
David Ahern745f43e2011-03-09 22:23:26 -070065enum perf_output_field {
66 PERF_OUTPUT_COMM = 1U << 0,
67 PERF_OUTPUT_TID = 1U << 1,
68 PERF_OUTPUT_PID = 1U << 2,
69 PERF_OUTPUT_TIME = 1U << 3,
70 PERF_OUTPUT_CPU = 1U << 4,
71 PERF_OUTPUT_EVNAME = 1U << 5,
72 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060073 PERF_OUTPUT_IP = 1U << 7,
74 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060075 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060076 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090077 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020078 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaae2014-08-25 16:45:42 +020079 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020080 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020081 PERF_OUTPUT_BRSTACK = 1U << 15,
82 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +010083 PERF_OUTPUT_DATA_SRC = 1U << 17,
84 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +000085 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
Adrian Huntere2167082016-06-23 16:40:58 +030086 PERF_OUTPUT_CALLINDENT = 1U << 20,
Andi Kleen224e2c92016-10-07 16:42:27 +030087 PERF_OUTPUT_INSN = 1U << 21,
88 PERF_OUTPUT_INSNLEN = 1U << 22,
Andi Kleen48d02a12017-02-23 15:46:34 -080089 PERF_OUTPUT_BRSTACKINSN = 1U << 23,
Mark Santaniello106dacd2017-06-19 09:38:25 -070090 PERF_OUTPUT_BRSTACKOFF = 1U << 24,
Adrian Hunter47e78082017-05-26 11:17:22 +030091 PERF_OUTPUT_SYNTH = 1U << 25,
Kan Liang49d58f02017-08-29 13:11:11 -040092 PERF_OUTPUT_PHYS_ADDR = 1U << 26,
Andi Kleenb1491ac2017-09-05 11:40:57 -070093 PERF_OUTPUT_UREGS = 1U << 27,
Andi Kleen4bd1bef2017-11-17 13:43:00 -080094 PERF_OUTPUT_METRIC = 1U << 28,
David Ahern745f43e2011-03-09 22:23:26 -070095};
96
97struct output_option {
98 const char *str;
99 enum perf_output_field field;
100} all_output_options[] = {
101 {.str = "comm", .field = PERF_OUTPUT_COMM},
102 {.str = "tid", .field = PERF_OUTPUT_TID},
103 {.str = "pid", .field = PERF_OUTPUT_PID},
104 {.str = "time", .field = PERF_OUTPUT_TIME},
105 {.str = "cpu", .field = PERF_OUTPUT_CPU},
106 {.str = "event", .field = PERF_OUTPUT_EVNAME},
107 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -0600108 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -0700109 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -0600110 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -0600111 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900112 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +0200113 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200114 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +0200115 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Andi Kleenb1491ac2017-09-05 11:40:57 -0700116 {.str = "uregs", .field = PERF_OUTPUT_UREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200117 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
118 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100119 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
120 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +0000121 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
Adrian Huntere2167082016-06-23 16:40:58 +0300122 {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
Andi Kleen224e2c92016-10-07 16:42:27 +0300123 {.str = "insn", .field = PERF_OUTPUT_INSN},
124 {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
Andi Kleen48d02a12017-02-23 15:46:34 -0800125 {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
Mark Santaniello106dacd2017-06-19 09:38:25 -0700126 {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
Adrian Hunter47e78082017-05-26 11:17:22 +0300127 {.str = "synth", .field = PERF_OUTPUT_SYNTH},
Kan Liang49d58f02017-08-29 13:11:11 -0400128 {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800129 {.str = "metric", .field = PERF_OUTPUT_METRIC},
David Ahern745f43e2011-03-09 22:23:26 -0700130};
131
Adrian Hunter14057202017-06-21 13:17:19 +0300132enum {
133 OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
134 OUTPUT_TYPE_MAX
135};
136
David Ahern745f43e2011-03-09 22:23:26 -0700137/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -0600138static struct {
139 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -0600140 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -0400141 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -0600142 u64 fields;
143 u64 invalid_fields;
Adrian Hunter14057202017-06-21 13:17:19 +0300144} output[OUTPUT_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700145
David Ahern2c9e45f72011-03-17 10:03:21 -0600146 [PERF_TYPE_HARDWARE] = {
147 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700148
David Ahern2c9e45f72011-03-17 10:03:21 -0600149 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
150 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600151 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200152 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
153 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600154
Wang Nan30372f02016-02-24 11:20:45 +0000155 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600156 },
157
158 [PERF_TYPE_SOFTWARE] = {
159 .user_set = false,
160
161 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
162 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600163 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200164 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Wang Nan30372f02016-02-24 11:20:45 +0000165 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600166
167 .invalid_fields = PERF_OUTPUT_TRACE,
168 },
169
170 [PERF_TYPE_TRACEPOINT] = {
171 .user_set = false,
172
173 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
174 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000175 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600176 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700177
178 [PERF_TYPE_RAW] = {
179 .user_set = false,
180
181 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
182 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600183 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200184 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Jiri Olsaff7b1912016-02-15 09:34:52 +0100185 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
Kan Liang49d58f02017-08-29 13:11:11 -0400186 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT |
187 PERF_OUTPUT_PHYS_ADDR,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700188
Wang Nan30372f02016-02-24 11:20:45 +0000189 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700190 },
Wang Nan27cfef02015-12-08 02:25:43 +0000191
192 [PERF_TYPE_BREAKPOINT] = {
193 .user_set = false,
194
195 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
196 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
197 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
198 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
199 PERF_OUTPUT_PERIOD,
200
Wang Nan30372f02016-02-24 11:20:45 +0000201 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000202 },
Adrian Hunter14057202017-06-21 13:17:19 +0300203
204 [OUTPUT_TYPE_SYNTH] = {
205 .user_set = false,
206
207 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
208 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
209 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Adrian Hunter47e78082017-05-26 11:17:22 +0300210 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
211 PERF_OUTPUT_SYNTH,
Adrian Hunter14057202017-06-21 13:17:19 +0300212
213 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
214 },
David Ahern1424dc92011-03-09 22:23:28 -0700215};
David Ahern745f43e2011-03-09 22:23:26 -0700216
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300217struct perf_evsel_script {
218 char *filename;
219 FILE *fp;
220 u64 samples;
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800221 /* For metric output */
222 u64 val;
223 int gnum;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300224};
225
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800226static inline struct perf_evsel_script *evsel_script(struct perf_evsel *evsel)
227{
228 return (struct perf_evsel_script *)evsel->priv;
229}
230
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300231static struct perf_evsel_script *perf_evsel_script__new(struct perf_evsel *evsel,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100232 struct perf_data *data)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300233{
Andi Kleen4bd1bef2017-11-17 13:43:00 -0800234 struct perf_evsel_script *es = zalloc(sizeof(*es));
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300235
236 if (es != NULL) {
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100237 if (asprintf(&es->filename, "%s.%s.dump", data->file.path, perf_evsel__name(evsel)) < 0)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300238 goto out_free;
239 es->fp = fopen(es->filename, "w");
240 if (es->fp == NULL)
241 goto out_free_filename;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -0300242 }
243
244 return es;
245out_free_filename:
246 zfree(&es->filename);
247out_free:
248 free(es);
249 return NULL;
250}
251
252static void perf_evsel_script__delete(struct perf_evsel_script *es)
253{
254 zfree(&es->filename);
255 fclose(es->fp);
256 es->fp = NULL;
257 free(es);
258}
259
260static int perf_evsel_script__fprintf(struct perf_evsel_script *es, FILE *fp)
261{
262 struct stat st;
263
264 fstat(fileno(es->fp), &st);
265 return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
266 st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
267}
268
Adrian Hunter14057202017-06-21 13:17:19 +0300269static inline int output_type(unsigned int type)
270{
271 switch (type) {
272 case PERF_TYPE_SYNTH:
273 return OUTPUT_TYPE_SYNTH;
274 default:
275 return type;
276 }
277}
278
279static inline unsigned int attr_type(unsigned int type)
280{
281 switch (type) {
282 case OUTPUT_TYPE_SYNTH:
283 return PERF_TYPE_SYNTH;
284 default:
285 return type;
286 }
287}
288
David Ahern2c9e45f72011-03-17 10:03:21 -0600289static bool output_set_by_user(void)
290{
291 int j;
Adrian Hunter14057202017-06-21 13:17:19 +0300292 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600293 if (output[j].user_set)
294 return true;
295 }
296 return false;
297}
David Ahern745f43e2011-03-09 22:23:26 -0700298
David Ahern9cbdb702011-04-06 21:54:20 -0600299static const char *output_field2str(enum perf_output_field field)
300{
301 int i, imax = ARRAY_SIZE(all_output_options);
302 const char *str = "";
303
304 for (i = 0; i < imax; ++i) {
305 if (all_output_options[i].field == field) {
306 str = all_output_options[i].str;
307 break;
308 }
309 }
310 return str;
311}
312
Adrian Hunter14057202017-06-21 13:17:19 +0300313#define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700314
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300315static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
316 u64 sample_type, const char *sample_msg,
317 enum perf_output_field field,
318 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700319{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300320 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +0300321 int type = output_type(attr->type);
David Ahern9cbdb702011-04-06 21:54:20 -0600322 const char *evname;
323
324 if (attr->sample_type & sample_type)
325 return 0;
326
327 if (output[type].user_set) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300328 if (allow_user_set)
329 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300330 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600331 pr_err("Samples for '%s' event do not have %s attribute set. "
332 "Cannot print '%s' field.\n",
333 evname, sample_msg, output_field2str(field));
334 return -1;
335 }
336
337 /* user did not ask for it explicitly so remove from the default list */
338 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300339 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600340 pr_debug("Samples for '%s' event do not have %s attribute set. "
341 "Skipping '%s' field.\n",
342 evname, sample_msg, output_field2str(field));
343
344 return 0;
345}
346
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300347static int perf_evsel__check_stype(struct perf_evsel *evsel,
348 u64 sample_type, const char *sample_msg,
349 enum perf_output_field field)
350{
351 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
352 false);
353}
354
David Ahern9cbdb702011-04-06 21:54:20 -0600355static int perf_evsel__check_attr(struct perf_evsel *evsel,
356 struct perf_session *session)
357{
358 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300359 bool allow_user_set;
360
Jiri Olsae099eba2016-01-05 22:09:09 +0100361 if (perf_header__has_feat(&session->header, HEADER_STAT))
362 return 0;
363
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300364 allow_user_set = perf_header__has_feat(&session->header,
365 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600366
David Ahern1424dc92011-03-09 22:23:28 -0700367 if (PRINT_FIELD(TRACE) &&
368 !perf_session__has_traces(session, "record -R"))
369 return -EINVAL;
370
David Ahern787bef12011-05-27 14:28:43 -0600371 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300372 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
373 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700374 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700375 }
David Ahern7cec0922011-05-30 13:08:23 -0600376
377 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300378 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
379 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600380 return -EINVAL;
381
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100382 if (PRINT_FIELD(DATA_SRC) &&
383 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
384 PERF_OUTPUT_DATA_SRC))
385 return -EINVAL;
386
387 if (PRINT_FIELD(WEIGHT) &&
388 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
389 PERF_OUTPUT_WEIGHT))
390 return -EINVAL;
391
David Ahern7cec0922011-05-30 13:08:23 -0600392 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
393 pr_err("Display of symbols requested but neither sample IP nor "
394 "sample address\nis selected. Hence, no addresses to convert "
395 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600396 return -EINVAL;
397 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900398 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
399 pr_err("Display of offsets requested but symbol is not"
400 "selected.\n");
401 return -EINVAL;
402 }
Mark Santaniello55b9b502017-06-19 09:38:24 -0700403 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR) &&
Mark Santaniello106dacd2017-06-19 09:38:25 -0700404 !PRINT_FIELD(BRSTACK) && !PRINT_FIELD(BRSTACKSYM) && !PRINT_FIELD(BRSTACKOFF)) {
405 pr_err("Display of DSO requested but no address to convert. Select\n"
406 "sample IP, sample address, brstack, brstacksym, or brstackoff.\n");
David Ahern610723f2011-05-27 14:28:44 -0600407 return -EINVAL;
408 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200409 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
410 pr_err("Display of source line number requested but sample IP is not\n"
411 "selected. Hence, no address to lookup the source line number.\n");
412 return -EINVAL;
413 }
Andi Kleen48d02a12017-02-23 15:46:34 -0800414 if (PRINT_FIELD(BRSTACKINSN) &&
415 !(perf_evlist__combined_branch_type(session->evlist) &
416 PERF_SAMPLE_BRANCH_ANY)) {
417 pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
418 "Hint: run 'perf record -b ...'\n");
419 return -EINVAL;
420 }
David Ahern1424dc92011-03-09 22:23:28 -0700421 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300422 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
423 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700424 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700425
426 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300427 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
428 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700429 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700430
431 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300432 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
433 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700434 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600435
Stephane Eranianfc36f942015-08-31 18:41:10 +0200436 if (PRINT_FIELD(IREGS) &&
437 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
438 PERF_OUTPUT_IREGS))
439 return -EINVAL;
440
Andi Kleenb1491ac2017-09-05 11:40:57 -0700441 if (PRINT_FIELD(UREGS) &&
442 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS",
443 PERF_OUTPUT_UREGS))
444 return -EINVAL;
445
Kan Liang49d58f02017-08-29 13:11:11 -0400446 if (PRINT_FIELD(PHYS_ADDR) &&
447 perf_evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR",
448 PERF_OUTPUT_PHYS_ADDR))
449 return -EINVAL;
450
David Ahern9cbdb702011-04-06 21:54:20 -0600451 return 0;
452}
453
Adrian Hunter7ea95722013-11-01 15:51:30 +0200454static void set_print_ip_opts(struct perf_event_attr *attr)
455{
Adrian Hunter14057202017-06-21 13:17:19 +0300456 unsigned int type = output_type(attr->type);
Adrian Hunter7ea95722013-11-01 15:51:30 +0200457
458 output[type].print_ip_opts = 0;
459 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300460 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200461
462 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300463 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200464
465 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300466 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200467
468 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300469 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200470
471 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300472 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200473}
474
David Ahern9cbdb702011-04-06 21:54:20 -0600475/*
476 * verify all user requested events exist and the samples
477 * have the expected data
478 */
479static int perf_session__check_output_opt(struct perf_session *session)
480{
He Kuang40f20e52016-05-16 04:51:19 +0000481 unsigned int j;
David Ahern9cbdb702011-04-06 21:54:20 -0600482 struct perf_evsel *evsel;
483
Adrian Hunter14057202017-06-21 13:17:19 +0300484 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
485 evsel = perf_session__find_first_evtype(session, attr_type(j));
David Ahern9cbdb702011-04-06 21:54:20 -0600486
487 /*
488 * even if fields is set to 0 (ie., show nothing) event must
489 * exist if user explicitly includes it on the command line
490 */
Adrian Hunter14057202017-06-21 13:17:19 +0300491 if (!evsel && output[j].user_set && !output[j].wildcard_set &&
492 j != OUTPUT_TYPE_SYNTH) {
David Ahern9cbdb702011-04-06 21:54:20 -0600493 pr_err("%s events do not exist. "
Adrian Hunter701516a2017-05-26 11:17:20 +0300494 "Remove corresponding -F option to proceed.\n",
David Ahern9cbdb702011-04-06 21:54:20 -0600495 event_type(j));
496 return -1;
497 }
498
499 if (evsel && output[j].fields &&
500 perf_evsel__check_attr(evsel, session))
501 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400502
503 if (evsel == NULL)
504 continue;
505
Adrian Hunter7ea95722013-11-01 15:51:30 +0200506 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700507 }
508
Adrian Hunter98526ee2014-07-31 09:00:59 +0300509 if (!no_callchain) {
510 bool use_callchain = false;
He Kuang71ac8992016-08-04 11:25:43 +0000511 bool not_pipe = false;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300512
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300513 evlist__for_each_entry(session->evlist, evsel) {
He Kuang71ac8992016-08-04 11:25:43 +0000514 not_pipe = true;
Adrian Hunter98526ee2014-07-31 09:00:59 +0300515 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
516 use_callchain = true;
517 break;
518 }
519 }
He Kuang71ac8992016-08-04 11:25:43 +0000520 if (not_pipe && !use_callchain)
Adrian Hunter98526ee2014-07-31 09:00:59 +0300521 symbol_conf.use_callchain = false;
522 }
523
David Ahern80b8b492013-11-19 21:07:37 -0700524 /*
525 * set default for tracepoints to print symbols only
526 * if callchains are present
527 */
528 if (symbol_conf.use_callchain &&
529 !output[PERF_TYPE_TRACEPOINT].user_set) {
530 struct perf_event_attr *attr;
531
532 j = PERF_TYPE_TRACEPOINT;
David Ahern80b8b492013-11-19 21:07:37 -0700533
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300534 evlist__for_each_entry(session->evlist, evsel) {
He Kuang40f20e52016-05-16 04:51:19 +0000535 if (evsel->attr.type != j)
536 continue;
David Ahern80b8b492013-11-19 21:07:37 -0700537
He Kuang40f20e52016-05-16 04:51:19 +0000538 attr = &evsel->attr;
539
540 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
541 output[j].fields |= PERF_OUTPUT_IP;
542 output[j].fields |= PERF_OUTPUT_SYM;
543 output[j].fields |= PERF_OUTPUT_DSO;
544 set_print_ip_opts(attr);
545 goto out;
546 }
David Ahern80b8b492013-11-19 21:07:37 -0700547 }
548 }
549
550out:
David Ahern1424dc92011-03-09 22:23:28 -0700551 return 0;
552}
David Ahern745f43e2011-03-09 22:23:26 -0700553
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300554static int perf_sample__fprintf_iregs(struct perf_sample *sample,
555 struct perf_event_attr *attr, FILE *fp)
Stephane Eranianfc36f942015-08-31 18:41:10 +0200556{
557 struct regs_dump *regs = &sample->intr_regs;
558 uint64_t mask = attr->sample_regs_intr;
559 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300560 int printed = 0;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200561
562 if (!regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300563 return 0;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200564
565 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
566 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300567 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Stephane Eranianfc36f942015-08-31 18:41:10 +0200568 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300569
570 return printed;
Stephane Eranianfc36f942015-08-31 18:41:10 +0200571}
572
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300573static int perf_sample__fprintf_uregs(struct perf_sample *sample,
574 struct perf_event_attr *attr, FILE *fp)
Andi Kleenb1491ac2017-09-05 11:40:57 -0700575{
576 struct regs_dump *regs = &sample->user_regs;
577 uint64_t mask = attr->sample_regs_user;
578 unsigned i = 0, r;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300579 int printed = 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700580
581 if (!regs || !regs->regs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300582 return 0;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700583
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300584 printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700585
586 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
587 u64 val = regs->regs[i++];
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300588 printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
Andi Kleenb1491ac2017-09-05 11:40:57 -0700589 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300590
591 return printed;
Andi Kleenb1491ac2017-09-05 11:40:57 -0700592}
593
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300594static int perf_sample__fprintf_start(struct perf_sample *sample,
595 struct thread *thread,
596 struct perf_evsel *evsel, FILE *fp)
David Ahernc70c94b2011-03-09 22:23:25 -0700597{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300598 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700599 unsigned long secs;
David Ahern745f43e2011-03-09 22:23:26 -0700600 unsigned long long nsecs;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300601 int printed = 0;
David Ahernc70c94b2011-03-09 22:23:25 -0700602
David Ahern745f43e2011-03-09 22:23:26 -0700603 if (PRINT_FIELD(COMM)) {
604 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300605 printed += fprintf(fp, "%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600606 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300607 printed += fprintf(fp, "%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700608 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300609 printed += fprintf(fp, "%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700610 }
David Ahernc70c94b2011-03-09 22:23:25 -0700611
David Ahern745f43e2011-03-09 22:23:26 -0700612 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300613 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
David Ahern745f43e2011-03-09 22:23:26 -0700614 else if (PRINT_FIELD(PID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300615 printed += fprintf(fp, "%5d ", sample->pid);
David Ahern745f43e2011-03-09 22:23:26 -0700616 else if (PRINT_FIELD(TID))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300617 printed += fprintf(fp, "%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700618
David Ahern745f43e2011-03-09 22:23:26 -0700619 if (PRINT_FIELD(CPU)) {
620 if (latency_format)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300621 printed += fprintf(fp, "%3d ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700622 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300623 printed += fprintf(fp, "[%03d] ", sample->cpu);
David Ahern745f43e2011-03-09 22:23:26 -0700624 }
David Ahernc70c94b2011-03-09 22:23:25 -0700625
David Ahern745f43e2011-03-09 22:23:26 -0700626 if (PRINT_FIELD(TIME)) {
627 nsecs = sample->time;
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -0300628 secs = nsecs / NSEC_PER_SEC;
629 nsecs -= secs * NSEC_PER_SEC;
Namhyung Kim99620a52016-10-24 11:02:45 +0900630
Adrian Hunter83e19862015-09-25 16:15:36 +0300631 if (nanosecs)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300632 printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
Namhyung Kim99620a52016-10-24 11:02:45 +0900633 else {
634 char sample_time[32];
635 timestamp__scnprintf_usec(sample->time, sample_time, sizeof(sample_time));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300636 printed += fprintf(fp, "%12s: ", sample_time);
Namhyung Kim99620a52016-10-24 11:02:45 +0900637 }
David Ahern745f43e2011-03-09 22:23:26 -0700638 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300639
640 return printed;
David Ahernc70c94b2011-03-09 22:23:25 -0700641}
642
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200643static inline char
644mispred_str(struct branch_entry *br)
645{
646 if (!(br->flags.mispred || br->flags.predicted))
647 return '-';
648
649 return br->flags.predicted ? 'P' : 'M';
650}
651
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300652static int perf_sample__fprintf_brstack(struct perf_sample *sample,
653 struct thread *thread,
654 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200655{
656 struct branch_stack *br = sample->branch_stack;
Mark Santaniello55b9b502017-06-19 09:38:24 -0700657 struct addr_location alf, alt;
658 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300659 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200660
661 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300662 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200663
664 for (i = 0; i < br->nr; i++) {
Mark Santaniello55b9b502017-06-19 09:38:24 -0700665 from = br->entries[i].from;
666 to = br->entries[i].to;
667
668 if (PRINT_FIELD(DSO)) {
669 memset(&alf, 0, sizeof(alf));
670 memset(&alt, 0, sizeof(alt));
671 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
672 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
673 }
674
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300675 printed += fprintf(fp, " 0x%"PRIx64, from);
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 }
681
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300682 printed += fprintf(fp, "/0x%"PRIx64, to);
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 }
688
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300689 printed += fprintf(fp, "/%c/%c/%c/%d ",
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200690 mispred_str( br->entries + i),
691 br->entries[i].flags.in_tx? 'X' : '-',
692 br->entries[i].flags.abort? 'A' : '-',
693 br->entries[i].flags.cycles);
694 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300695
696 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200697}
698
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300699static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
700 struct thread *thread,
701 struct perf_event_attr *attr, FILE *fp)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200702{
703 struct branch_stack *br = sample->branch_stack;
704 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200705 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300706 int printed = 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200707
708 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300709 return 0;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200710
711 for (i = 0; i < br->nr; i++) {
712
713 memset(&alf, 0, sizeof(alf));
714 memset(&alt, 0, sizeof(alt));
715 from = br->entries[i].from;
716 to = br->entries[i].to;
717
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300718 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200719 if (alf.map)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300720 alf.sym = map__find_symbol(alf.map, alf.addr);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200721
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300722 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200723 if (alt.map)
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300724 alt.sym = map__find_symbol(alt.map, alt.addr);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200725
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300726 printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700727 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300728 printed += fprintf(fp, "(");
729 printed += map__fprintf_dsoname(alf.map, fp);
730 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700731 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300732 printed += fprintf(fp, "%c", '/');
733 printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
Mark Santaniello55b9b502017-06-19 09:38:24 -0700734 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300735 printed += fprintf(fp, "(");
736 printed += map__fprintf_dsoname(alt.map, fp);
737 printed += fprintf(fp, ")");
Mark Santaniello55b9b502017-06-19 09:38:24 -0700738 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300739 printed += fprintf(fp, "/%c/%c/%c/%d ",
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200740 mispred_str( br->entries + i),
741 br->entries[i].flags.in_tx? 'X' : '-',
742 br->entries[i].flags.abort? 'A' : '-',
743 br->entries[i].flags.cycles);
744 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300745
746 return printed;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200747}
748
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300749static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
750 struct thread *thread,
751 struct perf_event_attr *attr, FILE *fp)
Mark Santaniello106dacd2017-06-19 09:38:25 -0700752{
753 struct branch_stack *br = sample->branch_stack;
754 struct addr_location alf, alt;
755 u64 i, from, to;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300756 int printed = 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700757
758 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300759 return 0;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700760
761 for (i = 0; i < br->nr; i++) {
762
763 memset(&alf, 0, sizeof(alf));
764 memset(&alt, 0, sizeof(alt));
765 from = br->entries[i].from;
766 to = br->entries[i].to;
767
768 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
769 if (alf.map && !alf.map->dso->adjust_symbols)
770 from = map__map_ip(alf.map, from);
771
772 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
773 if (alt.map && !alt.map->dso->adjust_symbols)
774 to = map__map_ip(alt.map, to);
775
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300776 printed += fprintf(fp, " 0x%"PRIx64, from);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700777 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300778 printed += fprintf(fp, "(");
779 printed += map__fprintf_dsoname(alf.map, fp);
780 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700781 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300782 printed += fprintf(fp, "/0x%"PRIx64, to);
Mark Santaniello106dacd2017-06-19 09:38:25 -0700783 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300784 printed += fprintf(fp, "(");
785 printed += map__fprintf_dsoname(alt.map, fp);
786 printed += fprintf(fp, ")");
Mark Santaniello106dacd2017-06-19 09:38:25 -0700787 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300788 printed += fprintf(fp, "/%c/%c/%c/%d ",
Mark Santaniello106dacd2017-06-19 09:38:25 -0700789 mispred_str(br->entries + i),
790 br->entries[i].flags.in_tx ? 'X' : '-',
791 br->entries[i].flags.abort ? 'A' : '-',
792 br->entries[i].flags.cycles);
793 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300794
795 return printed;
Mark Santaniello106dacd2017-06-19 09:38:25 -0700796}
Andi Kleen48d02a12017-02-23 15:46:34 -0800797#define MAXBB 16384UL
798
799static int grab_bb(u8 *buffer, u64 start, u64 end,
800 struct machine *machine, struct thread *thread,
801 bool *is64bit, u8 *cpumode, bool last)
802{
803 long offset, len;
804 struct addr_location al;
805 bool kernel;
806
807 if (!start || !end)
808 return 0;
809
810 kernel = machine__kernel_ip(machine, start);
811 if (kernel)
812 *cpumode = PERF_RECORD_MISC_KERNEL;
813 else
814 *cpumode = PERF_RECORD_MISC_USER;
815
816 /*
817 * Block overlaps between kernel and user.
818 * This can happen due to ring filtering
819 * On Intel CPUs the entry into the kernel is filtered,
820 * but the exit is not. Let the caller patch it up.
821 */
822 if (kernel != machine__kernel_ip(machine, end)) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300823 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800824 return -ENXIO;
825 }
826
827 memset(&al, 0, sizeof(al));
828 if (end - start > MAXBB - MAXINSN) {
829 if (last)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300830 pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800831 else
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300832 pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
Andi Kleen48d02a12017-02-23 15:46:34 -0800833 return 0;
834 }
835
836 thread__find_addr_map(thread, *cpumode, MAP__FUNCTION, start, &al);
837 if (!al.map || !al.map->dso) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300838 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800839 return 0;
840 }
841 if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300842 pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
Andi Kleen48d02a12017-02-23 15:46:34 -0800843 return 0;
844 }
845
846 /* Load maps to ensure dso->is_64_bit has been updated */
847 map__load(al.map);
848
849 offset = al.map->map_ip(al.map, start);
850 len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
851 end - start + MAXINSN);
852
853 *is64bit = al.map->dso->is_64_bit;
854 if (len <= 0)
Arnaldo Carvalho de Melo5ce2c5b2017-10-26 09:55:22 -0300855 pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
Andi Kleen48d02a12017-02-23 15:46:34 -0800856 start, end);
857 return len;
858}
859
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300860static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
861 struct perf_insn *x, u8 *inbuf, int len,
862 int insn, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800863{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300864 int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
865 dump_insn(x, ip, inbuf, len, NULL),
866 en->flags.predicted ? " PRED" : "",
867 en->flags.mispred ? " MISPRED" : "",
868 en->flags.in_tx ? " INTX" : "",
869 en->flags.abort ? " ABORT" : "");
Andi Kleen48d02a12017-02-23 15:46:34 -0800870 if (en->flags.cycles) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300871 printed += fprintf(fp, " %d cycles", en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -0800872 if (insn)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300873 printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
Andi Kleen48d02a12017-02-23 15:46:34 -0800874 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300875 return printed + fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -0800876}
877
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300878static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
879 u8 cpumode, int cpu, struct symbol **lastsym,
880 struct perf_event_attr *attr, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800881{
882 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300883 int off, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800884
885 memset(&al, 0, sizeof(al));
886
887 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, addr, &al);
888 if (!al.map)
889 thread__find_addr_map(thread, cpumode, MAP__VARIABLE,
890 addr, &al);
891 if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300892 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800893
894 al.cpu = cpu;
895 al.sym = NULL;
896 if (al.map)
897 al.sym = map__find_symbol(al.map, al.addr);
898
899 if (!al.sym)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300900 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800901
902 if (al.addr < al.sym->end)
903 off = al.addr - al.sym->start;
904 else
905 off = al.addr - al.map->start - al.sym->start;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300906 printed += fprintf(fp, "\t%s", al.sym->name);
Andi Kleen48d02a12017-02-23 15:46:34 -0800907 if (off)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300908 printed += fprintf(fp, "%+d", off);
909 printed += fprintf(fp, ":");
Andi Kleen48d02a12017-02-23 15:46:34 -0800910 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300911 printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
912 printed += fprintf(fp, "\n");
Andi Kleen48d02a12017-02-23 15:46:34 -0800913 *lastsym = al.sym;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300914
915 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -0800916}
917
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300918static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
919 struct thread *thread,
920 struct perf_event_attr *attr,
921 struct machine *machine, FILE *fp)
Andi Kleen48d02a12017-02-23 15:46:34 -0800922{
923 struct branch_stack *br = sample->branch_stack;
924 u64 start, end;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300925 int i, insn, len, nr, ilen, printed = 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800926 struct perf_insn x;
927 u8 buffer[MAXBB];
928 unsigned off;
929 struct symbol *lastsym = NULL;
930
931 if (!(br && br->nr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300932 return 0;
Andi Kleen48d02a12017-02-23 15:46:34 -0800933 nr = br->nr;
934 if (max_blocks && nr > max_blocks + 1)
935 nr = max_blocks + 1;
936
937 x.thread = thread;
938 x.cpu = sample->cpu;
939
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300940 printed += fprintf(fp, "%c", '\n');
Andi Kleen48d02a12017-02-23 15:46:34 -0800941
942 /* Handle first from jump, of which we don't know the entry. */
943 len = grab_bb(buffer, br->entries[nr-1].from,
944 br->entries[nr-1].from,
945 machine, thread, &x.is64bit, &x.cpumode, false);
946 if (len > 0) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300947 printed += ip__fprintf_sym(br->entries[nr - 1].from, thread,
948 x.cpumode, x.cpu, &lastsym, attr, fp);
949 printed += ip__fprintf_jump(br->entries[nr - 1].from, &br->entries[nr - 1],
950 &x, buffer, len, 0, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800951 }
952
953 /* Print all blocks */
954 for (i = nr - 2; i >= 0; i--) {
955 if (br->entries[i].from || br->entries[i].to)
956 pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
957 br->entries[i].from,
958 br->entries[i].to);
959 start = br->entries[i + 1].to;
960 end = br->entries[i].from;
961
962 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
963 /* Patch up missing kernel transfers due to ring filters */
964 if (len == -ENXIO && i > 0) {
965 end = br->entries[--i].from;
966 pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
967 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
968 }
969 if (len <= 0)
970 continue;
971
972 insn = 0;
973 for (off = 0;; off += ilen) {
974 uint64_t ip = start + off;
975
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300976 printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800977 if (ip == end) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300978 printed += ip__fprintf_jump(ip, &br->entries[i], &x, buffer + off, len - off, insn, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -0800979 break;
980 } else {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300981 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
982 dump_insn(&x, ip, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -0800983 if (ilen == 0)
984 break;
985 insn++;
986 }
987 }
988 }
989
990 /*
991 * Hit the branch? In this case we are already done, and the target
992 * has not been executed yet.
993 */
994 if (br->entries[0].from == sample->ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300995 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800996 if (br->entries[0].flags.abort)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -0300997 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -0800998
999 /*
1000 * Print final block upto sample
1001 */
1002 start = br->entries[0].to;
1003 end = sample->ip;
1004 len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001005 printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
Andi Kleen48d02a12017-02-23 15:46:34 -08001006 if (len <= 0) {
1007 /* Print at least last IP if basic block did not work */
1008 len = grab_bb(buffer, sample->ip, sample->ip,
1009 machine, thread, &x.is64bit, &x.cpumode, false);
1010 if (len <= 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001011 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001012
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001013 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
Andi Kleen48d02a12017-02-23 15:46:34 -08001014 dump_insn(&x, sample->ip, buffer, len, NULL));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001015 goto out;
Andi Kleen48d02a12017-02-23 15:46:34 -08001016 }
1017 for (off = 0; off <= end - start; off += ilen) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001018 printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
1019 dump_insn(&x, start + off, buffer + off, len - off, &ilen));
Andi Kleen48d02a12017-02-23 15:46:34 -08001020 if (ilen == 0)
1021 break;
1022 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001023out:
1024 return printed;
Andi Kleen48d02a12017-02-23 15:46:34 -08001025}
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001026
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001027static int perf_sample__fprintf_addr(struct perf_sample *sample,
1028 struct thread *thread,
1029 struct perf_event_attr *attr, FILE *fp)
David Ahern7cec0922011-05-30 13:08:23 -06001030{
1031 struct addr_location al;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001032 int printed = fprintf(fp, "%16" PRIx64, sample->addr);
David Ahern7cec0922011-05-30 13:08:23 -06001033
1034 if (!sample_addr_correlates_sym(attr))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001035 goto out;
David Ahern7cec0922011-05-30 13:08:23 -06001036
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -03001037 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -06001038
1039 if (PRINT_FIELD(SYM)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001040 printed += fprintf(fp, " ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001041 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001042 printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001043 else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001044 printed += symbol__fprintf_symname(al.sym, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001045 }
1046
1047 if (PRINT_FIELD(DSO)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001048 printed += fprintf(fp, " (");
1049 printed += map__fprintf_dsoname(al.map, fp);
1050 printed += fprintf(fp, ")");
David Ahern7cec0922011-05-30 13:08:23 -06001051 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001052out:
1053 return printed;
David Ahern7cec0922011-05-30 13:08:23 -06001054}
1055
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001056static int perf_sample__fprintf_callindent(struct perf_sample *sample,
1057 struct perf_evsel *evsel,
1058 struct thread *thread,
1059 struct addr_location *al, FILE *fp)
Adrian Huntere2167082016-06-23 16:40:58 +03001060{
1061 struct perf_event_attr *attr = &evsel->attr;
1062 size_t depth = thread_stack__depth(thread);
1063 struct addr_location addr_al;
1064 const char *name = NULL;
1065 static int spacing;
1066 int len = 0;
1067 u64 ip = 0;
1068
1069 /*
1070 * The 'return' has already been popped off the stack so the depth has
1071 * to be adjusted to match the 'call'.
1072 */
1073 if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
1074 depth += 1;
1075
1076 if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
1077 if (sample_addr_correlates_sym(attr)) {
1078 thread__resolve(thread, &addr_al, sample);
1079 if (addr_al.sym)
1080 name = addr_al.sym->name;
1081 else
1082 ip = sample->addr;
1083 } else {
1084 ip = sample->addr;
1085 }
1086 } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
1087 if (al->sym)
1088 name = al->sym->name;
1089 else
1090 ip = sample->ip;
1091 }
1092
1093 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001094 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
Adrian Huntere2167082016-06-23 16:40:58 +03001095 else if (ip)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001096 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
Adrian Huntere2167082016-06-23 16:40:58 +03001097
1098 if (len < 0)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001099 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001100
1101 /*
1102 * Try to keep the output length from changing frequently so that the
1103 * output lines up more nicely.
1104 */
1105 if (len > spacing || (len && len < spacing - 52))
1106 spacing = round_up(len + 4, 32);
1107
1108 if (len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001109 len += fprintf(fp, "%*s", spacing - len, "");
1110
1111 return len;
Adrian Huntere2167082016-06-23 16:40:58 +03001112}
1113
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001114static int perf_sample__fprintf_insn(struct perf_sample *sample,
1115 struct perf_event_attr *attr,
1116 struct thread *thread,
1117 struct machine *machine, FILE *fp)
Andi Kleen224e2c92016-10-07 16:42:27 +03001118{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001119 int printed = 0;
1120
Andi Kleen224e2c92016-10-07 16:42:27 +03001121 if (PRINT_FIELD(INSNLEN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001122 printed += fprintf(fp, " ilen: %d", sample->insn_len);
Andi Kleen224e2c92016-10-07 16:42:27 +03001123 if (PRINT_FIELD(INSN)) {
1124 int i;
1125
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001126 printed += fprintf(fp, " insn:");
Andi Kleen224e2c92016-10-07 16:42:27 +03001127 for (i = 0; i < sample->insn_len; i++)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001128 printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
Andi Kleen224e2c92016-10-07 16:42:27 +03001129 }
Andi Kleen48d02a12017-02-23 15:46:34 -08001130 if (PRINT_FIELD(BRSTACKINSN))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001131 printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
1132
1133 return printed;
Andi Kleen224e2c92016-10-07 16:42:27 +03001134}
1135
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001136static int perf_sample__fprintf_bts(struct perf_sample *sample,
1137 struct perf_evsel *evsel,
1138 struct thread *thread,
1139 struct addr_location *al,
1140 struct machine *machine, FILE *fp)
Akihiro Nagai95582592012-01-30 13:43:09 +09001141{
1142 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001143 unsigned int type = output_type(attr->type);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001144 bool print_srcline_last = false;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001145 int printed = 0;
Akihiro Nagai95582592012-01-30 13:43:09 +09001146
Adrian Huntere2167082016-06-23 16:40:58 +03001147 if (PRINT_FIELD(CALLINDENT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001148 printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
Adrian Huntere2167082016-06-23 16:40:58 +03001149
Akihiro Nagai95582592012-01-30 13:43:09 +09001150 /* print branch_from information */
1151 if (PRINT_FIELD(IP)) {
Adrian Hunter14057202017-06-21 13:17:19 +03001152 unsigned int print_opts = output[type].print_ip_opts;
Chris Phlipote557b672016-04-19 19:32:11 -07001153 struct callchain_cursor *cursor = NULL;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001154
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001155 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001156 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001157 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001158 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001159
1160 if (cursor == NULL) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001161 printed += fprintf(fp, " ");
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001162 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001163 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -03001164 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001165 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001166 } else
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001167 printed += fprintf(fp, "\n");
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001168
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001169 printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001170 }
1171
Akihiro Nagai95582592012-01-30 13:43:09 +09001172 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +03001173 if (PRINT_FIELD(ADDR) ||
1174 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter14057202017-06-21 13:17:19 +03001175 !output[type].user_set)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001176 printed += fprintf(fp, " => ");
1177 printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
Adrian Hunter578bea42014-07-22 16:17:16 +03001178 }
Akihiro Nagai95582592012-01-30 13:43:09 +09001179
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001180 if (print_srcline_last)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001181 printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
Adrian Hunter8066be5f2014-07-22 16:17:15 +03001182
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001183 printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
1184 return printed + fprintf(fp, "\n");
Akihiro Nagai95582592012-01-30 13:43:09 +09001185}
1186
Adrian Hunter055cd332016-06-23 16:40:56 +03001187static struct {
1188 u32 flags;
1189 const char *name;
1190} sample_flags[] = {
1191 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
1192 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
1193 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
1194 {PERF_IP_FLAG_BRANCH, "jmp"},
1195 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
1196 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
1197 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
1198 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
1199 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
1200 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
1201 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
1202 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
1203 {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
1204 {0, NULL}
1205};
1206
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001207static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001208{
1209 const char *chars = PERF_IP_FLAG_CHARS;
1210 const int n = strlen(PERF_IP_FLAG_CHARS);
Adrian Hunter055cd332016-06-23 16:40:56 +03001211 bool in_tx = flags & PERF_IP_FLAG_IN_TX;
1212 const char *name = NULL;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001213 char str[33];
1214 int i, pos = 0;
1215
Adrian Hunter055cd332016-06-23 16:40:56 +03001216 for (i = 0; sample_flags[i].name ; i++) {
1217 if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
1218 name = sample_flags[i].name;
1219 break;
1220 }
1221 }
1222
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001223 for (i = 0; i < n; i++, flags >>= 1) {
1224 if (flags & 1)
1225 str[pos++] = chars[i];
1226 }
1227 for (; i < 32; i++, flags >>= 1) {
1228 if (flags & 1)
1229 str[pos++] = '?';
1230 }
1231 str[pos] = 0;
Adrian Hunter055cd332016-06-23 16:40:56 +03001232
1233 if (name)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001234 return fprintf(fp, " %-7s%4s ", name, in_tx ? "(x)" : "");
1235
1236 return fprintf(fp, " %-11s ", str);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001237}
1238
Wang Nan30372f02016-02-24 11:20:45 +00001239struct printer_data {
1240 int line_no;
1241 bool hit_nul;
1242 bool is_printable;
1243};
1244
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001245static int sample__fprintf_bpf_output(enum binary_printer_ops op,
1246 unsigned int val,
1247 void *extra, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001248{
1249 unsigned char ch = (unsigned char)val;
1250 struct printer_data *printer_data = extra;
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001251 int printed = 0;
Wang Nan30372f02016-02-24 11:20:45 +00001252
1253 switch (op) {
1254 case BINARY_PRINT_DATA_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001255 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001256 break;
1257 case BINARY_PRINT_LINE_BEGIN:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001258 printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
Wang Nan30372f02016-02-24 11:20:45 +00001259 " ");
1260 break;
1261 case BINARY_PRINT_ADDR:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001262 printed += fprintf(fp, " %04x:", val);
Wang Nan30372f02016-02-24 11:20:45 +00001263 break;
1264 case BINARY_PRINT_NUM_DATA:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001265 printed += fprintf(fp, " %02x", val);
Wang Nan30372f02016-02-24 11:20:45 +00001266 break;
1267 case BINARY_PRINT_NUM_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001268 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001269 break;
1270 case BINARY_PRINT_SEP:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001271 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001272 break;
1273 case BINARY_PRINT_CHAR_DATA:
1274 if (printer_data->hit_nul && ch)
1275 printer_data->is_printable = false;
1276
1277 if (!isprint(ch)) {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001278 printed += fprintf(fp, "%c", '.');
Wang Nan30372f02016-02-24 11:20:45 +00001279
1280 if (!printer_data->is_printable)
1281 break;
1282
1283 if (ch == '\0')
1284 printer_data->hit_nul = true;
1285 else
1286 printer_data->is_printable = false;
1287 } else {
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001288 printed += fprintf(fp, "%c", ch);
Wang Nan30372f02016-02-24 11:20:45 +00001289 }
1290 break;
1291 case BINARY_PRINT_CHAR_PAD:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001292 printed += fprintf(fp, " ");
Wang Nan30372f02016-02-24 11:20:45 +00001293 break;
1294 case BINARY_PRINT_LINE_END:
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001295 printed += fprintf(fp, "\n");
Wang Nan30372f02016-02-24 11:20:45 +00001296 printer_data->line_no++;
1297 break;
1298 case BINARY_PRINT_DATA_END:
1299 default:
1300 break;
1301 }
Arnaldo Carvalho de Melo923d0c92017-10-17 10:35:00 -03001302
1303 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001304}
1305
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001306static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
Wang Nan30372f02016-02-24 11:20:45 +00001307{
1308 unsigned int nr_bytes = sample->raw_size;
1309 struct printer_data printer_data = {0, false, true};
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001310 int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
1311 sample__fprintf_bpf_output, &printer_data, fp);
Wang Nan30372f02016-02-24 11:20:45 +00001312
1313 if (printer_data.is_printable && printer_data.hit_nul)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001314 printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
1315
1316 return printed;
Wang Nan30372f02016-02-24 11:20:45 +00001317}
1318
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001319static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001320{
1321 if (len > 0 && len < spacing)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001322 return fprintf(fp, "%*s", spacing - len, "");
1323
1324 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001325}
1326
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001327static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001328{
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001329 return perf_sample__fprintf_spacing(len, 34, 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_ptwrite(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001333{
1334 struct perf_synth_intel_ptwrite *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, " IP: %u payload: %#" PRIx64 " ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001341 data->ip, le64_to_cpu(data->payload));
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001342 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001343}
1344
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001345static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001346{
1347 struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
1348 int len;
1349
1350 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001351 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001352
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001353 len = fprintf(fp, " hints: %#x extensions: %#x ",
1354 data->hints, data->extensions);
1355 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001356}
1357
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001358static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001359{
1360 struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
1361 int len;
1362
1363 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001364 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001365
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001366 len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
1367 data->hw, data->cstate, data->subcstate);
1368 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001369}
1370
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001371static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001372{
1373 struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
1374 int len;
1375
1376 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001377 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001378
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001379 len = fprintf(fp, " IP: %u ", data->ip);
1380 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001381}
1382
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001383static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001384{
1385 struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
1386 int len;
1387
1388 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001389 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001390
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001391 len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
Adrian Hunter65c5e182017-06-30 11:36:42 +03001392 data->deepest_cstate, data->last_cstate,
1393 data->wake_reason);
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001394 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001395}
1396
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001397static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
Adrian Hunter65c5e182017-06-30 11:36:42 +03001398{
1399 struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
1400 unsigned int percent, freq;
1401 int len;
1402
1403 if (perf_sample__bad_synth_size(sample, *data))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001404 return 0;
Adrian Hunter65c5e182017-06-30 11:36:42 +03001405
1406 freq = (le32_to_cpu(data->freq) + 500) / 1000;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001407 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001408 if (data->max_nonturbo) {
1409 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001410 len += fprintf(fp, "(%3u%%) ", percent);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001411 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001412 return len + perf_sample__fprintf_pt_spacing(len, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001413}
1414
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001415static int perf_sample__fprintf_synth(struct perf_sample *sample,
1416 struct perf_evsel *evsel, FILE *fp)
Adrian Hunter47e78082017-05-26 11:17:22 +03001417{
1418 switch (evsel->attr.config) {
Adrian Hunter65c5e182017-06-30 11:36:42 +03001419 case PERF_SYNTH_INTEL_PTWRITE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001420 return perf_sample__fprintf_synth_ptwrite(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001421 case PERF_SYNTH_INTEL_MWAIT:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001422 return perf_sample__fprintf_synth_mwait(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001423 case PERF_SYNTH_INTEL_PWRE:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001424 return perf_sample__fprintf_synth_pwre(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001425 case PERF_SYNTH_INTEL_EXSTOP:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001426 return perf_sample__fprintf_synth_exstop(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001427 case PERF_SYNTH_INTEL_PWRX:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001428 return perf_sample__fprintf_synth_pwrx(sample, fp);
Adrian Hunter65c5e182017-06-30 11:36:42 +03001429 case PERF_SYNTH_INTEL_CBR:
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001430 return perf_sample__fprintf_synth_cbr(sample, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001431 default:
1432 break;
1433 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001434
1435 return 0;
Adrian Hunter47e78082017-05-26 11:17:22 +03001436}
1437
Jiri Olsa809e9422015-11-26 18:55:21 +01001438struct perf_script {
1439 struct perf_tool tool;
1440 struct perf_session *session;
1441 bool show_task_events;
1442 bool show_mmap_events;
1443 bool show_switch_events;
Hari Bathini96a44bb2017-03-08 02:12:06 +05301444 bool show_namespace_events;
Jiri Olsacfc88742016-01-05 22:09:06 +01001445 bool allocated;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03001446 bool per_event_dump;
Jiri Olsacfc88742016-01-05 22:09:06 +01001447 struct cpu_map *cpus;
1448 struct thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001449 int name_width;
David Aherna91f4c42016-11-29 10:15:43 -07001450 const char *time_str;
1451 struct perf_time_interval ptime;
Jiri Olsa809e9422015-11-26 18:55:21 +01001452};
1453
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001454static int perf_evlist__max_name_len(struct perf_evlist *evlist)
1455{
1456 struct perf_evsel *evsel;
1457 int max = 0;
1458
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001459 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001460 int len = strlen(perf_evsel__name(evsel));
1461
1462 max = MAX(len, max);
1463 }
1464
1465 return max;
1466}
1467
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001468static int data_src__fprintf(u64 data_src, FILE *fp)
Jiri Olsac19ac912016-02-24 09:46:54 +01001469{
1470 struct mem_info mi = { .data_src.val = data_src };
1471 char decode[100];
1472 char out[100];
1473 static int maxlen;
1474 int len;
1475
1476 perf_script__meminfo_scnprintf(decode, 100, &mi);
1477
1478 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
1479 if (maxlen < len)
1480 maxlen = len;
1481
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001482 return fprintf(fp, "%-*s", maxlen, out);
Jiri Olsac19ac912016-02-24 09:46:54 +01001483}
1484
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001485struct metric_ctx {
1486 struct perf_sample *sample;
1487 struct thread *thread;
1488 struct perf_evsel *evsel;
1489 FILE *fp;
1490};
1491
1492static void script_print_metric(void *ctx, const char *color,
1493 const char *fmt,
1494 const char *unit, double val)
1495{
1496 struct metric_ctx *mctx = ctx;
1497
1498 if (!fmt)
1499 return;
1500 perf_sample__fprintf_start(mctx->sample, mctx->thread, mctx->evsel,
1501 mctx->fp);
1502 fputs("\tmetric: ", mctx->fp);
1503 if (color)
1504 color_fprintf(mctx->fp, color, fmt, val);
1505 else
1506 printf(fmt, val);
1507 fprintf(mctx->fp, " %s\n", unit);
1508}
1509
1510static void script_new_line(void *ctx)
1511{
1512 struct metric_ctx *mctx = ctx;
1513
1514 perf_sample__fprintf_start(mctx->sample, mctx->thread, mctx->evsel,
1515 mctx->fp);
1516 fputs("\tmetric: ", mctx->fp);
1517}
1518
1519static void perf_sample__fprint_metric(struct perf_script *script,
1520 struct thread *thread,
1521 struct perf_evsel *evsel,
1522 struct perf_sample *sample,
1523 FILE *fp)
1524{
1525 struct perf_stat_output_ctx ctx = {
1526 .print_metric = script_print_metric,
1527 .new_line = script_new_line,
1528 .ctx = &(struct metric_ctx) {
1529 .sample = sample,
1530 .thread = thread,
1531 .evsel = evsel,
1532 .fp = fp,
1533 },
1534 .force_header = false,
1535 };
1536 struct perf_evsel *ev2;
1537 static bool init;
1538 u64 val;
1539
1540 if (!init) {
1541 perf_stat__init_shadow_stats();
1542 init = true;
1543 }
1544 if (!evsel->stats)
1545 perf_evlist__alloc_stats(script->session->evlist, false);
1546 if (evsel_script(evsel->leader)->gnum++ == 0)
1547 perf_stat__reset_shadow_stats();
1548 val = sample->period * evsel->scale;
1549 perf_stat__update_shadow_stats(evsel,
1550 val,
Jin Yao1fcd0392017-12-05 22:03:04 +08001551 sample->cpu,
1552 &rt_stat);
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001553 evsel_script(evsel)->val = val;
1554 if (evsel_script(evsel->leader)->gnum == evsel->leader->nr_members) {
1555 for_each_group_member (ev2, evsel->leader) {
1556 perf_stat__print_shadow_stats(ev2,
1557 evsel_script(ev2)->val,
1558 sample->cpu,
1559 &ctx,
1560 NULL);
1561 }
1562 evsel_script(evsel->leader)->gnum = 0;
1563 }
1564}
1565
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -03001566static void process_event(struct perf_script *script,
Jiri Olsa809e9422015-11-26 18:55:21 +01001567 struct perf_sample *sample, struct perf_evsel *evsel,
Andi Kleen48d02a12017-02-23 15:46:34 -08001568 struct addr_location *al,
1569 struct machine *machine)
David Ahernbe6d8422011-03-09 22:23:23 -07001570{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -03001571 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001572 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter14057202017-06-21 13:17:19 +03001573 unsigned int type = output_type(attr->type);
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001574 struct perf_evsel_script *es = evsel->priv;
1575 FILE *fp = es->fp;
David Ahern1424dc92011-03-09 22:23:28 -07001576
Adrian Hunter14057202017-06-21 13:17:19 +03001577 if (output[type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -07001578 return;
1579
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03001580 ++es->samples;
1581
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001582 perf_sample__fprintf_start(sample, thread, evsel, fp);
David Ahern745f43e2011-03-09 22:23:26 -07001583
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001584 if (PRINT_FIELD(PERIOD))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001585 fprintf(fp, "%10" PRIu64 " ", sample->period);
Jiri Olsa535aeaae2014-08-25 16:45:42 +02001586
Namhyung Kime944d3d2013-11-18 14:34:52 +09001587 if (PRINT_FIELD(EVNAME)) {
1588 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +01001589
1590 if (!script->name_width)
1591 script->name_width = perf_evlist__max_name_len(script->session->evlist);
1592
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001593 fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +09001594 }
1595
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001596 if (print_flags)
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001597 perf_sample__fprintf_flags(sample->flags, fp);
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001598
Akihiro Nagai95582592012-01-30 13:43:09 +09001599 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001600 perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
Akihiro Nagai95582592012-01-30 13:43:09 +09001601 return;
1602 }
1603
Arnaldo Carvalho de Melo894f3f12017-10-26 10:26:52 -03001604 if (PRINT_FIELD(TRACE)) {
1605 event_format__fprintf(evsel->tp_format, sample->cpu,
1606 sample->raw_data, sample->raw_size, fp);
1607 }
Adrian Hunter47e78082017-05-26 11:17:22 +03001608
1609 if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001610 perf_sample__fprintf_synth(sample, evsel, fp);
Adrian Hunter47e78082017-05-26 11:17:22 +03001611
David Ahern7cec0922011-05-30 13:08:23 -06001612 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001613 perf_sample__fprintf_addr(sample, thread, attr, fp);
David Ahern7cec0922011-05-30 13:08:23 -06001614
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001615 if (PRINT_FIELD(DATA_SRC))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001616 data_src__fprintf(sample->data_src, fp);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001617
1618 if (PRINT_FIELD(WEIGHT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001619 fprintf(fp, "%16" PRIu64, sample->weight);
Jiri Olsa94ddddf2016-02-15 09:34:51 +01001620
David Ahern787bef12011-05-27 14:28:43 -06001621 if (PRINT_FIELD(IP)) {
Chris Phlipote557b672016-04-19 19:32:11 -07001622 struct callchain_cursor *cursor = NULL;
David Aherna6ffaf92013-08-07 22:50:51 -04001623
Arnaldo Carvalho de Melo92231522016-04-18 11:31:46 -03001624 if (symbol_conf.use_callchain && sample->callchain &&
Chris Phlipote557b672016-04-19 19:32:11 -07001625 thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001626 sample, NULL, NULL, scripting_max_stack) == 0)
Chris Phlipote557b672016-04-19 19:32:11 -07001627 cursor = &callchain_cursor;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -03001628
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001629 fputc(cursor ? '\n' : ' ', fp);
1630 sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor, fp);
David Ahernc0230b22011-03-09 22:23:27 -07001631 }
1632
Stephane Eranianfc36f942015-08-31 18:41:10 +02001633 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001634 perf_sample__fprintf_iregs(sample, attr, fp);
Stephane Eranianfc36f942015-08-31 18:41:10 +02001635
Andi Kleenb1491ac2017-09-05 11:40:57 -07001636 if (PRINT_FIELD(UREGS))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001637 perf_sample__fprintf_uregs(sample, attr, fp);
Andi Kleenb1491ac2017-09-05 11:40:57 -07001638
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001639 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001640 perf_sample__fprintf_brstack(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001641 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001642 perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
Mark Santaniello106dacd2017-06-19 09:38:25 -07001643 else if (PRINT_FIELD(BRSTACKOFF))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001644 perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
Stephane Eraniandc323ce2015-08-31 18:41:13 +02001645
Wang Nan30372f02016-02-24 11:20:45 +00001646 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001647 perf_sample__fprintf_bpf_output(sample, fp);
1648 perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
Kan Liang49d58f02017-08-29 13:11:11 -04001649
1650 if (PRINT_FIELD(PHYS_ADDR))
Arnaldo Carvalho de Melo69c71252017-10-26 09:51:13 -03001651 fprintf(fp, "%16" PRIx64, sample->phys_addr);
1652 fprintf(fp, "\n");
Andi Kleen4bd1bef2017-11-17 13:43:00 -08001653
1654 if (PRINT_FIELD(METRIC))
1655 perf_sample__fprint_metric(script, thread, evsel, sample, fp);
David Ahernbe6d8422011-03-09 22:23:23 -07001656}
1657
Tom Zanussi956ffd02009-11-25 01:15:46 -06001658static struct scripting_ops *scripting_ops;
1659
Jiri Olsa36e33c52016-01-06 11:49:56 +01001660static void __process_stat(struct perf_evsel *counter, u64 tstamp)
1661{
1662 int nthreads = thread_map__nr(counter->threads);
1663 int ncpus = perf_evsel__nr_cpus(counter);
1664 int cpu, thread;
1665 static int header_printed;
1666
1667 if (counter->system_wide)
1668 nthreads = 1;
1669
1670 if (!header_printed) {
1671 printf("%3s %8s %15s %15s %15s %15s %s\n",
1672 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
1673 header_printed = 1;
1674 }
1675
1676 for (thread = 0; thread < nthreads; thread++) {
1677 for (cpu = 0; cpu < ncpus; cpu++) {
1678 struct perf_counts_values *counts;
1679
1680 counts = perf_counts(counter->counts, cpu, thread);
1681
1682 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
1683 counter->cpus->map[cpu],
1684 thread_map__pid(counter->threads, thread),
1685 counts->val,
1686 counts->ena,
1687 counts->run,
1688 tstamp,
1689 perf_evsel__name(counter));
1690 }
1691 }
1692}
1693
Jiri Olsae099eba2016-01-05 22:09:09 +01001694static void process_stat(struct perf_evsel *counter, u64 tstamp)
1695{
1696 if (scripting_ops && scripting_ops->process_stat)
1697 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +01001698 else
1699 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +01001700}
1701
1702static void process_stat_interval(u64 tstamp)
1703{
1704 if (scripting_ops && scripting_ops->process_stat_interval)
1705 scripting_ops->process_stat_interval(tstamp);
1706}
1707
Tom Zanussi956ffd02009-11-25 01:15:46 -06001708static void setup_scripting(void)
1709{
Tom Zanussi16c632d2009-11-25 01:15:48 -06001710 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -06001711 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06001712}
1713
Adrian Hunterd445dd22014-08-15 22:08:37 +03001714static int flush_scripting(void)
1715{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001716 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +03001717}
1718
Tom Zanussi956ffd02009-11-25 01:15:46 -06001719static int cleanup_scripting(void)
1720{
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001721 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -05001722
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001723 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001724}
1725
Jiri Olsa809e9422015-11-26 18:55:21 +01001726static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02001727 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001728 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -03001729 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001730 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001731{
Jiri Olsa809e9422015-11-26 18:55:21 +01001732 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -07001733 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001734
David Aherna91f4c42016-11-29 10:15:43 -07001735 if (perf_time__skip_sample(&scr->ptime, sample->time))
1736 return 0;
1737
David Ahern1424dc92011-03-09 22:23:28 -07001738 if (debug_mode) {
1739 if (sample->time < last_timestamp) {
1740 pr_err("Samples misordered, previous: %" PRIu64
1741 " this: %" PRIu64 "\n", last_timestamp,
1742 sample->time);
1743 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +02001744 }
David Ahern1424dc92011-03-09 22:23:28 -07001745 last_timestamp = sample->time;
1746 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001747 }
Anton Blanchard5d67be92011-07-04 21:57:50 +10001748
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -03001749 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -07001750 pr_err("problem processing %d event, skipping it.\n",
1751 event->header.type);
1752 return -1;
1753 }
1754
1755 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001756 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -07001757
Anton Blanchard5d67be92011-07-04 21:57:50 +10001758 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001759 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001760
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001761 if (scripting_ops)
1762 scripting_ops->process_event(event, sample, evsel, &al);
1763 else
Andi Kleen48d02a12017-02-23 15:46:34 -08001764 process_event(scr, sample, evsel, &al, machine);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +01001765
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001766out_put:
1767 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001768 return 0;
1769}
1770
Adrian Hunter7ea95722013-11-01 15:51:30 +02001771static int process_attr(struct perf_tool *tool, union perf_event *event,
1772 struct perf_evlist **pevlist)
1773{
1774 struct perf_script *scr = container_of(tool, struct perf_script, tool);
1775 struct perf_evlist *evlist;
1776 struct perf_evsel *evsel, *pos;
1777 int err;
1778
1779 err = perf_event__process_attr(tool, event, pevlist);
1780 if (err)
1781 return err;
1782
1783 evlist = *pevlist;
1784 evsel = perf_evlist__last(*pevlist);
1785
Adrian Hunter14057202017-06-21 13:17:19 +03001786 if (evsel->attr.type >= PERF_TYPE_MAX &&
1787 evsel->attr.type != PERF_TYPE_SYNTH)
Adrian Hunter7ea95722013-11-01 15:51:30 +02001788 return 0;
1789
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001790 evlist__for_each_entry(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +02001791 if (pos->attr.type == evsel->attr.type && pos != evsel)
1792 return 0;
1793 }
1794
1795 set_print_ip_opts(&evsel->attr);
1796
Jiri Olsad2b5a312015-10-16 12:41:25 +02001797 if (evsel->attr.sample_type)
1798 err = perf_evsel__check_attr(evsel, scr->session);
1799
1800 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +02001801}
1802
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001803static int process_comm_event(struct perf_tool *tool,
1804 union perf_event *event,
1805 struct perf_sample *sample,
1806 struct machine *machine)
1807{
1808 struct thread *thread;
1809 struct perf_script *script = container_of(tool, struct perf_script, tool);
1810 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001811 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001812 int ret = -1;
1813
1814 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
1815 if (thread == NULL) {
1816 pr_debug("problem processing COMM event, skipping it.\n");
1817 return -1;
1818 }
1819
1820 if (perf_event__process_comm(tool, event, sample, machine) < 0)
1821 goto out;
1822
1823 if (!evsel->attr.sample_id_all) {
1824 sample->cpu = 0;
1825 sample->time = 0;
1826 sample->tid = event->comm.tid;
1827 sample->pid = event->comm.pid;
1828 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001829 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001830 perf_event__fprintf(event, stdout);
1831 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001832out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001833 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001834 return ret;
1835}
1836
Hari Bathini96a44bb2017-03-08 02:12:06 +05301837static int process_namespaces_event(struct perf_tool *tool,
1838 union perf_event *event,
1839 struct perf_sample *sample,
1840 struct machine *machine)
1841{
1842 struct thread *thread;
1843 struct perf_script *script = container_of(tool, struct perf_script, tool);
1844 struct perf_session *session = script->session;
1845 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1846 int ret = -1;
1847
1848 thread = machine__findnew_thread(machine, event->namespaces.pid,
1849 event->namespaces.tid);
1850 if (thread == NULL) {
1851 pr_debug("problem processing NAMESPACES event, skipping it.\n");
1852 return -1;
1853 }
1854
1855 if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
1856 goto out;
1857
1858 if (!evsel->attr.sample_id_all) {
1859 sample->cpu = 0;
1860 sample->time = 0;
1861 sample->tid = event->namespaces.tid;
1862 sample->pid = event->namespaces.pid;
1863 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001864 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Hari Bathini96a44bb2017-03-08 02:12:06 +05301865 perf_event__fprintf(event, stdout);
1866 ret = 0;
1867out:
1868 thread__put(thread);
1869 return ret;
1870}
1871
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001872static int process_fork_event(struct perf_tool *tool,
1873 union perf_event *event,
1874 struct perf_sample *sample,
1875 struct machine *machine)
1876{
1877 struct thread *thread;
1878 struct perf_script *script = container_of(tool, struct perf_script, tool);
1879 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001880 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001881
1882 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1883 return -1;
1884
1885 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1886 if (thread == NULL) {
1887 pr_debug("problem processing FORK event, skipping it.\n");
1888 return -1;
1889 }
1890
1891 if (!evsel->attr.sample_id_all) {
1892 sample->cpu = 0;
1893 sample->time = event->fork.time;
1894 sample->tid = event->fork.tid;
1895 sample->pid = event->fork.pid;
1896 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001897 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001898 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001899 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001900
1901 return 0;
1902}
1903static int process_exit_event(struct perf_tool *tool,
1904 union perf_event *event,
1905 struct perf_sample *sample,
1906 struct machine *machine)
1907{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001908 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001909 struct thread *thread;
1910 struct perf_script *script = container_of(tool, struct perf_script, tool);
1911 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001912 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001913
1914 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1915 if (thread == NULL) {
1916 pr_debug("problem processing EXIT event, skipping it.\n");
1917 return -1;
1918 }
1919
1920 if (!evsel->attr.sample_id_all) {
1921 sample->cpu = 0;
1922 sample->time = 0;
Adrian Hunter53ff6bc2015-08-18 12:07:05 +03001923 sample->tid = event->fork.tid;
1924 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001925 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001926 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001927 perf_event__fprintf(event, stdout);
1928
1929 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001930 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001931
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001932 thread__put(thread);
1933 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001934}
1935
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001936static int process_mmap_event(struct perf_tool *tool,
1937 union perf_event *event,
1938 struct perf_sample *sample,
1939 struct machine *machine)
1940{
1941 struct thread *thread;
1942 struct perf_script *script = container_of(tool, struct perf_script, tool);
1943 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001944 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001945
1946 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1947 return -1;
1948
1949 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1950 if (thread == NULL) {
1951 pr_debug("problem processing MMAP event, skipping it.\n");
1952 return -1;
1953 }
1954
1955 if (!evsel->attr.sample_id_all) {
1956 sample->cpu = 0;
1957 sample->time = 0;
1958 sample->tid = event->mmap.tid;
1959 sample->pid = event->mmap.pid;
1960 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001961 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001962 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001963 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001964 return 0;
1965}
1966
1967static int process_mmap2_event(struct perf_tool *tool,
1968 union perf_event *event,
1969 struct perf_sample *sample,
1970 struct machine *machine)
1971{
1972 struct thread *thread;
1973 struct perf_script *script = container_of(tool, struct perf_script, tool);
1974 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001975 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001976
1977 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1978 return -1;
1979
1980 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1981 if (thread == NULL) {
1982 pr_debug("problem processing MMAP2 event, skipping it.\n");
1983 return -1;
1984 }
1985
1986 if (!evsel->attr.sample_id_all) {
1987 sample->cpu = 0;
1988 sample->time = 0;
1989 sample->tid = event->mmap2.tid;
1990 sample->pid = event->mmap2.pid;
1991 }
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03001992 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001993 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001994 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001995 return 0;
1996}
1997
Adrian Hunter7c148982015-07-21 12:44:06 +03001998static int process_switch_event(struct perf_tool *tool,
1999 union perf_event *event,
2000 struct perf_sample *sample,
2001 struct machine *machine)
2002{
2003 struct thread *thread;
2004 struct perf_script *script = container_of(tool, struct perf_script, tool);
2005 struct perf_session *session = script->session;
2006 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
2007
2008 if (perf_event__process_switch(tool, event, sample, machine) < 0)
2009 return -1;
2010
2011 thread = machine__findnew_thread(machine, sample->pid,
2012 sample->tid);
2013 if (thread == NULL) {
2014 pr_debug("problem processing SWITCH event, skipping it.\n");
2015 return -1;
2016 }
2017
Arnaldo Carvalho de Meloa1a58702017-10-17 10:54:24 -03002018 perf_sample__fprintf_start(sample, thread, evsel, stdout);
Adrian Hunter7c148982015-07-21 12:44:06 +03002019 perf_event__fprintf(event, stdout);
2020 thread__put(thread);
2021 return 0;
2022}
2023
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002024static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05002025{
2026 session_done = 1;
2027}
2028
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002029static void perf_script__fclose_per_event_dump(struct perf_script *script)
2030{
2031 struct perf_evlist *evlist = script->session->evlist;
2032 struct perf_evsel *evsel;
2033
2034 evlist__for_each_entry(evlist, evsel) {
2035 if (!evsel->priv)
2036 break;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002037 perf_evsel_script__delete(evsel->priv);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002038 evsel->priv = NULL;
2039 }
2040}
2041
2042static int perf_script__fopen_per_event_dump(struct perf_script *script)
2043{
2044 struct perf_evsel *evsel;
2045
2046 evlist__for_each_entry(script->session->evlist, evsel) {
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002047 /*
2048 * Already setup? I.e. we may be called twice in cases like
2049 * Intel PT, one for the intel_pt// and dummy events, then
2050 * for the evsels syntheized from the auxtrace info.
2051 *
2052 * Ses perf_script__process_auxtrace_info.
2053 */
2054 if (evsel->priv != NULL)
2055 continue;
2056
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002057 evsel->priv = perf_evsel_script__new(evsel, script->session->data);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002058 if (evsel->priv == NULL)
2059 goto out_err_fclose;
2060 }
2061
2062 return 0;
2063
2064out_err_fclose:
2065 perf_script__fclose_per_event_dump(script);
2066 return -1;
2067}
2068
2069static int perf_script__setup_per_event_dump(struct perf_script *script)
2070{
2071 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002072 static struct perf_evsel_script es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002073
2074 if (script->per_event_dump)
2075 return perf_script__fopen_per_event_dump(script);
2076
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002077 es_stdout.fp = stdout;
2078
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002079 evlist__for_each_entry(script->session->evlist, evsel)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002080 evsel->priv = &es_stdout;
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002081
2082 return 0;
2083}
2084
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002085static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
2086{
2087 struct perf_evsel *evsel;
2088
2089 evlist__for_each_entry(script->session->evlist, evsel) {
2090 struct perf_evsel_script *es = evsel->priv;
2091
2092 perf_evsel_script__fprintf(es, stdout);
2093 perf_evsel_script__delete(es);
2094 evsel->priv = NULL;
2095 }
2096}
2097
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002098static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002099{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002100 int ret;
2101
Tom Zanussic239da32010-04-01 23:59:18 -05002102 signal(SIGINT, sig_handler);
2103
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002104 /* override event processing functions */
2105 if (script->show_task_events) {
2106 script->tool.comm = process_comm_event;
2107 script->tool.fork = process_fork_event;
2108 script->tool.exit = process_exit_event;
2109 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002110 if (script->show_mmap_events) {
2111 script->tool.mmap = process_mmap_event;
2112 script->tool.mmap2 = process_mmap2_event;
2113 }
Adrian Hunter7c148982015-07-21 12:44:06 +03002114 if (script->show_switch_events)
2115 script->tool.context_switch = process_switch_event;
Hari Bathini96a44bb2017-03-08 02:12:06 +05302116 if (script->show_namespace_events)
2117 script->tool.namespaces = process_namespaces_event;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002118
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002119 if (perf_script__setup_per_event_dump(script)) {
2120 pr_err("Couldn't create the per event dump files\n");
2121 return -1;
2122 }
2123
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03002124 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002125
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002126 if (script->per_event_dump)
Arnaldo Carvalho de Melo642ee1c2017-10-30 13:11:15 -03002127 perf_script__exit_per_event_dump_stats(script);
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03002128
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02002129 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002130 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02002131
2132 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002133}
2134
Tom Zanussi956ffd02009-11-25 01:15:46 -06002135struct script_spec {
2136 struct list_head node;
2137 struct scripting_ops *ops;
2138 char spec[0];
2139};
2140
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002141static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002142
2143static struct script_spec *script_spec__new(const char *spec,
2144 struct scripting_ops *ops)
2145{
2146 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
2147
2148 if (s != NULL) {
2149 strcpy(s->spec, spec);
2150 s->ops = ops;
2151 }
2152
2153 return s;
2154}
2155
Tom Zanussi956ffd02009-11-25 01:15:46 -06002156static void script_spec__add(struct script_spec *s)
2157{
2158 list_add_tail(&s->node, &script_specs);
2159}
2160
2161static struct script_spec *script_spec__find(const char *spec)
2162{
2163 struct script_spec *s;
2164
2165 list_for_each_entry(s, &script_specs, node)
2166 if (strcasecmp(s->spec, spec) == 0)
2167 return s;
2168 return NULL;
2169}
2170
Tom Zanussi956ffd02009-11-25 01:15:46 -06002171int script_spec_register(const char *spec, struct scripting_ops *ops)
2172{
2173 struct script_spec *s;
2174
2175 s = script_spec__find(spec);
2176 if (s)
2177 return -1;
2178
Taeung Song8560bae2016-02-26 00:13:10 +09002179 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002180 if (!s)
2181 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09002182 else
2183 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002184
2185 return 0;
2186}
2187
2188static struct scripting_ops *script_spec__lookup(const char *spec)
2189{
2190 struct script_spec *s = script_spec__find(spec);
2191 if (!s)
2192 return NULL;
2193
2194 return s->ops;
2195}
2196
2197static void list_available_languages(void)
2198{
2199 struct script_spec *s;
2200
2201 fprintf(stderr, "\n");
2202 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002203 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06002204
2205 list_for_each_entry(s, &script_specs, node)
2206 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
2207
2208 fprintf(stderr, "\n");
2209}
2210
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002211static int parse_scriptname(const struct option *opt __maybe_unused,
2212 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06002213{
2214 char spec[PATH_MAX];
2215 const char *script, *ext;
2216 int len;
2217
Tom Zanussif526d682010-01-27 02:27:52 -06002218 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06002219 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06002220 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002221 }
2222
2223 script = strchr(str, ':');
2224 if (script) {
2225 len = script - str;
2226 if (len >= PATH_MAX) {
2227 fprintf(stderr, "invalid language specifier");
2228 return -1;
2229 }
2230 strncpy(spec, str, len);
2231 spec[len] = '\0';
2232 scripting_ops = script_spec__lookup(spec);
2233 if (!scripting_ops) {
2234 fprintf(stderr, "invalid language specifier");
2235 return -1;
2236 }
2237 script++;
2238 } else {
2239 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01002240 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06002241 if (!ext) {
2242 fprintf(stderr, "invalid script extension");
2243 return -1;
2244 }
2245 scripting_ops = script_spec__lookup(++ext);
2246 if (!scripting_ops) {
2247 fprintf(stderr, "invalid script extension");
2248 return -1;
2249 }
2250 }
2251
2252 script_name = strdup(script);
2253
2254 return 0;
2255}
2256
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002257static int parse_output_fields(const struct option *opt __maybe_unused,
2258 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07002259{
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002260 char *tok, *strtok_saveptr = NULL;
Sasha Levin50ca19a2012-12-20 14:11:19 -05002261 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06002262 int j;
David Ahern745f43e2011-03-09 22:23:26 -07002263 int rc = 0;
2264 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07002265 int type = -1;
Andi Kleen36ce5652017-06-02 08:48:10 -07002266 enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
David Ahern745f43e2011-03-09 22:23:26 -07002267
2268 if (!str)
2269 return -ENOMEM;
2270
David Ahern2c9e45f72011-03-17 10:03:21 -06002271 /* first word can state for which event type the user is specifying
2272 * the fields. If no type exists, the specified fields apply to all
2273 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07002274 */
David Ahern2c9e45f72011-03-17 10:03:21 -06002275 tok = strchr(str, ':');
2276 if (tok) {
2277 *tok = '\0';
2278 tok++;
2279 if (!strcmp(str, "hw"))
2280 type = PERF_TYPE_HARDWARE;
2281 else if (!strcmp(str, "sw"))
2282 type = PERF_TYPE_SOFTWARE;
2283 else if (!strcmp(str, "trace"))
2284 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07002285 else if (!strcmp(str, "raw"))
2286 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00002287 else if (!strcmp(str, "break"))
2288 type = PERF_TYPE_BREAKPOINT;
Adrian Hunter14057202017-06-21 13:17:19 +03002289 else if (!strcmp(str, "synth"))
2290 type = OUTPUT_TYPE_SYNTH;
David Ahern2c9e45f72011-03-17 10:03:21 -06002291 else {
2292 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01002293 rc = -EINVAL;
2294 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06002295 }
2296
2297 if (output[type].user_set)
2298 pr_warning("Overriding previous field request for %s events.\n",
2299 event_type(type));
2300
2301 output[type].fields = 0;
2302 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002303 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06002304
2305 } else {
2306 tok = str;
2307 if (strlen(str) == 0) {
2308 fprintf(stderr,
2309 "Cannot set fields to 'none' for all event types.\n");
2310 rc = -EINVAL;
2311 goto out;
2312 }
2313
Andi Kleen36ce5652017-06-02 08:48:10 -07002314 /* Don't override defaults for +- */
2315 if (strchr(str, '+') || strchr(str, '-'))
2316 goto parse;
2317
David Ahern2c9e45f72011-03-17 10:03:21 -06002318 if (output_set_by_user())
2319 pr_warning("Overriding previous field request for all events.\n");
2320
Adrian Hunter14057202017-06-21 13:17:19 +03002321 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002322 output[j].fields = 0;
2323 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06002324 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06002325 }
David Ahern1424dc92011-03-09 22:23:28 -07002326 }
2327
Andi Kleen36ce5652017-06-02 08:48:10 -07002328parse:
Arnaldo Carvalho de Melo49346e82017-04-05 11:43:41 -03002329 for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002330 if (*tok == '+') {
2331 if (change == SET)
2332 goto out_badmix;
2333 change = ADD;
2334 tok++;
2335 } else if (*tok == '-') {
2336 if (change == SET)
2337 goto out_badmix;
2338 change = REMOVE;
2339 tok++;
2340 } else {
2341 if (change != SET && change != DEFAULT)
2342 goto out_badmix;
2343 change = SET;
2344 }
2345
David Ahern745f43e2011-03-09 22:23:26 -07002346 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002347 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07002348 break;
David Ahern745f43e2011-03-09 22:23:26 -07002349 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002350 if (i == imax && strcmp(tok, "flags") == 0) {
Andi Kleen36ce5652017-06-02 08:48:10 -07002351 print_flags = change == REMOVE ? false : true;
Adrian Hunter400ea6d2015-04-09 18:54:05 +03002352 continue;
2353 }
David Ahern745f43e2011-03-09 22:23:26 -07002354 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002355 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07002356 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002357 goto out;
2358 }
2359
2360 if (type == -1) {
2361 /* add user option to all events types for
2362 * which it is valid
2363 */
Adrian Hunter14057202017-06-21 13:17:19 +03002364 for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
David Ahern2c9e45f72011-03-17 10:03:21 -06002365 if (output[j].invalid_fields & all_output_options[i].field) {
2366 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
2367 all_output_options[i].str, event_type(j));
Andi Kleen36ce5652017-06-02 08:48:10 -07002368 } else {
2369 if (change == REMOVE)
2370 output[j].fields &= ~all_output_options[i].field;
2371 else
2372 output[j].fields |= all_output_options[i].field;
2373 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002374 }
2375 } else {
2376 if (output[type].invalid_fields & all_output_options[i].field) {
2377 fprintf(stderr, "\'%s\' not valid for %s events.\n",
2378 all_output_options[i].str, event_type(type));
2379
2380 rc = -EINVAL;
2381 goto out;
2382 }
2383 output[type].fields |= all_output_options[i].field;
2384 }
David Ahern2c9e45f72011-03-17 10:03:21 -06002385 }
2386
2387 if (type >= 0) {
2388 if (output[type].fields == 0) {
2389 pr_debug("No fields requested for %s type. "
2390 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07002391 }
David Ahern1424dc92011-03-09 22:23:28 -07002392 }
Andi Kleen36ce5652017-06-02 08:48:10 -07002393 goto out;
David Ahern745f43e2011-03-09 22:23:26 -07002394
Andi Kleen36ce5652017-06-02 08:48:10 -07002395out_badmix:
2396 fprintf(stderr, "Cannot mix +-field with overridden fields\n");
2397 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06002398out:
David Ahern745f43e2011-03-09 22:23:26 -07002399 free(str);
2400 return rc;
2401}
2402
Shawn Bohrer008f29d2010-11-21 10:09:39 -06002403/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
2404static int is_directory(const char *base_path, const struct dirent *dent)
2405{
2406 char path[PATH_MAX];
2407 struct stat st;
2408
2409 sprintf(path, "%s/%s", base_path, dent->d_name);
2410 if (stat(path, &st))
2411 return 0;
2412
2413 return S_ISDIR(st.st_mode);
2414}
2415
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002416#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
2417 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
2418 if ((lang_dirent->d_type == DT_DIR || \
2419 (lang_dirent->d_type == DT_UNKNOWN && \
2420 is_directory(scripts_path, lang_dirent))) && \
2421 (strcmp(lang_dirent->d_name, ".")) && \
2422 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002423
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002424#define for_each_script(lang_path, lang_dir, script_dirent) \
2425 while ((script_dirent = readdir(lang_dir)) != NULL) \
2426 if (script_dirent->d_type != DT_DIR && \
2427 (script_dirent->d_type != DT_UNKNOWN || \
2428 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002429
2430
2431#define RECORD_SUFFIX "-record"
2432#define REPORT_SUFFIX "-report"
2433
2434struct script_desc {
2435 struct list_head node;
2436 char *name;
2437 char *half_liner;
2438 char *args;
2439};
2440
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02002441static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002442
2443static struct script_desc *script_desc__new(const char *name)
2444{
2445 struct script_desc *s = zalloc(sizeof(*s));
2446
Tom Zanussib5b87312010-11-10 08:16:51 -06002447 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002448 s->name = strdup(name);
2449
2450 return s;
2451}
2452
2453static void script_desc__delete(struct script_desc *s)
2454{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002455 zfree(&s->name);
2456 zfree(&s->half_liner);
2457 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002458 free(s);
2459}
2460
2461static void script_desc__add(struct script_desc *s)
2462{
2463 list_add_tail(&s->node, &script_descs);
2464}
2465
2466static struct script_desc *script_desc__find(const char *name)
2467{
2468 struct script_desc *s;
2469
2470 list_for_each_entry(s, &script_descs, node)
2471 if (strcasecmp(s->name, name) == 0)
2472 return s;
2473 return NULL;
2474}
2475
2476static struct script_desc *script_desc__findnew(const char *name)
2477{
2478 struct script_desc *s = script_desc__find(name);
2479
2480 if (s)
2481 return s;
2482
2483 s = script_desc__new(name);
2484 if (!s)
Dan Carpenter2ec5cab62017-07-22 10:36:10 +03002485 return NULL;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002486
2487 script_desc__add(s);
2488
2489 return s;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002490}
2491
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002492static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002493{
2494 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002495 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002496
2497 if (strlen(str) > suffix_len) {
2498 p = str + strlen(str) - suffix_len;
2499 if (!strncmp(p, suffix, suffix_len))
2500 return p;
2501 }
2502
2503 return NULL;
2504}
2505
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002506static int read_script_info(struct script_desc *desc, const char *filename)
2507{
2508 char line[BUFSIZ], *p;
2509 FILE *fp;
2510
2511 fp = fopen(filename, "r");
2512 if (!fp)
2513 return -1;
2514
2515 while (fgets(line, sizeof(line), fp)) {
2516 p = ltrim(line);
2517 if (strlen(p) == 0)
2518 continue;
2519 if (*p != '#')
2520 continue;
2521 p++;
2522 if (strlen(p) && *p == '!')
2523 continue;
2524
2525 p = ltrim(p);
2526 if (strlen(p) && p[strlen(p) - 1] == '\n')
2527 p[strlen(p) - 1] = '\0';
2528
2529 if (!strncmp(p, "description:", strlen("description:"))) {
2530 p += strlen("description:");
2531 desc->half_liner = strdup(ltrim(p));
2532 continue;
2533 }
2534
2535 if (!strncmp(p, "args:", strlen("args:"))) {
2536 p += strlen("args:");
2537 desc->args = strdup(ltrim(p));
2538 continue;
2539 }
2540 }
2541
2542 fclose(fp);
2543
2544 return 0;
2545}
2546
Robert Richter38efb532011-11-25 11:38:40 +01002547static char *get_script_root(struct dirent *script_dirent, const char *suffix)
2548{
2549 char *script_root, *str;
2550
2551 script_root = strdup(script_dirent->d_name);
2552 if (!script_root)
2553 return NULL;
2554
2555 str = (char *)ends_with(script_root, suffix);
2556 if (!str) {
2557 free(script_root);
2558 return NULL;
2559 }
2560
2561 *str = '\0';
2562 return script_root;
2563}
2564
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002565static int list_available_scripts(const struct option *opt __maybe_unused,
2566 const char *s __maybe_unused,
2567 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002568{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002569 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002570 char scripts_path[MAXPATHLEN];
2571 DIR *scripts_dir, *lang_dir;
2572 char script_path[MAXPATHLEN];
2573 char lang_path[MAXPATHLEN];
2574 struct script_desc *desc;
2575 char first_half[BUFSIZ];
2576 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002577
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002578 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002579
2580 scripts_dir = opendir(scripts_path);
He Kuang88ded4d2016-08-04 11:25:42 +00002581 if (!scripts_dir) {
2582 fprintf(stdout,
2583 "open(%s) failed.\n"
2584 "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
2585 scripts_path);
2586 exit(-1);
2587 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002588
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002589 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002590 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002591 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002592 lang_dir = opendir(lang_path);
2593 if (!lang_dir)
2594 continue;
2595
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002596 for_each_script(lang_path, lang_dir, script_dirent) {
2597 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01002598 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002599 desc = script_desc__findnew(script_root);
2600 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002601 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002602 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01002603 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002604 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06002605 }
2606 }
2607
2608 fprintf(stdout, "List of available trace scripts:\n");
2609 list_for_each_entry(desc, &script_descs, node) {
2610 sprintf(first_half, "%s %s", desc->name,
2611 desc->args ? desc->args : "");
2612 fprintf(stdout, " %-36s %s\n", first_half,
2613 desc->half_liner ? desc->half_liner : "");
2614 }
2615
2616 exit(0);
2617}
2618
Feng Tange5f37052012-09-07 16:42:26 +08002619/*
Feng Tang49e639e2012-10-30 11:56:03 +08002620 * Some scripts specify the required events in their "xxx-record" file,
2621 * this function will check if the events in perf.data match those
2622 * mentioned in the "xxx-record".
2623 *
2624 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
2625 * which is covered well now. And new parsing code should be added to
2626 * cover the future complexing formats like event groups etc.
2627 */
2628static int check_ev_match(char *dir_name, char *scriptname,
2629 struct perf_session *session)
2630{
2631 char filename[MAXPATHLEN], evname[128];
2632 char line[BUFSIZ], *p;
2633 struct perf_evsel *pos;
2634 int match, len;
2635 FILE *fp;
2636
2637 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
2638
2639 fp = fopen(filename, "r");
2640 if (!fp)
2641 return -1;
2642
2643 while (fgets(line, sizeof(line), fp)) {
2644 p = ltrim(line);
2645 if (*p == '#')
2646 continue;
2647
2648 while (strlen(p)) {
2649 p = strstr(p, "-e");
2650 if (!p)
2651 break;
2652
2653 p += 2;
2654 p = ltrim(p);
2655 len = strcspn(p, " \t");
2656 if (!len)
2657 break;
2658
2659 snprintf(evname, len + 1, "%s", p);
2660
2661 match = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002662 evlist__for_each_entry(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08002663 if (!strcmp(perf_evsel__name(pos), evname)) {
2664 match = 1;
2665 break;
2666 }
2667 }
2668
2669 if (!match) {
2670 fclose(fp);
2671 return -1;
2672 }
2673 }
2674 }
2675
2676 fclose(fp);
2677 return 0;
2678}
2679
2680/*
Feng Tange5f37052012-09-07 16:42:26 +08002681 * Return -1 if none is found, otherwise the actual scripts number.
2682 *
2683 * Currently the only user of this function is the script browser, which
2684 * will list all statically runnable scripts, select one, execute it and
2685 * show the output in a perf browser.
2686 */
2687int find_scripts(char **scripts_array, char **scripts_path_array)
2688{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002689 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08002690 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08002691 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08002692 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002693 struct perf_data data = {
Jiri Olsaeae8ad82017-01-23 22:25:41 +01002694 .file = {
2695 .path = input_name,
2696 },
2697 .mode = PERF_DATA_MODE_READ,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002698 };
Feng Tange5f37052012-09-07 16:42:26 +08002699 char *temp;
2700 int i = 0;
2701
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002702 session = perf_session__new(&data, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08002703 if (!session)
2704 return -1;
2705
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002706 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08002707
2708 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08002709 if (!scripts_dir) {
2710 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08002711 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08002712 }
Feng Tange5f37052012-09-07 16:42:26 +08002713
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002714 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08002715 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002716 lang_dirent->d_name);
Feng Tange5f37052012-09-07 16:42:26 +08002717#ifdef NO_LIBPERL
2718 if (strstr(lang_path, "perl"))
2719 continue;
2720#endif
2721#ifdef NO_LIBPYTHON
2722 if (strstr(lang_path, "python"))
2723 continue;
2724#endif
2725
2726 lang_dir = opendir(lang_path);
2727 if (!lang_dir)
2728 continue;
2729
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002730 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08002731 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002732 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08002733 continue;
2734 sprintf(scripts_path_array[i], "%s/%s", lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002735 script_dirent->d_name);
2736 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08002737 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002738 (temp - script_dirent->d_name) + 1,
2739 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08002740
2741 if (check_ev_match(lang_path,
2742 scripts_array[i], session))
2743 continue;
2744
Feng Tange5f37052012-09-07 16:42:26 +08002745 i++;
2746 }
Feng Tang49e639e2012-10-30 11:56:03 +08002747 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08002748 }
2749
Feng Tang49e639e2012-10-30 11:56:03 +08002750 closedir(scripts_dir);
2751 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08002752 return i;
2753}
2754
Tom Zanussi38752942009-12-15 02:53:39 -06002755static char *get_script_path(const char *script_root, const char *suffix)
2756{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002757 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06002758 char scripts_path[MAXPATHLEN];
2759 char script_path[MAXPATHLEN];
2760 DIR *scripts_dir, *lang_dir;
2761 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01002762 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06002763
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002764 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06002765
2766 scripts_dir = opendir(scripts_path);
2767 if (!scripts_dir)
2768 return NULL;
2769
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002770 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi38752942009-12-15 02:53:39 -06002771 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002772 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06002773 lang_dir = opendir(lang_path);
2774 if (!lang_dir)
2775 continue;
2776
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002777 for_each_script(lang_path, lang_dir, script_dirent) {
2778 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01002779 if (__script_root && !strcmp(script_root, __script_root)) {
2780 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002781 closedir(lang_dir);
2782 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002783 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03002784 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01002785 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06002786 }
2787 free(__script_root);
2788 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002789 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002790 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09002791 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06002792
Robert Richter38efb532011-11-25 11:38:40 +01002793 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002794}
2795
Tom Zanussib5b87312010-11-10 08:16:51 -06002796static bool is_top_script(const char *script_path)
2797{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02002798 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06002799}
2800
2801static int has_required_arg(char *script_path)
2802{
2803 struct script_desc *desc;
2804 int n_args = 0;
2805 char *p;
2806
2807 desc = script_desc__new(NULL);
2808
2809 if (read_script_info(desc, script_path))
2810 goto out;
2811
2812 if (!desc->args)
2813 goto out;
2814
2815 for (p = desc->args; *p; p++)
2816 if (*p == '<')
2817 n_args++;
2818out:
2819 script_desc__delete(desc);
2820
2821 return n_args;
2822}
2823
David Ahernd54b1a92012-08-26 12:24:46 -06002824static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002825{
2826 char **__argv = malloc(sizeof(const char *) * argc);
2827
David Ahernd54b1a92012-08-26 12:24:46 -06002828 if (!__argv) {
2829 pr_err("malloc failed\n");
2830 return -1;
2831 }
2832
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002833 memcpy(__argv, argv, sizeof(const char *) * argc);
2834 argc = parse_options(argc, (const char **)__argv, record_options,
2835 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
2836 free(__argv);
2837
David Ahernd54b1a92012-08-26 12:24:46 -06002838 system_wide = (argc == 0);
2839
2840 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002841}
2842
Jiri Olsa7322d6c2015-08-13 09:17:24 +02002843static void script__setup_sample_type(struct perf_script *script)
2844{
2845 struct perf_session *session = script->session;
2846 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
2847
2848 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
2849 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
2850 (sample_type & PERF_SAMPLE_STACK_USER))
2851 callchain_param.record_mode = CALLCHAIN_DWARF;
2852 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
2853 callchain_param.record_mode = CALLCHAIN_LBR;
2854 else
2855 callchain_param.record_mode = CALLCHAIN_FP;
2856 }
2857}
2858
Jiri Olsae099eba2016-01-05 22:09:09 +01002859static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
2860 union perf_event *event,
2861 struct perf_session *session)
2862{
2863 struct stat_round_event *round = &event->stat_round;
2864 struct perf_evsel *counter;
2865
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002866 evlist__for_each_entry(session->evlist, counter) {
Jiri Olsae099eba2016-01-05 22:09:09 +01002867 perf_stat_process_counter(&stat_config, counter);
2868 process_stat(counter, round->time);
2869 }
2870
2871 process_stat_interval(round->time);
2872 return 0;
2873}
2874
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002875static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
2876 union perf_event *event,
2877 struct perf_session *session __maybe_unused)
2878{
2879 perf_event__read_stat_config(&stat_config, &event->stat_config);
2880 return 0;
2881}
2882
Jiri Olsacfc88742016-01-05 22:09:06 +01002883static int set_maps(struct perf_script *script)
2884{
2885 struct perf_evlist *evlist = script->session->evlist;
2886
2887 if (!script->cpus || !script->threads)
2888 return 0;
2889
2890 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
2891 return -EINVAL;
2892
2893 perf_evlist__set_maps(evlist, script->cpus, script->threads);
2894
2895 if (perf_evlist__alloc_stats(evlist, true))
2896 return -ENOMEM;
2897
2898 script->allocated = true;
2899 return 0;
2900}
2901
2902static
2903int process_thread_map_event(struct perf_tool *tool,
2904 union perf_event *event,
2905 struct perf_session *session __maybe_unused)
2906{
2907 struct perf_script *script = container_of(tool, struct perf_script, tool);
2908
2909 if (script->threads) {
2910 pr_warning("Extra thread map event, ignoring.\n");
2911 return 0;
2912 }
2913
2914 script->threads = thread_map__new_event(&event->thread_map);
2915 if (!script->threads)
2916 return -ENOMEM;
2917
2918 return set_maps(script);
2919}
2920
2921static
2922int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
2923 union perf_event *event,
2924 struct perf_session *session __maybe_unused)
2925{
2926 struct perf_script *script = container_of(tool, struct perf_script, tool);
2927
2928 if (script->cpus) {
2929 pr_warning("Extra cpu map event, ignoring.\n");
2930 return 0;
2931 }
2932
2933 script->cpus = cpu_map__new_data(&event->cpu_map.data);
2934 if (!script->cpus)
2935 return -ENOMEM;
2936
2937 return set_maps(script);
2938}
2939
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002940#ifdef HAVE_AUXTRACE_SUPPORT
2941static int perf_script__process_auxtrace_info(struct perf_tool *tool,
2942 union perf_event *event,
2943 struct perf_session *session)
2944{
2945 int ret = perf_event__process_auxtrace_info(tool, event, session);
2946
2947 if (ret == 0) {
2948 struct perf_script *script = container_of(tool, struct perf_script, tool);
2949
2950 ret = perf_script__setup_per_event_dump(script);
2951 }
2952
2953 return ret;
2954}
2955#else
2956#define perf_script__process_auxtrace_info 0
2957#endif
2958
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03002959int cmd_script(int argc, const char **argv)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002960{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002961 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01002962 bool header = false;
2963 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002964 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06002965 char *rec_script_path = NULL;
2966 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002967 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002968 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06002969 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002970 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002971 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002972 struct perf_script script = {
2973 .tool = {
2974 .sample = process_sample_event,
2975 .mmap = perf_event__process_mmap,
2976 .mmap2 = perf_event__process_mmap2,
2977 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05302978 .namespaces = perf_event__process_namespaces,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002979 .exit = perf_event__process_exit,
2980 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02002981 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02002982 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002983 .tracing_data = perf_event__process_tracing_data,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07002984 .feature = perf_event__process_feature,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002985 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002986 .id_index = perf_event__process_id_index,
Arnaldo Carvalho de Melofa48c892017-11-09 16:04:26 -03002987 .auxtrace_info = perf_script__process_auxtrace_info,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002988 .auxtrace = perf_event__process_auxtrace,
2989 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01002990 .stat = perf_event__process_stat_event,
2991 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01002992 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01002993 .thread_map = process_thread_map_event,
2994 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02002995 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002996 .ordering_requires_timestamps = true,
2997 },
2998 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002999 struct perf_data data = {
Yunlong Song06af0f22015-04-02 21:47:16 +08003000 .mode = PERF_DATA_MODE_READ,
3001 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003002 const struct option options[] = {
3003 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3004 "dump raw trace in ASCII"),
3005 OPT_INCR('v', "verbose", &verbose,
3006 "be more verbose (show symbol address, etc)"),
3007 OPT_BOOLEAN('L', "Latency", &latency_format,
3008 "show latency attributes (irqs/preemption disabled, etc)"),
3009 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
3010 list_available_scripts),
3011 OPT_CALLBACK('s', "script", NULL, "name",
3012 "script file name (lang:script name, script name, or *)",
3013 parse_scriptname),
3014 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
3015 "generate perf-script.xx script in specified language"),
3016 OPT_STRING('i', "input", &input_name, "file", "input file name"),
3017 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
3018 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01003019 OPT_BOOLEAN(0, "header", &header, "Show data header."),
3020 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003021 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3022 "file", "vmlinux pathname"),
3023 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3024 "file", "kallsyms pathname"),
3025 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
3026 "When printing symbols do not display call chain"),
He Kuanga7066702016-05-19 11:47:37 +00003027 OPT_CALLBACK(0, "symfs", NULL, "directory",
3028 "Look for files with symbols relative to this directory",
3029 symbol__config_symfs),
Yunlong Song06af0f22015-04-02 21:47:16 +08003030 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003031 "comma separated output fields prepend with 'type:'. "
Andi Kleen36ce5652017-06-02 08:48:10 -07003032 "+field to add and -field to remove."
Adrian Hunter14057202017-06-21 13:17:19 +03003033 "Valid types: hw,sw,trace,raw,synth. "
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003034 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Andi Kleenb1491ac2017-09-05 11:40:57 -07003035 "addr,symoff,period,iregs,uregs,brstack,brstacksym,flags,"
Kan Liang49d58f02017-08-29 13:11:11 -04003036 "bpf-output,callindent,insn,insnlen,brstackinsn,synth,phys_addr",
Andi Kleen48d02a12017-02-23 15:46:34 -08003037 parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003038 OPT_BOOLEAN('a', "all-cpus", &system_wide,
3039 "system-wide collection from all CPUs"),
3040 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
3041 "only consider these symbols"),
David Ahern64eff7d2016-11-25 13:00:21 -07003042 OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
3043 "Stop display of callgraph at these symbols"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003044 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
3045 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
3046 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06003047 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3048 "only consider symbols in these pids"),
3049 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3050 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo6125cc82016-04-14 18:15:18 -03003051 OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
3052 "Set the maximum stack depth when parsing the callchain, "
3053 "anything beyond the specified depth will be ignored. "
Arnaldo Carvalho de Melo4cb93442016-04-27 10:16:24 -03003054 "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003055 OPT_BOOLEAN('I', "show-info", &show_full_info,
3056 "display extended information from perf.data file"),
3057 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
3058 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09003059 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
3060 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09003061 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
3062 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03003063 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
3064 "Show context switch events (if recorded)"),
Hari Bathini96a44bb2017-03-08 02:12:06 +05303065 OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
3066 "Show namespace events (if recorded)"),
Arnaldo Carvalho de Meloa14390f2017-10-26 10:30:20 -03003067 OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
3068 "Dump trace output to files named by the monitored events"),
Yannick Brosseaube3d4662017-01-13 13:25:27 -05003069 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
Andi Kleen48d02a12017-02-23 15:46:34 -08003070 OPT_INTEGER(0, "max-blocks", &max_blocks,
3071 "Maximum number of code blocks to dump with brstackinsn"),
Adrian Hunter83e19862015-09-25 16:15:36 +03003072 OPT_BOOLEAN(0, "ns", &nanosecs,
3073 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003074 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
3075 "Instruction Tracing options",
3076 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07003077 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
3078 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07003079 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
3080 "Enable symbol demangling"),
3081 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
3082 "Enable kernel symbol demangling"),
David Aherna91f4c42016-11-29 10:15:43 -07003083 OPT_STRING(0, "time", &script.time_str, "str",
3084 "Time span of interest (start,stop)"),
Namhyung Kim325fbff2017-05-24 15:21:26 +09003085 OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
3086 "Show inline function"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003087 OPT_END()
3088 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08003089 const char * const script_subcommands[] = { "record", "report", NULL };
3090 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03003091 "perf script [<options>]",
3092 "perf script [<options>] record <script> [<record-options>] <command>",
3093 "perf script [<options>] report <script> [script-args]",
3094 "perf script [<options>] <script> [<record-options>] <command>",
3095 "perf script [<options>] <top-script> [script-args]",
3096 NULL
3097 };
Tom Zanussi38752942009-12-15 02:53:39 -06003098
Arnaldo Carvalho de Melo0a7c74e2017-04-04 13:15:04 -03003099 perf_set_singlethreaded();
3100
Tom Zanussib5b87312010-11-10 08:16:51 -06003101 setup_scripting();
3102
Yunlong Song40cae2b2015-03-18 21:35:54 +08003103 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06003104 PARSE_OPT_STOP_AT_NON_OPTION);
3105
Jiri Olsaeae8ad82017-01-23 22:25:41 +01003106 data.file.path = input_name;
3107 data.force = symbol_conf.force;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02003108
Tom Zanussib5b87312010-11-10 08:16:51 -06003109 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
3110 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
3111 if (!rec_script_path)
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003112 return cmd_record(argc, argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003113 }
3114
Tom Zanussib5b87312010-11-10 08:16:51 -06003115 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
3116 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
3117 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06003118 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06003119 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003120 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06003121 return -1;
3122 }
Tom Zanussi38752942009-12-15 02:53:39 -06003123 }
3124
Adrian Hunter3c5b6452015-09-25 16:15:51 +03003125 if (itrace_synth_opts.callchain &&
3126 itrace_synth_opts.callchain_sz > scripting_max_stack)
3127 scripting_max_stack = itrace_synth_opts.callchain_sz;
3128
Ben Hutchings44e668c2010-10-10 16:10:03 +01003129 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06003130 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01003131
Tom Zanussib5b87312010-11-10 08:16:51 -06003132 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05003133 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06003134 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003135 pid_t pid;
3136
Tom Zanussib5b87312010-11-10 08:16:51 -06003137 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
3138 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
3139
3140 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003141 usage_with_options_msg(script_usage, options,
3142 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003143 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003144 }
3145
Tom Zanussib5b87312010-11-10 08:16:51 -06003146 if (is_top_script(argv[0])) {
3147 rep_args = argc - 1;
3148 } else {
3149 int rec_args;
3150
3151 rep_args = has_required_arg(rep_script_path);
3152 rec_args = (argc - 1) - rep_args;
3153 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003154 usage_with_options_msg(script_usage, options,
3155 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003156 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06003157 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06003158 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05003159 }
3160
3161 if (pipe(live_pipe) < 0) {
3162 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06003163 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003164 }
3165
3166 pid = fork();
3167 if (pid < 0) {
3168 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06003169 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003170 }
3171
3172 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003173 j = 0;
3174
Tom Zanussia0cccc22010-04-01 23:59:25 -05003175 dup2(live_pipe[1], 1);
3176 close(live_pipe[0]);
3177
Robert Richter317df652011-11-25 15:05:25 +01003178 if (is_top_script(argv[0])) {
3179 system_wide = true;
3180 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06003181 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
3182 err = -1;
3183 goto out;
3184 }
Robert Richter317df652011-11-25 15:05:25 +01003185 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003186
3187 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003188 if (!__argv) {
3189 pr_err("malloc failed\n");
3190 err = -ENOMEM;
3191 goto out;
3192 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06003193
Tom Zanussib5b87312010-11-10 08:16:51 -06003194 __argv[j++] = "/bin/sh";
3195 __argv[j++] = rec_script_path;
3196 if (system_wide)
3197 __argv[j++] = "-a";
3198 __argv[j++] = "-q";
3199 __argv[j++] = "-o";
3200 __argv[j++] = "-";
3201 for (i = rep_args + 1; i < argc; i++)
3202 __argv[j++] = argv[i];
3203 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05003204
3205 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003206 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05003207 exit(-1);
3208 }
3209
3210 dup2(live_pipe[0], 0);
3211 close(live_pipe[1]);
3212
Tom Zanussib5b87312010-11-10 08:16:51 -06003213 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003214 if (!__argv) {
3215 pr_err("malloc failed\n");
3216 err = -ENOMEM;
3217 goto out;
3218 }
3219
Tom Zanussib5b87312010-11-10 08:16:51 -06003220 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003221 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06003222 __argv[j++] = rep_script_path;
3223 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003224 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06003225 __argv[j++] = "-i";
3226 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06003227 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06003228
3229 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06003230 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06003231 exit(-1);
3232 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06003233
Tom Zanussib5b87312010-11-10 08:16:51 -06003234 if (rec_script_path)
3235 script_path = rec_script_path;
3236 if (rep_script_path)
3237 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003238
Tom Zanussib5b87312010-11-10 08:16:51 -06003239 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06003240 j = 0;
3241
Robert Richter317df652011-11-25 15:05:25 +01003242 if (!rec_script_path)
3243 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06003244 else if (!system_wide) {
3245 if (have_cmd(argc - 1, &argv[1]) != 0) {
3246 err = -1;
3247 goto out;
3248 }
3249 }
Tom Zanussib5b87312010-11-10 08:16:51 -06003250
3251 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06003252 if (!__argv) {
3253 pr_err("malloc failed\n");
3254 err = -ENOMEM;
3255 goto out;
3256 }
3257
Tom Zanussib5b87312010-11-10 08:16:51 -06003258 __argv[j++] = "/bin/sh";
3259 __argv[j++] = script_path;
3260 if (system_wide)
3261 __argv[j++] = "-a";
3262 for (i = 2; i < argc; i++)
3263 __argv[j++] = argv[i];
3264 __argv[j++] = NULL;
3265
3266 execvp("/bin/sh", (char **)__argv);
3267 free(__argv);
3268 exit(-1);
3269 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003270
Tom Zanussicf4fee52010-03-03 01:04:33 -06003271 if (!script_name)
3272 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003273
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003274 session = perf_session__new(&data, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003275 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09003276 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003277
Jiri Olsae90debd2013-12-09 11:02:50 +01003278 if (header || header_only) {
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003279 script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
Jiri Olsae90debd2013-12-09 11:02:50 +01003280 perf_session__fprintf_info(session, stdout, show_full_info);
3281 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003282 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01003283 }
David Carrillo-Cisneros114f7092017-07-17 21:25:47 -07003284 if (show_full_info)
3285 script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
Jiri Olsae90debd2013-12-09 11:02:50 +01003286
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09003287 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09003288 goto out_delete;
3289
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003290 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02003291 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003292
Adrian Huntere2167082016-06-23 16:40:58 +03003293 if (output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT)
3294 itrace_synth_opts.thread_stack = true;
3295
Adrian Hunter7a680eb2015-04-09 18:53:56 +03003296 session->itrace_synth_opts = &itrace_synth_opts;
3297
Anton Blanchard5d67be92011-07-04 21:57:50 +10003298 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003299 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
3300 if (err < 0)
3301 goto out_delete;
Adrian Hunter644e0842017-05-26 11:17:38 +03003302 itrace_synth_opts.cpu_bitmap = cpu_bitmap;
Anton Blanchard5d67be92011-07-04 21:57:50 +10003303 }
3304
David Ahern1424dc92011-03-09 22:23:28 -07003305 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07003306 symbol_conf.use_callchain = true;
3307 else
3308 symbol_conf.use_callchain = false;
3309
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03003310 if (session->tevent.pevent &&
3311 pevent_set_function_resolver(session->tevent.pevent,
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003312 machine__resolve_kernel_addr,
3313 &session->machines.host) < 0) {
3314 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003315 err = -1;
3316 goto out_delete;
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03003317 }
3318
Tom Zanussi956ffd02009-11-25 01:15:46 -06003319 if (generate_script_lang) {
3320 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07003321 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003322
David Ahern2c9e45f72011-03-17 10:03:21 -06003323 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07003324 fprintf(stderr,
3325 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003326 err = -EINVAL;
3327 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07003328 }
3329
Jiri Olsaeae8ad82017-01-23 22:25:41 +01003330 input = open(data.file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06003331 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003332 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003333 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003334 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003335 }
3336
3337 err = fstat(input, &perf_stat);
3338 if (err < 0) {
3339 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003340 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003341 }
3342
3343 if (!perf_stat.st_size) {
3344 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003345 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003346 }
3347
3348 scripting_ops = script_spec__lookup(generate_script_lang);
3349 if (!scripting_ops) {
3350 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003351 err = -ENOENT;
3352 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003353 }
3354
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003355 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003356 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003357 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003358 }
3359
3360 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06003361 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003362 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003363 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003364 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003365 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06003366 }
3367
David Ahern9cbdb702011-04-06 21:54:20 -06003368
3369 err = perf_session__check_output_opt(session);
3370 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003371 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06003372
David Aherna91f4c42016-11-29 10:15:43 -07003373 /* needs to be parsed after looking up reference time */
3374 if (perf_time__parse_str(&script.ptime, script.time_str) != 0) {
3375 pr_err("Invalid time string\n");
Christophe JAILLETdb49bc12017-09-16 08:25:37 +02003376 err = -EINVAL;
3377 goto out_delete;
David Aherna91f4c42016-11-29 10:15:43 -07003378 }
3379
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03003380 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06003381
Adrian Hunterd445dd22014-08-15 22:08:37 +03003382 flush_scripting();
3383
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003384out_delete:
Jiri Olsacfc88742016-01-05 22:09:06 +01003385 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02003386 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09003387
3388 if (script_started)
3389 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06003390out:
3391 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02003392}