blob: c1b7029884b139f4e9bf30cf56a39e22ba2bd628 [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"
6#include "util/exec_cmd.h"
7#include "util/header.h"
8#include "util/parse-options.h"
9#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020010#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020011#include "util/symbol.h"
12#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010013#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020014#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070015#include "util/evlist.h"
16#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080017#include "util/sort.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020018#include "util/data.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100019#include <linux/bitmap.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020020
Tom Zanussi956ffd02009-11-25 01:15:46 -060021static char const *script_name;
22static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020023static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020024static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020025static u64 nr_unordered;
Tom Zanussi34c86ea2010-11-10 08:15:43 -060026extern const struct option record_options[];
David Ahernc0230b22011-03-09 22:23:27 -070027static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090028static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010029static bool system_wide;
Anton Blanchard5d67be92011-07-04 21:57:50 +100030static const char *cpu_list;
31static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Tom Zanussi956ffd02009-11-25 01:15:46 -060032
David Ahern745f43e2011-03-09 22:23:26 -070033enum perf_output_field {
34 PERF_OUTPUT_COMM = 1U << 0,
35 PERF_OUTPUT_TID = 1U << 1,
36 PERF_OUTPUT_PID = 1U << 2,
37 PERF_OUTPUT_TIME = 1U << 3,
38 PERF_OUTPUT_CPU = 1U << 4,
39 PERF_OUTPUT_EVNAME = 1U << 5,
40 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060041 PERF_OUTPUT_IP = 1U << 7,
42 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060043 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060044 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090045 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020046 PERF_OUTPUT_SRCLINE = 1U << 12,
David Ahern745f43e2011-03-09 22:23:26 -070047};
48
49struct output_option {
50 const char *str;
51 enum perf_output_field field;
52} all_output_options[] = {
53 {.str = "comm", .field = PERF_OUTPUT_COMM},
54 {.str = "tid", .field = PERF_OUTPUT_TID},
55 {.str = "pid", .field = PERF_OUTPUT_PID},
56 {.str = "time", .field = PERF_OUTPUT_TIME},
57 {.str = "cpu", .field = PERF_OUTPUT_CPU},
58 {.str = "event", .field = PERF_OUTPUT_EVNAME},
59 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060060 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070061 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060062 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060063 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090064 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +020065 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
David Ahern745f43e2011-03-09 22:23:26 -070066};
67
68/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060069static struct {
70 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060071 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -040072 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -060073 u64 fields;
74 u64 invalid_fields;
75} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070076
David Ahern2c9e45f72011-03-17 10:03:21 -060077 [PERF_TYPE_HARDWARE] = {
78 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070079
David Ahern2c9e45f72011-03-17 10:03:21 -060080 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
81 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060082 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060083 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060084
85 .invalid_fields = PERF_OUTPUT_TRACE,
86 },
87
88 [PERF_TYPE_SOFTWARE] = {
89 .user_set = false,
90
91 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
92 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060093 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060094 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060095
96 .invalid_fields = PERF_OUTPUT_TRACE,
97 },
98
99 [PERF_TYPE_TRACEPOINT] = {
100 .user_set = false,
101
102 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
103 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
104 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
105 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700106
107 [PERF_TYPE_RAW] = {
108 .user_set = false,
109
110 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
111 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600112 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -0600113 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700114
115 .invalid_fields = PERF_OUTPUT_TRACE,
116 },
David Ahern1424dc92011-03-09 22:23:28 -0700117};
David Ahern745f43e2011-03-09 22:23:26 -0700118
David Ahern2c9e45f72011-03-17 10:03:21 -0600119static bool output_set_by_user(void)
120{
121 int j;
122 for (j = 0; j < PERF_TYPE_MAX; ++j) {
123 if (output[j].user_set)
124 return true;
125 }
126 return false;
127}
David Ahern745f43e2011-03-09 22:23:26 -0700128
David Ahern9cbdb702011-04-06 21:54:20 -0600129static const char *output_field2str(enum perf_output_field field)
130{
131 int i, imax = ARRAY_SIZE(all_output_options);
132 const char *str = "";
133
134 for (i = 0; i < imax; ++i) {
135 if (all_output_options[i].field == field) {
136 str = all_output_options[i].str;
137 break;
138 }
139 }
140 return str;
141}
142
David Ahern2c9e45f72011-03-17 10:03:21 -0600143#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700144
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300145static int perf_evsel__check_stype(struct perf_evsel *evsel,
146 u64 sample_type, const char *sample_msg,
147 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700148{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300149 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600150 int type = attr->type;
151 const char *evname;
152
153 if (attr->sample_type & sample_type)
154 return 0;
155
156 if (output[type].user_set) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300157 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600158 pr_err("Samples for '%s' event do not have %s attribute set. "
159 "Cannot print '%s' field.\n",
160 evname, sample_msg, output_field2str(field));
161 return -1;
162 }
163
164 /* user did not ask for it explicitly so remove from the default list */
165 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300166 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600167 pr_debug("Samples for '%s' event do not have %s attribute set. "
168 "Skipping '%s' field.\n",
169 evname, sample_msg, output_field2str(field));
170
171 return 0;
172}
173
174static int perf_evsel__check_attr(struct perf_evsel *evsel,
175 struct perf_session *session)
176{
177 struct perf_event_attr *attr = &evsel->attr;
178
David Ahern1424dc92011-03-09 22:23:28 -0700179 if (PRINT_FIELD(TRACE) &&
180 !perf_session__has_traces(session, "record -R"))
181 return -EINVAL;
182
David Ahern787bef12011-05-27 14:28:43 -0600183 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300184 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
185 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700186 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700187 }
David Ahern7cec0922011-05-30 13:08:23 -0600188
189 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300190 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
191 PERF_OUTPUT_ADDR))
David Ahern7cec0922011-05-30 13:08:23 -0600192 return -EINVAL;
193
194 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
195 pr_err("Display of symbols requested but neither sample IP nor "
196 "sample address\nis selected. Hence, no addresses to convert "
197 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600198 return -EINVAL;
199 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900200 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
201 pr_err("Display of offsets requested but symbol is not"
202 "selected.\n");
203 return -EINVAL;
204 }
David Ahern7cec0922011-05-30 13:08:23 -0600205 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
206 pr_err("Display of DSO requested but neither sample IP nor "
207 "sample address\nis selected. Hence, no addresses to convert "
208 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600209 return -EINVAL;
210 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200211 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
212 pr_err("Display of source line number requested but sample IP is not\n"
213 "selected. Hence, no address to lookup the source line number.\n");
214 return -EINVAL;
215 }
David Ahern1424dc92011-03-09 22:23:28 -0700216
217 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300218 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
219 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700220 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700221
222 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300223 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
224 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700225 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700226
227 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300228 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
229 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700230 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600231
232 return 0;
233}
234
Adrian Hunter7ea95722013-11-01 15:51:30 +0200235static void set_print_ip_opts(struct perf_event_attr *attr)
236{
237 unsigned int type = attr->type;
238
239 output[type].print_ip_opts = 0;
240 if (PRINT_FIELD(IP))
241 output[type].print_ip_opts |= PRINT_IP_OPT_IP;
242
243 if (PRINT_FIELD(SYM))
244 output[type].print_ip_opts |= PRINT_IP_OPT_SYM;
245
246 if (PRINT_FIELD(DSO))
247 output[type].print_ip_opts |= PRINT_IP_OPT_DSO;
248
249 if (PRINT_FIELD(SYMOFFSET))
250 output[type].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200251
252 if (PRINT_FIELD(SRCLINE))
253 output[type].print_ip_opts |= PRINT_IP_OPT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200254}
255
David Ahern9cbdb702011-04-06 21:54:20 -0600256/*
257 * verify all user requested events exist and the samples
258 * have the expected data
259 */
260static int perf_session__check_output_opt(struct perf_session *session)
261{
262 int j;
263 struct perf_evsel *evsel;
264
265 for (j = 0; j < PERF_TYPE_MAX; ++j) {
266 evsel = perf_session__find_first_evtype(session, j);
267
268 /*
269 * even if fields is set to 0 (ie., show nothing) event must
270 * exist if user explicitly includes it on the command line
271 */
272 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
273 pr_err("%s events do not exist. "
274 "Remove corresponding -f option to proceed.\n",
275 event_type(j));
276 return -1;
277 }
278
279 if (evsel && output[j].fields &&
280 perf_evsel__check_attr(evsel, session))
281 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400282
283 if (evsel == NULL)
284 continue;
285
Adrian Hunter7ea95722013-11-01 15:51:30 +0200286 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700287 }
288
Adrian Hunter98526ee2014-07-31 09:00:59 +0300289 if (!no_callchain) {
290 bool use_callchain = false;
291
292 evlist__for_each(session->evlist, evsel) {
293 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
294 use_callchain = true;
295 break;
296 }
297 }
298 if (!use_callchain)
299 symbol_conf.use_callchain = false;
300 }
301
David Ahern80b8b492013-11-19 21:07:37 -0700302 /*
303 * set default for tracepoints to print symbols only
304 * if callchains are present
305 */
306 if (symbol_conf.use_callchain &&
307 !output[PERF_TYPE_TRACEPOINT].user_set) {
308 struct perf_event_attr *attr;
309
310 j = PERF_TYPE_TRACEPOINT;
311 evsel = perf_session__find_first_evtype(session, j);
312 if (evsel == NULL)
313 goto out;
314
315 attr = &evsel->attr;
316
317 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
318 output[j].fields |= PERF_OUTPUT_IP;
319 output[j].fields |= PERF_OUTPUT_SYM;
320 output[j].fields |= PERF_OUTPUT_DSO;
321 set_print_ip_opts(attr);
322 }
323 }
324
325out:
David Ahern1424dc92011-03-09 22:23:28 -0700326 return 0;
327}
David Ahern745f43e2011-03-09 22:23:26 -0700328
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300329static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700330 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300331 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700332{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300333 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700334 unsigned long secs;
335 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700336 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700337
David Ahern745f43e2011-03-09 22:23:26 -0700338 if (PRINT_FIELD(COMM)) {
339 if (latency_format)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200340 printf("%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600341 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200342 printf("%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700343 else
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200344 printf("%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700345 }
David Ahernc70c94b2011-03-09 22:23:25 -0700346
David Ahern745f43e2011-03-09 22:23:26 -0700347 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
348 printf("%5d/%-5d ", sample->pid, sample->tid);
349 else if (PRINT_FIELD(PID))
350 printf("%5d ", sample->pid);
351 else if (PRINT_FIELD(TID))
352 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700353
David Ahern745f43e2011-03-09 22:23:26 -0700354 if (PRINT_FIELD(CPU)) {
355 if (latency_format)
356 printf("%3d ", sample->cpu);
357 else
358 printf("[%03d] ", sample->cpu);
359 }
David Ahernc70c94b2011-03-09 22:23:25 -0700360
David Ahern745f43e2011-03-09 22:23:26 -0700361 if (PRINT_FIELD(TIME)) {
362 nsecs = sample->time;
363 secs = nsecs / NSECS_PER_SEC;
364 nsecs -= secs * NSECS_PER_SEC;
365 usecs = nsecs / NSECS_PER_USEC;
366 printf("%5lu.%06lu: ", secs, usecs);
367 }
David Ahernc70c94b2011-03-09 22:23:25 -0700368}
369
David Ahern7cec0922011-05-30 13:08:23 -0600370static void print_sample_addr(union perf_event *event,
371 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200372 struct machine *machine,
David Ahern7cec0922011-05-30 13:08:23 -0600373 struct thread *thread,
374 struct perf_event_attr *attr)
375{
376 struct addr_location al;
David Ahern7cec0922011-05-30 13:08:23 -0600377
378 printf("%16" PRIx64, sample->addr);
379
380 if (!sample_addr_correlates_sym(attr))
381 return;
382
Adrian Hunter9b0d2d82014-07-22 16:17:39 +0300383 perf_event__preprocess_sample_addr(event, sample, machine, thread, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600384
385 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900386 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900387 if (PRINT_FIELD(SYMOFFSET))
388 symbol__fprintf_symname_offs(al.sym, &al, stdout);
389 else
390 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600391 }
392
393 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900394 printf(" (");
395 map__fprintf_dsoname(al.map, stdout);
396 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600397 }
398}
399
Akihiro Nagai95582592012-01-30 13:43:09 +0900400static void print_sample_bts(union perf_event *event,
401 struct perf_sample *sample,
402 struct perf_evsel *evsel,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200403 struct thread *thread,
404 struct addr_location *al)
Akihiro Nagai95582592012-01-30 13:43:09 +0900405{
406 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300407 bool print_srcline_last = false;
Akihiro Nagai95582592012-01-30 13:43:09 +0900408
409 /* print branch_from information */
410 if (PRINT_FIELD(IP)) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300411 unsigned int print_opts = output[attr->type].print_ip_opts;
412
413 if (symbol_conf.use_callchain && sample->callchain) {
Akihiro Nagai95582592012-01-30 13:43:09 +0900414 printf("\n");
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300415 } else {
416 printf(" ");
417 if (print_opts & PRINT_IP_OPT_SRCLINE) {
418 print_srcline_last = true;
419 print_opts &= ~PRINT_IP_OPT_SRCLINE;
420 }
421 }
422 perf_evsel__print_ip(evsel, sample, al, print_opts,
David Ahern307cbb92013-08-07 22:50:53 -0400423 PERF_MAX_STACK_DEPTH);
Akihiro Nagai95582592012-01-30 13:43:09 +0900424 }
425
Akihiro Nagai95582592012-01-30 13:43:09 +0900426 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +0300427 if (PRINT_FIELD(ADDR) ||
428 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter578bea42014-07-22 16:17:16 +0300429 !output[attr->type].user_set)) {
430 printf(" => ");
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300431 print_sample_addr(event, sample, al->machine, thread, attr);
Adrian Hunter578bea42014-07-22 16:17:16 +0300432 }
Akihiro Nagai95582592012-01-30 13:43:09 +0900433
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300434 if (print_srcline_last)
435 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
436
Akihiro Nagai95582592012-01-30 13:43:09 +0900437 printf("\n");
438}
439
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300440static void process_event(union perf_event *event, struct perf_sample *sample,
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300441 struct perf_evsel *evsel, struct thread *thread,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200442 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700443{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300444 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700445
David Ahern2c9e45f72011-03-17 10:03:21 -0600446 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700447 return;
448
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300449 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700450
Namhyung Kime944d3d2013-11-18 14:34:52 +0900451 if (PRINT_FIELD(EVNAME)) {
452 const char *evname = perf_evsel__name(evsel);
453 printf("%s: ", evname ? evname : "[unknown]");
454 }
455
Akihiro Nagai95582592012-01-30 13:43:09 +0900456 if (is_bts_event(attr)) {
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300457 print_sample_bts(event, sample, evsel, thread, al);
Akihiro Nagai95582592012-01-30 13:43:09 +0900458 return;
459 }
460
David Ahern745f43e2011-03-09 22:23:26 -0700461 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300462 event_format__print(evsel->tp_format, sample->cpu,
463 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600464 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300465 print_sample_addr(event, sample, al->machine, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600466
David Ahern787bef12011-05-27 14:28:43 -0600467 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700468 if (!symbol_conf.use_callchain)
469 printf(" ");
470 else
471 printf("\n");
David Aherna6ffaf92013-08-07 22:50:51 -0400472
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300473 perf_evsel__print_ip(evsel, sample, al,
David Ahern307cbb92013-08-07 22:50:53 -0400474 output[attr->type].print_ip_opts,
475 PERF_MAX_STACK_DEPTH);
David Ahernc0230b22011-03-09 22:23:27 -0700476 }
477
David Ahernc70c94b2011-03-09 22:23:25 -0700478 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700479}
480
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300481static int default_start_script(const char *script __maybe_unused,
482 int argc __maybe_unused,
483 const char **argv __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600484{
485 return 0;
486}
487
488static int default_stop_script(void)
489{
490 return 0;
491}
492
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300493static int default_generate_script(struct pevent *pevent __maybe_unused,
494 const char *outfile __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600495{
496 return 0;
497}
498
499static struct scripting_ops default_scripting_ops = {
500 .start_script = default_start_script,
501 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700502 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600503 .generate_script = default_generate_script,
504};
505
506static struct scripting_ops *scripting_ops;
507
508static void setup_scripting(void)
509{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600510 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600511 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600512
Tom Zanussi956ffd02009-11-25 01:15:46 -0600513 scripting_ops = &default_scripting_ops;
514}
515
516static int cleanup_scripting(void)
517{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100518 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500519
Tom Zanussi956ffd02009-11-25 01:15:46 -0600520 return scripting_ops->stop_script();
521}
522
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300523static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200524 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200525 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300526 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200527 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200528{
David Aherne7984b72011-11-21 10:02:52 -0700529 struct addr_location al;
Adrian Hunteref893252013-08-27 11:23:06 +0300530 struct thread *thread = machine__findnew_thread(machine, sample->pid,
531 sample->tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200532
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200533 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200534 pr_debug("problem processing %d event, skipping it.\n",
535 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200536 return -1;
537 }
538
David Ahern1424dc92011-03-09 22:23:28 -0700539 if (debug_mode) {
540 if (sample->time < last_timestamp) {
541 pr_err("Samples misordered, previous: %" PRIu64
542 " this: %" PRIu64 "\n", last_timestamp,
543 sample->time);
544 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200545 }
David Ahern1424dc92011-03-09 22:23:28 -0700546 last_timestamp = sample->time;
547 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200548 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000549
Adrian Huntere44baa32013-08-08 14:32:25 +0300550 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -0700551 pr_err("problem processing %d event, skipping it.\n",
552 event->header.type);
553 return -1;
554 }
555
556 if (al.filtered)
557 return 0;
558
Anton Blanchard5d67be92011-07-04 21:57:50 +1000559 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
560 return 0;
561
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300562 scripting_ops->process_event(event, sample, evsel, thread, &al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200563
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200564 evsel->hists.stats.total_period += sample->period;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200565 return 0;
566}
567
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300568struct perf_script {
569 struct perf_tool tool;
570 struct perf_session *session;
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900571 bool show_task_events;
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900572 bool show_mmap_events;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200573};
574
Adrian Hunter7ea95722013-11-01 15:51:30 +0200575static int process_attr(struct perf_tool *tool, union perf_event *event,
576 struct perf_evlist **pevlist)
577{
578 struct perf_script *scr = container_of(tool, struct perf_script, tool);
579 struct perf_evlist *evlist;
580 struct perf_evsel *evsel, *pos;
581 int err;
582
583 err = perf_event__process_attr(tool, event, pevlist);
584 if (err)
585 return err;
586
587 evlist = *pevlist;
588 evsel = perf_evlist__last(*pevlist);
589
590 if (evsel->attr.type >= PERF_TYPE_MAX)
591 return 0;
592
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300593 evlist__for_each(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +0200594 if (pos->attr.type == evsel->attr.type && pos != evsel)
595 return 0;
596 }
597
598 set_print_ip_opts(&evsel->attr);
599
600 return perf_evsel__check_attr(evsel, scr->session);
601}
602
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900603static int process_comm_event(struct perf_tool *tool,
604 union perf_event *event,
605 struct perf_sample *sample,
606 struct machine *machine)
607{
608 struct thread *thread;
609 struct perf_script *script = container_of(tool, struct perf_script, tool);
610 struct perf_session *session = script->session;
611 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
612 int ret = -1;
613
614 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
615 if (thread == NULL) {
616 pr_debug("problem processing COMM event, skipping it.\n");
617 return -1;
618 }
619
620 if (perf_event__process_comm(tool, event, sample, machine) < 0)
621 goto out;
622
623 if (!evsel->attr.sample_id_all) {
624 sample->cpu = 0;
625 sample->time = 0;
626 sample->tid = event->comm.tid;
627 sample->pid = event->comm.pid;
628 }
629 print_sample_start(sample, thread, evsel);
630 perf_event__fprintf(event, stdout);
631 ret = 0;
632
633out:
634 return ret;
635}
636
637static int process_fork_event(struct perf_tool *tool,
638 union perf_event *event,
639 struct perf_sample *sample,
640 struct machine *machine)
641{
642 struct thread *thread;
643 struct perf_script *script = container_of(tool, struct perf_script, tool);
644 struct perf_session *session = script->session;
645 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
646
647 if (perf_event__process_fork(tool, event, sample, machine) < 0)
648 return -1;
649
650 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
651 if (thread == NULL) {
652 pr_debug("problem processing FORK event, skipping it.\n");
653 return -1;
654 }
655
656 if (!evsel->attr.sample_id_all) {
657 sample->cpu = 0;
658 sample->time = event->fork.time;
659 sample->tid = event->fork.tid;
660 sample->pid = event->fork.pid;
661 }
662 print_sample_start(sample, thread, evsel);
663 perf_event__fprintf(event, stdout);
664
665 return 0;
666}
667static int process_exit_event(struct perf_tool *tool,
668 union perf_event *event,
669 struct perf_sample *sample,
670 struct machine *machine)
671{
672 struct thread *thread;
673 struct perf_script *script = container_of(tool, struct perf_script, tool);
674 struct perf_session *session = script->session;
675 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
676
677 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
678 if (thread == NULL) {
679 pr_debug("problem processing EXIT event, skipping it.\n");
680 return -1;
681 }
682
683 if (!evsel->attr.sample_id_all) {
684 sample->cpu = 0;
685 sample->time = 0;
686 sample->tid = event->comm.tid;
687 sample->pid = event->comm.pid;
688 }
689 print_sample_start(sample, thread, evsel);
690 perf_event__fprintf(event, stdout);
691
692 if (perf_event__process_exit(tool, event, sample, machine) < 0)
693 return -1;
694
695 return 0;
696}
697
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900698static int process_mmap_event(struct perf_tool *tool,
699 union perf_event *event,
700 struct perf_sample *sample,
701 struct machine *machine)
702{
703 struct thread *thread;
704 struct perf_script *script = container_of(tool, struct perf_script, tool);
705 struct perf_session *session = script->session;
706 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
707
708 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
709 return -1;
710
711 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
712 if (thread == NULL) {
713 pr_debug("problem processing MMAP event, skipping it.\n");
714 return -1;
715 }
716
717 if (!evsel->attr.sample_id_all) {
718 sample->cpu = 0;
719 sample->time = 0;
720 sample->tid = event->mmap.tid;
721 sample->pid = event->mmap.pid;
722 }
723 print_sample_start(sample, thread, evsel);
724 perf_event__fprintf(event, stdout);
725
726 return 0;
727}
728
729static int process_mmap2_event(struct perf_tool *tool,
730 union perf_event *event,
731 struct perf_sample *sample,
732 struct machine *machine)
733{
734 struct thread *thread;
735 struct perf_script *script = container_of(tool, struct perf_script, tool);
736 struct perf_session *session = script->session;
737 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
738
739 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
740 return -1;
741
742 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
743 if (thread == NULL) {
744 pr_debug("problem processing MMAP2 event, skipping it.\n");
745 return -1;
746 }
747
748 if (!evsel->attr.sample_id_all) {
749 sample->cpu = 0;
750 sample->time = 0;
751 sample->tid = event->mmap2.tid;
752 sample->pid = event->mmap2.pid;
753 }
754 print_sample_start(sample, thread, evsel);
755 perf_event__fprintf(event, stdout);
756
757 return 0;
758}
759
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300760static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -0500761{
762 session_done = 1;
763}
764
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300765static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200766{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200767 int ret;
768
Tom Zanussic239da32010-04-01 23:59:18 -0500769 signal(SIGINT, sig_handler);
770
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900771 /* override event processing functions */
772 if (script->show_task_events) {
773 script->tool.comm = process_comm_event;
774 script->tool.fork = process_fork_event;
775 script->tool.exit = process_exit_event;
776 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900777 if (script->show_mmap_events) {
778 script->tool.mmap = process_mmap_event;
779 script->tool.mmap2 = process_mmap2_event;
780 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900781
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300782 ret = perf_session__process_events(script->session, &script->tool);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200783
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200784 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200785 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200786
787 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200788}
789
Tom Zanussi956ffd02009-11-25 01:15:46 -0600790struct script_spec {
791 struct list_head node;
792 struct scripting_ops *ops;
793 char spec[0];
794};
795
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200796static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600797
798static struct script_spec *script_spec__new(const char *spec,
799 struct scripting_ops *ops)
800{
801 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
802
803 if (s != NULL) {
804 strcpy(s->spec, spec);
805 s->ops = ops;
806 }
807
808 return s;
809}
810
Tom Zanussi956ffd02009-11-25 01:15:46 -0600811static void script_spec__add(struct script_spec *s)
812{
813 list_add_tail(&s->node, &script_specs);
814}
815
816static struct script_spec *script_spec__find(const char *spec)
817{
818 struct script_spec *s;
819
820 list_for_each_entry(s, &script_specs, node)
821 if (strcasecmp(s->spec, spec) == 0)
822 return s;
823 return NULL;
824}
825
826static struct script_spec *script_spec__findnew(const char *spec,
827 struct scripting_ops *ops)
828{
829 struct script_spec *s = script_spec__find(spec);
830
831 if (s)
832 return s;
833
834 s = script_spec__new(spec, ops);
835 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900836 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600837
838 script_spec__add(s);
839
840 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600841}
842
843int script_spec_register(const char *spec, struct scripting_ops *ops)
844{
845 struct script_spec *s;
846
847 s = script_spec__find(spec);
848 if (s)
849 return -1;
850
851 s = script_spec__findnew(spec, ops);
852 if (!s)
853 return -1;
854
855 return 0;
856}
857
858static struct scripting_ops *script_spec__lookup(const char *spec)
859{
860 struct script_spec *s = script_spec__find(spec);
861 if (!s)
862 return NULL;
863
864 return s->ops;
865}
866
867static void list_available_languages(void)
868{
869 struct script_spec *s;
870
871 fprintf(stderr, "\n");
872 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100873 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600874
875 list_for_each_entry(s, &script_specs, node)
876 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
877
878 fprintf(stderr, "\n");
879}
880
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300881static int parse_scriptname(const struct option *opt __maybe_unused,
882 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600883{
884 char spec[PATH_MAX];
885 const char *script, *ext;
886 int len;
887
Tom Zanussif526d68b2010-01-27 02:27:52 -0600888 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600889 list_available_languages();
Tom Zanussif526d68b2010-01-27 02:27:52 -0600890 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600891 }
892
893 script = strchr(str, ':');
894 if (script) {
895 len = script - str;
896 if (len >= PATH_MAX) {
897 fprintf(stderr, "invalid language specifier");
898 return -1;
899 }
900 strncpy(spec, str, len);
901 spec[len] = '\0';
902 scripting_ops = script_spec__lookup(spec);
903 if (!scripting_ops) {
904 fprintf(stderr, "invalid language specifier");
905 return -1;
906 }
907 script++;
908 } else {
909 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100910 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600911 if (!ext) {
912 fprintf(stderr, "invalid script extension");
913 return -1;
914 }
915 scripting_ops = script_spec__lookup(++ext);
916 if (!scripting_ops) {
917 fprintf(stderr, "invalid script extension");
918 return -1;
919 }
920 }
921
922 script_name = strdup(script);
923
924 return 0;
925}
926
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300927static int parse_output_fields(const struct option *opt __maybe_unused,
928 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -0700929{
930 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -0500931 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -0600932 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700933 int rc = 0;
934 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700935 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700936
937 if (!str)
938 return -ENOMEM;
939
David Ahern2c9e45f72011-03-17 10:03:21 -0600940 /* first word can state for which event type the user is specifying
941 * the fields. If no type exists, the specified fields apply to all
942 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700943 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600944 tok = strchr(str, ':');
945 if (tok) {
946 *tok = '\0';
947 tok++;
948 if (!strcmp(str, "hw"))
949 type = PERF_TYPE_HARDWARE;
950 else if (!strcmp(str, "sw"))
951 type = PERF_TYPE_SOFTWARE;
952 else if (!strcmp(str, "trace"))
953 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700954 else if (!strcmp(str, "raw"))
955 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600956 else {
957 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100958 rc = -EINVAL;
959 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600960 }
961
962 if (output[type].user_set)
963 pr_warning("Overriding previous field request for %s events.\n",
964 event_type(type));
965
966 output[type].fields = 0;
967 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600968 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600969
970 } else {
971 tok = str;
972 if (strlen(str) == 0) {
973 fprintf(stderr,
974 "Cannot set fields to 'none' for all event types.\n");
975 rc = -EINVAL;
976 goto out;
977 }
978
979 if (output_set_by_user())
980 pr_warning("Overriding previous field request for all events.\n");
981
982 for (j = 0; j < PERF_TYPE_MAX; ++j) {
983 output[j].fields = 0;
984 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600985 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -0600986 }
David Ahern1424dc92011-03-09 22:23:28 -0700987 }
988
David Ahern2c9e45f72011-03-17 10:03:21 -0600989 tok = strtok(tok, ",");
990 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -0700991 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600992 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -0700993 break;
David Ahern745f43e2011-03-09 22:23:26 -0700994 }
995 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600996 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -0700997 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -0600998 goto out;
999 }
1000
1001 if (type == -1) {
1002 /* add user option to all events types for
1003 * which it is valid
1004 */
1005 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1006 if (output[j].invalid_fields & all_output_options[i].field) {
1007 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1008 all_output_options[i].str, event_type(j));
1009 } else
1010 output[j].fields |= all_output_options[i].field;
1011 }
1012 } else {
1013 if (output[type].invalid_fields & all_output_options[i].field) {
1014 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1015 all_output_options[i].str, event_type(type));
1016
1017 rc = -EINVAL;
1018 goto out;
1019 }
1020 output[type].fields |= all_output_options[i].field;
1021 }
1022
1023 tok = strtok(NULL, ",");
1024 }
1025
1026 if (type >= 0) {
1027 if (output[type].fields == 0) {
1028 pr_debug("No fields requested for %s type. "
1029 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001030 }
David Ahern1424dc92011-03-09 22:23:28 -07001031 }
David Ahern745f43e2011-03-09 22:23:26 -07001032
David Ahern2c9e45f72011-03-17 10:03:21 -06001033out:
David Ahern745f43e2011-03-09 22:23:26 -07001034 free(str);
1035 return rc;
1036}
1037
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001038/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1039static int is_directory(const char *base_path, const struct dirent *dent)
1040{
1041 char path[PATH_MAX];
1042 struct stat st;
1043
1044 sprintf(path, "%s/%s", base_path, dent->d_name);
1045 if (stat(path, &st))
1046 return 0;
1047
1048 return S_ISDIR(st.st_mode);
1049}
1050
1051#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001052 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
1053 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001054 if ((lang_dirent.d_type == DT_DIR || \
1055 (lang_dirent.d_type == DT_UNKNOWN && \
1056 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001057 (strcmp(lang_dirent.d_name, ".")) && \
1058 (strcmp(lang_dirent.d_name, "..")))
1059
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001060#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001061 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
1062 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001063 if (script_dirent.d_type != DT_DIR && \
1064 (script_dirent.d_type != DT_UNKNOWN || \
1065 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001066
1067
1068#define RECORD_SUFFIX "-record"
1069#define REPORT_SUFFIX "-report"
1070
1071struct script_desc {
1072 struct list_head node;
1073 char *name;
1074 char *half_liner;
1075 char *args;
1076};
1077
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001078static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001079
1080static struct script_desc *script_desc__new(const char *name)
1081{
1082 struct script_desc *s = zalloc(sizeof(*s));
1083
Tom Zanussib5b87312010-11-10 08:16:51 -06001084 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001085 s->name = strdup(name);
1086
1087 return s;
1088}
1089
1090static void script_desc__delete(struct script_desc *s)
1091{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001092 zfree(&s->name);
1093 zfree(&s->half_liner);
1094 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001095 free(s);
1096}
1097
1098static void script_desc__add(struct script_desc *s)
1099{
1100 list_add_tail(&s->node, &script_descs);
1101}
1102
1103static struct script_desc *script_desc__find(const char *name)
1104{
1105 struct script_desc *s;
1106
1107 list_for_each_entry(s, &script_descs, node)
1108 if (strcasecmp(s->name, name) == 0)
1109 return s;
1110 return NULL;
1111}
1112
1113static struct script_desc *script_desc__findnew(const char *name)
1114{
1115 struct script_desc *s = script_desc__find(name);
1116
1117 if (s)
1118 return s;
1119
1120 s = script_desc__new(name);
1121 if (!s)
1122 goto out_delete_desc;
1123
1124 script_desc__add(s);
1125
1126 return s;
1127
1128out_delete_desc:
1129 script_desc__delete(s);
1130
1131 return NULL;
1132}
1133
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001134static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001135{
1136 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001137 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001138
1139 if (strlen(str) > suffix_len) {
1140 p = str + strlen(str) - suffix_len;
1141 if (!strncmp(p, suffix, suffix_len))
1142 return p;
1143 }
1144
1145 return NULL;
1146}
1147
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001148static int read_script_info(struct script_desc *desc, const char *filename)
1149{
1150 char line[BUFSIZ], *p;
1151 FILE *fp;
1152
1153 fp = fopen(filename, "r");
1154 if (!fp)
1155 return -1;
1156
1157 while (fgets(line, sizeof(line), fp)) {
1158 p = ltrim(line);
1159 if (strlen(p) == 0)
1160 continue;
1161 if (*p != '#')
1162 continue;
1163 p++;
1164 if (strlen(p) && *p == '!')
1165 continue;
1166
1167 p = ltrim(p);
1168 if (strlen(p) && p[strlen(p) - 1] == '\n')
1169 p[strlen(p) - 1] = '\0';
1170
1171 if (!strncmp(p, "description:", strlen("description:"))) {
1172 p += strlen("description:");
1173 desc->half_liner = strdup(ltrim(p));
1174 continue;
1175 }
1176
1177 if (!strncmp(p, "args:", strlen("args:"))) {
1178 p += strlen("args:");
1179 desc->args = strdup(ltrim(p));
1180 continue;
1181 }
1182 }
1183
1184 fclose(fp);
1185
1186 return 0;
1187}
1188
Robert Richter38efb532011-11-25 11:38:40 +01001189static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1190{
1191 char *script_root, *str;
1192
1193 script_root = strdup(script_dirent->d_name);
1194 if (!script_root)
1195 return NULL;
1196
1197 str = (char *)ends_with(script_root, suffix);
1198 if (!str) {
1199 free(script_root);
1200 return NULL;
1201 }
1202
1203 *str = '\0';
1204 return script_root;
1205}
1206
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001207static int list_available_scripts(const struct option *opt __maybe_unused,
1208 const char *s __maybe_unused,
1209 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001210{
1211 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1212 char scripts_path[MAXPATHLEN];
1213 DIR *scripts_dir, *lang_dir;
1214 char script_path[MAXPATHLEN];
1215 char lang_path[MAXPATHLEN];
1216 struct script_desc *desc;
1217 char first_half[BUFSIZ];
1218 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001219
1220 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1221
1222 scripts_dir = opendir(scripts_path);
1223 if (!scripts_dir)
1224 return -1;
1225
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001226 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001227 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1228 lang_dirent.d_name);
1229 lang_dir = opendir(lang_path);
1230 if (!lang_dir)
1231 continue;
1232
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001233 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001234 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1235 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001236 desc = script_desc__findnew(script_root);
1237 snprintf(script_path, MAXPATHLEN, "%s/%s",
1238 lang_path, script_dirent.d_name);
1239 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001240 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001241 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001242 }
1243 }
1244
1245 fprintf(stdout, "List of available trace scripts:\n");
1246 list_for_each_entry(desc, &script_descs, node) {
1247 sprintf(first_half, "%s %s", desc->name,
1248 desc->args ? desc->args : "");
1249 fprintf(stdout, " %-36s %s\n", first_half,
1250 desc->half_liner ? desc->half_liner : "");
1251 }
1252
1253 exit(0);
1254}
1255
Feng Tange5f37052012-09-07 16:42:26 +08001256/*
Feng Tang49e639e2012-10-30 11:56:03 +08001257 * Some scripts specify the required events in their "xxx-record" file,
1258 * this function will check if the events in perf.data match those
1259 * mentioned in the "xxx-record".
1260 *
1261 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1262 * which is covered well now. And new parsing code should be added to
1263 * cover the future complexing formats like event groups etc.
1264 */
1265static int check_ev_match(char *dir_name, char *scriptname,
1266 struct perf_session *session)
1267{
1268 char filename[MAXPATHLEN], evname[128];
1269 char line[BUFSIZ], *p;
1270 struct perf_evsel *pos;
1271 int match, len;
1272 FILE *fp;
1273
1274 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1275
1276 fp = fopen(filename, "r");
1277 if (!fp)
1278 return -1;
1279
1280 while (fgets(line, sizeof(line), fp)) {
1281 p = ltrim(line);
1282 if (*p == '#')
1283 continue;
1284
1285 while (strlen(p)) {
1286 p = strstr(p, "-e");
1287 if (!p)
1288 break;
1289
1290 p += 2;
1291 p = ltrim(p);
1292 len = strcspn(p, " \t");
1293 if (!len)
1294 break;
1295
1296 snprintf(evname, len + 1, "%s", p);
1297
1298 match = 0;
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001299 evlist__for_each(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08001300 if (!strcmp(perf_evsel__name(pos), evname)) {
1301 match = 1;
1302 break;
1303 }
1304 }
1305
1306 if (!match) {
1307 fclose(fp);
1308 return -1;
1309 }
1310 }
1311 }
1312
1313 fclose(fp);
1314 return 0;
1315}
1316
1317/*
Feng Tange5f37052012-09-07 16:42:26 +08001318 * Return -1 if none is found, otherwise the actual scripts number.
1319 *
1320 * Currently the only user of this function is the script browser, which
1321 * will list all statically runnable scripts, select one, execute it and
1322 * show the output in a perf browser.
1323 */
1324int find_scripts(char **scripts_array, char **scripts_path_array)
1325{
1326 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001327 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001328 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001329 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001330 struct perf_data_file file = {
1331 .path = input_name,
1332 .mode = PERF_DATA_MODE_READ,
1333 };
Feng Tange5f37052012-09-07 16:42:26 +08001334 char *temp;
1335 int i = 0;
1336
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001337 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001338 if (!session)
1339 return -1;
1340
Feng Tange5f37052012-09-07 16:42:26 +08001341 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1342
1343 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001344 if (!scripts_dir) {
1345 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001346 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001347 }
Feng Tange5f37052012-09-07 16:42:26 +08001348
1349 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1350 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1351 lang_dirent.d_name);
1352#ifdef NO_LIBPERL
1353 if (strstr(lang_path, "perl"))
1354 continue;
1355#endif
1356#ifdef NO_LIBPYTHON
1357 if (strstr(lang_path, "python"))
1358 continue;
1359#endif
1360
1361 lang_dir = opendir(lang_path);
1362 if (!lang_dir)
1363 continue;
1364
1365 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1366 /* Skip those real time scripts: xxxtop.p[yl] */
1367 if (strstr(script_dirent.d_name, "top."))
1368 continue;
1369 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1370 script_dirent.d_name);
1371 temp = strchr(script_dirent.d_name, '.');
1372 snprintf(scripts_array[i],
1373 (temp - script_dirent.d_name) + 1,
1374 "%s", script_dirent.d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001375
1376 if (check_ev_match(lang_path,
1377 scripts_array[i], session))
1378 continue;
1379
Feng Tange5f37052012-09-07 16:42:26 +08001380 i++;
1381 }
Feng Tang49e639e2012-10-30 11:56:03 +08001382 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001383 }
1384
Feng Tang49e639e2012-10-30 11:56:03 +08001385 closedir(scripts_dir);
1386 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001387 return i;
1388}
1389
Tom Zanussi38752942009-12-15 02:53:39 -06001390static char *get_script_path(const char *script_root, const char *suffix)
1391{
1392 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1393 char scripts_path[MAXPATHLEN];
1394 char script_path[MAXPATHLEN];
1395 DIR *scripts_dir, *lang_dir;
1396 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001397 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001398
1399 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1400
1401 scripts_dir = opendir(scripts_path);
1402 if (!scripts_dir)
1403 return NULL;
1404
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001405 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001406 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1407 lang_dirent.d_name);
1408 lang_dir = opendir(lang_path);
1409 if (!lang_dir)
1410 continue;
1411
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001412 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001413 __script_root = get_script_root(&script_dirent, suffix);
1414 if (__script_root && !strcmp(script_root, __script_root)) {
1415 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001416 closedir(lang_dir);
1417 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001418 snprintf(script_path, MAXPATHLEN, "%s/%s",
1419 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001420 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001421 }
1422 free(__script_root);
1423 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001424 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001425 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001426 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001427
Robert Richter38efb532011-11-25 11:38:40 +01001428 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001429}
1430
Tom Zanussib5b87312010-11-10 08:16:51 -06001431static bool is_top_script(const char *script_path)
1432{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001433 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001434}
1435
1436static int has_required_arg(char *script_path)
1437{
1438 struct script_desc *desc;
1439 int n_args = 0;
1440 char *p;
1441
1442 desc = script_desc__new(NULL);
1443
1444 if (read_script_info(desc, script_path))
1445 goto out;
1446
1447 if (!desc->args)
1448 goto out;
1449
1450 for (p = desc->args; *p; p++)
1451 if (*p == '<')
1452 n_args++;
1453out:
1454 script_desc__delete(desc);
1455
1456 return n_args;
1457}
1458
David Ahernd54b1a92012-08-26 12:24:46 -06001459static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001460{
1461 char **__argv = malloc(sizeof(const char *) * argc);
1462
David Ahernd54b1a92012-08-26 12:24:46 -06001463 if (!__argv) {
1464 pr_err("malloc failed\n");
1465 return -1;
1466 }
1467
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001468 memcpy(__argv, argv, sizeof(const char *) * argc);
1469 argc = parse_options(argc, (const char **)__argv, record_options,
1470 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1471 free(__argv);
1472
David Ahernd54b1a92012-08-26 12:24:46 -06001473 system_wide = (argc == 0);
1474
1475 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001476}
1477
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001478int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001479{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001480 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01001481 bool header = false;
1482 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001483 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001484 char *rec_script_path = NULL;
1485 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001486 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001487 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001488 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001489 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001490 struct perf_script script = {
1491 .tool = {
1492 .sample = process_sample_event,
1493 .mmap = perf_event__process_mmap,
1494 .mmap2 = perf_event__process_mmap2,
1495 .comm = perf_event__process_comm,
1496 .exit = perf_event__process_exit,
1497 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02001498 .attr = process_attr,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001499 .tracing_data = perf_event__process_tracing_data,
1500 .build_id = perf_event__process_build_id,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001501 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001502 .ordering_requires_timestamps = true,
1503 },
1504 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001505 const struct option options[] = {
1506 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1507 "dump raw trace in ASCII"),
1508 OPT_INCR('v', "verbose", &verbose,
1509 "be more verbose (show symbol address, etc)"),
1510 OPT_BOOLEAN('L', "Latency", &latency_format,
1511 "show latency attributes (irqs/preemption disabled, etc)"),
1512 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1513 list_available_scripts),
1514 OPT_CALLBACK('s', "script", NULL, "name",
1515 "script file name (lang:script name, script name, or *)",
1516 parse_scriptname),
1517 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
1518 "generate perf-script.xx script in specified language"),
1519 OPT_STRING('i', "input", &input_name, "file", "input file name"),
1520 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1521 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01001522 OPT_BOOLEAN(0, "header", &header, "Show data header."),
1523 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001524 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1525 "file", "vmlinux pathname"),
1526 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1527 "file", "kallsyms pathname"),
1528 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1529 "When printing symbols do not display call chain"),
1530 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1531 "Look for files with symbols relative to this directory"),
1532 OPT_CALLBACK('f', "fields", NULL, "str",
1533 "comma separated output fields prepend with 'type:'. "
1534 "Valid types: hw,sw,trace,raw. "
1535 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1536 "addr,symoff", parse_output_fields),
1537 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1538 "system-wide collection from all CPUs"),
1539 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1540 "only consider these symbols"),
1541 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
1542 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1543 "only display events for these comms"),
1544 OPT_BOOLEAN('I', "show-info", &show_full_info,
1545 "display extended information from perf.data file"),
1546 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1547 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001548 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
1549 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001550 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
1551 "Show the mmap events"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001552 OPT_END()
1553 };
1554 const char * const script_usage[] = {
1555 "perf script [<options>]",
1556 "perf script [<options>] record <script> [<record-options>] <command>",
1557 "perf script [<options>] report <script> [script-args]",
1558 "perf script [<options>] <script> [<record-options>] <command>",
1559 "perf script [<options>] <top-script> [script-args]",
1560 NULL
1561 };
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001562 struct perf_data_file file = {
1563 .mode = PERF_DATA_MODE_READ,
1564 };
Tom Zanussi38752942009-12-15 02:53:39 -06001565
Tom Zanussib5b87312010-11-10 08:16:51 -06001566 setup_scripting();
1567
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001568 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001569 PARSE_OPT_STOP_AT_NON_OPTION);
1570
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001571 file.path = input_name;
1572
Tom Zanussib5b87312010-11-10 08:16:51 -06001573 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1574 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1575 if (!rec_script_path)
1576 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001577 }
1578
Tom Zanussib5b87312010-11-10 08:16:51 -06001579 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1580 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1581 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001582 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001583 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001584 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001585 return -1;
1586 }
Tom Zanussi38752942009-12-15 02:53:39 -06001587 }
1588
Ben Hutchings44e668c2010-10-10 16:10:03 +01001589 /* make sure PERF_EXEC_PATH is set for scripts */
1590 perf_set_argv_exec_path(perf_exec_path());
1591
Tom Zanussib5b87312010-11-10 08:16:51 -06001592 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001593 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001594 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001595 pid_t pid;
1596
Tom Zanussib5b87312010-11-10 08:16:51 -06001597 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1598 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1599
1600 if (!rec_script_path && !rep_script_path) {
1601 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001602 " script -l for available scripts.\n", argv[0]);
1603 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001604 }
1605
Tom Zanussib5b87312010-11-10 08:16:51 -06001606 if (is_top_script(argv[0])) {
1607 rep_args = argc - 1;
1608 } else {
1609 int rec_args;
1610
1611 rep_args = has_required_arg(rep_script_path);
1612 rec_args = (argc - 1) - rep_args;
1613 if (rec_args < 0) {
1614 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001615 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001616 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001617 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001618 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001619 }
1620
1621 if (pipe(live_pipe) < 0) {
1622 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06001623 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001624 }
1625
1626 pid = fork();
1627 if (pid < 0) {
1628 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06001629 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001630 }
1631
1632 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001633 j = 0;
1634
Tom Zanussia0cccc22010-04-01 23:59:25 -05001635 dup2(live_pipe[1], 1);
1636 close(live_pipe[0]);
1637
Robert Richter317df652011-11-25 15:05:25 +01001638 if (is_top_script(argv[0])) {
1639 system_wide = true;
1640 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06001641 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1642 err = -1;
1643 goto out;
1644 }
Robert Richter317df652011-11-25 15:05:25 +01001645 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001646
1647 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001648 if (!__argv) {
1649 pr_err("malloc failed\n");
1650 err = -ENOMEM;
1651 goto out;
1652 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06001653
Tom Zanussib5b87312010-11-10 08:16:51 -06001654 __argv[j++] = "/bin/sh";
1655 __argv[j++] = rec_script_path;
1656 if (system_wide)
1657 __argv[j++] = "-a";
1658 __argv[j++] = "-q";
1659 __argv[j++] = "-o";
1660 __argv[j++] = "-";
1661 for (i = rep_args + 1; i < argc; i++)
1662 __argv[j++] = argv[i];
1663 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001664
1665 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001666 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001667 exit(-1);
1668 }
1669
1670 dup2(live_pipe[0], 0);
1671 close(live_pipe[1]);
1672
Tom Zanussib5b87312010-11-10 08:16:51 -06001673 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001674 if (!__argv) {
1675 pr_err("malloc failed\n");
1676 err = -ENOMEM;
1677 goto out;
1678 }
1679
Tom Zanussib5b87312010-11-10 08:16:51 -06001680 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001681 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001682 __argv[j++] = rep_script_path;
1683 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001684 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001685 __argv[j++] = "-i";
1686 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001687 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001688
1689 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001690 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001691 exit(-1);
1692 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001693
Tom Zanussib5b87312010-11-10 08:16:51 -06001694 if (rec_script_path)
1695 script_path = rec_script_path;
1696 if (rep_script_path)
1697 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001698
Tom Zanussib5b87312010-11-10 08:16:51 -06001699 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001700 j = 0;
1701
Robert Richter317df652011-11-25 15:05:25 +01001702 if (!rec_script_path)
1703 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06001704 else if (!system_wide) {
1705 if (have_cmd(argc - 1, &argv[1]) != 0) {
1706 err = -1;
1707 goto out;
1708 }
1709 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001710
1711 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001712 if (!__argv) {
1713 pr_err("malloc failed\n");
1714 err = -ENOMEM;
1715 goto out;
1716 }
1717
Tom Zanussib5b87312010-11-10 08:16:51 -06001718 __argv[j++] = "/bin/sh";
1719 __argv[j++] = script_path;
1720 if (system_wide)
1721 __argv[j++] = "-a";
1722 for (i = 2; i < argc; i++)
1723 __argv[j++] = argv[i];
1724 __argv[j++] = NULL;
1725
1726 execvp("/bin/sh", (char **)__argv);
1727 free(__argv);
1728 exit(-1);
1729 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001730
Tom Zanussicf4fee52010-03-03 01:04:33 -06001731 if (!script_name)
1732 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001733
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001734 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001735 if (session == NULL)
1736 return -ENOMEM;
1737
Jiri Olsae90debd2013-12-09 11:02:50 +01001738 if (header || header_only) {
1739 perf_session__fprintf_info(session, stdout, show_full_info);
1740 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001741 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01001742 }
1743
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001744 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09001745 goto out_delete;
1746
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001747 script.session = session;
1748
Anton Blanchard5d67be92011-07-04 21:57:50 +10001749 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001750 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
1751 if (err < 0)
1752 goto out_delete;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001753 }
1754
David Ahern1424dc92011-03-09 22:23:28 -07001755 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001756 symbol_conf.use_callchain = true;
1757 else
1758 symbol_conf.use_callchain = false;
1759
Tom Zanussi956ffd02009-11-25 01:15:46 -06001760 if (generate_script_lang) {
1761 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001762 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001763
David Ahern2c9e45f72011-03-17 10:03:21 -06001764 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001765 fprintf(stderr,
1766 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001767 err = -EINVAL;
1768 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07001769 }
1770
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001771 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001772 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001773 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001774 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001775 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001776 }
1777
1778 err = fstat(input, &perf_stat);
1779 if (err < 0) {
1780 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001781 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001782 }
1783
1784 if (!perf_stat.st_size) {
1785 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001786 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001787 }
1788
1789 scripting_ops = script_spec__lookup(generate_script_lang);
1790 if (!scripting_ops) {
1791 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001792 err = -ENOENT;
1793 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001794 }
1795
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01001796 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001797 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001798 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001799 }
1800
1801 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001802 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001803 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001804 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001805 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001806 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001807 }
1808
David Ahern9cbdb702011-04-06 21:54:20 -06001809
1810 err = perf_session__check_output_opt(session);
1811 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001812 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06001813
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001814 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001815
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001816out_delete:
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001817 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001818
1819 if (script_started)
1820 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06001821out:
1822 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001823}