blob: f8ab125aac4842534feaa6f05e3923da6fa52368 [file] [log] [blame]
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001#include "builtin.h"
2
Andrea Gelminib7eead82010-08-05 15:51:38 +02003#include "perf.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02004#include "util/cache.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +02005#include "util/debug.h"
6#include "util/exec_cmd.h"
7#include "util/header.h"
8#include "util/parse-options.h"
9#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020010#include "util/tool.h"
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020011#include "util/symbol.h"
12#include "util/thread.h"
Ingo Molnarcf723442009-11-28 10:11:00 +010013#include "util/trace-event.h"
Andrea Gelminib7eead82010-08-05 15:51:38 +020014#include "util/util.h"
David Ahern1424dc92011-03-09 22:23:28 -070015#include "util/evlist.h"
16#include "util/evsel.h"
Feng Tang36385be2012-09-07 16:42:24 +080017#include "util/sort.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020018#include "util/data.h"
Anton Blanchard5d67be92011-07-04 21:57:50 +100019#include <linux/bitmap.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020020
Tom Zanussi956ffd02009-11-25 01:15:46 -060021static char const *script_name;
22static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020023static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020024static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020025static u64 nr_unordered;
Tom Zanussi34c86ea2010-11-10 08:15:43 -060026extern const struct option record_options[];
David Ahernc0230b22011-03-09 22:23:27 -070027static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090028static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010029static bool system_wide;
Anton Blanchard5d67be92011-07-04 21:57:50 +100030static const char *cpu_list;
31static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Tom Zanussi956ffd02009-11-25 01:15:46 -060032
David Ahern745f43e2011-03-09 22:23:26 -070033enum perf_output_field {
34 PERF_OUTPUT_COMM = 1U << 0,
35 PERF_OUTPUT_TID = 1U << 1,
36 PERF_OUTPUT_PID = 1U << 2,
37 PERF_OUTPUT_TIME = 1U << 3,
38 PERF_OUTPUT_CPU = 1U << 4,
39 PERF_OUTPUT_EVNAME = 1U << 5,
40 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060041 PERF_OUTPUT_IP = 1U << 7,
42 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060043 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060044 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090045 PERF_OUTPUT_SYMOFFSET = 1U << 11,
Adrian Huntercc8fae12013-12-06 09:42:57 +020046 PERF_OUTPUT_SRCLINE = 1U << 12,
David Ahern745f43e2011-03-09 22:23:26 -070047};
48
49struct output_option {
50 const char *str;
51 enum perf_output_field field;
52} all_output_options[] = {
53 {.str = "comm", .field = PERF_OUTPUT_COMM},
54 {.str = "tid", .field = PERF_OUTPUT_TID},
55 {.str = "pid", .field = PERF_OUTPUT_PID},
56 {.str = "time", .field = PERF_OUTPUT_TIME},
57 {.str = "cpu", .field = PERF_OUTPUT_CPU},
58 {.str = "event", .field = PERF_OUTPUT_EVNAME},
59 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060060 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070061 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060062 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060063 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090064 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
Adrian Huntercc8fae12013-12-06 09:42:57 +020065 {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
David Ahern745f43e2011-03-09 22:23:26 -070066};
67
68/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060069static struct {
70 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060071 bool wildcard_set;
David Aherna6ffaf92013-08-07 22:50:51 -040072 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -060073 u64 fields;
74 u64 invalid_fields;
75} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070076
David Ahern2c9e45f72011-03-17 10:03:21 -060077 [PERF_TYPE_HARDWARE] = {
78 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070079
David Ahern2c9e45f72011-03-17 10:03:21 -060080 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
81 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060082 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060083 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060084
85 .invalid_fields = PERF_OUTPUT_TRACE,
86 },
87
88 [PERF_TYPE_SOFTWARE] = {
89 .user_set = false,
90
91 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
92 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060093 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060094 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060095
96 .invalid_fields = PERF_OUTPUT_TRACE,
97 },
98
99 [PERF_TYPE_TRACEPOINT] = {
100 .user_set = false,
101
102 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
103 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
104 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
105 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700106
107 [PERF_TYPE_RAW] = {
108 .user_set = false,
109
110 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
111 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600112 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -0600113 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700114
115 .invalid_fields = PERF_OUTPUT_TRACE,
116 },
David Ahern1424dc92011-03-09 22:23:28 -0700117};
David Ahern745f43e2011-03-09 22:23:26 -0700118
David Ahern2c9e45f72011-03-17 10:03:21 -0600119static bool output_set_by_user(void)
120{
121 int j;
122 for (j = 0; j < PERF_TYPE_MAX; ++j) {
123 if (output[j].user_set)
124 return true;
125 }
126 return false;
127}
David Ahern745f43e2011-03-09 22:23:26 -0700128
David Ahern9cbdb702011-04-06 21:54:20 -0600129static const char *output_field2str(enum perf_output_field field)
130{
131 int i, imax = ARRAY_SIZE(all_output_options);
132 const char *str = "";
133
134 for (i = 0; i < imax; ++i) {
135 if (all_output_options[i].field == field) {
136 str = all_output_options[i].str;
137 break;
138 }
139 }
140 return str;
141}
142
David Ahern2c9e45f72011-03-17 10:03:21 -0600143#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700144
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300145static int perf_evsel__check_stype(struct perf_evsel *evsel,
146 u64 sample_type, const char *sample_msg,
147 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700148{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300149 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600150 int type = attr->type;
151 const char *evname;
152
153 if (attr->sample_type & sample_type)
154 return 0;
155
156 if (output[type].user_set) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300157 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600158 pr_err("Samples for '%s' event do not have %s attribute set. "
159 "Cannot print '%s' field.\n",
160 evname, sample_msg, output_field2str(field));
161 return -1;
162 }
163
164 /* user did not ask for it explicitly so remove from the default list */
165 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300166 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600167 pr_debug("Samples for '%s' event do not have %s attribute set. "
168 "Skipping '%s' field.\n",
169 evname, sample_msg, output_field2str(field));
170
171 return 0;
172}
173
174static int perf_evsel__check_attr(struct perf_evsel *evsel,
175 struct perf_session *session)
176{
177 struct perf_event_attr *attr = &evsel->attr;
178
David Ahern1424dc92011-03-09 22:23:28 -0700179 if (PRINT_FIELD(TRACE) &&
180 !perf_session__has_traces(session, "record -R"))
181 return -EINVAL;
182
David Ahern787bef12011-05-27 14:28:43 -0600183 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300184 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
185 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700186 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600187
David Ahern1424dc92011-03-09 22:23:28 -0700188 if (!no_callchain &&
David Ahern9cbdb702011-04-06 21:54:20 -0600189 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
David Ahern1424dc92011-03-09 22:23:28 -0700190 symbol_conf.use_callchain = false;
191 }
David Ahern7cec0922011-05-30 13:08:23 -0600192
193 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300194 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
195 PERF_OUTPUT_ADDR))
David Ahern7cec0922011-05-30 13:08:23 -0600196 return -EINVAL;
197
198 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
199 pr_err("Display of symbols requested but neither sample IP nor "
200 "sample address\nis selected. Hence, no addresses to convert "
201 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600202 return -EINVAL;
203 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900204 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
205 pr_err("Display of offsets requested but symbol is not"
206 "selected.\n");
207 return -EINVAL;
208 }
David Ahern7cec0922011-05-30 13:08:23 -0600209 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
210 pr_err("Display of DSO requested but neither sample IP nor "
211 "sample address\nis selected. Hence, no addresses to convert "
212 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600213 return -EINVAL;
214 }
Adrian Huntercc8fae12013-12-06 09:42:57 +0200215 if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
216 pr_err("Display of source line number requested but sample IP is not\n"
217 "selected. Hence, no address to lookup the source line number.\n");
218 return -EINVAL;
219 }
David Ahern1424dc92011-03-09 22:23:28 -0700220
221 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300222 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
223 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700224 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700225
226 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300227 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
228 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700229 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700230
231 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300232 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
233 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700234 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600235
236 return 0;
237}
238
Adrian Hunter7ea95722013-11-01 15:51:30 +0200239static void set_print_ip_opts(struct perf_event_attr *attr)
240{
241 unsigned int type = attr->type;
242
243 output[type].print_ip_opts = 0;
244 if (PRINT_FIELD(IP))
245 output[type].print_ip_opts |= PRINT_IP_OPT_IP;
246
247 if (PRINT_FIELD(SYM))
248 output[type].print_ip_opts |= PRINT_IP_OPT_SYM;
249
250 if (PRINT_FIELD(DSO))
251 output[type].print_ip_opts |= PRINT_IP_OPT_DSO;
252
253 if (PRINT_FIELD(SYMOFFSET))
254 output[type].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET;
Adrian Huntercc8fae12013-12-06 09:42:57 +0200255
256 if (PRINT_FIELD(SRCLINE))
257 output[type].print_ip_opts |= PRINT_IP_OPT_SRCLINE;
Adrian Hunter7ea95722013-11-01 15:51:30 +0200258}
259
David Ahern9cbdb702011-04-06 21:54:20 -0600260/*
261 * verify all user requested events exist and the samples
262 * have the expected data
263 */
264static int perf_session__check_output_opt(struct perf_session *session)
265{
266 int j;
267 struct perf_evsel *evsel;
268
269 for (j = 0; j < PERF_TYPE_MAX; ++j) {
270 evsel = perf_session__find_first_evtype(session, j);
271
272 /*
273 * even if fields is set to 0 (ie., show nothing) event must
274 * exist if user explicitly includes it on the command line
275 */
276 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
277 pr_err("%s events do not exist. "
278 "Remove corresponding -f option to proceed.\n",
279 event_type(j));
280 return -1;
281 }
282
283 if (evsel && output[j].fields &&
284 perf_evsel__check_attr(evsel, session))
285 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400286
287 if (evsel == NULL)
288 continue;
289
Adrian Hunter7ea95722013-11-01 15:51:30 +0200290 set_print_ip_opts(&evsel->attr);
David Ahern1424dc92011-03-09 22:23:28 -0700291 }
292
David Ahern80b8b492013-11-19 21:07:37 -0700293 /*
294 * set default for tracepoints to print symbols only
295 * if callchains are present
296 */
297 if (symbol_conf.use_callchain &&
298 !output[PERF_TYPE_TRACEPOINT].user_set) {
299 struct perf_event_attr *attr;
300
301 j = PERF_TYPE_TRACEPOINT;
302 evsel = perf_session__find_first_evtype(session, j);
303 if (evsel == NULL)
304 goto out;
305
306 attr = &evsel->attr;
307
308 if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
309 output[j].fields |= PERF_OUTPUT_IP;
310 output[j].fields |= PERF_OUTPUT_SYM;
311 output[j].fields |= PERF_OUTPUT_DSO;
312 set_print_ip_opts(attr);
313 }
314 }
315
316out:
David Ahern1424dc92011-03-09 22:23:28 -0700317 return 0;
318}
David Ahern745f43e2011-03-09 22:23:26 -0700319
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300320static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700321 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300322 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700323{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300324 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700325 unsigned long secs;
326 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700327 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700328
David Ahern745f43e2011-03-09 22:23:26 -0700329 if (PRINT_FIELD(COMM)) {
330 if (latency_format)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200331 printf("%8.8s ", thread__comm_str(thread));
David Ahern787bef12011-05-27 14:28:43 -0600332 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200333 printf("%s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700334 else
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200335 printf("%16s ", thread__comm_str(thread));
David Ahern745f43e2011-03-09 22:23:26 -0700336 }
David Ahernc70c94b2011-03-09 22:23:25 -0700337
David Ahern745f43e2011-03-09 22:23:26 -0700338 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
339 printf("%5d/%-5d ", sample->pid, sample->tid);
340 else if (PRINT_FIELD(PID))
341 printf("%5d ", sample->pid);
342 else if (PRINT_FIELD(TID))
343 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700344
David Ahern745f43e2011-03-09 22:23:26 -0700345 if (PRINT_FIELD(CPU)) {
346 if (latency_format)
347 printf("%3d ", sample->cpu);
348 else
349 printf("[%03d] ", sample->cpu);
350 }
David Ahernc70c94b2011-03-09 22:23:25 -0700351
David Ahern745f43e2011-03-09 22:23:26 -0700352 if (PRINT_FIELD(TIME)) {
353 nsecs = sample->time;
354 secs = nsecs / NSECS_PER_SEC;
355 nsecs -= secs * NSECS_PER_SEC;
356 usecs = nsecs / NSECS_PER_USEC;
357 printf("%5lu.%06lu: ", secs, usecs);
358 }
David Ahernc70c94b2011-03-09 22:23:25 -0700359}
360
Akihiro Nagai95582592012-01-30 13:43:09 +0900361static bool is_bts_event(struct perf_event_attr *attr)
362{
363 return ((attr->type == PERF_TYPE_HARDWARE) &&
364 (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
365 (attr->sample_period == 1));
366}
367
David Ahern7cec0922011-05-30 13:08:23 -0600368static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
369{
370 if ((attr->type == PERF_TYPE_SOFTWARE) &&
371 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
372 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
373 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
374 return true;
375
Akihiro Nagai95582592012-01-30 13:43:09 +0900376 if (is_bts_event(attr))
377 return true;
378
David Ahern7cec0922011-05-30 13:08:23 -0600379 return false;
380}
381
382static void print_sample_addr(union perf_event *event,
383 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200384 struct machine *machine,
David Ahern7cec0922011-05-30 13:08:23 -0600385 struct thread *thread,
386 struct perf_event_attr *attr)
387{
388 struct addr_location al;
389 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
David Ahern7cec0922011-05-30 13:08:23 -0600390
391 printf("%16" PRIx64, sample->addr);
392
393 if (!sample_addr_correlates_sym(attr))
394 return;
395
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200396 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
Adrian Hunter326f59b2013-08-08 14:32:27 +0300397 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600398 if (!al.map)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200399 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
Adrian Hunter326f59b2013-08-08 14:32:27 +0300400 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600401
402 al.cpu = sample->cpu;
403 al.sym = NULL;
404
405 if (al.map)
406 al.sym = map__find_symbol(al.map, al.addr, NULL);
407
408 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900409 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900410 if (PRINT_FIELD(SYMOFFSET))
411 symbol__fprintf_symname_offs(al.sym, &al, stdout);
412 else
413 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600414 }
415
416 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900417 printf(" (");
418 map__fprintf_dsoname(al.map, stdout);
419 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600420 }
421}
422
Akihiro Nagai95582592012-01-30 13:43:09 +0900423static void print_sample_bts(union perf_event *event,
424 struct perf_sample *sample,
425 struct perf_evsel *evsel,
426 struct machine *machine,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200427 struct thread *thread,
428 struct addr_location *al)
Akihiro Nagai95582592012-01-30 13:43:09 +0900429{
430 struct perf_event_attr *attr = &evsel->attr;
431
432 /* print branch_from information */
433 if (PRINT_FIELD(IP)) {
434 if (!symbol_conf.use_callchain)
435 printf(" ");
436 else
437 printf("\n");
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200438 perf_evsel__print_ip(evsel, sample, machine, al,
David Ahern307cbb92013-08-07 22:50:53 -0400439 output[attr->type].print_ip_opts,
440 PERF_MAX_STACK_DEPTH);
Akihiro Nagai95582592012-01-30 13:43:09 +0900441 }
442
443 printf(" => ");
444
445 /* print branch_to information */
Adrian Hunter243be3d2013-10-18 15:29:14 +0300446 if (PRINT_FIELD(ADDR) ||
447 ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
448 !output[attr->type].user_set))
Akihiro Nagai95582592012-01-30 13:43:09 +0900449 print_sample_addr(event, sample, machine, thread, attr);
450
451 printf("\n");
452}
453
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300454static void process_event(union perf_event *event, struct perf_sample *sample,
455 struct perf_evsel *evsel, struct machine *machine,
David Ahern2eaa1b42013-07-18 16:06:15 -0600456 struct thread *thread,
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200457 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700458{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300459 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700460
David Ahern2c9e45f72011-03-17 10:03:21 -0600461 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700462 return;
463
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300464 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700465
Namhyung Kime944d3d2013-11-18 14:34:52 +0900466 if (PRINT_FIELD(EVNAME)) {
467 const char *evname = perf_evsel__name(evsel);
468 printf("%s: ", evname ? evname : "[unknown]");
469 }
470
Akihiro Nagai95582592012-01-30 13:43:09 +0900471 if (is_bts_event(attr)) {
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200472 print_sample_bts(event, sample, evsel, machine, thread, al);
Akihiro Nagai95582592012-01-30 13:43:09 +0900473 return;
474 }
475
David Ahern745f43e2011-03-09 22:23:26 -0700476 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300477 event_format__print(evsel->tp_format, sample->cpu,
478 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600479 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200480 print_sample_addr(event, sample, machine, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600481
David Ahern787bef12011-05-27 14:28:43 -0600482 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700483 if (!symbol_conf.use_callchain)
484 printf(" ");
485 else
486 printf("\n");
David Aherna6ffaf92013-08-07 22:50:51 -0400487
Adrian Huntera2cb3cf2013-12-04 16:16:36 +0200488 perf_evsel__print_ip(evsel, sample, machine, al,
David Ahern307cbb92013-08-07 22:50:53 -0400489 output[attr->type].print_ip_opts,
490 PERF_MAX_STACK_DEPTH);
David Ahernc0230b22011-03-09 22:23:27 -0700491 }
492
David Ahernc70c94b2011-03-09 22:23:25 -0700493 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700494}
495
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300496static int default_start_script(const char *script __maybe_unused,
497 int argc __maybe_unused,
498 const char **argv __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600499{
500 return 0;
501}
502
503static int default_stop_script(void)
504{
505 return 0;
506}
507
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300508static int default_generate_script(struct pevent *pevent __maybe_unused,
509 const char *outfile __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600510{
511 return 0;
512}
513
514static struct scripting_ops default_scripting_ops = {
515 .start_script = default_start_script,
516 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700517 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600518 .generate_script = default_generate_script,
519};
520
521static struct scripting_ops *scripting_ops;
522
523static void setup_scripting(void)
524{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600525 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600526 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600527
Tom Zanussi956ffd02009-11-25 01:15:46 -0600528 scripting_ops = &default_scripting_ops;
529}
530
531static int cleanup_scripting(void)
532{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100533 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500534
Tom Zanussi956ffd02009-11-25 01:15:46 -0600535 return scripting_ops->stop_script();
536}
537
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300538static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200539 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200540 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300541 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200542 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200543{
David Aherne7984b72011-11-21 10:02:52 -0700544 struct addr_location al;
Adrian Hunteref893252013-08-27 11:23:06 +0300545 struct thread *thread = machine__findnew_thread(machine, sample->pid,
546 sample->tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200547
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200548 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200549 pr_debug("problem processing %d event, skipping it.\n",
550 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200551 return -1;
552 }
553
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
David Ahern2eaa1b42013-07-18 16:06:15 -0600577 scripting_ops->process_event(event, sample, evsel, machine, thread, &al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200578
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200579 evsel->hists.stats.total_period += sample->period;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200580 return 0;
581}
582
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300583struct perf_script {
584 struct perf_tool tool;
585 struct perf_session *session;
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900586 bool show_task_events;
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900587 bool show_mmap_events;
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200588};
589
Adrian Hunter7ea95722013-11-01 15:51:30 +0200590static int process_attr(struct perf_tool *tool, union perf_event *event,
591 struct perf_evlist **pevlist)
592{
593 struct perf_script *scr = container_of(tool, struct perf_script, tool);
594 struct perf_evlist *evlist;
595 struct perf_evsel *evsel, *pos;
596 int err;
597
598 err = perf_event__process_attr(tool, event, pevlist);
599 if (err)
600 return err;
601
602 evlist = *pevlist;
603 evsel = perf_evlist__last(*pevlist);
604
605 if (evsel->attr.type >= PERF_TYPE_MAX)
606 return 0;
607
608 list_for_each_entry(pos, &evlist->entries, node) {
609 if (pos->attr.type == evsel->attr.type && pos != evsel)
610 return 0;
611 }
612
613 set_print_ip_opts(&evsel->attr);
614
615 return perf_evsel__check_attr(evsel, scr->session);
616}
617
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900618static int process_comm_event(struct perf_tool *tool,
619 union perf_event *event,
620 struct perf_sample *sample,
621 struct machine *machine)
622{
623 struct thread *thread;
624 struct perf_script *script = container_of(tool, struct perf_script, tool);
625 struct perf_session *session = script->session;
626 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
627 int ret = -1;
628
629 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
630 if (thread == NULL) {
631 pr_debug("problem processing COMM event, skipping it.\n");
632 return -1;
633 }
634
635 if (perf_event__process_comm(tool, event, sample, machine) < 0)
636 goto out;
637
638 if (!evsel->attr.sample_id_all) {
639 sample->cpu = 0;
640 sample->time = 0;
641 sample->tid = event->comm.tid;
642 sample->pid = event->comm.pid;
643 }
644 print_sample_start(sample, thread, evsel);
645 perf_event__fprintf(event, stdout);
646 ret = 0;
647
648out:
649 return ret;
650}
651
652static int process_fork_event(struct perf_tool *tool,
653 union perf_event *event,
654 struct perf_sample *sample,
655 struct machine *machine)
656{
657 struct thread *thread;
658 struct perf_script *script = container_of(tool, struct perf_script, tool);
659 struct perf_session *session = script->session;
660 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
661
662 if (perf_event__process_fork(tool, event, sample, machine) < 0)
663 return -1;
664
665 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
666 if (thread == NULL) {
667 pr_debug("problem processing FORK event, skipping it.\n");
668 return -1;
669 }
670
671 if (!evsel->attr.sample_id_all) {
672 sample->cpu = 0;
673 sample->time = event->fork.time;
674 sample->tid = event->fork.tid;
675 sample->pid = event->fork.pid;
676 }
677 print_sample_start(sample, thread, evsel);
678 perf_event__fprintf(event, stdout);
679
680 return 0;
681}
682static int process_exit_event(struct perf_tool *tool,
683 union perf_event *event,
684 struct perf_sample *sample,
685 struct machine *machine)
686{
687 struct thread *thread;
688 struct perf_script *script = container_of(tool, struct perf_script, tool);
689 struct perf_session *session = script->session;
690 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
691
692 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
693 if (thread == NULL) {
694 pr_debug("problem processing EXIT event, skipping it.\n");
695 return -1;
696 }
697
698 if (!evsel->attr.sample_id_all) {
699 sample->cpu = 0;
700 sample->time = 0;
701 sample->tid = event->comm.tid;
702 sample->pid = event->comm.pid;
703 }
704 print_sample_start(sample, thread, evsel);
705 perf_event__fprintf(event, stdout);
706
707 if (perf_event__process_exit(tool, event, sample, machine) < 0)
708 return -1;
709
710 return 0;
711}
712
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900713static int process_mmap_event(struct perf_tool *tool,
714 union perf_event *event,
715 struct perf_sample *sample,
716 struct machine *machine)
717{
718 struct thread *thread;
719 struct perf_script *script = container_of(tool, struct perf_script, tool);
720 struct perf_session *session = script->session;
721 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
722
723 if (perf_event__process_mmap(tool, event, sample, machine) < 0)
724 return -1;
725
726 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
727 if (thread == NULL) {
728 pr_debug("problem processing MMAP event, skipping it.\n");
729 return -1;
730 }
731
732 if (!evsel->attr.sample_id_all) {
733 sample->cpu = 0;
734 sample->time = 0;
735 sample->tid = event->mmap.tid;
736 sample->pid = event->mmap.pid;
737 }
738 print_sample_start(sample, thread, evsel);
739 perf_event__fprintf(event, stdout);
740
741 return 0;
742}
743
744static int process_mmap2_event(struct perf_tool *tool,
745 union perf_event *event,
746 struct perf_sample *sample,
747 struct machine *machine)
748{
749 struct thread *thread;
750 struct perf_script *script = container_of(tool, struct perf_script, tool);
751 struct perf_session *session = script->session;
752 struct perf_evsel *evsel = perf_evlist__first(session->evlist);
753
754 if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
755 return -1;
756
757 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
758 if (thread == NULL) {
759 pr_debug("problem processing MMAP2 event, skipping it.\n");
760 return -1;
761 }
762
763 if (!evsel->attr.sample_id_all) {
764 sample->cpu = 0;
765 sample->time = 0;
766 sample->tid = event->mmap2.tid;
767 sample->pid = event->mmap2.pid;
768 }
769 print_sample_start(sample, thread, evsel);
770 perf_event__fprintf(event, stdout);
771
772 return 0;
773}
774
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300775static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -0500776{
777 session_done = 1;
778}
779
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300780static int __cmd_script(struct perf_script *script)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200781{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200782 int ret;
783
Tom Zanussic239da32010-04-01 23:59:18 -0500784 signal(SIGINT, sig_handler);
785
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900786 /* override event processing functions */
787 if (script->show_task_events) {
788 script->tool.comm = process_comm_event;
789 script->tool.fork = process_fork_event;
790 script->tool.exit = process_exit_event;
791 }
Namhyung Kimba1ddf42013-11-26 17:54:26 +0900792 if (script->show_mmap_events) {
793 script->tool.mmap = process_mmap_event;
794 script->tool.mmap2 = process_mmap2_event;
795 }
Namhyung Kimad7ebb92013-11-26 17:51:12 +0900796
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +0300797 ret = perf_session__process_events(script->session, &script->tool);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200798
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200799 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200800 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200801
802 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200803}
804
Tom Zanussi956ffd02009-11-25 01:15:46 -0600805struct script_spec {
806 struct list_head node;
807 struct scripting_ops *ops;
808 char spec[0];
809};
810
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200811static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600812
813static struct script_spec *script_spec__new(const char *spec,
814 struct scripting_ops *ops)
815{
816 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
817
818 if (s != NULL) {
819 strcpy(s->spec, spec);
820 s->ops = ops;
821 }
822
823 return s;
824}
825
Tom Zanussi956ffd02009-11-25 01:15:46 -0600826static void script_spec__add(struct script_spec *s)
827{
828 list_add_tail(&s->node, &script_specs);
829}
830
831static struct script_spec *script_spec__find(const char *spec)
832{
833 struct script_spec *s;
834
835 list_for_each_entry(s, &script_specs, node)
836 if (strcasecmp(s->spec, spec) == 0)
837 return s;
838 return NULL;
839}
840
841static struct script_spec *script_spec__findnew(const char *spec,
842 struct scripting_ops *ops)
843{
844 struct script_spec *s = script_spec__find(spec);
845
846 if (s)
847 return s;
848
849 s = script_spec__new(spec, ops);
850 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900851 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600852
853 script_spec__add(s);
854
855 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600856}
857
858int script_spec_register(const char *spec, struct scripting_ops *ops)
859{
860 struct script_spec *s;
861
862 s = script_spec__find(spec);
863 if (s)
864 return -1;
865
866 s = script_spec__findnew(spec, ops);
867 if (!s)
868 return -1;
869
870 return 0;
871}
872
873static struct scripting_ops *script_spec__lookup(const char *spec)
874{
875 struct script_spec *s = script_spec__find(spec);
876 if (!s)
877 return NULL;
878
879 return s->ops;
880}
881
882static void list_available_languages(void)
883{
884 struct script_spec *s;
885
886 fprintf(stderr, "\n");
887 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100888 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600889
890 list_for_each_entry(s, &script_specs, node)
891 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
892
893 fprintf(stderr, "\n");
894}
895
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300896static int parse_scriptname(const struct option *opt __maybe_unused,
897 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600898{
899 char spec[PATH_MAX];
900 const char *script, *ext;
901 int len;
902
Tom Zanussif526d682010-01-27 02:27:52 -0600903 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600904 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600905 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600906 }
907
908 script = strchr(str, ':');
909 if (script) {
910 len = script - str;
911 if (len >= PATH_MAX) {
912 fprintf(stderr, "invalid language specifier");
913 return -1;
914 }
915 strncpy(spec, str, len);
916 spec[len] = '\0';
917 scripting_ops = script_spec__lookup(spec);
918 if (!scripting_ops) {
919 fprintf(stderr, "invalid language specifier");
920 return -1;
921 }
922 script++;
923 } else {
924 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100925 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600926 if (!ext) {
927 fprintf(stderr, "invalid script extension");
928 return -1;
929 }
930 scripting_ops = script_spec__lookup(++ext);
931 if (!scripting_ops) {
932 fprintf(stderr, "invalid script extension");
933 return -1;
934 }
935 }
936
937 script_name = strdup(script);
938
939 return 0;
940}
941
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300942static int parse_output_fields(const struct option *opt __maybe_unused,
943 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -0700944{
945 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -0500946 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -0600947 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700948 int rc = 0;
949 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700950 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700951
952 if (!str)
953 return -ENOMEM;
954
David Ahern2c9e45f72011-03-17 10:03:21 -0600955 /* first word can state for which event type the user is specifying
956 * the fields. If no type exists, the specified fields apply to all
957 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700958 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600959 tok = strchr(str, ':');
960 if (tok) {
961 *tok = '\0';
962 tok++;
963 if (!strcmp(str, "hw"))
964 type = PERF_TYPE_HARDWARE;
965 else if (!strcmp(str, "sw"))
966 type = PERF_TYPE_SOFTWARE;
967 else if (!strcmp(str, "trace"))
968 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700969 else if (!strcmp(str, "raw"))
970 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600971 else {
972 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100973 rc = -EINVAL;
974 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600975 }
976
977 if (output[type].user_set)
978 pr_warning("Overriding previous field request for %s events.\n",
979 event_type(type));
980
981 output[type].fields = 0;
982 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600983 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600984
985 } else {
986 tok = str;
987 if (strlen(str) == 0) {
988 fprintf(stderr,
989 "Cannot set fields to 'none' for all event types.\n");
990 rc = -EINVAL;
991 goto out;
992 }
993
994 if (output_set_by_user())
995 pr_warning("Overriding previous field request for all events.\n");
996
997 for (j = 0; j < PERF_TYPE_MAX; ++j) {
998 output[j].fields = 0;
999 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -06001000 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -06001001 }
David Ahern1424dc92011-03-09 22:23:28 -07001002 }
1003
David Ahern2c9e45f72011-03-17 10:03:21 -06001004 tok = strtok(tok, ",");
1005 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -07001006 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001007 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -07001008 break;
David Ahern745f43e2011-03-09 22:23:26 -07001009 }
1010 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -06001011 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -07001012 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -06001013 goto out;
1014 }
1015
1016 if (type == -1) {
1017 /* add user option to all events types for
1018 * which it is valid
1019 */
1020 for (j = 0; j < PERF_TYPE_MAX; ++j) {
1021 if (output[j].invalid_fields & all_output_options[i].field) {
1022 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
1023 all_output_options[i].str, event_type(j));
1024 } else
1025 output[j].fields |= all_output_options[i].field;
1026 }
1027 } else {
1028 if (output[type].invalid_fields & all_output_options[i].field) {
1029 fprintf(stderr, "\'%s\' not valid for %s events.\n",
1030 all_output_options[i].str, event_type(type));
1031
1032 rc = -EINVAL;
1033 goto out;
1034 }
1035 output[type].fields |= all_output_options[i].field;
1036 }
1037
1038 tok = strtok(NULL, ",");
1039 }
1040
1041 if (type >= 0) {
1042 if (output[type].fields == 0) {
1043 pr_debug("No fields requested for %s type. "
1044 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -07001045 }
David Ahern1424dc92011-03-09 22:23:28 -07001046 }
David Ahern745f43e2011-03-09 22:23:26 -07001047
David Ahern2c9e45f72011-03-17 10:03:21 -06001048out:
David Ahern745f43e2011-03-09 22:23:26 -07001049 free(str);
1050 return rc;
1051}
1052
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001053/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
1054static int is_directory(const char *base_path, const struct dirent *dent)
1055{
1056 char path[PATH_MAX];
1057 struct stat st;
1058
1059 sprintf(path, "%s/%s", base_path, dent->d_name);
1060 if (stat(path, &st))
1061 return 0;
1062
1063 return S_ISDIR(st.st_mode);
1064}
1065
1066#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001067 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
1068 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001069 if ((lang_dirent.d_type == DT_DIR || \
1070 (lang_dirent.d_type == DT_UNKNOWN && \
1071 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001072 (strcmp(lang_dirent.d_name, ".")) && \
1073 (strcmp(lang_dirent.d_name, "..")))
1074
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001075#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001076 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
1077 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001078 if (script_dirent.d_type != DT_DIR && \
1079 (script_dirent.d_type != DT_UNKNOWN || \
1080 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001081
1082
1083#define RECORD_SUFFIX "-record"
1084#define REPORT_SUFFIX "-report"
1085
1086struct script_desc {
1087 struct list_head node;
1088 char *name;
1089 char *half_liner;
1090 char *args;
1091};
1092
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -02001093static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001094
1095static struct script_desc *script_desc__new(const char *name)
1096{
1097 struct script_desc *s = zalloc(sizeof(*s));
1098
Tom Zanussib5b87312010-11-10 08:16:51 -06001099 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001100 s->name = strdup(name);
1101
1102 return s;
1103}
1104
1105static void script_desc__delete(struct script_desc *s)
1106{
1107 free(s->name);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001108 free(s->half_liner);
1109 free(s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001110 free(s);
1111}
1112
1113static void script_desc__add(struct script_desc *s)
1114{
1115 list_add_tail(&s->node, &script_descs);
1116}
1117
1118static struct script_desc *script_desc__find(const char *name)
1119{
1120 struct script_desc *s;
1121
1122 list_for_each_entry(s, &script_descs, node)
1123 if (strcasecmp(s->name, name) == 0)
1124 return s;
1125 return NULL;
1126}
1127
1128static struct script_desc *script_desc__findnew(const char *name)
1129{
1130 struct script_desc *s = script_desc__find(name);
1131
1132 if (s)
1133 return s;
1134
1135 s = script_desc__new(name);
1136 if (!s)
1137 goto out_delete_desc;
1138
1139 script_desc__add(s);
1140
1141 return s;
1142
1143out_delete_desc:
1144 script_desc__delete(s);
1145
1146 return NULL;
1147}
1148
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001149static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001150{
1151 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001152 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001153
1154 if (strlen(str) > suffix_len) {
1155 p = str + strlen(str) - suffix_len;
1156 if (!strncmp(p, suffix, suffix_len))
1157 return p;
1158 }
1159
1160 return NULL;
1161}
1162
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001163static int read_script_info(struct script_desc *desc, const char *filename)
1164{
1165 char line[BUFSIZ], *p;
1166 FILE *fp;
1167
1168 fp = fopen(filename, "r");
1169 if (!fp)
1170 return -1;
1171
1172 while (fgets(line, sizeof(line), fp)) {
1173 p = ltrim(line);
1174 if (strlen(p) == 0)
1175 continue;
1176 if (*p != '#')
1177 continue;
1178 p++;
1179 if (strlen(p) && *p == '!')
1180 continue;
1181
1182 p = ltrim(p);
1183 if (strlen(p) && p[strlen(p) - 1] == '\n')
1184 p[strlen(p) - 1] = '\0';
1185
1186 if (!strncmp(p, "description:", strlen("description:"))) {
1187 p += strlen("description:");
1188 desc->half_liner = strdup(ltrim(p));
1189 continue;
1190 }
1191
1192 if (!strncmp(p, "args:", strlen("args:"))) {
1193 p += strlen("args:");
1194 desc->args = strdup(ltrim(p));
1195 continue;
1196 }
1197 }
1198
1199 fclose(fp);
1200
1201 return 0;
1202}
1203
Robert Richter38efb532011-11-25 11:38:40 +01001204static char *get_script_root(struct dirent *script_dirent, const char *suffix)
1205{
1206 char *script_root, *str;
1207
1208 script_root = strdup(script_dirent->d_name);
1209 if (!script_root)
1210 return NULL;
1211
1212 str = (char *)ends_with(script_root, suffix);
1213 if (!str) {
1214 free(script_root);
1215 return NULL;
1216 }
1217
1218 *str = '\0';
1219 return script_root;
1220}
1221
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001222static int list_available_scripts(const struct option *opt __maybe_unused,
1223 const char *s __maybe_unused,
1224 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001225{
1226 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1227 char scripts_path[MAXPATHLEN];
1228 DIR *scripts_dir, *lang_dir;
1229 char script_path[MAXPATHLEN];
1230 char lang_path[MAXPATHLEN];
1231 struct script_desc *desc;
1232 char first_half[BUFSIZ];
1233 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001234
1235 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1236
1237 scripts_dir = opendir(scripts_path);
1238 if (!scripts_dir)
1239 return -1;
1240
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001241 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001242 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1243 lang_dirent.d_name);
1244 lang_dir = opendir(lang_path);
1245 if (!lang_dir)
1246 continue;
1247
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001248 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001249 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1250 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001251 desc = script_desc__findnew(script_root);
1252 snprintf(script_path, MAXPATHLEN, "%s/%s",
1253 lang_path, script_dirent.d_name);
1254 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001255 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001256 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001257 }
1258 }
1259
1260 fprintf(stdout, "List of available trace scripts:\n");
1261 list_for_each_entry(desc, &script_descs, node) {
1262 sprintf(first_half, "%s %s", desc->name,
1263 desc->args ? desc->args : "");
1264 fprintf(stdout, " %-36s %s\n", first_half,
1265 desc->half_liner ? desc->half_liner : "");
1266 }
1267
1268 exit(0);
1269}
1270
Feng Tange5f37052012-09-07 16:42:26 +08001271/*
Feng Tang49e639e2012-10-30 11:56:03 +08001272 * Some scripts specify the required events in their "xxx-record" file,
1273 * this function will check if the events in perf.data match those
1274 * mentioned in the "xxx-record".
1275 *
1276 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1277 * which is covered well now. And new parsing code should be added to
1278 * cover the future complexing formats like event groups etc.
1279 */
1280static int check_ev_match(char *dir_name, char *scriptname,
1281 struct perf_session *session)
1282{
1283 char filename[MAXPATHLEN], evname[128];
1284 char line[BUFSIZ], *p;
1285 struct perf_evsel *pos;
1286 int match, len;
1287 FILE *fp;
1288
1289 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1290
1291 fp = fopen(filename, "r");
1292 if (!fp)
1293 return -1;
1294
1295 while (fgets(line, sizeof(line), fp)) {
1296 p = ltrim(line);
1297 if (*p == '#')
1298 continue;
1299
1300 while (strlen(p)) {
1301 p = strstr(p, "-e");
1302 if (!p)
1303 break;
1304
1305 p += 2;
1306 p = ltrim(p);
1307 len = strcspn(p, " \t");
1308 if (!len)
1309 break;
1310
1311 snprintf(evname, len + 1, "%s", p);
1312
1313 match = 0;
1314 list_for_each_entry(pos,
1315 &session->evlist->entries, node) {
1316 if (!strcmp(perf_evsel__name(pos), evname)) {
1317 match = 1;
1318 break;
1319 }
1320 }
1321
1322 if (!match) {
1323 fclose(fp);
1324 return -1;
1325 }
1326 }
1327 }
1328
1329 fclose(fp);
1330 return 0;
1331}
1332
1333/*
Feng Tange5f37052012-09-07 16:42:26 +08001334 * Return -1 if none is found, otherwise the actual scripts number.
1335 *
1336 * Currently the only user of this function is the script browser, which
1337 * will list all statically runnable scripts, select one, execute it and
1338 * show the output in a perf browser.
1339 */
1340int find_scripts(char **scripts_array, char **scripts_path_array)
1341{
1342 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001343 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001344 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001345 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001346 struct perf_data_file file = {
1347 .path = input_name,
1348 .mode = PERF_DATA_MODE_READ,
1349 };
Feng Tange5f37052012-09-07 16:42:26 +08001350 char *temp;
1351 int i = 0;
1352
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001353 session = perf_session__new(&file, false, NULL);
Feng Tang49e639e2012-10-30 11:56:03 +08001354 if (!session)
1355 return -1;
1356
Feng Tange5f37052012-09-07 16:42:26 +08001357 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1358
1359 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001360 if (!scripts_dir) {
1361 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001362 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001363 }
Feng Tange5f37052012-09-07 16:42:26 +08001364
1365 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1366 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1367 lang_dirent.d_name);
1368#ifdef NO_LIBPERL
1369 if (strstr(lang_path, "perl"))
1370 continue;
1371#endif
1372#ifdef NO_LIBPYTHON
1373 if (strstr(lang_path, "python"))
1374 continue;
1375#endif
1376
1377 lang_dir = opendir(lang_path);
1378 if (!lang_dir)
1379 continue;
1380
1381 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1382 /* Skip those real time scripts: xxxtop.p[yl] */
1383 if (strstr(script_dirent.d_name, "top."))
1384 continue;
1385 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1386 script_dirent.d_name);
1387 temp = strchr(script_dirent.d_name, '.');
1388 snprintf(scripts_array[i],
1389 (temp - script_dirent.d_name) + 1,
1390 "%s", script_dirent.d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001391
1392 if (check_ev_match(lang_path,
1393 scripts_array[i], session))
1394 continue;
1395
Feng Tange5f37052012-09-07 16:42:26 +08001396 i++;
1397 }
Feng Tang49e639e2012-10-30 11:56:03 +08001398 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001399 }
1400
Feng Tang49e639e2012-10-30 11:56:03 +08001401 closedir(scripts_dir);
1402 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001403 return i;
1404}
1405
Tom Zanussi38752942009-12-15 02:53:39 -06001406static char *get_script_path(const char *script_root, const char *suffix)
1407{
1408 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1409 char scripts_path[MAXPATHLEN];
1410 char script_path[MAXPATHLEN];
1411 DIR *scripts_dir, *lang_dir;
1412 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001413 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001414
1415 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1416
1417 scripts_dir = opendir(scripts_path);
1418 if (!scripts_dir)
1419 return NULL;
1420
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001421 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001422 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1423 lang_dirent.d_name);
1424 lang_dir = opendir(lang_path);
1425 if (!lang_dir)
1426 continue;
1427
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001428 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001429 __script_root = get_script_root(&script_dirent, suffix);
1430 if (__script_root && !strcmp(script_root, __script_root)) {
1431 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001432 closedir(lang_dir);
1433 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001434 snprintf(script_path, MAXPATHLEN, "%s/%s",
1435 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001436 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001437 }
1438 free(__script_root);
1439 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001440 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001441 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001442 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001443
Robert Richter38efb532011-11-25 11:38:40 +01001444 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001445}
1446
Tom Zanussib5b87312010-11-10 08:16:51 -06001447static bool is_top_script(const char *script_path)
1448{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001449 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001450}
1451
1452static int has_required_arg(char *script_path)
1453{
1454 struct script_desc *desc;
1455 int n_args = 0;
1456 char *p;
1457
1458 desc = script_desc__new(NULL);
1459
1460 if (read_script_info(desc, script_path))
1461 goto out;
1462
1463 if (!desc->args)
1464 goto out;
1465
1466 for (p = desc->args; *p; p++)
1467 if (*p == '<')
1468 n_args++;
1469out:
1470 script_desc__delete(desc);
1471
1472 return n_args;
1473}
1474
David Ahernd54b1a92012-08-26 12:24:46 -06001475static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001476{
1477 char **__argv = malloc(sizeof(const char *) * argc);
1478
David Ahernd54b1a92012-08-26 12:24:46 -06001479 if (!__argv) {
1480 pr_err("malloc failed\n");
1481 return -1;
1482 }
1483
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001484 memcpy(__argv, argv, sizeof(const char *) * argc);
1485 argc = parse_options(argc, (const char **)__argv, record_options,
1486 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1487 free(__argv);
1488
David Ahernd54b1a92012-08-26 12:24:46 -06001489 system_wide = (argc == 0);
1490
1491 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001492}
1493
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001494int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001495{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001496 bool show_full_info = false;
Jiri Olsae90debd2013-12-09 11:02:50 +01001497 bool header = false;
1498 bool header_only = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001499 char *rec_script_path = NULL;
1500 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001501 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001502 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001503 const char **__argv;
Tom Zanussib5b87312010-11-10 08:16:51 -06001504 int i, j, err;
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,
1516 .ordered_samples = true,
1517 .ordering_requires_timestamps = true,
1518 },
1519 };
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001520 const struct option options[] = {
1521 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1522 "dump raw trace in ASCII"),
1523 OPT_INCR('v', "verbose", &verbose,
1524 "be more verbose (show symbol address, etc)"),
1525 OPT_BOOLEAN('L', "Latency", &latency_format,
1526 "show latency attributes (irqs/preemption disabled, etc)"),
1527 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1528 list_available_scripts),
1529 OPT_CALLBACK('s', "script", NULL, "name",
1530 "script file name (lang:script name, script name, or *)",
1531 parse_scriptname),
1532 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
1533 "generate perf-script.xx script in specified language"),
1534 OPT_STRING('i', "input", &input_name, "file", "input file name"),
1535 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1536 "do various checks like samples ordering and lost events"),
Jiri Olsae90debd2013-12-09 11:02:50 +01001537 OPT_BOOLEAN(0, "header", &header, "Show data header."),
1538 OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001539 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1540 "file", "vmlinux pathname"),
1541 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1542 "file", "kallsyms pathname"),
1543 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1544 "When printing symbols do not display call chain"),
1545 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1546 "Look for files with symbols relative to this directory"),
1547 OPT_CALLBACK('f', "fields", NULL, "str",
1548 "comma separated output fields prepend with 'type:'. "
1549 "Valid types: hw,sw,trace,raw. "
1550 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1551 "addr,symoff", parse_output_fields),
1552 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1553 "system-wide collection from all CPUs"),
1554 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1555 "only consider these symbols"),
1556 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
1557 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1558 "only display events for these comms"),
1559 OPT_BOOLEAN('I', "show-info", &show_full_info,
1560 "display extended information from perf.data file"),
1561 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1562 "Show the path of [kernel.kallsyms]"),
Namhyung Kimad7ebb92013-11-26 17:51:12 +09001563 OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
1564 "Show the fork/comm/exit events"),
Namhyung Kimba1ddf42013-11-26 17:54:26 +09001565 OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
1566 "Show the mmap events"),
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001567 OPT_END()
1568 };
1569 const char * const script_usage[] = {
1570 "perf script [<options>]",
1571 "perf script [<options>] record <script> [<record-options>] <command>",
1572 "perf script [<options>] report <script> [script-args]",
1573 "perf script [<options>] <script> [<record-options>] <command>",
1574 "perf script [<options>] <top-script> [script-args]",
1575 NULL
1576 };
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001577 struct perf_data_file file = {
1578 .mode = PERF_DATA_MODE_READ,
1579 };
Tom Zanussi38752942009-12-15 02:53:39 -06001580
Tom Zanussib5b87312010-11-10 08:16:51 -06001581 setup_scripting();
1582
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001583 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001584 PARSE_OPT_STOP_AT_NON_OPTION);
1585
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001586 file.path = input_name;
1587
Tom Zanussib5b87312010-11-10 08:16:51 -06001588 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1589 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1590 if (!rec_script_path)
1591 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001592 }
1593
Tom Zanussib5b87312010-11-10 08:16:51 -06001594 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1595 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1596 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001597 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001598 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001599 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001600 return -1;
1601 }
Tom Zanussi38752942009-12-15 02:53:39 -06001602 }
1603
Ben Hutchings44e668c2010-10-10 16:10:03 +01001604 /* make sure PERF_EXEC_PATH is set for scripts */
1605 perf_set_argv_exec_path(perf_exec_path());
1606
Tom Zanussib5b87312010-11-10 08:16:51 -06001607 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001608 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001609 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001610 pid_t pid;
1611
Tom Zanussib5b87312010-11-10 08:16:51 -06001612 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1613 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1614
1615 if (!rec_script_path && !rep_script_path) {
1616 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001617 " script -l for available scripts.\n", argv[0]);
1618 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001619 }
1620
Tom Zanussib5b87312010-11-10 08:16:51 -06001621 if (is_top_script(argv[0])) {
1622 rep_args = argc - 1;
1623 } else {
1624 int rec_args;
1625
1626 rep_args = has_required_arg(rep_script_path);
1627 rec_args = (argc - 1) - rep_args;
1628 if (rec_args < 0) {
1629 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001630 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001631 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001632 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001633 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001634 }
1635
1636 if (pipe(live_pipe) < 0) {
1637 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06001638 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001639 }
1640
1641 pid = fork();
1642 if (pid < 0) {
1643 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06001644 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001645 }
1646
1647 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001648 j = 0;
1649
Tom Zanussia0cccc22010-04-01 23:59:25 -05001650 dup2(live_pipe[1], 1);
1651 close(live_pipe[0]);
1652
Robert Richter317df652011-11-25 15:05:25 +01001653 if (is_top_script(argv[0])) {
1654 system_wide = true;
1655 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06001656 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1657 err = -1;
1658 goto out;
1659 }
Robert Richter317df652011-11-25 15:05:25 +01001660 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001661
1662 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001663 if (!__argv) {
1664 pr_err("malloc failed\n");
1665 err = -ENOMEM;
1666 goto out;
1667 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06001668
Tom Zanussib5b87312010-11-10 08:16:51 -06001669 __argv[j++] = "/bin/sh";
1670 __argv[j++] = rec_script_path;
1671 if (system_wide)
1672 __argv[j++] = "-a";
1673 __argv[j++] = "-q";
1674 __argv[j++] = "-o";
1675 __argv[j++] = "-";
1676 for (i = rep_args + 1; i < argc; i++)
1677 __argv[j++] = argv[i];
1678 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001679
1680 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001681 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001682 exit(-1);
1683 }
1684
1685 dup2(live_pipe[0], 0);
1686 close(live_pipe[1]);
1687
Tom Zanussib5b87312010-11-10 08:16:51 -06001688 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001689 if (!__argv) {
1690 pr_err("malloc failed\n");
1691 err = -ENOMEM;
1692 goto out;
1693 }
1694
Tom Zanussib5b87312010-11-10 08:16:51 -06001695 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001696 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001697 __argv[j++] = rep_script_path;
1698 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001699 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001700 __argv[j++] = "-i";
1701 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001702 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001703
1704 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001705 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001706 exit(-1);
1707 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001708
Tom Zanussib5b87312010-11-10 08:16:51 -06001709 if (rec_script_path)
1710 script_path = rec_script_path;
1711 if (rep_script_path)
1712 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001713
Tom Zanussib5b87312010-11-10 08:16:51 -06001714 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001715 j = 0;
1716
Robert Richter317df652011-11-25 15:05:25 +01001717 if (!rec_script_path)
1718 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06001719 else if (!system_wide) {
1720 if (have_cmd(argc - 1, &argv[1]) != 0) {
1721 err = -1;
1722 goto out;
1723 }
1724 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001725
1726 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001727 if (!__argv) {
1728 pr_err("malloc failed\n");
1729 err = -ENOMEM;
1730 goto out;
1731 }
1732
Tom Zanussib5b87312010-11-10 08:16:51 -06001733 __argv[j++] = "/bin/sh";
1734 __argv[j++] = script_path;
1735 if (system_wide)
1736 __argv[j++] = "-a";
1737 for (i = 2; i < argc; i++)
1738 __argv[j++] = argv[i];
1739 __argv[j++] = NULL;
1740
1741 execvp("/bin/sh", (char **)__argv);
1742 free(__argv);
1743 exit(-1);
1744 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001745
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001746 if (symbol__init() < 0)
1747 return -1;
Tom Zanussicf4fee52010-03-03 01:04:33 -06001748 if (!script_name)
1749 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001750
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001751 session = perf_session__new(&file, false, &script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001752 if (session == NULL)
1753 return -ENOMEM;
1754
Jiri Olsae90debd2013-12-09 11:02:50 +01001755 if (header || header_only) {
1756 perf_session__fprintf_info(session, stdout, show_full_info);
1757 if (header_only)
1758 return 0;
1759 }
1760
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001761 script.session = session;
1762
Anton Blanchard5d67be92011-07-04 21:57:50 +10001763 if (cpu_list) {
1764 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1765 return -1;
1766 }
1767
David Ahern1424dc92011-03-09 22:23:28 -07001768 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001769 symbol_conf.use_callchain = true;
1770 else
1771 symbol_conf.use_callchain = false;
1772
Tom Zanussi956ffd02009-11-25 01:15:46 -06001773 if (generate_script_lang) {
1774 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001775 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001776
David Ahern2c9e45f72011-03-17 10:03:21 -06001777 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001778 fprintf(stderr,
1779 "custom fields not supported for generated scripts");
1780 return -1;
1781 }
1782
Jiri Olsacc9784bd2013-10-15 16:27:34 +02001783 input = open(file.path, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001784 if (input < 0) {
1785 perror("failed to open file");
David Ahernd54b1a92012-08-26 12:24:46 -06001786 return -1;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001787 }
1788
1789 err = fstat(input, &perf_stat);
1790 if (err < 0) {
1791 perror("failed to stat file");
David Ahernd54b1a92012-08-26 12:24:46 -06001792 return -1;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001793 }
1794
1795 if (!perf_stat.st_size) {
1796 fprintf(stderr, "zero-sized file, nothing to do!\n");
David Ahernd54b1a92012-08-26 12:24:46 -06001797 return 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001798 }
1799
1800 scripting_ops = script_spec__lookup(generate_script_lang);
1801 if (!scripting_ops) {
1802 fprintf(stderr, "invalid language specifier");
1803 return -1;
1804 }
1805
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01001806 err = scripting_ops->generate_script(session->tevent.pevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001807 "perf-script");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001808 goto out;
1809 }
1810
1811 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001812 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001813 if (err)
1814 goto out;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001815 pr_debug("perf script started with script %s\n\n", script_name);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001816 }
1817
David Ahern9cbdb702011-04-06 21:54:20 -06001818
1819 err = perf_session__check_output_opt(session);
1820 if (err < 0)
1821 goto out;
1822
Adrian Hunter6f3e5ed2013-10-22 10:34:07 +03001823 err = __cmd_script(&script);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001824
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001825 perf_session__delete(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001826 cleanup_scripting();
1827out:
1828 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001829}