blob: 875d84e7ba5ba27bc263a61473f2d3142b5794f7 [file] [log] [blame]
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001#include "builtin.h"
2
Andrea Gelminib7eead82010-08-05 15:51:38 +02003#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004#include "util/cache.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02005#include "util/debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06006#include <subcmd/exec-cmd.h>
Andrea Gelminib7eead82010-08-05 15:51:38 +02007#include "util/header.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06008#include <subcmd/parse-options.h>
Stephane Eranianfc36f942015-08-31 18:41:10 +02009#include "util/perf_regs.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020010#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020011#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020012#include "util/symbol.h"
13#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010014#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020015#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070016#include "util/evlist.h"
17#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080018#include "util/sort.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020019#include "util/data.h"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030020#include "util/auxtrace.h"
Jiri Olsacfc88742016-01-05 22:09:06 +010021#include "util/cpumap.h"
22#include "util/thread_map.h"
23#include "util/stat.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100024#include <linux/bitmap.h>
Jiri Olsacfc88742016-01-05 22:09:06 +010025#include "asm/bug.h"
Jiri Olsac19ac912016-02-24 09:46:54 +010026#include "util/mem-events.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020027
Tom Zanussi956ffd02009-11-25 01:15:46 -060028static char const *script_name;
29static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020030static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020031static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020032static u64 nr_unordered;
David Ahernc0230b22011-03-09 22:23:27 -070033static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090034static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010035static bool system_wide;
Adrian Hunter400ea6d2015-04-09 18:54:05 +030036static bool print_flags;
Adrian Hunter83e19862015-09-25 16:15:36 +030037static bool nanosecs;
Anton Blanchard5d67be92011-07-04 21:57:50 +100038static const char *cpu_list;
39static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Jiri Olsa91a2c3d2016-01-05 22:09:07 +010040static struct perf_stat_config stat_config;
Tom Zanussi956ffd02009-11-25 01:15:46 -060041
Adrian Hunter44cbe722015-09-25 16:15:50 +030042unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
Adrian Hunter03cd1fe2015-09-25 16:15:49 +030043
David Ahern745f43e2011-03-09 22:23:26 -070044enum perf_output_field {
45 PERF_OUTPUT_COMM = 1U << 0,
46 PERF_OUTPUT_TID = 1U << 1,
47 PERF_OUTPUT_PID = 1U << 2,
48 PERF_OUTPUT_TIME = 1U << 3,
49 PERF_OUTPUT_CPU = 1U << 4,
50 PERF_OUTPUT_EVNAME = 1U << 5,
51 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060052 PERF_OUTPUT_IP = 1U << 7,
53 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060054 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060055 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090056 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020057 PERF_OUTPUT_SRCLINE = 1U << 12,
Jiri Olsa535aeaae2014-08-25 16:45:42 +020058 PERF_OUTPUT_PERIOD = 1U << 13,
Stephane Eranianfc36f942015-08-31 18:41:10 +020059 PERF_OUTPUT_IREGS = 1U << 14,
Stephane Eraniandc323ce2015-08-31 18:41:13 +020060 PERF_OUTPUT_BRSTACK = 1U << 15,
61 PERF_OUTPUT_BRSTACKSYM = 1U << 16,
Jiri Olsa94ddddf2016-02-15 09:34:51 +010062 PERF_OUTPUT_DATA_SRC = 1U << 17,
63 PERF_OUTPUT_WEIGHT = 1U << 18,
Wang Nan30372f02016-02-24 11:20:45 +000064 PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
David Ahern745f43e2011-03-09 22:23:26 -070065};
66
67struct output_option {
68 const char *str;
69 enum perf_output_field field;
70} all_output_options[] = {
71 {.str = "comm", .field = PERF_OUTPUT_COMM},
72 {.str = "tid", .field = PERF_OUTPUT_TID},
73 {.str = "pid", .field = PERF_OUTPUT_PID},
74 {.str = "time", .field = PERF_OUTPUT_TIME},
75 {.str = "cpu", .field = PERF_OUTPUT_CPU},
76 {.str = "event", .field = PERF_OUTPUT_EVNAME},
77 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060078 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070079 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060080 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060081 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090082 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +020083 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaae2014-08-25 16:45:42 +020084 {.str = "period", .field = PERF_OUTPUT_PERIOD},
Stephane Eranianfc36f942015-08-31 18:41:10 +020085 {.str = "iregs", .field = PERF_OUTPUT_IREGS},
Stephane Eraniandc323ce2015-08-31 18:41:13 +020086 {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
87 {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
Jiri Olsa94ddddf2016-02-15 09:34:51 +010088 {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
89 {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
Wang Nan30372f02016-02-24 11:20:45 +000090 {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
David Ahern745f43e2011-03-09 22:23:26 -070091};
92
93/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060094static struct {
95 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060096 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -040097 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -060098 u64 fields;
99 u64 invalid_fields;
100} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -0700101
David Ahern2c9e45f72011-03-17 10:03:21 -0600102 [PERF_TYPE_HARDWARE] = {
103 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -0700104
David Ahern2c9e45f72011-03-17 10:03:21 -0600105 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
106 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600107 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200108 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
109 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -0600110
Wang Nan30372f02016-02-24 11:20:45 +0000111 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600112 },
113
114 [PERF_TYPE_SOFTWARE] = {
115 .user_set = false,
116
117 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
118 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600119 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200120 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Wang Nan30372f02016-02-24 11:20:45 +0000121 PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
David Ahern2c9e45f72011-03-17 10:03:21 -0600122
123 .invalid_fields = PERF_OUTPUT_TRACE,
124 },
125
126 [PERF_TYPE_TRACEPOINT] = {
127 .user_set = false,
128
129 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
130 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
Wang Nan30372f02016-02-24 11:20:45 +0000131 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
David Ahern2c9e45f72011-03-17 10:03:21 -0600132 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700133
134 [PERF_TYPE_RAW] = {
135 .user_set = false,
136
137 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
138 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600139 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200140 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
Jiri Olsaff7b1912016-02-15 09:34:52 +0100141 PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
142 PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700143
Wang Nan30372f02016-02-24 11:20:45 +0000144 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700145 },
Wang Nan27cfef02015-12-08 02:25:43 +0000146
147 [PERF_TYPE_BREAKPOINT] = {
148 .user_set = false,
149
150 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
151 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
152 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
153 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
154 PERF_OUTPUT_PERIOD,
155
Wang Nan30372f02016-02-24 11:20:45 +0000156 .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
Wang Nan27cfef02015-12-08 02:25:43 +0000157 },
David Ahern1424dc92011-03-09 22:23:28 -0700158};
David Ahern745f43e2011-03-09 22:23:26 -0700159
David Ahern2c9e45f72011-03-17 10:03:21 -0600160static bool output_set_by_user(void)
161{
162 int j;
163 for (j = 0; j < PERF_TYPE_MAX; ++j) {
164 if (output[j].user_set)
165 return true;
166 }
167 return false;
168}
David Ahern745f43e2011-03-09 22:23:26 -0700169
David Ahern9cbdb702011-04-06 21:54:20 -0600170static const char *output_field2str(enum perf_output_field field)
171{
172 int i, imax = ARRAY_SIZE(all_output_options);
173 const char *str = "";
174
175 for (i = 0; i < imax; ++i) {
176 if (all_output_options[i].field == field) {
177 str = all_output_options[i].str;
178 break;
179 }
180 }
181 return str;
182}
183
David Ahern2c9e45f72011-03-17 10:03:21 -0600184#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700185
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300186static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
187 u64 sample_type, const char *sample_msg,
188 enum perf_output_field field,
189 bool allow_user_set)
David Ahern1424dc92011-03-09 22:23:28 -0700190{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300191 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600192 int type = attr->type;
193 const char *evname;
194
195 if (attr->sample_type & sample_type)
196 return 0;
197
198 if (output[type].user_set) {
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300199 if (allow_user_set)
200 return 0;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300201 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600202 pr_err("Samples for '%s' event do not have %s attribute set. "
203 "Cannot print '%s' field.\n",
204 evname, sample_msg, output_field2str(field));
205 return -1;
206 }
207
208 /* user did not ask for it explicitly so remove from the default list */
209 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300210 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600211 pr_debug("Samples for '%s' event do not have %s attribute set. "
212 "Skipping '%s' field.\n",
213 evname, sample_msg, output_field2str(field));
214
215 return 0;
216}
217
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300218static int perf_evsel__check_stype(struct perf_evsel *evsel,
219 u64 sample_type, const char *sample_msg,
220 enum perf_output_field field)
221{
222 return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
223 false);
224}
225
David Ahern9cbdb702011-04-06 21:54:20 -0600226static int perf_evsel__check_attr(struct perf_evsel *evsel,
227 struct perf_session *session)
228{
229 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300230 bool allow_user_set;
231
Jiri Olsae099eba2016-01-05 22:09:09 +0100232 if (perf_header__has_feat(&session->header, HEADER_STAT))
233 return 0;
234
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300235 allow_user_set = perf_header__has_feat(&session->header,
236 HEADER_AUXTRACE);
David Ahern9cbdb702011-04-06 21:54:20 -0600237
David Ahern1424dc92011-03-09 22:23:28 -0700238 if (PRINT_FIELD(TRACE) &&
239 !perf_session__has_traces(session, "record -R"))
240 return -EINVAL;
241
David Ahern787bef12011-05-27 14:28:43 -0600242 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300243 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
244 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700245 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700246 }
David Ahern7cec0922011-05-30 13:08:23 -0600247
248 if (PRINT_FIELD(ADDR) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300249 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
250 PERF_OUTPUT_ADDR, allow_user_set))
David Ahern7cec0922011-05-30 13:08:23 -0600251 return -EINVAL;
252
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100253 if (PRINT_FIELD(DATA_SRC) &&
254 perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
255 PERF_OUTPUT_DATA_SRC))
256 return -EINVAL;
257
258 if (PRINT_FIELD(WEIGHT) &&
259 perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
260 PERF_OUTPUT_WEIGHT))
261 return -EINVAL;
262
David Ahern7cec0922011-05-30 13:08:23 -0600263 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
264 pr_err("Display of symbols requested but neither sample IP nor "
265 "sample address\nis selected. Hence, no addresses to convert "
266 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600267 return -EINVAL;
268 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900269 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
270 pr_err("Display of offsets requested but symbol is not"
271 "selected.\n");
272 return -EINVAL;
273 }
David Ahern7cec0922011-05-30 13:08:23 -0600274 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
275 pr_err("Display of DSO requested but neither sample IP nor "
276 "sample address\nis selected. Hence, no addresses to convert "
277 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600278 return -EINVAL;
279 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200280 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
281 pr_err("Display of source line number requested but sample IP is not\n"
282 "selected. Hence, no address to lookup the source line number.\n");
283 return -EINVAL;
284 }
David Ahern1424dc92011-03-09 22:23:28 -0700285
286 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300287 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
288 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700289 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700290
291 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300292 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
293 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700294 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700295
296 if (PRINT_FIELD(CPU) &&
Adrian Hunter6d5cdd62015-04-24 22:29:44 +0300297 perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
298 PERF_OUTPUT_CPU, allow_user_set))
David Ahern1424dc92011-03-09 22:23:28 -0700299 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600300
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200301 if (PRINT_FIELD(PERIOD) &&
302 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
303 PERF_OUTPUT_PERIOD))
304 return -EINVAL;
305
Stephane Eranianfc36f942015-08-31 18:41:10 +0200306 if (PRINT_FIELD(IREGS) &&
307 perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
308 PERF_OUTPUT_IREGS))
309 return -EINVAL;
310
David Ahern9cbdb702011-04-06 21:54:20 -0600311 return 0;
312}
313
Adrian Hunter7ea95722013-11-01 15:51:30 +0200314static void set_print_ip_opts(struct perf_event_attr *attr)
315{
316 unsigned int type = attr->type;
317
318 output[type].print_ip_opts = 0;
319 if (PRINT_FIELD(IP))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300320 output[type].print_ip_opts |= EVSEL__PRINT_IP;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200321
322 if (PRINT_FIELD(SYM))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300323 output[type].print_ip_opts |= EVSEL__PRINT_SYM;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200324
325 if (PRINT_FIELD(DSO))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300326 output[type].print_ip_opts |= EVSEL__PRINT_DSO;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200327
328 if (PRINT_FIELD(SYMOFFSET))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300329 output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200330
331 if (PRINT_FIELD(SRCLINE))
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300332 output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200333}
334
David Ahern9cbdb702011-04-06 21:54:20 -0600335/*
336 * verify all user requested events exist and the samples
337 * have the expected data
338 */
339static int perf_session__check_output_opt(struct perf_session *session)
340{
341 int j;
342 struct perf_evsel *evsel;
343
344 for (j = 0; j < PERF_TYPE_MAX; ++j) {
345 evsel = perf_session__find_first_evtype(session, j);
346
347 /*
348 * even if fields is set to 0 (ie., show nothing) event must
349 * exist if user explicitly includes it on the command line
350 */
351 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
352 pr_err("%s events do not exist. "
353 "Remove corresponding -f option to proceed.\n",
354 event_type(j));
355 return -1;
356 }
357
358 if (evsel && output[j].fields &&
359 perf_evsel__check_attr(evsel, session))
360 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400361
362 if (evsel == NULL)
363 continue;
364
Adrian Hunter7ea95722013-11-01 15:51:30 +0200365 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700366 }
367
Adrian Hunter98526ee2014-07-31 09:00:59 +0300368 if (!no_callchain) {
369 bool use_callchain = false;
370
371 evlist__for_each(session->evlist, evsel) {
372 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
373 use_callchain = true;
374 break;
375 }
376 }
377 if (!use_callchain)
378 symbol_conf.use_callchain = false;
379 }
380
David Ahern80b8b492013-11-19 21:07:37 -0700381 /*
382 * set default for tracepoints to print symbols only
383 * if callchains are present
384 */
385 if (symbol_conf.use_callchain &&
386 !output[PERF_TYPE_TRACEPOINT].user_set) {
387 struct perf_event_attr *attr;
388
389 j = PERF_TYPE_TRACEPOINT;
390 evsel = perf_session__find_first_evtype(session, j);
391 if (evsel == NULL)
392 goto out;
393
394 attr = &evsel->attr;
395
396 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
397 output[j].fields |= PERF_OUTPUT_IP;
398 output[j].fields |= PERF_OUTPUT_SYM;
399 output[j].fields |= PERF_OUTPUT_DSO;
400 set_print_ip_opts(attr);
401 }
402 }
403
404out:
David Ahern1424dc92011-03-09 22:23:28 -0700405 return 0;
406}
David Ahern745f43e2011-03-09 22:23:26 -0700407
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300408static void print_sample_iregs(struct perf_sample *sample,
Stephane Eranianfc36f942015-08-31 18:41:10 +0200409 struct perf_event_attr *attr)
410{
411 struct regs_dump *regs = &sample->intr_regs;
412 uint64_t mask = attr->sample_regs_intr;
413 unsigned i = 0, r;
414
415 if (!regs)
416 return;
417
418 for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
419 u64 val = regs->regs[i++];
420 printf("%5s:0x%"PRIx64" ", perf_reg_name(r), val);
421 }
422}
423
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300424static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700425 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300426 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700427{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300428 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700429 unsigned long secs;
430 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700431 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700432
David Ahern745f43e2011-03-09 22:23:26 -0700433 if (PRINT_FIELD(COMM)) {
434 if (latency_format)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200435 printf("%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600436 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200437 printf("%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700438 else
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200439 printf("%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700440 }
David Ahernc70c94b2011-03-09 22:23:25 -0700441
David Ahern745f43e2011-03-09 22:23:26 -0700442 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
443 printf("%5d/%-5d ", sample->pid, sample->tid);
444 else if (PRINT_FIELD(PID))
445 printf("%5d ", sample->pid);
446 else if (PRINT_FIELD(TID))
447 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700448
David Ahern745f43e2011-03-09 22:23:26 -0700449 if (PRINT_FIELD(CPU)) {
450 if (latency_format)
451 printf("%3d ", sample->cpu);
452 else
453 printf("[%03d] ", sample->cpu);
454 }
David Ahernc70c94b2011-03-09 22:23:25 -0700455
David Ahern745f43e2011-03-09 22:23:26 -0700456 if (PRINT_FIELD(TIME)) {
457 nsecs = sample->time;
458 secs = nsecs / NSECS_PER_SEC;
459 nsecs -= secs * NSECS_PER_SEC;
460 usecs = nsecs / NSECS_PER_USEC;
Adrian Hunter83e19862015-09-25 16:15:36 +0300461 if (nanosecs)
462 printf("%5lu.%09llu: ", secs, nsecs);
463 else
464 printf("%5lu.%06lu: ", secs, usecs);
David Ahern745f43e2011-03-09 22:23:26 -0700465 }
David Ahernc70c94b2011-03-09 22:23:25 -0700466}
467
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200468static inline char
469mispred_str(struct branch_entry *br)
470{
471 if (!(br->flags.mispred || br->flags.predicted))
472 return '-';
473
474 return br->flags.predicted ? 'P' : 'M';
475}
476
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300477static void print_sample_brstack(struct perf_sample *sample)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200478{
479 struct branch_stack *br = sample->branch_stack;
480 u64 i;
481
482 if (!(br && br->nr))
483 return;
484
485 for (i = 0; i < br->nr; i++) {
486 printf(" 0x%"PRIx64"/0x%"PRIx64"/%c/%c/%c/%d ",
487 br->entries[i].from,
488 br->entries[i].to,
489 mispred_str( br->entries + i),
490 br->entries[i].flags.in_tx? 'X' : '-',
491 br->entries[i].flags.abort? 'A' : '-',
492 br->entries[i].flags.cycles);
493 }
494}
495
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300496static void print_sample_brstacksym(struct perf_sample *sample,
497 struct thread *thread)
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200498{
499 struct branch_stack *br = sample->branch_stack;
500 struct addr_location alf, alt;
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200501 u64 i, from, to;
502
503 if (!(br && br->nr))
504 return;
505
506 for (i = 0; i < br->nr; i++) {
507
508 memset(&alf, 0, sizeof(alf));
509 memset(&alt, 0, sizeof(alt));
510 from = br->entries[i].from;
511 to = br->entries[i].to;
512
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300513 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200514 if (alf.map)
515 alf.sym = map__find_symbol(alf.map, alf.addr, NULL);
516
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300517 thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200518 if (alt.map)
519 alt.sym = map__find_symbol(alt.map, alt.addr, NULL);
520
521 symbol__fprintf_symname_offs(alf.sym, &alf, stdout);
522 putchar('/');
523 symbol__fprintf_symname_offs(alt.sym, &alt, stdout);
524 printf("/%c/%c/%c/%d ",
525 mispred_str( br->entries + i),
526 br->entries[i].flags.in_tx? 'X' : '-',
527 br->entries[i].flags.abort? 'A' : '-',
528 br->entries[i].flags.cycles);
529 }
530}
531
532
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300533static void print_sample_addr(struct perf_sample *sample,
David Ahern7cec0922011-05-30 13:08:23 -0600534 struct thread *thread,
535 struct perf_event_attr *attr)
536{
537 struct addr_location al;
David Ahern7cec0922011-05-30 13:08:23 -0600538
539 printf("%16" PRIx64, sample->addr);
540
541 if (!sample_addr_correlates_sym(attr))
542 return;
543
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -0300544 thread__resolve(thread, &al, sample);
David Ahern7cec0922011-05-30 13:08:23 -0600545
546 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900547 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900548 if (PRINT_FIELD(SYMOFFSET))
549 symbol__fprintf_symname_offs(al.sym, &al, stdout);
550 else
551 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600552 }
553
554 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900555 printf(" (");
556 map__fprintf_dsoname(al.map, stdout);
557 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600558 }
559}
560
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300561static void print_sample_bts(struct perf_sample *sample,
Akihiro Nagai95582592012-01-30 13:43:09 +0900562 struct perf_evsel *evsel,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200563 struct thread *thread,
564 struct addr_location *al)
Akihiro Nagai95582592012-01-30 13:43:09 +0900565{
566 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300567 bool print_srcline_last = false;
Akihiro Nagai95582592012-01-30 13:43:09 +0900568
569 /* print branch_from information */
570 if (PRINT_FIELD(IP)) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300571 unsigned int print_opts = output[attr->type].print_ip_opts;
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300572 struct callchain_cursor *cursor = NULL, cursor_callchain;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300573
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300574 if (symbol_conf.use_callchain && sample->callchain &&
575 thread__resolve_callchain(al->thread, &cursor_callchain, evsel,
576 sample, NULL, NULL, scripting_max_stack) == 0)
577 cursor = &cursor_callchain;
578
579 if (cursor == NULL) {
580 putchar(' ');
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300581 if (print_opts & EVSEL__PRINT_SRCLINE) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300582 print_srcline_last = true;
Arnaldo Carvalho de Meloe20ab862016-04-12 15:16:15 -0300583 print_opts &= ~EVSEL__PRINT_SRCLINE;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300584 }
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300585 } else
586 putchar('\n');
587
588 sample__fprintf_sym(sample, al, 0, print_opts, cursor, stdout);
Akihiro Nagai95582592012-01-30 13:43:09 +0900589 }
590
Akihiro Nagai95582592012-01-30 13:43:09 +0900591 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +0300592 if (PRINT_FIELD(ADDR) ||
593 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter578bea42014-07-22 16:17:16 +0300594 !output[attr->type].user_set)) {
595 printf(" => ");
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300596 print_sample_addr(sample, thread, attr);
Adrian Hunter578bea42014-07-22 16:17:16 +0300597 }
Akihiro Nagai95582592012-01-30 13:43:09 +0900598
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300599 if (print_srcline_last)
600 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
601
Akihiro Nagai95582592012-01-30 13:43:09 +0900602 printf("\n");
603}
604
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300605static void print_sample_flags(u32 flags)
606{
607 const char *chars = PERF_IP_FLAG_CHARS;
608 const int n = strlen(PERF_IP_FLAG_CHARS);
609 char str[33];
610 int i, pos = 0;
611
612 for (i = 0; i < n; i++, flags >>= 1) {
613 if (flags & 1)
614 str[pos++] = chars[i];
615 }
616 for (; i < 32; i++, flags >>= 1) {
617 if (flags & 1)
618 str[pos++] = '?';
619 }
620 str[pos] = 0;
621 printf(" %-4s ", str);
622}
623
Wang Nan30372f02016-02-24 11:20:45 +0000624struct printer_data {
625 int line_no;
626 bool hit_nul;
627 bool is_printable;
628};
629
630static void
631print_sample_bpf_output_printer(enum binary_printer_ops op,
632 unsigned int val,
633 void *extra)
634{
635 unsigned char ch = (unsigned char)val;
636 struct printer_data *printer_data = extra;
637
638 switch (op) {
639 case BINARY_PRINT_DATA_BEGIN:
640 printf("\n");
641 break;
642 case BINARY_PRINT_LINE_BEGIN:
643 printf("%17s", !printer_data->line_no ? "BPF output:" :
644 " ");
645 break;
646 case BINARY_PRINT_ADDR:
647 printf(" %04x:", val);
648 break;
649 case BINARY_PRINT_NUM_DATA:
650 printf(" %02x", val);
651 break;
652 case BINARY_PRINT_NUM_PAD:
653 printf(" ");
654 break;
655 case BINARY_PRINT_SEP:
656 printf(" ");
657 break;
658 case BINARY_PRINT_CHAR_DATA:
659 if (printer_data->hit_nul && ch)
660 printer_data->is_printable = false;
661
662 if (!isprint(ch)) {
663 printf("%c", '.');
664
665 if (!printer_data->is_printable)
666 break;
667
668 if (ch == '\0')
669 printer_data->hit_nul = true;
670 else
671 printer_data->is_printable = false;
672 } else {
673 printf("%c", ch);
674 }
675 break;
676 case BINARY_PRINT_CHAR_PAD:
677 printf(" ");
678 break;
679 case BINARY_PRINT_LINE_END:
680 printf("\n");
681 printer_data->line_no++;
682 break;
683 case BINARY_PRINT_DATA_END:
684 default:
685 break;
686 }
687}
688
689static void print_sample_bpf_output(struct perf_sample *sample)
690{
691 unsigned int nr_bytes = sample->raw_size;
692 struct printer_data printer_data = {0, false, true};
693
694 print_binary(sample->raw_data, nr_bytes, 8,
695 print_sample_bpf_output_printer, &printer_data);
696
697 if (printer_data.is_printable && printer_data.hit_nul)
698 printf("%17s \"%s\"\n", "BPF string:",
699 (char *)(sample->raw_data));
700}
701
Jiri Olsa809e9422015-11-26 18:55:21 +0100702struct perf_script {
703 struct perf_tool tool;
704 struct perf_session *session;
705 bool show_task_events;
706 bool show_mmap_events;
707 bool show_switch_events;
Jiri Olsacfc88742016-01-05 22:09:06 +0100708 bool allocated;
709 struct cpu_map *cpus;
710 struct thread_map *threads;
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100711 int name_width;
Jiri Olsa809e9422015-11-26 18:55:21 +0100712};
713
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100714static int perf_evlist__max_name_len(struct perf_evlist *evlist)
715{
716 struct perf_evsel *evsel;
717 int max = 0;
718
719 evlist__for_each(evlist, evsel) {
720 int len = strlen(perf_evsel__name(evsel));
721
722 max = MAX(len, max);
723 }
724
725 return max;
726}
727
Jiri Olsac19ac912016-02-24 09:46:54 +0100728static size_t data_src__printf(u64 data_src)
729{
730 struct mem_info mi = { .data_src.val = data_src };
731 char decode[100];
732 char out[100];
733 static int maxlen;
734 int len;
735
736 perf_script__meminfo_scnprintf(decode, 100, &mi);
737
738 len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
739 if (maxlen < len)
740 maxlen = len;
741
742 return printf("%-*s", maxlen, out);
743}
744
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300745static void process_event(struct perf_script *script,
Jiri Olsa809e9422015-11-26 18:55:21 +0100746 struct perf_sample *sample, struct perf_evsel *evsel,
747 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700748{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -0300749 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300750 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700751
David Ahern2c9e45f72011-03-17 10:03:21 -0600752 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700753 return;
754
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300755 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700756
Jiri Olsa535aeaae2014-08-25 16:45:42 +0200757 if (PRINT_FIELD(PERIOD))
758 printf("%10" PRIu64 " ", sample->period);
759
Namhyung Kime944d3d2013-11-18 14:34:52 +0900760 if (PRINT_FIELD(EVNAME)) {
761 const char *evname = perf_evsel__name(evsel);
Jiri Olsa9cdbc402016-01-07 10:14:05 +0100762
763 if (!script->name_width)
764 script->name_width = perf_evlist__max_name_len(script->session->evlist);
765
766 printf("%*s: ", script->name_width,
767 evname ? evname : "[unknown]");
Namhyung Kime944d3d2013-11-18 14:34:52 +0900768 }
769
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300770 if (print_flags)
771 print_sample_flags(sample->flags);
772
Akihiro Nagai95582592012-01-30 13:43:09 +0900773 if (is_bts_event(attr)) {
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300774 print_sample_bts(sample, evsel, thread, al);
Akihiro Nagai95582592012-01-30 13:43:09 +0900775 return;
776 }
777
David Ahern745f43e2011-03-09 22:23:26 -0700778 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300779 event_format__print(evsel->tp_format, sample->cpu,
780 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600781 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300782 print_sample_addr(sample, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600783
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100784 if (PRINT_FIELD(DATA_SRC))
Jiri Olsac19ac912016-02-24 09:46:54 +0100785 data_src__printf(sample->data_src);
Jiri Olsa94ddddf2016-02-15 09:34:51 +0100786
787 if (PRINT_FIELD(WEIGHT))
788 printf("%16" PRIu64, sample->weight);
789
David Ahern787bef12011-05-27 14:28:43 -0600790 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300791 struct callchain_cursor *cursor = NULL, cursor_callchain;
David Aherna6ffaf92013-08-07 22:50:51 -0400792
Arnaldo Carvalho de Melo6f736732016-04-14 17:45:51 -0300793 if (symbol_conf.use_callchain &&
794 thread__resolve_callchain(al->thread, &cursor_callchain, evsel,
795 sample, NULL, NULL, scripting_max_stack) == 0)
796 cursor = &cursor_callchain;
797
798 putchar(cursor ? '\n' : ' ');
799 sample__fprintf_sym(sample, al, 0, output[attr->type].print_ip_opts, cursor, stdout);
David Ahernc0230b22011-03-09 22:23:27 -0700800 }
801
Stephane Eranianfc36f942015-08-31 18:41:10 +0200802 if (PRINT_FIELD(IREGS))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300803 print_sample_iregs(sample, attr);
Stephane Eranianfc36f942015-08-31 18:41:10 +0200804
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200805 if (PRINT_FIELD(BRSTACK))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300806 print_sample_brstack(sample);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200807 else if (PRINT_FIELD(BRSTACKSYM))
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300808 print_sample_brstacksym(sample, thread);
Stephane Eraniandc323ce2015-08-31 18:41:13 +0200809
Wang Nan30372f02016-02-24 11:20:45 +0000810 if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
811 print_sample_bpf_output(sample);
812
David Ahernc70c94b2011-03-09 22:23:25 -0700813 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700814}
815
Tom Zanussi956ffd02009-11-25 01:15:46 -0600816static struct scripting_ops *scripting_ops;
817
Jiri Olsa36e33c52016-01-06 11:49:56 +0100818static void __process_stat(struct perf_evsel *counter, u64 tstamp)
819{
820 int nthreads = thread_map__nr(counter->threads);
821 int ncpus = perf_evsel__nr_cpus(counter);
822 int cpu, thread;
823 static int header_printed;
824
825 if (counter->system_wide)
826 nthreads = 1;
827
828 if (!header_printed) {
829 printf("%3s %8s %15s %15s %15s %15s %s\n",
830 "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
831 header_printed = 1;
832 }
833
834 for (thread = 0; thread < nthreads; thread++) {
835 for (cpu = 0; cpu < ncpus; cpu++) {
836 struct perf_counts_values *counts;
837
838 counts = perf_counts(counter->counts, cpu, thread);
839
840 printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
841 counter->cpus->map[cpu],
842 thread_map__pid(counter->threads, thread),
843 counts->val,
844 counts->ena,
845 counts->run,
846 tstamp,
847 perf_evsel__name(counter));
848 }
849 }
850}
851
Jiri Olsae099eba2016-01-05 22:09:09 +0100852static void process_stat(struct perf_evsel *counter, u64 tstamp)
853{
854 if (scripting_ops && scripting_ops->process_stat)
855 scripting_ops->process_stat(&stat_config, counter, tstamp);
Jiri Olsa36e33c52016-01-06 11:49:56 +0100856 else
857 __process_stat(counter, tstamp);
Jiri Olsae099eba2016-01-05 22:09:09 +0100858}
859
860static void process_stat_interval(u64 tstamp)
861{
862 if (scripting_ops && scripting_ops->process_stat_interval)
863 scripting_ops->process_stat_interval(tstamp);
864}
865
Tom Zanussi956ffd02009-11-25 01:15:46 -0600866static void setup_scripting(void)
867{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600868 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600869 setup_python_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -0600870}
871
Adrian Hunterd445dd22014-08-15 22:08:37 +0300872static int flush_scripting(void)
873{
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100874 return scripting_ops ? scripting_ops->flush_script() : 0;
Adrian Hunterd445dd22014-08-15 22:08:37 +0300875}
876
Tom Zanussi956ffd02009-11-25 01:15:46 -0600877static int cleanup_scripting(void)
878{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100879 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500880
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100881 return scripting_ops ? scripting_ops->stop_script() : 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600882}
883
Jiri Olsa809e9422015-11-26 18:55:21 +0100884static int process_sample_event(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200885 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200886 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300887 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200888 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200889{
Jiri Olsa809e9422015-11-26 18:55:21 +0100890 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Aherne7984b72011-11-21 10:02:52 -0700891 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200892
David Ahern1424dc92011-03-09 22:23:28 -0700893 if (debug_mode) {
894 if (sample->time < last_timestamp) {
895 pr_err("Samples misordered, previous: %" PRIu64
896 " this: %" PRIu64 "\n", last_timestamp,
897 sample->time);
898 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200899 }
David Ahern1424dc92011-03-09 22:23:28 -0700900 last_timestamp = sample->time;
901 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200902 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000903
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300904 if (machine__resolve(machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -0700905 pr_err("problem processing %d event, skipping it.\n",
906 event->header.type);
907 return -1;
908 }
909
910 if (al.filtered)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300911 goto out_put;
David Aherne7984b72011-11-21 10:02:52 -0700912
Anton Blanchard5d67be92011-07-04 21:57:50 +1000913 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300914 goto out_put;
Anton Blanchard5d67be92011-07-04 21:57:50 +1000915
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100916 if (scripting_ops)
917 scripting_ops->process_event(event, sample, evsel, &al);
918 else
Arnaldo Carvalho de Meloa3dff302016-03-23 11:55:24 -0300919 process_event(scr, sample, evsel, &al);
Jiri Olsa2aaecfc2015-11-26 14:55:23 +0100920
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300921out_put:
922 addr_location__put(&al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200923 return 0;
924}
925
Adrian Hunter7ea95722013-11-01 15:51:30 +0200926static int process_attr(struct perf_tool *tool, union perf_event *event,
927 struct perf_evlist **pevlist)
928{
929 struct perf_script *scr = container_of(tool, struct perf_script, tool);
930 struct perf_evlist *evlist;
931 struct perf_evsel *evsel, *pos;
932 int err;
933
934 err = perf_event__process_attr(tool, event, pevlist);
935 if (err)
936 return err;
937
938 evlist = *pevlist;
939 evsel = perf_evlist__last(*pevlist);
940
941 if (evsel->attr.type >= PERF_TYPE_MAX)
942 return 0;
943
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300944 evlist__for_each(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +0200945 if (pos->attr.type == evsel->attr.type && pos != evsel)
946 return 0;
947 }
948
949 set_print_ip_opts(&evsel->attr);
950
Jiri Olsad2b5a312015-10-16 12:41:25 +0200951 if (evsel->attr.sample_type)
952 err = perf_evsel__check_attr(evsel, scr->session);
953
954 return err;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200955}
956
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900957static int process_comm_event(struct perf_tool *tool,
958 union perf_event *event,
959 struct perf_sample *sample,
960 struct machine *machine)
961{
962 struct thread *thread;
963 struct perf_script *script = container_of(tool, struct perf_script, tool);
964 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +0300965 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900966 int ret = -1;
967
968 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
969 if (thread == NULL) {
970 pr_debug("problem processing COMM event, skipping it.\n");
971 return -1;
972 }
973
974 if (perf_event__process_comm(tool, event, sample, machine) < 0)
975 goto out;
976
977 if (!evsel->attr.sample_id_all) {
978 sample->cpu = 0;
979 sample->time = 0;
980 sample->tid = event->comm.tid;
981 sample->pid = event->comm.pid;
982 }
983 print_sample_start(sample, thread, evsel);
984 perf_event__fprintf(event, stdout);
985 ret = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900986out:
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300987 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900988 return ret;
989}
990
991static int process_fork_event(struct perf_tool *tool,
992 union perf_event *event,
993 struct perf_sample *sample,
994 struct machine *machine)
995{
996 struct thread *thread;
997 struct perf_script *script = container_of(tool, struct perf_script, tool);
998 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +0300999 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001000
1001 if (perf_event__process_fork(tool, event, sample, machine) < 0)
1002 return -1;
1003
1004 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1005 if (thread == NULL) {
1006 pr_debug("problem processing FORK event, skipping it.\n");
1007 return -1;
1008 }
1009
1010 if (!evsel->attr.sample_id_all) {
1011 sample->cpu = 0;
1012 sample->time = event->fork.time;
1013 sample->tid = event->fork.tid;
1014 sample->pid = event->fork.pid;
1015 }
1016 print_sample_start(sample, thread, evsel);
1017 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001018 thread__put(thread);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001019
1020 return 0;
1021}
1022static int process_exit_event(struct perf_tool *tool,
1023 union perf_event *event,
1024 struct perf_sample *sample,
1025 struct machine *machine)
1026{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001027 int err = 0;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001028 struct thread *thread;
1029 struct perf_script *script = container_of(tool, struct perf_script, tool);
1030 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001031 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001032
1033 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
1034 if (thread == NULL) {
1035 pr_debug("problem processing EXIT event, skipping it.\n");
1036 return -1;
1037 }
1038
1039 if (!evsel->attr.sample_id_all) {
1040 sample->cpu = 0;
1041 sample->time = 0;
Adrian Hunter53ff6bc2015-08-18 12:07:05 +03001042 sample->tid = event->fork.tid;
1043 sample->pid = event->fork.pid;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001044 }
1045 print_sample_start(sample, thread, evsel);
1046 perf_event__fprintf(event, stdout);
1047
1048 if (perf_event__process_exit(tool, event, sample, machine) < 0)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001049 err = -1;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001050
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001051 thread__put(thread);
1052 return err;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001053}
1054
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001055static int process_mmap_event(struct perf_tool *tool,
1056 union perf_event *event,
1057 struct perf_sample *sample,
1058 struct machine *machine)
1059{
1060 struct thread *thread;
1061 struct perf_script *script = container_of(tool, struct perf_script, tool);
1062 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001063 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001064
1065 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
1066 return -1;
1067
1068 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
1069 if (thread == NULL) {
1070 pr_debug("problem processing MMAP event, skipping it.\n");
1071 return -1;
1072 }
1073
1074 if (!evsel->attr.sample_id_all) {
1075 sample->cpu = 0;
1076 sample->time = 0;
1077 sample->tid = event->mmap.tid;
1078 sample->pid = event->mmap.pid;
1079 }
1080 print_sample_start(sample, thread, evsel);
1081 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001082 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001083 return 0;
1084}
1085
1086static int process_mmap2_event(struct perf_tool *tool,
1087 union perf_event *event,
1088 struct perf_sample *sample,
1089 struct machine *machine)
1090{
1091 struct thread *thread;
1092 struct perf_script *script = container_of(tool, struct perf_script, tool);
1093 struct perf_session *session = script->session;
Adrian Hunter06b234e2015-07-21 12:44:05 +03001094 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001095
1096 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
1097 return -1;
1098
1099 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
1100 if (thread == NULL) {
1101 pr_debug("problem processing MMAP2 event, skipping it.\n");
1102 return -1;
1103 }
1104
1105 if (!evsel->attr.sample_id_all) {
1106 sample->cpu = 0;
1107 sample->time = 0;
1108 sample->tid = event->mmap2.tid;
1109 sample->pid = event->mmap2.pid;
1110 }
1111 print_sample_start(sample, thread, evsel);
1112 perf_event__fprintf(event, stdout);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001113 thread__put(thread);
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001114 return 0;
1115}
1116
Adrian Hunter7c148982015-07-21 12:44:06 +03001117static int process_switch_event(struct perf_tool *tool,
1118 union perf_event *event,
1119 struct perf_sample *sample,
1120 struct machine *machine)
1121{
1122 struct thread *thread;
1123 struct perf_script *script = container_of(tool, struct perf_script, tool);
1124 struct perf_session *session = script->session;
1125 struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
1126
1127 if (perf_event__process_switch(tool, event, sample, machine) < 0)
1128 return -1;
1129
1130 thread = machine__findnew_thread(machine, sample->pid,
1131 sample->tid);
1132 if (thread == NULL) {
1133 pr_debug("problem processing SWITCH event, skipping it.\n");
1134 return -1;
1135 }
1136
1137 print_sample_start(sample, thread, evsel);
1138 perf_event__fprintf(event, stdout);
1139 thread__put(thread);
1140 return 0;
1141}
1142
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001143static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -05001144{
1145 session_done = 1;
1146}
1147
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001148static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001149{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001150 int ret;
1151
Tom Zanussic239da32010-04-01 23:59:18 -05001152 signal(SIGINT, sig_handler);
1153
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001154 /* override event processing functions */
1155 if (script->show_task_events) {
1156 script->tool.comm = process_comm_event;
1157 script->tool.fork = process_fork_event;
1158 script->tool.exit = process_exit_event;
1159 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001160 if (script->show_mmap_events) {
1161 script->tool.mmap = process_mmap_event;
1162 script->tool.mmap2 = process_mmap2_event;
1163 }
Adrian Hunter7c148982015-07-21 12:44:06 +03001164 if (script->show_switch_events)
1165 script->tool.context_switch = process_switch_event;
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001166
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001167 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001168
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -02001169 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001170 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +02001171
1172 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001173}
1174
Tom Zanussi956ffd02009-11-25 01:15:46 -06001175struct script_spec {
1176 struct list_head node;
1177 struct scripting_ops *ops;
1178 char spec[0];
1179};
1180
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001181static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001182
1183static struct script_spec *script_spec__new(const char *spec,
1184 struct scripting_ops *ops)
1185{
1186 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
1187
1188 if (s != NULL) {
1189 strcpy(s->spec, spec);
1190 s->ops = ops;
1191 }
1192
1193 return s;
1194}
1195
Tom Zanussi956ffd02009-11-25 01:15:46 -06001196static void script_spec__add(struct script_spec *s)
1197{
1198 list_add_tail(&s->node, &script_specs);
1199}
1200
1201static struct script_spec *script_spec__find(const char *spec)
1202{
1203 struct script_spec *s;
1204
1205 list_for_each_entry(s, &script_specs, node)
1206 if (strcasecmp(s->spec, spec) == 0)
1207 return s;
1208 return NULL;
1209}
1210
Tom Zanussi956ffd02009-11-25 01:15:46 -06001211int script_spec_register(const char *spec, struct scripting_ops *ops)
1212{
1213 struct script_spec *s;
1214
1215 s = script_spec__find(spec);
1216 if (s)
1217 return -1;
1218
Taeung Song8560bae2016-02-26 00:13:10 +09001219 s = script_spec__new(spec, ops);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001220 if (!s)
1221 return -1;
Taeung Song8560bae2016-02-26 00:13:10 +09001222 else
1223 script_spec__add(s);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001224
1225 return 0;
1226}
1227
1228static struct scripting_ops *script_spec__lookup(const char *spec)
1229{
1230 struct script_spec *s = script_spec__find(spec);
1231 if (!s)
1232 return NULL;
1233
1234 return s->ops;
1235}
1236
1237static void list_available_languages(void)
1238{
1239 struct script_spec *s;
1240
1241 fprintf(stderr, "\n");
1242 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001243 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001244
1245 list_for_each_entry(s, &script_specs, node)
1246 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
1247
1248 fprintf(stderr, "\n");
1249}
1250
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001251static int parse_scriptname(const struct option *opt __maybe_unused,
1252 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -06001253{
1254 char spec[PATH_MAX];
1255 const char *script, *ext;
1256 int len;
1257
Tom Zanussif526d682010-01-27 02:27:52 -06001258 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -06001259 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -06001260 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001261 }
1262
1263 script = strchr(str, ':');
1264 if (script) {
1265 len = script - str;
1266 if (len >= PATH_MAX) {
1267 fprintf(stderr, "invalid language specifier");
1268 return -1;
1269 }
1270 strncpy(spec, str, len);
1271 spec[len] = '\0';
1272 scripting_ops = script_spec__lookup(spec);
1273 if (!scripting_ops) {
1274 fprintf(stderr, "invalid language specifier");
1275 return -1;
1276 }
1277 script++;
1278 } else {
1279 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +01001280 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -06001281 if (!ext) {
1282 fprintf(stderr, "invalid script extension");
1283 return -1;
1284 }
1285 scripting_ops = script_spec__lookup(++ext);
1286 if (!scripting_ops) {
1287 fprintf(stderr, "invalid script extension");
1288 return -1;
1289 }
1290 }
1291
1292 script_name = strdup(script);
1293
1294 return 0;
1295}
1296
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001297static int parse_output_fields(const struct option *opt __maybe_unused,
1298 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -07001299{
1300 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -05001301 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -06001302 int j;
David Ahern745f43e2011-03-09 22:23:26 -07001303 int rc = 0;
1304 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -07001305 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -07001306
1307 if (!str)
1308 return -ENOMEM;
1309
David Ahern2c9e45f72011-03-17 10:03:21 -06001310 /* first word can state for which event type the user is specifying
1311 * the fields. If no type exists, the specified fields apply to all
1312 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -07001313 */
David Ahern2c9e45f72011-03-17 10:03:21 -06001314 tok = strchr(str, ':');
1315 if (tok) {
1316 *tok = '\0';
1317 tok++;
1318 if (!strcmp(str, "hw"))
1319 type = PERF_TYPE_HARDWARE;
1320 else if (!strcmp(str, "sw"))
1321 type = PERF_TYPE_SOFTWARE;
1322 else if (!strcmp(str, "trace"))
1323 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -07001324 else if (!strcmp(str, "raw"))
1325 type = PERF_TYPE_RAW;
Wang Nan27cfef02015-12-08 02:25:43 +00001326 else if (!strcmp(str, "break"))
1327 type = PERF_TYPE_BREAKPOINT;
David Ahern2c9e45f72011-03-17 10:03:21 -06001328 else {
1329 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +01001330 rc = -EINVAL;
1331 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -06001332 }
1333
1334 if (output[type].user_set)
1335 pr_warning("Overriding previous field request for %s events.\n",
1336 event_type(type));
1337
1338 output[type].fields = 0;
1339 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001340 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -06001341
1342 } else {
1343 tok = str;
1344 if (strlen(str) == 0) {
1345 fprintf(stderr,
1346 "Cannot set fields to 'none' for all event types.\n");
1347 rc = -EINVAL;
1348 goto out;
1349 }
1350
1351 if (output_set_by_user())
1352 pr_warning("Overriding previous field request for all events.\n");
1353
1354 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1355 output[j].fields = 0;
1356 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001357 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06001358 }
David Ahern1424dc92011-03-09 22:23:28 -07001359 }
1360
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001361 for (tok = strtok(tok, ","); tok; tok = strtok(NULL, ",")) {
David Ahern745f43e2011-03-09 22:23:26 -07001362 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001363 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07001364 break;
David Ahern745f43e2011-03-09 22:23:26 -07001365 }
Adrian Hunter400ea6d2015-04-09 18:54:05 +03001366 if (i == imax && strcmp(tok, "flags") == 0) {
1367 print_flags = true;
1368 continue;
1369 }
David Ahern745f43e2011-03-09 22:23:26 -07001370 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001371 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07001372 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06001373 goto out;
1374 }
1375
1376 if (type == -1) {
1377 /* add user option to all events types for
1378 * which it is valid
1379 */
1380 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1381 if (output[j].invalid_fields & all_output_options[i].field) {
1382 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1383 all_output_options[i].str, event_type(j));
1384 } else
1385 output[j].fields |= all_output_options[i].field;
1386 }
1387 } else {
1388 if (output[type].invalid_fields & all_output_options[i].field) {
1389 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1390 all_output_options[i].str, event_type(type));
1391
1392 rc = -EINVAL;
1393 goto out;
1394 }
1395 output[type].fields |= all_output_options[i].field;
1396 }
David Ahern2c9e45f72011-03-17 10:03:21 -06001397 }
1398
1399 if (type >= 0) {
1400 if (output[type].fields == 0) {
1401 pr_debug("No fields requested for %s type. "
1402 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001403 }
David Ahern1424dc92011-03-09 22:23:28 -07001404 }
David Ahern745f43e2011-03-09 22:23:26 -07001405
David Ahern2c9e45f72011-03-17 10:03:21 -06001406out:
David Ahern745f43e2011-03-09 22:23:26 -07001407 free(str);
1408 return rc;
1409}
1410
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001411/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1412static int is_directory(const char *base_path, const struct dirent *dent)
1413{
1414 char path[PATH_MAX];
1415 struct stat st;
1416
1417 sprintf(path, "%s/%s", base_path, dent->d_name);
1418 if (stat(path, &st))
1419 return 0;
1420
1421 return S_ISDIR(st.st_mode);
1422}
1423
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001424#define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
1425 while ((lang_dirent = readdir(scripts_dir)) != NULL) \
1426 if ((lang_dirent->d_type == DT_DIR || \
1427 (lang_dirent->d_type == DT_UNKNOWN && \
1428 is_directory(scripts_path, lang_dirent))) && \
1429 (strcmp(lang_dirent->d_name, ".")) && \
1430 (strcmp(lang_dirent->d_name, "..")))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001431
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001432#define for_each_script(lang_path, lang_dir, script_dirent) \
1433 while ((script_dirent = readdir(lang_dir)) != NULL) \
1434 if (script_dirent->d_type != DT_DIR && \
1435 (script_dirent->d_type != DT_UNKNOWN || \
1436 !is_directory(lang_path, script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001437
1438
1439#define RECORD_SUFFIX "-record"
1440#define REPORT_SUFFIX "-report"
1441
1442struct script_desc {
1443 struct list_head node;
1444 char *name;
1445 char *half_liner;
1446 char *args;
1447};
1448
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001449static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001450
1451static struct script_desc *script_desc__new(const char *name)
1452{
1453 struct script_desc *s = zalloc(sizeof(*s));
1454
Tom Zanussib5b87312010-11-10 08:16:51 -06001455 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001456 s->name = strdup(name);
1457
1458 return s;
1459}
1460
1461static void script_desc__delete(struct script_desc *s)
1462{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001463 zfree(&s->name);
1464 zfree(&s->half_liner);
1465 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001466 free(s);
1467}
1468
1469static void script_desc__add(struct script_desc *s)
1470{
1471 list_add_tail(&s->node, &script_descs);
1472}
1473
1474static struct script_desc *script_desc__find(const char *name)
1475{
1476 struct script_desc *s;
1477
1478 list_for_each_entry(s, &script_descs, node)
1479 if (strcasecmp(s->name, name) == 0)
1480 return s;
1481 return NULL;
1482}
1483
1484static struct script_desc *script_desc__findnew(const char *name)
1485{
1486 struct script_desc *s = script_desc__find(name);
1487
1488 if (s)
1489 return s;
1490
1491 s = script_desc__new(name);
1492 if (!s)
1493 goto out_delete_desc;
1494
1495 script_desc__add(s);
1496
1497 return s;
1498
1499out_delete_desc:
1500 script_desc__delete(s);
1501
1502 return NULL;
1503}
1504
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001505static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001506{
1507 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001508 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001509
1510 if (strlen(str) > suffix_len) {
1511 p = str + strlen(str) - suffix_len;
1512 if (!strncmp(p, suffix, suffix_len))
1513 return p;
1514 }
1515
1516 return NULL;
1517}
1518
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001519static int read_script_info(struct script_desc *desc, const char *filename)
1520{
1521 char line[BUFSIZ], *p;
1522 FILE *fp;
1523
1524 fp = fopen(filename, "r");
1525 if (!fp)
1526 return -1;
1527
1528 while (fgets(line, sizeof(line), fp)) {
1529 p = ltrim(line);
1530 if (strlen(p) == 0)
1531 continue;
1532 if (*p != '#')
1533 continue;
1534 p++;
1535 if (strlen(p) && *p == '!')
1536 continue;
1537
1538 p = ltrim(p);
1539 if (strlen(p) && p[strlen(p) - 1] == '\n')
1540 p[strlen(p) - 1] = '\0';
1541
1542 if (!strncmp(p, "description:", strlen("description:"))) {
1543 p += strlen("description:");
1544 desc->half_liner = strdup(ltrim(p));
1545 continue;
1546 }
1547
1548 if (!strncmp(p, "args:", strlen("args:"))) {
1549 p += strlen("args:");
1550 desc->args = strdup(ltrim(p));
1551 continue;
1552 }
1553 }
1554
1555 fclose(fp);
1556
1557 return 0;
1558}
1559
Robert Richter38efb532011-11-25 11:38:40 +01001560static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1561{
1562 char *script_root, *str;
1563
1564 script_root = strdup(script_dirent->d_name);
1565 if (!script_root)
1566 return NULL;
1567
1568 str = (char *)ends_with(script_root, suffix);
1569 if (!str) {
1570 free(script_root);
1571 return NULL;
1572 }
1573
1574 *str = '\0';
1575 return script_root;
1576}
1577
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001578static int list_available_scripts(const struct option *opt __maybe_unused,
1579 const char *s __maybe_unused,
1580 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001581{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001582 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001583 char scripts_path[MAXPATHLEN];
1584 DIR *scripts_dir, *lang_dir;
1585 char script_path[MAXPATHLEN];
1586 char lang_path[MAXPATHLEN];
1587 struct script_desc *desc;
1588 char first_half[BUFSIZ];
1589 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001590
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001591 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001592
1593 scripts_dir = opendir(scripts_path);
1594 if (!scripts_dir)
1595 return -1;
1596
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001597 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001598 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001599 lang_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001600 lang_dir = opendir(lang_path);
1601 if (!lang_dir)
1602 continue;
1603
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001604 for_each_script(lang_path, lang_dir, script_dirent) {
1605 script_root = get_script_root(script_dirent, REPORT_SUFFIX);
Robert Richter38efb532011-11-25 11:38:40 +01001606 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001607 desc = script_desc__findnew(script_root);
1608 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001609 lang_path, script_dirent->d_name);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001610 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001611 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001612 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001613 }
1614 }
1615
1616 fprintf(stdout, "List of available trace scripts:\n");
1617 list_for_each_entry(desc, &script_descs, node) {
1618 sprintf(first_half, "%s %s", desc->name,
1619 desc->args ? desc->args : "");
1620 fprintf(stdout, " %-36s %s\n", first_half,
1621 desc->half_liner ? desc->half_liner : "");
1622 }
1623
1624 exit(0);
1625}
1626
Feng Tange5f37052012-09-07 16:42:26 +08001627/*
Feng Tang49e639e2012-10-30 11:56:03 +08001628 * Some scripts specify the required events in their "xxx-record" file,
1629 * this function will check if the events in perf.data match those
1630 * mentioned in the "xxx-record".
1631 *
1632 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1633 * which is covered well now. And new parsing code should be added to
1634 * cover the future complexing formats like event groups etc.
1635 */
1636static int check_ev_match(char *dir_name, char *scriptname,
1637 struct perf_session *session)
1638{
1639 char filename[MAXPATHLEN], evname[128];
1640 char line[BUFSIZ], *p;
1641 struct perf_evsel *pos;
1642 int match, len;
1643 FILE *fp;
1644
1645 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1646
1647 fp = fopen(filename, "r");
1648 if (!fp)
1649 return -1;
1650
1651 while (fgets(line, sizeof(line), fp)) {
1652 p = ltrim(line);
1653 if (*p == '#')
1654 continue;
1655
1656 while (strlen(p)) {
1657 p = strstr(p, "-e");
1658 if (!p)
1659 break;
1660
1661 p += 2;
1662 p = ltrim(p);
1663 len = strcspn(p, " \t");
1664 if (!len)
1665 break;
1666
1667 snprintf(evname, len + 1, "%s", p);
1668
1669 match = 0;
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001670 evlist__for_each(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08001671 if (!strcmp(perf_evsel__name(pos), evname)) {
1672 match = 1;
1673 break;
1674 }
1675 }
1676
1677 if (!match) {
1678 fclose(fp);
1679 return -1;
1680 }
1681 }
1682 }
1683
1684 fclose(fp);
1685 return 0;
1686}
1687
1688/*
Feng Tange5f37052012-09-07 16:42:26 +08001689 * Return -1 if none is found, otherwise the actual scripts number.
1690 *
1691 * Currently the only user of this function is the script browser, which
1692 * will list all statically runnable scripts, select one, execute it and
1693 * show the output in a perf browser.
1694 */
1695int find_scripts(char **scripts_array, char **scripts_path_array)
1696{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001697 struct dirent *script_dirent, *lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001698 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001699 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001700 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001701 struct perf_data_file file = {
1702 .path = input_name,
1703 .mode = PERF_DATA_MODE_READ,
1704 };
Feng Tange5f37052012-09-07 16:42:26 +08001705 char *temp;
1706 int i = 0;
1707
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001708 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001709 if (!session)
1710 return -1;
1711
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001712 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Feng Tange5f37052012-09-07 16:42:26 +08001713
1714 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001715 if (!scripts_dir) {
1716 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001717 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001718 }
Feng Tange5f37052012-09-07 16:42:26 +08001719
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001720 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08001721 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001722 lang_dirent->d_name);
Feng Tange5f37052012-09-07 16:42:26 +08001723#ifdef NO_LIBPERL
1724 if (strstr(lang_path, "perl"))
1725 continue;
1726#endif
1727#ifdef NO_LIBPYTHON
1728 if (strstr(lang_path, "python"))
1729 continue;
1730#endif
1731
1732 lang_dir = opendir(lang_path);
1733 if (!lang_dir)
1734 continue;
1735
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001736 for_each_script(lang_path, lang_dir, script_dirent) {
Feng Tange5f37052012-09-07 16:42:26 +08001737 /* Skip those real time scripts: xxxtop.p[yl] */
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001738 if (strstr(script_dirent->d_name, "top."))
Feng Tange5f37052012-09-07 16:42:26 +08001739 continue;
1740 sprintf(scripts_path_array[i], "%s/%s", lang_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001741 script_dirent->d_name);
1742 temp = strchr(script_dirent->d_name, '.');
Feng Tange5f37052012-09-07 16:42:26 +08001743 snprintf(scripts_array[i],
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001744 (temp - script_dirent->d_name) + 1,
1745 "%s", script_dirent->d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001746
1747 if (check_ev_match(lang_path,
1748 scripts_array[i], session))
1749 continue;
1750
Feng Tange5f37052012-09-07 16:42:26 +08001751 i++;
1752 }
Feng Tang49e639e2012-10-30 11:56:03 +08001753 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001754 }
1755
Feng Tang49e639e2012-10-30 11:56:03 +08001756 closedir(scripts_dir);
1757 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001758 return i;
1759}
1760
Tom Zanussi38752942009-12-15 02:53:39 -06001761static char *get_script_path(const char *script_root, const char *suffix)
1762{
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001763 struct dirent *script_dirent, *lang_dirent;
Tom Zanussi38752942009-12-15 02:53:39 -06001764 char scripts_path[MAXPATHLEN];
1765 char script_path[MAXPATHLEN];
1766 DIR *scripts_dir, *lang_dir;
1767 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001768 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001769
Josh Poimboeuf46113a52015-12-15 09:39:37 -06001770 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
Tom Zanussi38752942009-12-15 02:53:39 -06001771
1772 scripts_dir = opendir(scripts_path);
1773 if (!scripts_dir)
1774 return NULL;
1775
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001776 for_each_lang(scripts_path, scripts_dir, lang_dirent) {
Tom Zanussi38752942009-12-15 02:53:39 -06001777 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001778 lang_dirent->d_name);
Tom Zanussi38752942009-12-15 02:53:39 -06001779 lang_dir = opendir(lang_path);
1780 if (!lang_dir)
1781 continue;
1782
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001783 for_each_script(lang_path, lang_dir, script_dirent) {
1784 __script_root = get_script_root(script_dirent, suffix);
Robert Richter38efb532011-11-25 11:38:40 +01001785 if (__script_root && !strcmp(script_root, __script_root)) {
1786 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001787 closedir(lang_dir);
1788 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001789 snprintf(script_path, MAXPATHLEN, "%s/%s",
Arnaldo Carvalho de Meloa5e8e822016-04-08 11:25:59 -03001790 lang_path, script_dirent->d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001791 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001792 }
1793 free(__script_root);
1794 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001795 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001796 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001797 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001798
Robert Richter38efb532011-11-25 11:38:40 +01001799 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001800}
1801
Tom Zanussib5b87312010-11-10 08:16:51 -06001802static bool is_top_script(const char *script_path)
1803{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001804 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001805}
1806
1807static int has_required_arg(char *script_path)
1808{
1809 struct script_desc *desc;
1810 int n_args = 0;
1811 char *p;
1812
1813 desc = script_desc__new(NULL);
1814
1815 if (read_script_info(desc, script_path))
1816 goto out;
1817
1818 if (!desc->args)
1819 goto out;
1820
1821 for (p = desc->args; *p; p++)
1822 if (*p == '<')
1823 n_args++;
1824out:
1825 script_desc__delete(desc);
1826
1827 return n_args;
1828}
1829
David Ahernd54b1a92012-08-26 12:24:46 -06001830static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001831{
1832 char **__argv = malloc(sizeof(const char *) * argc);
1833
David Ahernd54b1a92012-08-26 12:24:46 -06001834 if (!__argv) {
1835 pr_err("malloc failed\n");
1836 return -1;
1837 }
1838
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001839 memcpy(__argv, argv, sizeof(const char *) * argc);
1840 argc = parse_options(argc, (const char **)__argv, record_options,
1841 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1842 free(__argv);
1843
David Ahernd54b1a92012-08-26 12:24:46 -06001844 system_wide = (argc == 0);
1845
1846 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001847}
1848
Jiri Olsa7322d6c2015-08-13 09:17:24 +02001849static void script__setup_sample_type(struct perf_script *script)
1850{
1851 struct perf_session *session = script->session;
1852 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
1853
1854 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
1855 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
1856 (sample_type & PERF_SAMPLE_STACK_USER))
1857 callchain_param.record_mode = CALLCHAIN_DWARF;
1858 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
1859 callchain_param.record_mode = CALLCHAIN_LBR;
1860 else
1861 callchain_param.record_mode = CALLCHAIN_FP;
1862 }
1863}
1864
Jiri Olsae099eba2016-01-05 22:09:09 +01001865static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
1866 union perf_event *event,
1867 struct perf_session *session)
1868{
1869 struct stat_round_event *round = &event->stat_round;
1870 struct perf_evsel *counter;
1871
1872 evlist__for_each(session->evlist, counter) {
1873 perf_stat_process_counter(&stat_config, counter);
1874 process_stat(counter, round->time);
1875 }
1876
1877 process_stat_interval(round->time);
1878 return 0;
1879}
1880
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01001881static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
1882 union perf_event *event,
1883 struct perf_session *session __maybe_unused)
1884{
1885 perf_event__read_stat_config(&stat_config, &event->stat_config);
1886 return 0;
1887}
1888
Jiri Olsacfc88742016-01-05 22:09:06 +01001889static int set_maps(struct perf_script *script)
1890{
1891 struct perf_evlist *evlist = script->session->evlist;
1892
1893 if (!script->cpus || !script->threads)
1894 return 0;
1895
1896 if (WARN_ONCE(script->allocated, "stats double allocation\n"))
1897 return -EINVAL;
1898
1899 perf_evlist__set_maps(evlist, script->cpus, script->threads);
1900
1901 if (perf_evlist__alloc_stats(evlist, true))
1902 return -ENOMEM;
1903
1904 script->allocated = true;
1905 return 0;
1906}
1907
1908static
1909int process_thread_map_event(struct perf_tool *tool,
1910 union perf_event *event,
1911 struct perf_session *session __maybe_unused)
1912{
1913 struct perf_script *script = container_of(tool, struct perf_script, tool);
1914
1915 if (script->threads) {
1916 pr_warning("Extra thread map event, ignoring.\n");
1917 return 0;
1918 }
1919
1920 script->threads = thread_map__new_event(&event->thread_map);
1921 if (!script->threads)
1922 return -ENOMEM;
1923
1924 return set_maps(script);
1925}
1926
1927static
1928int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
1929 union perf_event *event,
1930 struct perf_session *session __maybe_unused)
1931{
1932 struct perf_script *script = container_of(tool, struct perf_script, tool);
1933
1934 if (script->cpus) {
1935 pr_warning("Extra cpu map event, ignoring.\n");
1936 return 0;
1937 }
1938
1939 script->cpus = cpu_map__new_data(&event->cpu_map.data);
1940 if (!script->cpus)
1941 return -ENOMEM;
1942
1943 return set_maps(script);
1944}
1945
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001946int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001947{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001948 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01001949 bool header = false;
1950 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001951 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001952 char *rec_script_path = NULL;
1953 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001954 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001955 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06001956 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001957 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001958 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001959 struct perf_script script = {
1960 .tool = {
1961 .sample = process_sample_event,
1962 .mmap = perf_event__process_mmap,
1963 .mmap2 = perf_event__process_mmap2,
1964 .comm = perf_event__process_comm,
1965 .exit = perf_event__process_exit,
1966 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02001967 .attr = process_attr,
Jiri Olsa91daee32016-04-07 09:11:13 +02001968 .event_update = perf_event__process_event_update,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001969 .tracing_data = perf_event__process_tracing_data,
1970 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001971 .id_index = perf_event__process_id_index,
1972 .auxtrace_info = perf_event__process_auxtrace_info,
1973 .auxtrace = perf_event__process_auxtrace,
1974 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsae099eba2016-01-05 22:09:09 +01001975 .stat = perf_event__process_stat_event,
1976 .stat_round = process_stat_round_event,
Jiri Olsa91a2c3d2016-01-05 22:09:07 +01001977 .stat_config = process_stat_config_event,
Jiri Olsacfc88742016-01-05 22:09:06 +01001978 .thread_map = process_thread_map_event,
1979 .cpu_map = process_cpu_map_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001980 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001981 .ordering_requires_timestamps = true,
1982 },
1983 };
Yunlong Song06af0f22015-04-02 21:47:16 +08001984 struct perf_data_file file = {
1985 .mode = PERF_DATA_MODE_READ,
1986 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001987 const struct option options[] = {
1988 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1989 "dump raw trace in ASCII"),
1990 OPT_INCR('v', "verbose", &verbose,
1991 "be more verbose (show symbol address, etc)"),
1992 OPT_BOOLEAN('L', "Latency", &latency_format,
1993 "show latency attributes (irqs/preemption disabled, etc)"),
1994 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1995 list_available_scripts),
1996 OPT_CALLBACK('s', "script", NULL, "name",
1997 "script file name (lang:script name, script name, or *)",
1998 parse_scriptname),
1999 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
2000 "generate perf-script.xx script in specified language"),
2001 OPT_STRING('i', "input", &input_name, "file", "input file name"),
2002 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
2003 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01002004 OPT_BOOLEAN(0, "header", &header, "Show data header."),
2005 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002006 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2007 "file", "vmlinux pathname"),
2008 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2009 "file", "kallsyms pathname"),
2010 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
2011 "When printing symbols do not display call chain"),
2012 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
2013 "Look for files with symbols relative to this directory"),
Yunlong Song06af0f22015-04-02 21:47:16 +08002014 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002015 "comma separated output fields prepend with 'type:'. "
2016 "Valid types: hw,sw,trace,raw. "
2017 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Stephane Eraniandc323ce2015-08-31 18:41:13 +02002018 "addr,symoff,period,iregs,brstack,brstacksym,flags", parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002019 OPT_BOOLEAN('a', "all-cpus", &system_wide,
2020 "system-wide collection from all CPUs"),
2021 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
2022 "only consider these symbols"),
2023 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
2024 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
2025 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06002026 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
2027 "only consider symbols in these pids"),
2028 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
2029 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002030 OPT_BOOLEAN('I', "show-info", &show_full_info,
2031 "display extended information from perf.data file"),
2032 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
2033 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09002034 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
2035 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09002036 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
2037 "Show the mmap events"),
Adrian Hunter7c148982015-07-21 12:44:06 +03002038 OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
2039 "Show context switch events (if recorded)"),
Yunlong Song06af0f22015-04-02 21:47:16 +08002040 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter83e19862015-09-25 16:15:36 +03002041 OPT_BOOLEAN(0, "ns", &nanosecs,
2042 "Use 9 decimal places when displaying time"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002043 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
2044 "Instruction Tracing options",
2045 itrace_parse_synth_opts),
Andi Kleena9710ba2015-08-07 15:24:05 -07002046 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
2047 "Show full source file name path for source lines"),
Mark Drayton77e00702015-08-26 12:18:15 -07002048 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
2049 "Enable symbol demangling"),
2050 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
2051 "Enable kernel symbol demangling"),
2052
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002053 OPT_END()
2054 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08002055 const char * const script_subcommands[] = { "record", "report", NULL };
2056 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03002057 "perf script [<options>]",
2058 "perf script [<options>] record <script> [<record-options>] <command>",
2059 "perf script [<options>] report <script> [script-args]",
2060 "perf script [<options>] <script> [<record-options>] <command>",
2061 "perf script [<options>] <top-script> [script-args]",
2062 NULL
2063 };
Tom Zanussi38752942009-12-15 02:53:39 -06002064
Tom Zanussib5b87312010-11-10 08:16:51 -06002065 setup_scripting();
2066
Yunlong Song40cae2b2015-03-18 21:35:54 +08002067 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06002068 PARSE_OPT_STOP_AT_NON_OPTION);
2069
Jiri Olsaf5fc14122013-10-15 16:27:32 +02002070 file.path = input_name;
2071
Tom Zanussib5b87312010-11-10 08:16:51 -06002072 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
2073 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
2074 if (!rec_script_path)
2075 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06002076 }
2077
Tom Zanussib5b87312010-11-10 08:16:51 -06002078 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
2079 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
2080 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06002081 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06002082 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002083 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06002084 return -1;
2085 }
Tom Zanussi38752942009-12-15 02:53:39 -06002086 }
2087
Adrian Hunter3c5b6452015-09-25 16:15:51 +03002088 if (itrace_synth_opts.callchain &&
2089 itrace_synth_opts.callchain_sz > scripting_max_stack)
2090 scripting_max_stack = itrace_synth_opts.callchain_sz;
2091
Ben Hutchings44e668c2010-10-10 16:10:03 +01002092 /* make sure PERF_EXEC_PATH is set for scripts */
Josh Poimboeuf46113a52015-12-15 09:39:37 -06002093 set_argv_exec_path(get_argv_exec_path());
Ben Hutchings44e668c2010-10-10 16:10:03 +01002094
Tom Zanussib5b87312010-11-10 08:16:51 -06002095 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05002096 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06002097 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002098 pid_t pid;
2099
Tom Zanussib5b87312010-11-10 08:16:51 -06002100 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
2101 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
2102
2103 if (!rec_script_path && !rep_script_path) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002104 usage_with_options_msg(script_usage, options,
2105 "Couldn't find script `%s'\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002106 " script -l for available scripts.\n", argv[0]);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002107 }
2108
Tom Zanussib5b87312010-11-10 08:16:51 -06002109 if (is_top_script(argv[0])) {
2110 rep_args = argc - 1;
2111 } else {
2112 int rec_args;
2113
2114 rep_args = has_required_arg(rep_script_path);
2115 rec_args = (argc - 1) - rep_args;
2116 if (rec_args < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002117 usage_with_options_msg(script_usage, options,
2118 "`%s' script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002119 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06002120 "scripts and options.\n", argv[0]);
Tom Zanussib5b87312010-11-10 08:16:51 -06002121 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05002122 }
2123
2124 if (pipe(live_pipe) < 0) {
2125 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06002126 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002127 }
2128
2129 pid = fork();
2130 if (pid < 0) {
2131 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06002132 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002133 }
2134
2135 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002136 j = 0;
2137
Tom Zanussia0cccc22010-04-01 23:59:25 -05002138 dup2(live_pipe[1], 1);
2139 close(live_pipe[0]);
2140
Robert Richter317df652011-11-25 15:05:25 +01002141 if (is_top_script(argv[0])) {
2142 system_wide = true;
2143 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06002144 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
2145 err = -1;
2146 goto out;
2147 }
Robert Richter317df652011-11-25 15:05:25 +01002148 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002149
2150 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002151 if (!__argv) {
2152 pr_err("malloc failed\n");
2153 err = -ENOMEM;
2154 goto out;
2155 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06002156
Tom Zanussib5b87312010-11-10 08:16:51 -06002157 __argv[j++] = "/bin/sh";
2158 __argv[j++] = rec_script_path;
2159 if (system_wide)
2160 __argv[j++] = "-a";
2161 __argv[j++] = "-q";
2162 __argv[j++] = "-o";
2163 __argv[j++] = "-";
2164 for (i = rep_args + 1; i < argc; i++)
2165 __argv[j++] = argv[i];
2166 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05002167
2168 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002169 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05002170 exit(-1);
2171 }
2172
2173 dup2(live_pipe[0], 0);
2174 close(live_pipe[1]);
2175
Tom Zanussib5b87312010-11-10 08:16:51 -06002176 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002177 if (!__argv) {
2178 pr_err("malloc failed\n");
2179 err = -ENOMEM;
2180 goto out;
2181 }
2182
Tom Zanussib5b87312010-11-10 08:16:51 -06002183 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002184 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06002185 __argv[j++] = rep_script_path;
2186 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002187 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06002188 __argv[j++] = "-i";
2189 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06002190 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06002191
2192 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06002193 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06002194 exit(-1);
2195 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06002196
Tom Zanussib5b87312010-11-10 08:16:51 -06002197 if (rec_script_path)
2198 script_path = rec_script_path;
2199 if (rep_script_path)
2200 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002201
Tom Zanussib5b87312010-11-10 08:16:51 -06002202 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06002203 j = 0;
2204
Robert Richter317df652011-11-25 15:05:25 +01002205 if (!rec_script_path)
2206 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06002207 else if (!system_wide) {
2208 if (have_cmd(argc - 1, &argv[1]) != 0) {
2209 err = -1;
2210 goto out;
2211 }
2212 }
Tom Zanussib5b87312010-11-10 08:16:51 -06002213
2214 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06002215 if (!__argv) {
2216 pr_err("malloc failed\n");
2217 err = -ENOMEM;
2218 goto out;
2219 }
2220
Tom Zanussib5b87312010-11-10 08:16:51 -06002221 __argv[j++] = "/bin/sh";
2222 __argv[j++] = script_path;
2223 if (system_wide)
2224 __argv[j++] = "-a";
2225 for (i = 2; i < argc; i++)
2226 __argv[j++] = argv[i];
2227 __argv[j++] = NULL;
2228
2229 execvp("/bin/sh", (char **)__argv);
2230 free(__argv);
2231 exit(-1);
2232 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002233
Tom Zanussicf4fee52010-03-03 01:04:33 -06002234 if (!script_name)
2235 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002236
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002237 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002238 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09002239 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002240
Jiri Olsae90debd2013-12-09 11:02:50 +01002241 if (header || header_only) {
2242 perf_session__fprintf_info(session, stdout, show_full_info);
2243 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002244 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01002245 }
2246
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09002247 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09002248 goto out_delete;
2249
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002250 script.session = session;
Jiri Olsa7322d6c2015-08-13 09:17:24 +02002251 script__setup_sample_type(&script);
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002252
Adrian Hunter7a680eb2015-04-09 18:53:56 +03002253 session->itrace_synth_opts = &itrace_synth_opts;
2254
Anton Blanchard5d67be92011-07-04 21:57:50 +10002255 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002256 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
2257 if (err < 0)
2258 goto out_delete;
Anton Blanchard5d67be92011-07-04 21:57:50 +10002259 }
2260
David Ahern1424dc92011-03-09 22:23:28 -07002261 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07002262 symbol_conf.use_callchain = true;
2263 else
2264 symbol_conf.use_callchain = false;
2265
Arnaldo Carvalho de Melo9ee67422015-08-03 16:27:40 -03002266 if (session->tevent.pevent &&
2267 pevent_set_function_resolver(session->tevent.pevent,
Arnaldo Carvalho de Meloccb3a822015-07-22 16:43:37 -03002268 machine__resolve_kernel_addr,
2269 &session->machines.host) < 0) {
2270 pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
2271 return -1;
2272 }
2273
Tom Zanussi956ffd02009-11-25 01:15:46 -06002274 if (generate_script_lang) {
2275 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07002276 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002277
David Ahern2c9e45f72011-03-17 10:03:21 -06002278 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07002279 fprintf(stderr,
2280 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002281 err = -EINVAL;
2282 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07002283 }
2284
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002285 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06002286 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002287 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002288 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002289 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002290 }
2291
2292 err = fstat(input, &perf_stat);
2293 if (err < 0) {
2294 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002295 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002296 }
2297
2298 if (!perf_stat.st_size) {
2299 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002300 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002301 }
2302
2303 scripting_ops = script_spec__lookup(generate_script_lang);
2304 if (!scripting_ops) {
2305 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002306 err = -ENOENT;
2307 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002308 }
2309
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002310 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002311 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002312 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002313 }
2314
2315 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06002316 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002317 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002318 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002319 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002320 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06002321 }
2322
David Ahern9cbdb702011-04-06 21:54:20 -06002323
2324 err = perf_session__check_output_opt(session);
2325 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002326 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06002327
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03002328 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06002329
Adrian Hunterd445dd22014-08-15 22:08:37 +03002330 flush_scripting();
2331
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002332out_delete:
Jiri Olsacfc88742016-01-05 22:09:06 +01002333 perf_evlist__free_stats(session->evlist);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02002334 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09002335
2336 if (script_started)
2337 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06002338out:
2339 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02002340}