blob: b35517f2ceb57014e1fb35f2d65f89e8c50e4f05 [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 Olsaf5fc14122013-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,
Jiri Olsa535aeaae2014-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 Olsa535aeaae2014-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 Olsa535aeaae2014-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 Melocc22e572013-12-19 17:20:06 -0300450 struct perf_evsel *evsel, struct thread *thread,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200451 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700452{
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 Olsa535aeaae2014-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;
Adrian Hunteref893252013-08-27 11:23:06 +0300553 struct thread *thread = machine__findnew_thread(machine, sample->pid,
554 sample->tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200555
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200556 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200557 pr_debug("problem processing %d event, skipping it.\n",
558 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200559 return -1;
560 }
561
David Ahern1424dc92011-03-09 22:23:28 -0700562 if (debug_mode) {
563 if (sample->time < last_timestamp) {
564 pr_err("Samples misordered, previous: %" PRIu64
565 " this: %" PRIu64 "\n", last_timestamp,
566 sample->time);
567 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200568 }
David Ahern1424dc92011-03-09 22:23:28 -0700569 last_timestamp = sample->time;
570 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200571 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000572
Adrian Huntere44baa32013-08-08 14:32:25 +0300573 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
David Aherne7984b72011-11-21 10:02:52 -0700574 pr_err("problem processing %d event, skipping it.\n",
575 event->header.type);
576 return -1;
577 }
578
579 if (al.filtered)
580 return 0;
581
Anton Blanchard5d67be92011-07-04 21:57:50 +1000582 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
583 return 0;
584
Arnaldo Carvalho de Melocc22e572013-12-19 17:20:06 -0300585 scripting_ops->process_event(event, sample, evsel, thread, &al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200586
587 return 0;
588}
589
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300590struct perf_script {
591 struct perf_tool tool;
592 struct perf_session *session;
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900593 bool show_task_events;
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900594 bool show_mmap_events;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200595};
596
Adrian Hunter7ea95722013-11-01 15:51:30 +0200597static int process_attr(struct perf_tool *tool, union perf_event *event,
598 struct perf_evlist **pevlist)
599{
600 struct perf_script *scr = container_of(tool, struct perf_script, tool);
601 struct perf_evlist *evlist;
602 struct perf_evsel *evsel, *pos;
603 int err;
604
605 err = perf_event__process_attr(tool, event, pevlist);
606 if (err)
607 return err;
608
609 evlist = *pevlist;
610 evsel = perf_evlist__last(*pevlist);
611
612 if (evsel->attr.type >= PERF_TYPE_MAX)
613 return 0;
614
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300615 evlist__for_each(evlist, pos) {
Adrian Hunter7ea95722013-11-01 15:51:30 +0200616 if (pos->attr.type == evsel->attr.type && pos != evsel)
617 return 0;
618 }
619
620 set_print_ip_opts(&evsel->attr);
621
622 return perf_evsel__check_attr(evsel, scr->session);
623}
624
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900625static int process_comm_event(struct perf_tool *tool,
626 union perf_event *event,
627 struct perf_sample *sample,
628 struct machine *machine)
629{
630 struct thread *thread;
631 struct perf_script *script = container_of(tool, struct perf_script, tool);
632 struct perf_session *session = script->session;
633 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
634 int ret = -1;
635
636 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
637 if (thread == NULL) {
638 pr_debug("problem processing COMM event, skipping it.\n");
639 return -1;
640 }
641
642 if (perf_event__process_comm(tool, event, sample, machine) < 0)
643 goto out;
644
645 if (!evsel->attr.sample_id_all) {
646 sample->cpu = 0;
647 sample->time = 0;
648 sample->tid = event->comm.tid;
649 sample->pid = event->comm.pid;
650 }
651 print_sample_start(sample, thread, evsel);
652 perf_event__fprintf(event, stdout);
653 ret = 0;
654
655out:
656 return ret;
657}
658
659static int process_fork_event(struct perf_tool *tool,
660 union perf_event *event,
661 struct perf_sample *sample,
662 struct machine *machine)
663{
664 struct thread *thread;
665 struct perf_script *script = container_of(tool, struct perf_script, tool);
666 struct perf_session *session = script->session;
667 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
668
669 if (perf_event__process_fork(tool, event, sample, machine) < 0)
670 return -1;
671
672 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
673 if (thread == NULL) {
674 pr_debug("problem processing FORK event, skipping it.\n");
675 return -1;
676 }
677
678 if (!evsel->attr.sample_id_all) {
679 sample->cpu = 0;
680 sample->time = event->fork.time;
681 sample->tid = event->fork.tid;
682 sample->pid = event->fork.pid;
683 }
684 print_sample_start(sample, thread, evsel);
685 perf_event__fprintf(event, stdout);
686
687 return 0;
688}
689static int process_exit_event(struct perf_tool *tool,
690 union perf_event *event,
691 struct perf_sample *sample,
692 struct machine *machine)
693{
694 struct thread *thread;
695 struct perf_script *script = container_of(tool, struct perf_script, tool);
696 struct perf_session *session = script->session;
697 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
698
699 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
700 if (thread == NULL) {
701 pr_debug("problem processing EXIT event, skipping it.\n");
702 return -1;
703 }
704
705 if (!evsel->attr.sample_id_all) {
706 sample->cpu = 0;
707 sample->time = 0;
708 sample->tid = event->comm.tid;
709 sample->pid = event->comm.pid;
710 }
711 print_sample_start(sample, thread, evsel);
712 perf_event__fprintf(event, stdout);
713
714 if (perf_event__process_exit(tool, event, sample, machine) < 0)
715 return -1;
716
717 return 0;
718}
719
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900720static int process_mmap_event(struct perf_tool *tool,
721 union perf_event *event,
722 struct perf_sample *sample,
723 struct machine *machine)
724{
725 struct thread *thread;
726 struct perf_script *script = container_of(tool, struct perf_script, tool);
727 struct perf_session *session = script->session;
728 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
729
730 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
731 return -1;
732
733 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
734 if (thread == NULL) {
735 pr_debug("problem processing MMAP event, skipping it.\n");
736 return -1;
737 }
738
739 if (!evsel->attr.sample_id_all) {
740 sample->cpu = 0;
741 sample->time = 0;
742 sample->tid = event->mmap.tid;
743 sample->pid = event->mmap.pid;
744 }
745 print_sample_start(sample, thread, evsel);
746 perf_event__fprintf(event, stdout);
747
748 return 0;
749}
750
751static int process_mmap2_event(struct perf_tool *tool,
752 union perf_event *event,
753 struct perf_sample *sample,
754 struct machine *machine)
755{
756 struct thread *thread;
757 struct perf_script *script = container_of(tool, struct perf_script, tool);
758 struct perf_session *session = script->session;
759 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
760
761 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
762 return -1;
763
764 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
765 if (thread == NULL) {
766 pr_debug("problem processing MMAP2 event, skipping it.\n");
767 return -1;
768 }
769
770 if (!evsel->attr.sample_id_all) {
771 sample->cpu = 0;
772 sample->time = 0;
773 sample->tid = event->mmap2.tid;
774 sample->pid = event->mmap2.pid;
775 }
776 print_sample_start(sample, thread, evsel);
777 perf_event__fprintf(event, stdout);
778
779 return 0;
780}
781
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300782static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -0500783{
784 session_done = 1;
785}
786
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300787static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200788{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200789 int ret;
790
Tom Zanussic239da32010-04-01 23:59:18 -0500791 signal(SIGINT, sig_handler);
792
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900793 /* override event processing functions */
794 if (script->show_task_events) {
795 script->tool.comm = process_comm_event;
796 script->tool.fork = process_fork_event;
797 script->tool.exit = process_exit_event;
798 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900799 if (script->show_mmap_events) {
800 script->tool.mmap = process_mmap_event;
801 script->tool.mmap2 = process_mmap2_event;
802 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900803
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300804 ret = perf_session__process_events(script->session, &script->tool);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200805
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200806 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200807 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200808
809 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200810}
811
Tom Zanussi956ffd02009-11-25 01:15:46 -0600812struct script_spec {
813 struct list_head node;
814 struct scripting_ops *ops;
815 char spec[0];
816};
817
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200818static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600819
820static struct script_spec *script_spec__new(const char *spec,
821 struct scripting_ops *ops)
822{
823 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
824
825 if (s != NULL) {
826 strcpy(s->spec, spec);
827 s->ops = ops;
828 }
829
830 return s;
831}
832
Tom Zanussi956ffd02009-11-25 01:15:46 -0600833static void script_spec__add(struct script_spec *s)
834{
835 list_add_tail(&s->node, &script_specs);
836}
837
838static struct script_spec *script_spec__find(const char *spec)
839{
840 struct script_spec *s;
841
842 list_for_each_entry(s, &script_specs, node)
843 if (strcasecmp(s->spec, spec) == 0)
844 return s;
845 return NULL;
846}
847
848static struct script_spec *script_spec__findnew(const char *spec,
849 struct scripting_ops *ops)
850{
851 struct script_spec *s = script_spec__find(spec);
852
853 if (s)
854 return s;
855
856 s = script_spec__new(spec, ops);
857 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900858 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600859
860 script_spec__add(s);
861
862 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600863}
864
865int script_spec_register(const char *spec, struct scripting_ops *ops)
866{
867 struct script_spec *s;
868
869 s = script_spec__find(spec);
870 if (s)
871 return -1;
872
873 s = script_spec__findnew(spec, ops);
874 if (!s)
875 return -1;
876
877 return 0;
878}
879
880static struct scripting_ops *script_spec__lookup(const char *spec)
881{
882 struct script_spec *s = script_spec__find(spec);
883 if (!s)
884 return NULL;
885
886 return s->ops;
887}
888
889static void list_available_languages(void)
890{
891 struct script_spec *s;
892
893 fprintf(stderr, "\n");
894 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100895 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600896
897 list_for_each_entry(s, &script_specs, node)
898 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
899
900 fprintf(stderr, "\n");
901}
902
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300903static int parse_scriptname(const struct option *opt __maybe_unused,
904 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600905{
906 char spec[PATH_MAX];
907 const char *script, *ext;
908 int len;
909
Tom Zanussif526d682010-01-27 02:27:52 -0600910 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600911 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600912 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600913 }
914
915 script = strchr(str, ':');
916 if (script) {
917 len = script - str;
918 if (len >= PATH_MAX) {
919 fprintf(stderr, "invalid language specifier");
920 return -1;
921 }
922 strncpy(spec, str, len);
923 spec[len] = '\0';
924 scripting_ops = script_spec__lookup(spec);
925 if (!scripting_ops) {
926 fprintf(stderr, "invalid language specifier");
927 return -1;
928 }
929 script++;
930 } else {
931 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100932 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600933 if (!ext) {
934 fprintf(stderr, "invalid script extension");
935 return -1;
936 }
937 scripting_ops = script_spec__lookup(++ext);
938 if (!scripting_ops) {
939 fprintf(stderr, "invalid script extension");
940 return -1;
941 }
942 }
943
944 script_name = strdup(script);
945
946 return 0;
947}
948
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300949static int parse_output_fields(const struct option *opt __maybe_unused,
950 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -0700951{
952 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -0500953 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -0600954 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700955 int rc = 0;
956 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700957 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700958
959 if (!str)
960 return -ENOMEM;
961
David Ahern2c9e45f72011-03-17 10:03:21 -0600962 /* first word can state for which event type the user is specifying
963 * the fields. If no type exists, the specified fields apply to all
964 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700965 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600966 tok = strchr(str, ':');
967 if (tok) {
968 *tok = '\0';
969 tok++;
970 if (!strcmp(str, "hw"))
971 type = PERF_TYPE_HARDWARE;
972 else if (!strcmp(str, "sw"))
973 type = PERF_TYPE_SOFTWARE;
974 else if (!strcmp(str, "trace"))
975 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700976 else if (!strcmp(str, "raw"))
977 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600978 else {
979 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100980 rc = -EINVAL;
981 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600982 }
983
984 if (output[type].user_set)
985 pr_warning("Overriding previous field request for %s events.\n",
986 event_type(type));
987
988 output[type].fields = 0;
989 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600990 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600991
992 } else {
993 tok = str;
994 if (strlen(str) == 0) {
995 fprintf(stderr,
996 "Cannot set fields to 'none' for all event types.\n");
997 rc = -EINVAL;
998 goto out;
999 }
1000
1001 if (output_set_by_user())
1002 pr_warning("Overriding previous field request for all events.\n");
1003
1004 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1005 output[j].fields = 0;
1006 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001007 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06001008 }
David Ahern1424dc92011-03-09 22:23:28 -07001009 }
1010
David Ahern2c9e45f72011-03-17 10:03:21 -06001011 tok = strtok(tok, ",");
1012 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -07001013 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001014 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07001015 break;
David Ahern745f43e2011-03-09 22:23:26 -07001016 }
1017 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001018 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07001019 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06001020 goto out;
1021 }
1022
1023 if (type == -1) {
1024 /* add user option to all events types for
1025 * which it is valid
1026 */
1027 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1028 if (output[j].invalid_fields & all_output_options[i].field) {
1029 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1030 all_output_options[i].str, event_type(j));
1031 } else
1032 output[j].fields |= all_output_options[i].field;
1033 }
1034 } else {
1035 if (output[type].invalid_fields & all_output_options[i].field) {
1036 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1037 all_output_options[i].str, event_type(type));
1038
1039 rc = -EINVAL;
1040 goto out;
1041 }
1042 output[type].fields |= all_output_options[i].field;
1043 }
1044
1045 tok = strtok(NULL, ",");
1046 }
1047
1048 if (type >= 0) {
1049 if (output[type].fields == 0) {
1050 pr_debug("No fields requested for %s type. "
1051 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001052 }
David Ahern1424dc92011-03-09 22:23:28 -07001053 }
David Ahern745f43e2011-03-09 22:23:26 -07001054
David Ahern2c9e45f72011-03-17 10:03:21 -06001055out:
David Ahern745f43e2011-03-09 22:23:26 -07001056 free(str);
1057 return rc;
1058}
1059
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001060/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1061static int is_directory(const char *base_path, const struct dirent *dent)
1062{
1063 char path[PATH_MAX];
1064 struct stat st;
1065
1066 sprintf(path, "%s/%s", base_path, dent->d_name);
1067 if (stat(path, &st))
1068 return 0;
1069
1070 return S_ISDIR(st.st_mode);
1071}
1072
1073#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001074 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
1075 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001076 if ((lang_dirent.d_type == DT_DIR || \
1077 (lang_dirent.d_type == DT_UNKNOWN && \
1078 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001079 (strcmp(lang_dirent.d_name, ".")) && \
1080 (strcmp(lang_dirent.d_name, "..")))
1081
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001082#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001083 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
1084 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001085 if (script_dirent.d_type != DT_DIR && \
1086 (script_dirent.d_type != DT_UNKNOWN || \
1087 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001088
1089
1090#define RECORD_SUFFIX "-record"
1091#define REPORT_SUFFIX "-report"
1092
1093struct script_desc {
1094 struct list_head node;
1095 char *name;
1096 char *half_liner;
1097 char *args;
1098};
1099
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001100static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001101
1102static struct script_desc *script_desc__new(const char *name)
1103{
1104 struct script_desc *s = zalloc(sizeof(*s));
1105
Tom Zanussib5b87312010-11-10 08:16:51 -06001106 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001107 s->name = strdup(name);
1108
1109 return s;
1110}
1111
1112static void script_desc__delete(struct script_desc *s)
1113{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001114 zfree(&s->name);
1115 zfree(&s->half_liner);
1116 zfree(&s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001117 free(s);
1118}
1119
1120static void script_desc__add(struct script_desc *s)
1121{
1122 list_add_tail(&s->node, &script_descs);
1123}
1124
1125static struct script_desc *script_desc__find(const char *name)
1126{
1127 struct script_desc *s;
1128
1129 list_for_each_entry(s, &script_descs, node)
1130 if (strcasecmp(s->name, name) == 0)
1131 return s;
1132 return NULL;
1133}
1134
1135static struct script_desc *script_desc__findnew(const char *name)
1136{
1137 struct script_desc *s = script_desc__find(name);
1138
1139 if (s)
1140 return s;
1141
1142 s = script_desc__new(name);
1143 if (!s)
1144 goto out_delete_desc;
1145
1146 script_desc__add(s);
1147
1148 return s;
1149
1150out_delete_desc:
1151 script_desc__delete(s);
1152
1153 return NULL;
1154}
1155
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001156static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001157{
1158 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001159 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001160
1161 if (strlen(str) > suffix_len) {
1162 p = str + strlen(str) - suffix_len;
1163 if (!strncmp(p, suffix, suffix_len))
1164 return p;
1165 }
1166
1167 return NULL;
1168}
1169
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001170static int read_script_info(struct script_desc *desc, const char *filename)
1171{
1172 char line[BUFSIZ], *p;
1173 FILE *fp;
1174
1175 fp = fopen(filename, "r");
1176 if (!fp)
1177 return -1;
1178
1179 while (fgets(line, sizeof(line), fp)) {
1180 p = ltrim(line);
1181 if (strlen(p) == 0)
1182 continue;
1183 if (*p != '#')
1184 continue;
1185 p++;
1186 if (strlen(p) && *p == '!')
1187 continue;
1188
1189 p = ltrim(p);
1190 if (strlen(p) && p[strlen(p) - 1] == '\n')
1191 p[strlen(p) - 1] = '\0';
1192
1193 if (!strncmp(p, "description:", strlen("description:"))) {
1194 p += strlen("description:");
1195 desc->half_liner = strdup(ltrim(p));
1196 continue;
1197 }
1198
1199 if (!strncmp(p, "args:", strlen("args:"))) {
1200 p += strlen("args:");
1201 desc->args = strdup(ltrim(p));
1202 continue;
1203 }
1204 }
1205
1206 fclose(fp);
1207
1208 return 0;
1209}
1210
Robert Richter38efb532011-11-25 11:38:40 +01001211static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1212{
1213 char *script_root, *str;
1214
1215 script_root = strdup(script_dirent->d_name);
1216 if (!script_root)
1217 return NULL;
1218
1219 str = (char *)ends_with(script_root, suffix);
1220 if (!str) {
1221 free(script_root);
1222 return NULL;
1223 }
1224
1225 *str = '\0';
1226 return script_root;
1227}
1228
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001229static int list_available_scripts(const struct option *opt __maybe_unused,
1230 const char *s __maybe_unused,
1231 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001232{
1233 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1234 char scripts_path[MAXPATHLEN];
1235 DIR *scripts_dir, *lang_dir;
1236 char script_path[MAXPATHLEN];
1237 char lang_path[MAXPATHLEN];
1238 struct script_desc *desc;
1239 char first_half[BUFSIZ];
1240 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001241
1242 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1243
1244 scripts_dir = opendir(scripts_path);
1245 if (!scripts_dir)
1246 return -1;
1247
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001248 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001249 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1250 lang_dirent.d_name);
1251 lang_dir = opendir(lang_path);
1252 if (!lang_dir)
1253 continue;
1254
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001255 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001256 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1257 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001258 desc = script_desc__findnew(script_root);
1259 snprintf(script_path, MAXPATHLEN, "%s/%s",
1260 lang_path, script_dirent.d_name);
1261 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001262 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001263 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001264 }
1265 }
1266
1267 fprintf(stdout, "List of available trace scripts:\n");
1268 list_for_each_entry(desc, &script_descs, node) {
1269 sprintf(first_half, "%s %s", desc->name,
1270 desc->args ? desc->args : "");
1271 fprintf(stdout, " %-36s %s\n", first_half,
1272 desc->half_liner ? desc->half_liner : "");
1273 }
1274
1275 exit(0);
1276}
1277
Feng Tange5f37052012-09-07 16:42:26 +08001278/*
Feng Tang49e639e2012-10-30 11:56:03 +08001279 * Some scripts specify the required events in their "xxx-record" file,
1280 * this function will check if the events in perf.data match those
1281 * mentioned in the "xxx-record".
1282 *
1283 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1284 * which is covered well now. And new parsing code should be added to
1285 * cover the future complexing formats like event groups etc.
1286 */
1287static int check_ev_match(char *dir_name, char *scriptname,
1288 struct perf_session *session)
1289{
1290 char filename[MAXPATHLEN], evname[128];
1291 char line[BUFSIZ], *p;
1292 struct perf_evsel *pos;
1293 int match, len;
1294 FILE *fp;
1295
1296 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1297
1298 fp = fopen(filename, "r");
1299 if (!fp)
1300 return -1;
1301
1302 while (fgets(line, sizeof(line), fp)) {
1303 p = ltrim(line);
1304 if (*p == '#')
1305 continue;
1306
1307 while (strlen(p)) {
1308 p = strstr(p, "-e");
1309 if (!p)
1310 break;
1311
1312 p += 2;
1313 p = ltrim(p);
1314 len = strcspn(p, " \t");
1315 if (!len)
1316 break;
1317
1318 snprintf(evname, len + 1, "%s", p);
1319
1320 match = 0;
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -03001321 evlist__for_each(session->evlist, pos) {
Feng Tang49e639e2012-10-30 11:56:03 +08001322 if (!strcmp(perf_evsel__name(pos), evname)) {
1323 match = 1;
1324 break;
1325 }
1326 }
1327
1328 if (!match) {
1329 fclose(fp);
1330 return -1;
1331 }
1332 }
1333 }
1334
1335 fclose(fp);
1336 return 0;
1337}
1338
1339/*
Feng Tange5f37052012-09-07 16:42:26 +08001340 * Return -1 if none is found, otherwise the actual scripts number.
1341 *
1342 * Currently the only user of this function is the script browser, which
1343 * will list all statically runnable scripts, select one, execute it and
1344 * show the output in a perf browser.
1345 */
1346int find_scripts(char **scripts_array, char **scripts_path_array)
1347{
1348 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001349 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001350 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001351 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001352 struct perf_data_file file = {
1353 .path = input_name,
1354 .mode = PERF_DATA_MODE_READ,
1355 };
Feng Tange5f37052012-09-07 16:42:26 +08001356 char *temp;
1357 int i = 0;
1358
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001359 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001360 if (!session)
1361 return -1;
1362
Feng Tange5f37052012-09-07 16:42:26 +08001363 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1364
1365 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001366 if (!scripts_dir) {
1367 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001368 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001369 }
Feng Tange5f37052012-09-07 16:42:26 +08001370
1371 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1372 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1373 lang_dirent.d_name);
1374#ifdef NO_LIBPERL
1375 if (strstr(lang_path, "perl"))
1376 continue;
1377#endif
1378#ifdef NO_LIBPYTHON
1379 if (strstr(lang_path, "python"))
1380 continue;
1381#endif
1382
1383 lang_dir = opendir(lang_path);
1384 if (!lang_dir)
1385 continue;
1386
1387 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1388 /* Skip those real time scripts: xxxtop.p[yl] */
1389 if (strstr(script_dirent.d_name, "top."))
1390 continue;
1391 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1392 script_dirent.d_name);
1393 temp = strchr(script_dirent.d_name, '.');
1394 snprintf(scripts_array[i],
1395 (temp - script_dirent.d_name) + 1,
1396 "%s", script_dirent.d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001397
1398 if (check_ev_match(lang_path,
1399 scripts_array[i], session))
1400 continue;
1401
Feng Tange5f37052012-09-07 16:42:26 +08001402 i++;
1403 }
Feng Tang49e639e2012-10-30 11:56:03 +08001404 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001405 }
1406
Feng Tang49e639e2012-10-30 11:56:03 +08001407 closedir(scripts_dir);
1408 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001409 return i;
1410}
1411
Tom Zanussi38752942009-12-15 02:53:39 -06001412static char *get_script_path(const char *script_root, const char *suffix)
1413{
1414 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1415 char scripts_path[MAXPATHLEN];
1416 char script_path[MAXPATHLEN];
1417 DIR *scripts_dir, *lang_dir;
1418 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001419 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001420
1421 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1422
1423 scripts_dir = opendir(scripts_path);
1424 if (!scripts_dir)
1425 return NULL;
1426
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001427 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001428 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1429 lang_dirent.d_name);
1430 lang_dir = opendir(lang_path);
1431 if (!lang_dir)
1432 continue;
1433
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001434 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001435 __script_root = get_script_root(&script_dirent, suffix);
1436 if (__script_root && !strcmp(script_root, __script_root)) {
1437 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001438 closedir(lang_dir);
1439 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001440 snprintf(script_path, MAXPATHLEN, "%s/%s",
1441 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001442 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001443 }
1444 free(__script_root);
1445 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001446 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001447 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001448 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001449
Robert Richter38efb532011-11-25 11:38:40 +01001450 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001451}
1452
Tom Zanussib5b87312010-11-10 08:16:51 -06001453static bool is_top_script(const char *script_path)
1454{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001455 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001456}
1457
1458static int has_required_arg(char *script_path)
1459{
1460 struct script_desc *desc;
1461 int n_args = 0;
1462 char *p;
1463
1464 desc = script_desc__new(NULL);
1465
1466 if (read_script_info(desc, script_path))
1467 goto out;
1468
1469 if (!desc->args)
1470 goto out;
1471
1472 for (p = desc->args; *p; p++)
1473 if (*p == '<')
1474 n_args++;
1475out:
1476 script_desc__delete(desc);
1477
1478 return n_args;
1479}
1480
David Ahernd54b1a92012-08-26 12:24:46 -06001481static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001482{
1483 char **__argv = malloc(sizeof(const char *) * argc);
1484
David Ahernd54b1a92012-08-26 12:24:46 -06001485 if (!__argv) {
1486 pr_err("malloc failed\n");
1487 return -1;
1488 }
1489
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001490 memcpy(__argv, argv, sizeof(const char *) * argc);
1491 argc = parse_options(argc, (const char **)__argv, record_options,
1492 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1493 free(__argv);
1494
David Ahernd54b1a92012-08-26 12:24:46 -06001495 system_wide = (argc == 0);
1496
1497 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001498}
1499
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001500int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001501{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001502 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01001503 bool header = false;
1504 bool header_only = false;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001505 bool script_started = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001506 char *rec_script_path = NULL;
1507 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001508 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001509 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001510 const char **__argv;
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001511 int i, j, err = 0;
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001512 struct perf_script script = {
1513 .tool = {
1514 .sample = process_sample_event,
1515 .mmap = perf_event__process_mmap,
1516 .mmap2 = perf_event__process_mmap2,
1517 .comm = perf_event__process_comm,
1518 .exit = perf_event__process_exit,
1519 .fork = perf_event__process_fork,
Adrian Hunter7ea95722013-11-01 15:51:30 +02001520 .attr = process_attr,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001521 .tracing_data = perf_event__process_tracing_data,
1522 .build_id = perf_event__process_build_id,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001523 .ordered_events = true,
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001524 .ordering_requires_timestamps = true,
1525 },
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"),
1554 OPT_CALLBACK('f', "fields", NULL, "str",
1555 "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 Olsa535aeaae2014-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"),
1566 OPT_BOOLEAN('I', "show-info", &show_full_info,
1567 "display extended information from perf.data file"),
1568 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1569 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001570 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
1571 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001572 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
1573 "Show the mmap events"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001574 OPT_END()
1575 };
1576 const char * const script_usage[] = {
1577 "perf script [<options>]",
1578 "perf script [<options>] record <script> [<record-options>] <command>",
1579 "perf script [<options>] report <script> [script-args]",
1580 "perf script [<options>] <script> [<record-options>] <command>",
1581 "perf script [<options>] <top-script> [script-args]",
1582 NULL
1583 };
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001584 struct perf_data_file file = {
1585 .mode = PERF_DATA_MODE_READ,
1586 };
Tom Zanussi38752942009-12-15 02:53:39 -06001587
Tom Zanussib5b87312010-11-10 08:16:51 -06001588 setup_scripting();
1589
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001590 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001591 PARSE_OPT_STOP_AT_NON_OPTION);
1592
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001593 file.path = input_name;
1594
Tom Zanussib5b87312010-11-10 08:16:51 -06001595 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1596 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1597 if (!rec_script_path)
1598 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001599 }
1600
Tom Zanussib5b87312010-11-10 08:16:51 -06001601 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1602 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1603 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001604 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001605 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001606 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001607 return -1;
1608 }
Tom Zanussi38752942009-12-15 02:53:39 -06001609 }
1610
Ben Hutchings44e668c2010-10-10 16:10:03 +01001611 /* make sure PERF_EXEC_PATH is set for scripts */
1612 perf_set_argv_exec_path(perf_exec_path());
1613
Tom Zanussib5b87312010-11-10 08:16:51 -06001614 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001615 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001616 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001617 pid_t pid;
1618
Tom Zanussib5b87312010-11-10 08:16:51 -06001619 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1620 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1621
1622 if (!rec_script_path && !rep_script_path) {
1623 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001624 " script -l for available scripts.\n", argv[0]);
1625 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001626 }
1627
Tom Zanussib5b87312010-11-10 08:16:51 -06001628 if (is_top_script(argv[0])) {
1629 rep_args = argc - 1;
1630 } else {
1631 int rec_args;
1632
1633 rep_args = has_required_arg(rep_script_path);
1634 rec_args = (argc - 1) - rep_args;
1635 if (rec_args < 0) {
1636 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001637 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001638 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001639 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001640 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001641 }
1642
1643 if (pipe(live_pipe) < 0) {
1644 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06001645 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001646 }
1647
1648 pid = fork();
1649 if (pid < 0) {
1650 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06001651 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001652 }
1653
1654 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001655 j = 0;
1656
Tom Zanussia0cccc22010-04-01 23:59:25 -05001657 dup2(live_pipe[1], 1);
1658 close(live_pipe[0]);
1659
Robert Richter317df652011-11-25 15:05:25 +01001660 if (is_top_script(argv[0])) {
1661 system_wide = true;
1662 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06001663 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1664 err = -1;
1665 goto out;
1666 }
Robert Richter317df652011-11-25 15:05:25 +01001667 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001668
1669 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001670 if (!__argv) {
1671 pr_err("malloc failed\n");
1672 err = -ENOMEM;
1673 goto out;
1674 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06001675
Tom Zanussib5b87312010-11-10 08:16:51 -06001676 __argv[j++] = "/bin/sh";
1677 __argv[j++] = rec_script_path;
1678 if (system_wide)
1679 __argv[j++] = "-a";
1680 __argv[j++] = "-q";
1681 __argv[j++] = "-o";
1682 __argv[j++] = "-";
1683 for (i = rep_args + 1; i < argc; i++)
1684 __argv[j++] = argv[i];
1685 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001686
1687 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001688 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001689 exit(-1);
1690 }
1691
1692 dup2(live_pipe[0], 0);
1693 close(live_pipe[1]);
1694
Tom Zanussib5b87312010-11-10 08:16:51 -06001695 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001696 if (!__argv) {
1697 pr_err("malloc failed\n");
1698 err = -ENOMEM;
1699 goto out;
1700 }
1701
Tom Zanussib5b87312010-11-10 08:16:51 -06001702 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001703 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001704 __argv[j++] = rep_script_path;
1705 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001706 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001707 __argv[j++] = "-i";
1708 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001709 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001710
1711 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001712 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001713 exit(-1);
1714 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001715
Tom Zanussib5b87312010-11-10 08:16:51 -06001716 if (rec_script_path)
1717 script_path = rec_script_path;
1718 if (rep_script_path)
1719 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001720
Tom Zanussib5b87312010-11-10 08:16:51 -06001721 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001722 j = 0;
1723
Robert Richter317df652011-11-25 15:05:25 +01001724 if (!rec_script_path)
1725 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06001726 else if (!system_wide) {
1727 if (have_cmd(argc - 1, &argv[1]) != 0) {
1728 err = -1;
1729 goto out;
1730 }
1731 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001732
1733 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001734 if (!__argv) {
1735 pr_err("malloc failed\n");
1736 err = -ENOMEM;
1737 goto out;
1738 }
1739
Tom Zanussib5b87312010-11-10 08:16:51 -06001740 __argv[j++] = "/bin/sh";
1741 __argv[j++] = script_path;
1742 if (system_wide)
1743 __argv[j++] = "-a";
1744 for (i = 2; i < argc; i++)
1745 __argv[j++] = argv[i];
1746 __argv[j++] = NULL;
1747
1748 execvp("/bin/sh", (char **)__argv);
1749 free(__argv);
1750 exit(-1);
1751 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001752
Tom Zanussicf4fee52010-03-03 01:04:33 -06001753 if (!script_name)
1754 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001755
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001756 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001757 if (session == NULL)
Taeung Song52e028342014-09-24 10:33:37 +09001758 return -1;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001759
Jiri Olsae90debd2013-12-09 11:02:50 +01001760 if (header || header_only) {
1761 perf_session__fprintf_info(session, stdout, show_full_info);
1762 if (header_only)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001763 goto out_delete;
Jiri Olsae90debd2013-12-09 11:02:50 +01001764 }
1765
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001766 if (symbol__init(&session->header.env) < 0)
Namhyung Kim38520dc2014-08-12 15:40:42 +09001767 goto out_delete;
1768
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001769 script.session = session;
1770
Anton Blanchard5d67be92011-07-04 21:57:50 +10001771 if (cpu_list) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001772 err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
1773 if (err < 0)
1774 goto out_delete;
Anton Blanchard5d67be92011-07-04 21:57:50 +10001775 }
1776
David Ahern1424dc92011-03-09 22:23:28 -07001777 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001778 symbol_conf.use_callchain = true;
1779 else
1780 symbol_conf.use_callchain = false;
1781
Tom Zanussi956ffd02009-11-25 01:15:46 -06001782 if (generate_script_lang) {
1783 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001784 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001785
David Ahern2c9e45f72011-03-17 10:03:21 -06001786 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001787 fprintf(stderr,
1788 "custom fields not supported for generated scripts");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001789 err = -EINVAL;
1790 goto out_delete;
David Ahern745f43e2011-03-09 22:23:26 -07001791 }
1792
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001793 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001794 if (input < 0) {
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001795 err = -errno;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001796 perror("failed to open file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001797 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001798 }
1799
1800 err = fstat(input, &perf_stat);
1801 if (err < 0) {
1802 perror("failed to stat file");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001803 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001804 }
1805
1806 if (!perf_stat.st_size) {
1807 fprintf(stderr, "zero-sized file, nothing to do!\n");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001808 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001809 }
1810
1811 scripting_ops = script_spec__lookup(generate_script_lang);
1812 if (!scripting_ops) {
1813 fprintf(stderr, "invalid language specifier");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001814 err = -ENOENT;
1815 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001816 }
1817
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01001818 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001819 "perf-script");
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001820 goto out_delete;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001821 }
1822
1823 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001824 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001825 if (err)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001826 goto out_delete;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001827 pr_debug("perf script started with script %s\n\n", script_name);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001828 script_started = true;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001829 }
1830
David Ahern9cbdb702011-04-06 21:54:20 -06001831
1832 err = perf_session__check_output_opt(session);
1833 if (err < 0)
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001834 goto out_delete;
David Ahern9cbdb702011-04-06 21:54:20 -06001835
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001836 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001837
Adrian Hunterd445dd22014-08-15 22:08:37 +03001838 flush_scripting();
1839
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001840out_delete:
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001841 perf_session__delete(session);
Namhyung Kim6cc870f2014-08-12 15:40:33 +09001842
1843 if (script_started)
1844 cleanup_scripting();
Tom Zanussi956ffd02009-11-25 01:15:46 -06001845out:
1846 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001847}