blob: 7682665456fef11ad4d48378cae2c1069fc4f653 [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"
Adrian Hunter7a680eb2015-04-09 18:53:56 +030019#include "util/auxtrace.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100020#include <linux/bitmap.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020021
Tom Zanussi956ffd02009-11-25 01:15:46 -060022static char const *script_name;
23static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020024static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020025static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020026static u64 nr_unordered;
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,
Jiri Olsa535aeaa2014-08-25 16:45:42 +020047 PERF_OUTPUT_PERIOD = 1U << 13,
David Ahern745f43e2011-03-09 22:23:26 -070048};
49
50struct output_option {
51 const char *str;
52 enum perf_output_field field;
53} all_output_options[] = {
54 {.str = "comm", .field = PERF_OUTPUT_COMM},
55 {.str = "tid", .field = PERF_OUTPUT_TID},
56 {.str = "pid", .field = PERF_OUTPUT_PID},
57 {.str = "time", .field = PERF_OUTPUT_TIME},
58 {.str = "cpu", .field = PERF_OUTPUT_CPU},
59 {.str = "event", .field = PERF_OUTPUT_EVNAME},
60 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060061 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070062 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060063 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060064 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090065 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +020066 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
Jiri Olsa535aeaa2014-08-25 16:45:42 +020067 {.str = "period", .field = PERF_OUTPUT_PERIOD},
David Ahern745f43e2011-03-09 22:23:26 -070068};
69
70/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060071static struct {
72 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060073 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -040074 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -060075 u64 fields;
76 u64 invalid_fields;
77} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070078
David Ahern2c9e45f72011-03-17 10:03:21 -060079 [PERF_TYPE_HARDWARE] = {
80 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070081
David Ahern2c9e45f72011-03-17 10:03:21 -060082 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
83 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060084 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +020085 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
86 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -060087
88 .invalid_fields = PERF_OUTPUT_TRACE,
89 },
90
91 [PERF_TYPE_SOFTWARE] = {
92 .user_set = false,
93
94 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
95 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060096 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +020097 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
98 PERF_OUTPUT_PERIOD,
David Ahern2c9e45f72011-03-17 10:03:21 -060099
100 .invalid_fields = PERF_OUTPUT_TRACE,
101 },
102
103 [PERF_TYPE_TRACEPOINT] = {
104 .user_set = false,
105
106 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
107 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
108 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
109 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700110
111 [PERF_TYPE_RAW] = {
112 .user_set = false,
113
114 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
115 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600116 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
Jiri Olsae8564b72014-08-25 16:45:43 +0200117 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
118 PERF_OUTPUT_PERIOD,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700119
120 .invalid_fields = PERF_OUTPUT_TRACE,
121 },
David Ahern1424dc92011-03-09 22:23:28 -0700122};
David Ahern745f43e2011-03-09 22:23:26 -0700123
David Ahern2c9e45f72011-03-17 10:03:21 -0600124static bool output_set_by_user(void)
125{
126 int j;
127 for (j = 0; j < PERF_TYPE_MAX; ++j) {
128 if (output[j].user_set)
129 return true;
130 }
131 return false;
132}
David Ahern745f43e2011-03-09 22:23:26 -0700133
David Ahern9cbdb702011-04-06 21:54:20 -0600134static const char *output_field2str(enum perf_output_field field)
135{
136 int i, imax = ARRAY_SIZE(all_output_options);
137 const char *str = "";
138
139 for (i = 0; i < imax; ++i) {
140 if (all_output_options[i].field == field) {
141 str = all_output_options[i].str;
142 break;
143 }
144 }
145 return str;
146}
147
David Ahern2c9e45f72011-03-17 10:03:21 -0600148#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700149
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300150static int perf_evsel__check_stype(struct perf_evsel *evsel,
151 u64 sample_type, const char *sample_msg,
152 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700153{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300154 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600155 int type = attr->type;
156 const char *evname;
157
158 if (attr->sample_type & sample_type)
159 return 0;
160
161 if (output[type].user_set) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300162 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600163 pr_err("Samples for '%s' event do not have %s attribute set. "
164 "Cannot print '%s' field.\n",
165 evname, sample_msg, output_field2str(field));
166 return -1;
167 }
168
169 /* user did not ask for it explicitly so remove from the default list */
170 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300171 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600172 pr_debug("Samples for '%s' event do not have %s attribute set. "
173 "Skipping '%s' field.\n",
174 evname, sample_msg, output_field2str(field));
175
176 return 0;
177}
178
179static int perf_evsel__check_attr(struct perf_evsel *evsel,
180 struct perf_session *session)
181{
182 struct perf_event_attr *attr = &evsel->attr;
183
David Ahern1424dc92011-03-09 22:23:28 -0700184 if (PRINT_FIELD(TRACE) &&
185 !perf_session__has_traces(session, "record -R"))
186 return -EINVAL;
187
David Ahern787bef12011-05-27 14:28:43 -0600188 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300189 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
190 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700191 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700192 }
David Ahern7cec0922011-05-30 13:08:23 -0600193
194 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300195 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
196 PERF_OUTPUT_ADDR))
David Ahern7cec0922011-05-30 13:08:23 -0600197 return -EINVAL;
198
199 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
200 pr_err("Display of symbols requested but neither sample IP nor "
201 "sample address\nis selected. Hence, no addresses to convert "
202 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600203 return -EINVAL;
204 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900205 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
206 pr_err("Display of offsets requested but symbol is not"
207 "selected.\n");
208 return -EINVAL;
209 }
David Ahern7cec0922011-05-30 13:08:23 -0600210 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
211 pr_err("Display of DSO requested but neither sample IP nor "
212 "sample address\nis selected. Hence, no addresses to convert "
213 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600214 return -EINVAL;
215 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200216 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
217 pr_err("Display of source line number requested but sample IP is not\n"
218 "selected. Hence, no address to lookup the source line number.\n");
219 return -EINVAL;
220 }
David Ahern1424dc92011-03-09 22:23:28 -0700221
222 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300223 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
224 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700225 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700226
227 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300228 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
229 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700230 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700231
232 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300233 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
234 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700235 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600236
Jiri Olsa535aeaa2014-08-25 16:45:42 +0200237 if (PRINT_FIELD(PERIOD) &&
238 perf_evsel__check_stype(evsel, PERF_SAMPLE_PERIOD, "PERIOD",
239 PERF_OUTPUT_PERIOD))
240 return -EINVAL;
241
David Ahern9cbdb702011-04-06 21:54:20 -0600242 return 0;
243}
244
Adrian Hunter7ea95722013-11-01 15:51:30 +0200245static void set_print_ip_opts(struct perf_event_attr *attr)
246{
247 unsigned int type = attr->type;
248
249 output[type].print_ip_opts = 0;
250 if (PRINT_FIELD(IP))
251 output[type].print_ip_opts |= PRINT_IP_OPT_IP;
252
253 if (PRINT_FIELD(SYM))
254 output[type].print_ip_opts |= PRINT_IP_OPT_SYM;
255
256 if (PRINT_FIELD(DSO))
257 output[type].print_ip_opts |= PRINT_IP_OPT_DSO;
258
259 if (PRINT_FIELD(SYMOFFSET))
260 output[type].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200261
262 if (PRINT_FIELD(SRCLINE))
263 output[type].print_ip_opts |= PRINT_IP_OPT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200264}
265
David Ahern9cbdb702011-04-06 21:54:20 -0600266/*
267 * verify all user requested events exist and the samples
268 * have the expected data
269 */
270static int perf_session__check_output_opt(struct perf_session *session)
271{
272 int j;
273 struct perf_evsel *evsel;
274
275 for (j = 0; j < PERF_TYPE_MAX; ++j) {
276 evsel = perf_session__find_first_evtype(session, j);
277
278 /*
279 * even if fields is set to 0 (ie., show nothing) event must
280 * exist if user explicitly includes it on the command line
281 */
282 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
283 pr_err("%s events do not exist. "
284 "Remove corresponding -f option to proceed.\n",
285 event_type(j));
286 return -1;
287 }
288
289 if (evsel && output[j].fields &&
290 perf_evsel__check_attr(evsel, session))
291 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400292
293 if (evsel == NULL)
294 continue;
295
Adrian Hunter7ea95722013-11-01 15:51:30 +0200296 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700297 }
298
Adrian Hunter98526ee2014-07-31 09:00:59 +0300299 if (!no_callchain) {
300 bool use_callchain = false;
301
302 evlist__for_each(session->evlist, evsel) {
303 if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
304 use_callchain = true;
305 break;
306 }
307 }
308 if (!use_callchain)
309 symbol_conf.use_callchain = false;
310 }
311
David Ahern80b8b492013-11-19 21:07:37 -0700312 /*
313 * set default for tracepoints to print symbols only
314 * if callchains are present
315 */
316 if (symbol_conf.use_callchain &&
317 !output[PERF_TYPE_TRACEPOINT].user_set) {
318 struct perf_event_attr *attr;
319
320 j = PERF_TYPE_TRACEPOINT;
321 evsel = perf_session__find_first_evtype(session, j);
322 if (evsel == NULL)
323 goto out;
324
325 attr = &evsel->attr;
326
327 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
328 output[j].fields |= PERF_OUTPUT_IP;
329 output[j].fields |= PERF_OUTPUT_SYM;
330 output[j].fields |= PERF_OUTPUT_DSO;
331 set_print_ip_opts(attr);
332 }
333 }
334
335out:
David Ahern1424dc92011-03-09 22:23:28 -0700336 return 0;
337}
David Ahern745f43e2011-03-09 22:23:26 -0700338
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300339static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700340 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300341 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700342{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300343 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700344 unsigned long secs;
345 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700346 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700347
David Ahern745f43e2011-03-09 22:23:26 -0700348 if (PRINT_FIELD(COMM)) {
349 if (latency_format)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200350 printf("%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600351 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200352 printf("%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700353 else
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200354 printf("%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700355 }
David Ahernc70c94b2011-03-09 22:23:25 -0700356
David Ahern745f43e2011-03-09 22:23:26 -0700357 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
358 printf("%5d/%-5d ", sample->pid, sample->tid);
359 else if (PRINT_FIELD(PID))
360 printf("%5d ", sample->pid);
361 else if (PRINT_FIELD(TID))
362 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700363
David Ahern745f43e2011-03-09 22:23:26 -0700364 if (PRINT_FIELD(CPU)) {
365 if (latency_format)
366 printf("%3d ", sample->cpu);
367 else
368 printf("[%03d] ", sample->cpu);
369 }
David Ahernc70c94b2011-03-09 22:23:25 -0700370
David Ahern745f43e2011-03-09 22:23:26 -0700371 if (PRINT_FIELD(TIME)) {
372 nsecs = sample->time;
373 secs = nsecs / NSECS_PER_SEC;
374 nsecs -= secs * NSECS_PER_SEC;
375 usecs = nsecs / NSECS_PER_USEC;
376 printf("%5lu.%06lu: ", secs, usecs);
377 }
David Ahernc70c94b2011-03-09 22:23:25 -0700378}
379
David Ahern7cec0922011-05-30 13:08:23 -0600380static void print_sample_addr(union perf_event *event,
381 struct perf_sample *sample,
David Ahern7cec0922011-05-30 13:08:23 -0600382 struct thread *thread,
383 struct perf_event_attr *attr)
384{
385 struct addr_location al;
David Ahern7cec0922011-05-30 13:08:23 -0600386
387 printf("%16" PRIx64, sample->addr);
388
389 if (!sample_addr_correlates_sym(attr))
390 return;
391
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300392 perf_event__preprocess_sample_addr(event, sample, thread, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600393
394 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900395 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900396 if (PRINT_FIELD(SYMOFFSET))
397 symbol__fprintf_symname_offs(al.sym, &al, stdout);
398 else
399 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600400 }
401
402 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900403 printf(" (");
404 map__fprintf_dsoname(al.map, stdout);
405 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600406 }
407}
408
Akihiro Nagai95582592012-01-30 13:43:09 +0900409static void print_sample_bts(union perf_event *event,
410 struct perf_sample *sample,
411 struct perf_evsel *evsel,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200412 struct thread *thread,
413 struct addr_location *al)
Akihiro Nagai95582592012-01-30 13:43:09 +0900414{
415 struct perf_event_attr *attr = &evsel->attr;
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300416 bool print_srcline_last = false;
Akihiro Nagai95582592012-01-30 13:43:09 +0900417
418 /* print branch_from information */
419 if (PRINT_FIELD(IP)) {
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300420 unsigned int print_opts = output[attr->type].print_ip_opts;
421
422 if (symbol_conf.use_callchain && sample->callchain) {
Akihiro Nagai95582592012-01-30 13:43:09 +0900423 printf("\n");
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300424 } else {
425 printf(" ");
426 if (print_opts & PRINT_IP_OPT_SRCLINE) {
427 print_srcline_last = true;
428 print_opts &= ~PRINT_IP_OPT_SRCLINE;
429 }
430 }
431 perf_evsel__print_ip(evsel, sample, al, print_opts,
David Ahern307cbb92013-08-07 22:50:53 -0400432 PERF_MAX_STACK_DEPTH);
Akihiro Nagai95582592012-01-30 13:43:09 +0900433 }
434
Akihiro Nagai95582592012-01-30 13:43:09 +0900435 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +0300436 if (PRINT_FIELD(ADDR) ||
437 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
Adrian Hunter578bea42014-07-22 16:17:16 +0300438 !output[attr->type].user_set)) {
439 printf(" => ");
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300440 print_sample_addr(event, sample, thread, attr);
Adrian Hunter578bea42014-07-22 16:17:16 +0300441 }
Akihiro Nagai95582592012-01-30 13:43:09 +0900442
Adrian Hunter8066be5f2014-07-22 16:17:15 +0300443 if (print_srcline_last)
444 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
445
Akihiro Nagai95582592012-01-30 13:43:09 +0900446 printf("\n");
447}
448
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300449static void process_event(union perf_event *event, struct perf_sample *sample,
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -0300450 struct perf_evsel *evsel, struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700451{
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -0300452 struct thread *thread = al->thread;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300453 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700454
David Ahern2c9e45f72011-03-17 10:03:21 -0600455 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700456 return;
457
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300458 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700459
Jiri Olsa535aeaa2014-08-25 16:45:42 +0200460 if (PRINT_FIELD(PERIOD))
461 printf("%10" PRIu64 " ", sample->period);
462
Namhyung Kime944d3d2013-11-18 14:34:52 +0900463 if (PRINT_FIELD(EVNAME)) {
464 const char *evname = perf_evsel__name(evsel);
465 printf("%s: ", evname ? evname : "[unknown]");
466 }
467
Akihiro Nagai95582592012-01-30 13:43:09 +0900468 if (is_bts_event(attr)) {
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300469 print_sample_bts(event, sample, evsel, thread, al);
Akihiro Nagai95582592012-01-30 13:43:09 +0900470 return;
471 }
472
David Ahern745f43e2011-03-09 22:23:26 -0700473 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300474 event_format__print(evsel->tp_format, sample->cpu,
475 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600476 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300477 print_sample_addr(event, sample, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600478
David Ahern787bef12011-05-27 14:28:43 -0600479 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700480 if (!symbol_conf.use_callchain)
481 printf(" ");
482 else
483 printf("\n");
David Aherna6ffaf92013-08-07 22:50:51 -0400484
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300485 perf_evsel__print_ip(evsel, sample, al,
David Ahern307cbb92013-08-07 22:50:53 -0400486 output[attr->type].print_ip_opts,
487 PERF_MAX_STACK_DEPTH);
David Ahernc0230b22011-03-09 22:23:27 -0700488 }
489
David Ahernc70c94b2011-03-09 22:23:25 -0700490 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700491}
492
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300493static int default_start_script(const char *script __maybe_unused,
494 int argc __maybe_unused,
495 const char **argv __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600496{
497 return 0;
498}
499
Adrian Hunterd445dd22014-08-15 22:08:37 +0300500static int default_flush_script(void)
501{
502 return 0;
503}
504
Tom Zanussi956ffd02009-11-25 01:15:46 -0600505static int default_stop_script(void)
506{
507 return 0;
508}
509
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300510static int default_generate_script(struct pevent *pevent __maybe_unused,
511 const char *outfile __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600512{
513 return 0;
514}
515
516static struct scripting_ops default_scripting_ops = {
517 .start_script = default_start_script,
Adrian Hunterd445dd22014-08-15 22:08:37 +0300518 .flush_script = default_flush_script,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600519 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700520 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600521 .generate_script = default_generate_script,
522};
523
524static struct scripting_ops *scripting_ops;
525
526static void setup_scripting(void)
527{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600528 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600529 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600530
Tom Zanussi956ffd02009-11-25 01:15:46 -0600531 scripting_ops = &default_scripting_ops;
532}
533
Adrian Hunterd445dd22014-08-15 22:08:37 +0300534static int flush_scripting(void)
535{
536 return scripting_ops->flush_script();
537}
538
Tom Zanussi956ffd02009-11-25 01:15:46 -0600539static int cleanup_scripting(void)
540{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100541 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500542
Tom Zanussi956ffd02009-11-25 01:15:46 -0600543 return scripting_ops->stop_script();
544}
545
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300546static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200547 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200548 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300549 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200550 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200551{
David Aherne7984b72011-11-21 10:02:52 -0700552 struct addr_location al;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200553
David Ahern1424dc92011-03-09 22:23:28 -0700554 if (debug_mode) {
555 if (sample->time < last_timestamp) {
556 pr_err("Samples misordered, previous: %" PRIu64
557 " this: %" PRIu64 "\n", last_timestamp,
558 sample->time);
559 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200560 }
David Ahern1424dc92011-03-09 22:23:28 -0700561 last_timestamp = sample->time;
562 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200563 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000564
Adrian Huntere44baa32013-08-08 14:32:25 +0300565 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -0700566 pr_err("problem processing %d event, skipping it.\n",
567 event->header.type);
568 return -1;
569 }
570
571 if (al.filtered)
572 return 0;
573
Anton Blanchard5d67be92011-07-04 21:57:50 +1000574 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
575 return 0;
576
Arnaldo Carvalho de Melof9d5d542015-04-01 13:29:25 -0300577 scripting_ops->process_event(event, sample, evsel, &al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200578
579 return 0;
580}
581
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300582struct perf_script {
583 struct perf_tool tool;
584 struct perf_session *session;
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900585 bool show_task_events;
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900586 bool show_mmap_events;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200587};
588
Adrian Hunter7ea95722013-11-01 15:51:30 +0200589static int process_attr(struct perf_tool *tool, union perf_event *event,
590 struct perf_evlist **pevlist)
591{
592 struct perf_script *scr = container_of(tool, struct perf_script, tool);
593 struct perf_evlist *evlist;
594 struct perf_evsel *evsel, *pos;
595 int err;
596
597 err = perf_event__process_attr(tool, event, pevlist);
598 if (err)
599 return err;
600
601 evlist = *pevlist;
602 evsel = perf_evlist__last(*pevlist);
603
604 if (evsel->attr.type >= PERF_TYPE_MAX)
605 return 0;
606
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300607 evlist__for_each(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +0200608 if (pos->attr.type == evsel->attr.type && pos != evsel)
609 return 0;
610 }
611
612 set_print_ip_opts(&evsel->attr);
613
614 return perf_evsel__check_attr(evsel, scr->session);
615}
616
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900617static int process_comm_event(struct perf_tool *tool,
618 union perf_event *event,
619 struct perf_sample *sample,
620 struct machine *machine)
621{
622 struct thread *thread;
623 struct perf_script *script = container_of(tool, struct perf_script, tool);
624 struct perf_session *session = script->session;
625 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
626 int ret = -1;
627
628 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
629 if (thread == NULL) {
630 pr_debug("problem processing COMM event, skipping it.\n");
631 return -1;
632 }
633
634 if (perf_event__process_comm(tool, event, sample, machine) < 0)
635 goto out;
636
637 if (!evsel->attr.sample_id_all) {
638 sample->cpu = 0;
639 sample->time = 0;
640 sample->tid = event->comm.tid;
641 sample->pid = event->comm.pid;
642 }
643 print_sample_start(sample, thread, evsel);
644 perf_event__fprintf(event, stdout);
645 ret = 0;
646
647out:
648 return ret;
649}
650
651static int process_fork_event(struct perf_tool *tool,
652 union perf_event *event,
653 struct perf_sample *sample,
654 struct machine *machine)
655{
656 struct thread *thread;
657 struct perf_script *script = container_of(tool, struct perf_script, tool);
658 struct perf_session *session = script->session;
659 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
660
661 if (perf_event__process_fork(tool, event, sample, machine) < 0)
662 return -1;
663
664 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
665 if (thread == NULL) {
666 pr_debug("problem processing FORK event, skipping it.\n");
667 return -1;
668 }
669
670 if (!evsel->attr.sample_id_all) {
671 sample->cpu = 0;
672 sample->time = event->fork.time;
673 sample->tid = event->fork.tid;
674 sample->pid = event->fork.pid;
675 }
676 print_sample_start(sample, thread, evsel);
677 perf_event__fprintf(event, stdout);
678
679 return 0;
680}
681static int process_exit_event(struct perf_tool *tool,
682 union perf_event *event,
683 struct perf_sample *sample,
684 struct machine *machine)
685{
686 struct thread *thread;
687 struct perf_script *script = container_of(tool, struct perf_script, tool);
688 struct perf_session *session = script->session;
689 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
690
691 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
692 if (thread == NULL) {
693 pr_debug("problem processing EXIT event, skipping it.\n");
694 return -1;
695 }
696
697 if (!evsel->attr.sample_id_all) {
698 sample->cpu = 0;
699 sample->time = 0;
700 sample->tid = event->comm.tid;
701 sample->pid = event->comm.pid;
702 }
703 print_sample_start(sample, thread, evsel);
704 perf_event__fprintf(event, stdout);
705
706 if (perf_event__process_exit(tool, event, sample, machine) < 0)
707 return -1;
708
709 return 0;
710}
711
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900712static int process_mmap_event(struct perf_tool *tool,
713 union perf_event *event,
714 struct perf_sample *sample,
715 struct machine *machine)
716{
717 struct thread *thread;
718 struct perf_script *script = container_of(tool, struct perf_script, tool);
719 struct perf_session *session = script->session;
720 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
721
722 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
723 return -1;
724
725 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
726 if (thread == NULL) {
727 pr_debug("problem processing MMAP event, skipping it.\n");
728 return -1;
729 }
730
731 if (!evsel->attr.sample_id_all) {
732 sample->cpu = 0;
733 sample->time = 0;
734 sample->tid = event->mmap.tid;
735 sample->pid = event->mmap.pid;
736 }
737 print_sample_start(sample, thread, evsel);
738 perf_event__fprintf(event, stdout);
739
740 return 0;
741}
742
743static int process_mmap2_event(struct perf_tool *tool,
744 union perf_event *event,
745 struct perf_sample *sample,
746 struct machine *machine)
747{
748 struct thread *thread;
749 struct perf_script *script = container_of(tool, struct perf_script, tool);
750 struct perf_session *session = script->session;
751 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
752
753 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
754 return -1;
755
756 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
757 if (thread == NULL) {
758 pr_debug("problem processing MMAP2 event, skipping it.\n");
759 return -1;
760 }
761
762 if (!evsel->attr.sample_id_all) {
763 sample->cpu = 0;
764 sample->time = 0;
765 sample->tid = event->mmap2.tid;
766 sample->pid = event->mmap2.pid;
767 }
768 print_sample_start(sample, thread, evsel);
769 perf_event__fprintf(event, stdout);
770
771 return 0;
772}
773
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300774static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -0500775{
776 session_done = 1;
777}
778
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300779static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200780{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200781 int ret;
782
Tom Zanussic239da32010-04-01 23:59:18 -0500783 signal(SIGINT, sig_handler);
784
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900785 /* override event processing functions */
786 if (script->show_task_events) {
787 script->tool.comm = process_comm_event;
788 script->tool.fork = process_fork_event;
789 script->tool.exit = process_exit_event;
790 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900791 if (script->show_mmap_events) {
792 script->tool.mmap = process_mmap_event;
793 script->tool.mmap2 = process_mmap2_event;
794 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900795
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300796 ret = perf_session__process_events(script->session);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200797
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200798 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200799 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200800
801 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200802}
803
Tom Zanussi956ffd02009-11-25 01:15:46 -0600804struct script_spec {
805 struct list_head node;
806 struct scripting_ops *ops;
807 char spec[0];
808};
809
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200810static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600811
812static struct script_spec *script_spec__new(const char *spec,
813 struct scripting_ops *ops)
814{
815 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
816
817 if (s != NULL) {
818 strcpy(s->spec, spec);
819 s->ops = ops;
820 }
821
822 return s;
823}
824
Tom Zanussi956ffd02009-11-25 01:15:46 -0600825static void script_spec__add(struct script_spec *s)
826{
827 list_add_tail(&s->node, &script_specs);
828}
829
830static struct script_spec *script_spec__find(const char *spec)
831{
832 struct script_spec *s;
833
834 list_for_each_entry(s, &script_specs, node)
835 if (strcasecmp(s->spec, spec) == 0)
836 return s;
837 return NULL;
838}
839
840static struct script_spec *script_spec__findnew(const char *spec,
841 struct scripting_ops *ops)
842{
843 struct script_spec *s = script_spec__find(spec);
844
845 if (s)
846 return s;
847
848 s = script_spec__new(spec, ops);
849 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900850 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600851
852 script_spec__add(s);
853
854 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600855}
856
857int script_spec_register(const char *spec, struct scripting_ops *ops)
858{
859 struct script_spec *s;
860
861 s = script_spec__find(spec);
862 if (s)
863 return -1;
864
865 s = script_spec__findnew(spec, ops);
866 if (!s)
867 return -1;
868
869 return 0;
870}
871
872static struct scripting_ops *script_spec__lookup(const char *spec)
873{
874 struct script_spec *s = script_spec__find(spec);
875 if (!s)
876 return NULL;
877
878 return s->ops;
879}
880
881static void list_available_languages(void)
882{
883 struct script_spec *s;
884
885 fprintf(stderr, "\n");
886 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100887 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600888
889 list_for_each_entry(s, &script_specs, node)
890 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
891
892 fprintf(stderr, "\n");
893}
894
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300895static int parse_scriptname(const struct option *opt __maybe_unused,
896 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600897{
898 char spec[PATH_MAX];
899 const char *script, *ext;
900 int len;
901
Tom Zanussif526d682010-01-27 02:27:52 -0600902 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600903 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600904 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600905 }
906
907 script = strchr(str, ':');
908 if (script) {
909 len = script - str;
910 if (len >= PATH_MAX) {
911 fprintf(stderr, "invalid language specifier");
912 return -1;
913 }
914 strncpy(spec, str, len);
915 spec[len] = '\0';
916 scripting_ops = script_spec__lookup(spec);
917 if (!scripting_ops) {
918 fprintf(stderr, "invalid language specifier");
919 return -1;
920 }
921 script++;
922 } else {
923 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100924 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600925 if (!ext) {
926 fprintf(stderr, "invalid script extension");
927 return -1;
928 }
929 scripting_ops = script_spec__lookup(++ext);
930 if (!scripting_ops) {
931 fprintf(stderr, "invalid script extension");
932 return -1;
933 }
934 }
935
936 script_name = strdup(script);
937
938 return 0;
939}
940
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300941static int parse_output_fields(const struct option *opt __maybe_unused,
942 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -0700943{
944 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -0500945 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -0600946 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700947 int rc = 0;
948 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700949 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700950
951 if (!str)
952 return -ENOMEM;
953
David Ahern2c9e45f72011-03-17 10:03:21 -0600954 /* first word can state for which event type the user is specifying
955 * the fields. If no type exists, the specified fields apply to all
956 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700957 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600958 tok = strchr(str, ':');
959 if (tok) {
960 *tok = '\0';
961 tok++;
962 if (!strcmp(str, "hw"))
963 type = PERF_TYPE_HARDWARE;
964 else if (!strcmp(str, "sw"))
965 type = PERF_TYPE_SOFTWARE;
966 else if (!strcmp(str, "trace"))
967 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700968 else if (!strcmp(str, "raw"))
969 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600970 else {
971 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100972 rc = -EINVAL;
973 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600974 }
975
976 if (output[type].user_set)
977 pr_warning("Overriding previous field request for %s events.\n",
978 event_type(type));
979
980 output[type].fields = 0;
981 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600982 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600983
984 } else {
985 tok = str;
986 if (strlen(str) == 0) {
987 fprintf(stderr,
988 "Cannot set fields to 'none' for all event types.\n");
989 rc = -EINVAL;
990 goto out;
991 }
992
993 if (output_set_by_user())
994 pr_warning("Overriding previous field request for all events.\n");
995
996 for (j = 0; j < PERF_TYPE_MAX; ++j) {
997 output[j].fields = 0;
998 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600999 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06001000 }
David Ahern1424dc92011-03-09 22:23:28 -07001001 }
1002
David Ahern2c9e45f72011-03-17 10:03:21 -06001003 tok = strtok(tok, ",");
1004 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -07001005 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001006 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07001007 break;
David Ahern745f43e2011-03-09 22:23:26 -07001008 }
1009 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001010 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07001011 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06001012 goto out;
1013 }
1014
1015 if (type == -1) {
1016 /* add user option to all events types for
1017 * which it is valid
1018 */
1019 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1020 if (output[j].invalid_fields & all_output_options[i].field) {
1021 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1022 all_output_options[i].str, event_type(j));
1023 } else
1024 output[j].fields |= all_output_options[i].field;
1025 }
1026 } else {
1027 if (output[type].invalid_fields & all_output_options[i].field) {
1028 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1029 all_output_options[i].str, event_type(type));
1030
1031 rc = -EINVAL;
1032 goto out;
1033 }
1034 output[type].fields |= all_output_options[i].field;
1035 }
1036
1037 tok = strtok(NULL, ",");
1038 }
1039
1040 if (type >= 0) {
1041 if (output[type].fields == 0) {
1042 pr_debug("No fields requested for %s type. "
1043 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001044 }
David Ahern1424dc92011-03-09 22:23:28 -07001045 }
David Ahern745f43e2011-03-09 22:23:26 -07001046
David Ahern2c9e45f72011-03-17 10:03:21 -06001047out:
David Ahern745f43e2011-03-09 22:23:26 -07001048 free(str);
1049 return rc;
1050}
1051
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001052/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1053static int is_directory(const char *base_path, const struct dirent *dent)
1054{
1055 char path[PATH_MAX];
1056 struct stat st;
1057
1058 sprintf(path, "%s/%s", base_path, dent->d_name);
1059 if (stat(path, &st))
1060 return 0;
1061
1062 return S_ISDIR(st.st_mode);
1063}
1064
1065#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001066 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
1067 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001068 if ((lang_dirent.d_type == DT_DIR || \
1069 (lang_dirent.d_type == DT_UNKNOWN && \
1070 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001071 (strcmp(lang_dirent.d_name, ".")) && \
1072 (strcmp(lang_dirent.d_name, "..")))
1073
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001074#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001075 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
1076 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001077 if (script_dirent.d_type != DT_DIR && \
1078 (script_dirent.d_type != DT_UNKNOWN || \
1079 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001080
1081
1082#define RECORD_SUFFIX "-record"
1083#define REPORT_SUFFIX "-report"
1084
1085struct script_desc {
1086 struct list_head node;
1087 char *name;
1088 char *half_liner;
1089 char *args;
1090};
1091
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001092static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001093
1094static struct script_desc *script_desc__new(const char *name)
1095{
1096 struct script_desc *s = zalloc(sizeof(*s));
1097
Tom Zanussib5b87312010-11-10 08:16:51 -06001098 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001099 s->name = strdup(name);
1100
1101 return s;
1102}
1103
1104static void script_desc__delete(struct script_desc *s)
1105{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001106 zfree(&s->name);
1107 zfree(&s->half_liner);
1108 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001109 free(s);
1110}
1111
1112static void script_desc__add(struct script_desc *s)
1113{
1114 list_add_tail(&s->node, &script_descs);
1115}
1116
1117static struct script_desc *script_desc__find(const char *name)
1118{
1119 struct script_desc *s;
1120
1121 list_for_each_entry(s, &script_descs, node)
1122 if (strcasecmp(s->name, name) == 0)
1123 return s;
1124 return NULL;
1125}
1126
1127static struct script_desc *script_desc__findnew(const char *name)
1128{
1129 struct script_desc *s = script_desc__find(name);
1130
1131 if (s)
1132 return s;
1133
1134 s = script_desc__new(name);
1135 if (!s)
1136 goto out_delete_desc;
1137
1138 script_desc__add(s);
1139
1140 return s;
1141
1142out_delete_desc:
1143 script_desc__delete(s);
1144
1145 return NULL;
1146}
1147
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001148static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001149{
1150 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001151 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001152
1153 if (strlen(str) > suffix_len) {
1154 p = str + strlen(str) - suffix_len;
1155 if (!strncmp(p, suffix, suffix_len))
1156 return p;
1157 }
1158
1159 return NULL;
1160}
1161
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001162static int read_script_info(struct script_desc *desc, const char *filename)
1163{
1164 char line[BUFSIZ], *p;
1165 FILE *fp;
1166
1167 fp = fopen(filename, "r");
1168 if (!fp)
1169 return -1;
1170
1171 while (fgets(line, sizeof(line), fp)) {
1172 p = ltrim(line);
1173 if (strlen(p) == 0)
1174 continue;
1175 if (*p != '#')
1176 continue;
1177 p++;
1178 if (strlen(p) && *p == '!')
1179 continue;
1180
1181 p = ltrim(p);
1182 if (strlen(p) && p[strlen(p) - 1] == '\n')
1183 p[strlen(p) - 1] = '\0';
1184
1185 if (!strncmp(p, "description:", strlen("description:"))) {
1186 p += strlen("description:");
1187 desc->half_liner = strdup(ltrim(p));
1188 continue;
1189 }
1190
1191 if (!strncmp(p, "args:", strlen("args:"))) {
1192 p += strlen("args:");
1193 desc->args = strdup(ltrim(p));
1194 continue;
1195 }
1196 }
1197
1198 fclose(fp);
1199
1200 return 0;
1201}
1202
Robert Richter38efb532011-11-25 11:38:40 +01001203static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1204{
1205 char *script_root, *str;
1206
1207 script_root = strdup(script_dirent->d_name);
1208 if (!script_root)
1209 return NULL;
1210
1211 str = (char *)ends_with(script_root, suffix);
1212 if (!str) {
1213 free(script_root);
1214 return NULL;
1215 }
1216
1217 *str = '\0';
1218 return script_root;
1219}
1220
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001221static int list_available_scripts(const struct option *opt __maybe_unused,
1222 const char *s __maybe_unused,
1223 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001224{
1225 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1226 char scripts_path[MAXPATHLEN];
1227 DIR *scripts_dir, *lang_dir;
1228 char script_path[MAXPATHLEN];
1229 char lang_path[MAXPATHLEN];
1230 struct script_desc *desc;
1231 char first_half[BUFSIZ];
1232 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001233
1234 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1235
1236 scripts_dir = opendir(scripts_path);
1237 if (!scripts_dir)
1238 return -1;
1239
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001240 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001241 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1242 lang_dirent.d_name);
1243 lang_dir = opendir(lang_path);
1244 if (!lang_dir)
1245 continue;
1246
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001247 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001248 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1249 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001250 desc = script_desc__findnew(script_root);
1251 snprintf(script_path, MAXPATHLEN, "%s/%s",
1252 lang_path, script_dirent.d_name);
1253 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001254 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001255 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001256 }
1257 }
1258
1259 fprintf(stdout, "List of available trace scripts:\n");
1260 list_for_each_entry(desc, &script_descs, node) {
1261 sprintf(first_half, "%s %s", desc->name,
1262 desc->args ? desc->args : "");
1263 fprintf(stdout, " %-36s %s\n", first_half,
1264 desc->half_liner ? desc->half_liner : "");
1265 }
1266
1267 exit(0);
1268}
1269
Feng Tange5f37052012-09-07 16:42:26 +08001270/*
Feng Tang49e639e2012-10-30 11:56:03 +08001271 * Some scripts specify the required events in their "xxx-record" file,
1272 * this function will check if the events in perf.data match those
1273 * mentioned in the "xxx-record".
1274 *
1275 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1276 * which is covered well now. And new parsing code should be added to
1277 * cover the future complexing formats like event groups etc.
1278 */
1279static int check_ev_match(char *dir_name, char *scriptname,
1280 struct perf_session *session)
1281{
1282 char filename[MAXPATHLEN], evname[128];
1283 char line[BUFSIZ], *p;
1284 struct perf_evsel *pos;
1285 int match, len;
1286 FILE *fp;
1287
1288 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1289
1290 fp = fopen(filename, "r");
1291 if (!fp)
1292 return -1;
1293
1294 while (fgets(line, sizeof(line), fp)) {
1295 p = ltrim(line);
1296 if (*p == '#')
1297 continue;
1298
1299 while (strlen(p)) {
1300 p = strstr(p, "-e");
1301 if (!p)
1302 break;
1303
1304 p += 2;
1305 p = ltrim(p);
1306 len = strcspn(p, " \t");
1307 if (!len)
1308 break;
1309
1310 snprintf(evname, len + 1, "%s", p);
1311
1312 match = 0;
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001313 evlist__for_each(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08001314 if (!strcmp(perf_evsel__name(pos), evname)) {
1315 match = 1;
1316 break;
1317 }
1318 }
1319
1320 if (!match) {
1321 fclose(fp);
1322 return -1;
1323 }
1324 }
1325 }
1326
1327 fclose(fp);
1328 return 0;
1329}
1330
1331/*
Feng Tange5f37052012-09-07 16:42:26 +08001332 * Return -1 if none is found, otherwise the actual scripts number.
1333 *
1334 * Currently the only user of this function is the script browser, which
1335 * will list all statically runnable scripts, select one, execute it and
1336 * show the output in a perf browser.
1337 */
1338int find_scripts(char **scripts_array, char **scripts_path_array)
1339{
1340 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001341 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001342 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001343 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001344 struct perf_data_file file = {
1345 .path = input_name,
1346 .mode = PERF_DATA_MODE_READ,
1347 };
Feng Tange5f37052012-09-07 16:42:26 +08001348 char *temp;
1349 int i = 0;
1350
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001351 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001352 if (!session)
1353 return -1;
1354
Feng Tange5f37052012-09-07 16:42:26 +08001355 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1356
1357 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001358 if (!scripts_dir) {
1359 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001360 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001361 }
Feng Tange5f37052012-09-07 16:42:26 +08001362
1363 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1364 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1365 lang_dirent.d_name);
1366#ifdef NO_LIBPERL
1367 if (strstr(lang_path, "perl"))
1368 continue;
1369#endif
1370#ifdef NO_LIBPYTHON
1371 if (strstr(lang_path, "python"))
1372 continue;
1373#endif
1374
1375 lang_dir = opendir(lang_path);
1376 if (!lang_dir)
1377 continue;
1378
1379 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1380 /* Skip those real time scripts: xxxtop.p[yl] */
1381 if (strstr(script_dirent.d_name, "top."))
1382 continue;
1383 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1384 script_dirent.d_name);
1385 temp = strchr(script_dirent.d_name, '.');
1386 snprintf(scripts_array[i],
1387 (temp - script_dirent.d_name) + 1,
1388 "%s", script_dirent.d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001389
1390 if (check_ev_match(lang_path,
1391 scripts_array[i], session))
1392 continue;
1393
Feng Tange5f37052012-09-07 16:42:26 +08001394 i++;
1395 }
Feng Tang49e639e2012-10-30 11:56:03 +08001396 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001397 }
1398
Feng Tang49e639e2012-10-30 11:56:03 +08001399 closedir(scripts_dir);
1400 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001401 return i;
1402}
1403
Tom Zanussi38752942009-12-15 02:53:39 -06001404static char *get_script_path(const char *script_root, const char *suffix)
1405{
1406 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1407 char scripts_path[MAXPATHLEN];
1408 char script_path[MAXPATHLEN];
1409 DIR *scripts_dir, *lang_dir;
1410 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001411 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001412
1413 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1414
1415 scripts_dir = opendir(scripts_path);
1416 if (!scripts_dir)
1417 return NULL;
1418
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001419 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001420 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1421 lang_dirent.d_name);
1422 lang_dir = opendir(lang_path);
1423 if (!lang_dir)
1424 continue;
1425
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001426 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001427 __script_root = get_script_root(&script_dirent, suffix);
1428 if (__script_root && !strcmp(script_root, __script_root)) {
1429 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001430 closedir(lang_dir);
1431 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001432 snprintf(script_path, MAXPATHLEN, "%s/%s",
1433 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001434 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001435 }
1436 free(__script_root);
1437 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001438 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001439 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001440 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001441
Robert Richter38efb532011-11-25 11:38:40 +01001442 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001443}
1444
Tom Zanussib5b87312010-11-10 08:16:51 -06001445static bool is_top_script(const char *script_path)
1446{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001447 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001448}
1449
1450static int has_required_arg(char *script_path)
1451{
1452 struct script_desc *desc;
1453 int n_args = 0;
1454 char *p;
1455
1456 desc = script_desc__new(NULL);
1457
1458 if (read_script_info(desc, script_path))
1459 goto out;
1460
1461 if (!desc->args)
1462 goto out;
1463
1464 for (p = desc->args; *p; p++)
1465 if (*p == '<')
1466 n_args++;
1467out:
1468 script_desc__delete(desc);
1469
1470 return n_args;
1471}
1472
David Ahernd54b1a92012-08-26 12:24:46 -06001473static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001474{
1475 char **__argv = malloc(sizeof(const char *) * argc);
1476
David Ahernd54b1a92012-08-26 12:24:46 -06001477 if (!__argv) {
1478 pr_err("malloc failed\n");
1479 return -1;
1480 }
1481
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001482 memcpy(__argv, argv, sizeof(const char *) * argc);
1483 argc = parse_options(argc, (const char **)__argv, record_options,
1484 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1485 free(__argv);
1486
David Ahernd54b1a92012-08-26 12:24:46 -06001487 system_wide = (argc == 0);
1488
1489 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001490}
1491
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001492int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001493{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001494 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01001495 bool header = false;
1496 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001497 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001498 char *rec_script_path = NULL;
1499 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001500 struct perf_session *session;
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001501 struct itrace_synth_opts itrace_synth_opts = { .set = false, };
Tom Zanussib5b87312010-11-10 08:16:51 -06001502 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001503 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001504 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001505 struct perf_script script = {
1506 .tool = {
1507 .sample = process_sample_event,
1508 .mmap = perf_event__process_mmap,
1509 .mmap2 = perf_event__process_mmap2,
1510 .comm = perf_event__process_comm,
1511 .exit = perf_event__process_exit,
1512 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02001513 .attr = process_attr,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001514 .tracing_data = perf_event__process_tracing_data,
1515 .build_id = perf_event__process_build_id,
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001516 .id_index = perf_event__process_id_index,
1517 .auxtrace_info = perf_event__process_auxtrace_info,
1518 .auxtrace = perf_event__process_auxtrace,
1519 .auxtrace_error = perf_event__process_auxtrace_error,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001520 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001521 .ordering_requires_timestamps = true,
1522 },
1523 };
Yunlong Song06af0f22015-04-02 21:47:16 +08001524 struct perf_data_file file = {
1525 .mode = PERF_DATA_MODE_READ,
1526 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001527 const struct option options[] = {
1528 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1529 "dump raw trace in ASCII"),
1530 OPT_INCR('v', "verbose", &verbose,
1531 "be more verbose (show symbol address, etc)"),
1532 OPT_BOOLEAN('L', "Latency", &latency_format,
1533 "show latency attributes (irqs/preemption disabled, etc)"),
1534 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1535 list_available_scripts),
1536 OPT_CALLBACK('s', "script", NULL, "name",
1537 "script file name (lang:script name, script name, or *)",
1538 parse_scriptname),
1539 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
1540 "generate perf-script.xx script in specified language"),
1541 OPT_STRING('i', "input", &input_name, "file", "input file name"),
1542 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1543 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01001544 OPT_BOOLEAN(0, "header", &header, "Show data header."),
1545 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001546 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1547 "file", "vmlinux pathname"),
1548 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1549 "file", "kallsyms pathname"),
1550 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1551 "When printing symbols do not display call chain"),
1552 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1553 "Look for files with symbols relative to this directory"),
Yunlong Song06af0f22015-04-02 21:47:16 +08001554 OPT_CALLBACK('F', "fields", NULL, "str",
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001555 "comma separated output fields prepend with 'type:'. "
1556 "Valid types: hw,sw,trace,raw. "
1557 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
Jiri Olsa535aeaa2014-08-25 16:45:42 +02001558 "addr,symoff,period", parse_output_fields),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001559 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1560 "system-wide collection from all CPUs"),
1561 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1562 "only consider these symbols"),
1563 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
1564 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1565 "only display events for these comms"),
David Aherne03eaa42015-03-24 09:52:41 -06001566 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
1567 "only consider symbols in these pids"),
1568 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
1569 "only consider symbols in these tids"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001570 OPT_BOOLEAN('I', "show-info", &show_full_info,
1571 "display extended information from perf.data file"),
1572 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1573 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001574 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
1575 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001576 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
1577 "Show the mmap events"),
Yunlong Song06af0f22015-04-02 21:47:16 +08001578 OPT_BOOLEAN('f', "force", &file.force, "don't complain, do it"),
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001579 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
1580 "Instruction Tracing options",
1581 itrace_parse_synth_opts),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001582 OPT_END()
1583 };
Yunlong Song40cae2b2015-03-18 21:35:54 +08001584 const char * const script_subcommands[] = { "record", "report", NULL };
1585 const char *script_usage[] = {
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001586 "perf script [<options>]",
1587 "perf script [<options>] record <script> [<record-options>] <command>",
1588 "perf script [<options>] report <script> [script-args]",
1589 "perf script [<options>] <script> [<record-options>] <command>",
1590 "perf script [<options>] <top-script> [script-args]",
1591 NULL
1592 };
Tom Zanussi38752942009-12-15 02:53:39 -06001593
Tom Zanussib5b87312010-11-10 08:16:51 -06001594 setup_scripting();
1595
Yunlong Song40cae2b2015-03-18 21:35:54 +08001596 argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001597 PARSE_OPT_STOP_AT_NON_OPTION);
1598
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001599 file.path = input_name;
1600
Tom Zanussib5b87312010-11-10 08:16:51 -06001601 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1602 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1603 if (!rec_script_path)
1604 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001605 }
1606
Tom Zanussib5b87312010-11-10 08:16:51 -06001607 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1608 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1609 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001610 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001611 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001612 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001613 return -1;
1614 }
Tom Zanussi38752942009-12-15 02:53:39 -06001615 }
1616
Ben Hutchings44e668c2010-10-10 16:10:03 +01001617 /* make sure PERF_EXEC_PATH is set for scripts */
1618 perf_set_argv_exec_path(perf_exec_path());
1619
Tom Zanussib5b87312010-11-10 08:16:51 -06001620 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001621 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001622 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001623 pid_t pid;
1624
Tom Zanussib5b87312010-11-10 08:16:51 -06001625 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1626 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1627
1628 if (!rec_script_path && !rep_script_path) {
1629 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001630 " script -l for available scripts.\n", argv[0]);
1631 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001632 }
1633
Tom Zanussib5b87312010-11-10 08:16:51 -06001634 if (is_top_script(argv[0])) {
1635 rep_args = argc - 1;
1636 } else {
1637 int rec_args;
1638
1639 rep_args = has_required_arg(rep_script_path);
1640 rec_args = (argc - 1) - rep_args;
1641 if (rec_args < 0) {
1642 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001643 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001644 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001645 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001646 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001647 }
1648
1649 if (pipe(live_pipe) < 0) {
1650 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06001651 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001652 }
1653
1654 pid = fork();
1655 if (pid < 0) {
1656 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06001657 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001658 }
1659
1660 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001661 j = 0;
1662
Tom Zanussia0cccc22010-04-01 23:59:25 -05001663 dup2(live_pipe[1], 1);
1664 close(live_pipe[0]);
1665
Robert Richter317df652011-11-25 15:05:25 +01001666 if (is_top_script(argv[0])) {
1667 system_wide = true;
1668 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06001669 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1670 err = -1;
1671 goto out;
1672 }
Robert Richter317df652011-11-25 15:05:25 +01001673 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001674
1675 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001676 if (!__argv) {
1677 pr_err("malloc failed\n");
1678 err = -ENOMEM;
1679 goto out;
1680 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06001681
Tom Zanussib5b87312010-11-10 08:16:51 -06001682 __argv[j++] = "/bin/sh";
1683 __argv[j++] = rec_script_path;
1684 if (system_wide)
1685 __argv[j++] = "-a";
1686 __argv[j++] = "-q";
1687 __argv[j++] = "-o";
1688 __argv[j++] = "-";
1689 for (i = rep_args + 1; i < argc; i++)
1690 __argv[j++] = argv[i];
1691 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001692
1693 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001694 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001695 exit(-1);
1696 }
1697
1698 dup2(live_pipe[0], 0);
1699 close(live_pipe[1]);
1700
Tom Zanussib5b87312010-11-10 08:16:51 -06001701 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001702 if (!__argv) {
1703 pr_err("malloc failed\n");
1704 err = -ENOMEM;
1705 goto out;
1706 }
1707
Tom Zanussib5b87312010-11-10 08:16:51 -06001708 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001709 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001710 __argv[j++] = rep_script_path;
1711 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001712 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001713 __argv[j++] = "-i";
1714 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001715 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001716
1717 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001718 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001719 exit(-1);
1720 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001721
Tom Zanussib5b87312010-11-10 08:16:51 -06001722 if (rec_script_path)
1723 script_path = rec_script_path;
1724 if (rep_script_path)
1725 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001726
Tom Zanussib5b87312010-11-10 08:16:51 -06001727 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001728 j = 0;
1729
Robert Richter317df652011-11-25 15:05:25 +01001730 if (!rec_script_path)
1731 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06001732 else if (!system_wide) {
1733 if (have_cmd(argc - 1, &argv[1]) != 0) {
1734 err = -1;
1735 goto out;
1736 }
1737 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001738
1739 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001740 if (!__argv) {
1741 pr_err("malloc failed\n");
1742 err = -ENOMEM;
1743 goto out;
1744 }
1745
Tom Zanussib5b87312010-11-10 08:16:51 -06001746 __argv[j++] = "/bin/sh";
1747 __argv[j++] = script_path;
1748 if (system_wide)
1749 __argv[j++] = "-a";
1750 for (i = 2; i < argc; i++)
1751 __argv[j++] = argv[i];
1752 __argv[j++] = NULL;
1753
1754 execvp("/bin/sh", (char **)__argv);
1755 free(__argv);
1756 exit(-1);
1757 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001758
Tom Zanussicf4fee52010-03-03 01:04:33 -06001759 if (!script_name)
1760 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001761
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001762 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001763 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09001764 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001765
Jiri Olsae90debd2013-12-09 11:02:50 +01001766 if (header || header_only) {
1767 perf_session__fprintf_info(session, stdout, show_full_info);
1768 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001769 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01001770 }
1771
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001772 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09001773 goto out_delete;
1774
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001775 script.session = session;
1776
Adrian Hunter7a680eb2015-04-09 18:53:56 +03001777 session->itrace_synth_opts = &itrace_synth_opts;
1778
Anton Blanchard5d67be92011-07-04 21:57:50 +10001779 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001780 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
1781 if (err < 0)
1782 goto out_delete;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001783 }
1784
David Ahern1424dc92011-03-09 22:23:28 -07001785 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001786 symbol_conf.use_callchain = true;
1787 else
1788 symbol_conf.use_callchain = false;
1789
Tom Zanussi956ffd02009-11-25 01:15:46 -06001790 if (generate_script_lang) {
1791 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001792 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001793
David Ahern2c9e45f72011-03-17 10:03:21 -06001794 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001795 fprintf(stderr,
1796 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001797 err = -EINVAL;
1798 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07001799 }
1800
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001801 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001802 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001803 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001804 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001805 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001806 }
1807
1808 err = fstat(input, &perf_stat);
1809 if (err < 0) {
1810 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001811 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001812 }
1813
1814 if (!perf_stat.st_size) {
1815 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001816 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001817 }
1818
1819 scripting_ops = script_spec__lookup(generate_script_lang);
1820 if (!scripting_ops) {
1821 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001822 err = -ENOENT;
1823 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001824 }
1825
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01001826 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001827 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001828 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001829 }
1830
1831 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001832 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001833 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001834 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001835 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001836 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001837 }
1838
David Ahern9cbdb702011-04-06 21:54:20 -06001839
1840 err = perf_session__check_output_opt(session);
1841 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001842 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06001843
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001844 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001845
Adrian Hunterd445dd22014-08-15 22:08:37 +03001846 flush_scripting();
1847
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001848out_delete:
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001849 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001850
1851 if (script_started)
1852 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06001853out:
1854 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001855}