blob: 3de8979fe87d328b4f75d08633477d91390b3e49 [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"
Anton Blanchard5d67be92011-07-04 21:57:50 +100018#include <linux/bitmap.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020019
Tom Zanussi956ffd02009-11-25 01:15:46 -060020static char const *script_name;
21static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020022static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020023static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020024static u64 nr_unordered;
Tom Zanussi34c86ea2010-11-10 08:15:43 -060025extern const struct option record_options[];
David Ahernc0230b22011-03-09 22:23:27 -070026static bool no_callchain;
Namhyung Kim47390ae2013-06-04 14:20:28 +090027static bool latency_format;
Robert Richter317df652011-11-25 15:05:25 +010028static bool system_wide;
Anton Blanchard5d67be92011-07-04 21:57:50 +100029static const char *cpu_list;
30static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Tom Zanussi956ffd02009-11-25 01:15:46 -060031
David Ahern745f43e2011-03-09 22:23:26 -070032enum perf_output_field {
33 PERF_OUTPUT_COMM = 1U << 0,
34 PERF_OUTPUT_TID = 1U << 1,
35 PERF_OUTPUT_PID = 1U << 2,
36 PERF_OUTPUT_TIME = 1U << 3,
37 PERF_OUTPUT_CPU = 1U << 4,
38 PERF_OUTPUT_EVNAME = 1U << 5,
39 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060040 PERF_OUTPUT_IP = 1U << 7,
41 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060042 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060043 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090044 PERF_OUTPUT_SYMOFFSET = 1U << 11,
David Ahern745f43e2011-03-09 22:23:26 -070045};
46
47struct output_option {
48 const char *str;
49 enum perf_output_field field;
50} all_output_options[] = {
51 {.str = "comm", .field = PERF_OUTPUT_COMM},
52 {.str = "tid", .field = PERF_OUTPUT_TID},
53 {.str = "pid", .field = PERF_OUTPUT_PID},
54 {.str = "time", .field = PERF_OUTPUT_TIME},
55 {.str = "cpu", .field = PERF_OUTPUT_CPU},
56 {.str = "event", .field = PERF_OUTPUT_EVNAME},
57 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060058 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070059 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060060 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060061 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090062 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
David Ahern745f43e2011-03-09 22:23:26 -070063};
64
65/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060066static struct {
67 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060068 bool wildcard_set;
David Ahern2c9e45f72011-03-17 10:03:21 -060069 u64 fields;
70 u64 invalid_fields;
71} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070072
David Ahern2c9e45f72011-03-17 10:03:21 -060073 [PERF_TYPE_HARDWARE] = {
74 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070075
David Ahern2c9e45f72011-03-17 10:03:21 -060076 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
77 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060078 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060079 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060080
81 .invalid_fields = PERF_OUTPUT_TRACE,
82 },
83
84 [PERF_TYPE_SOFTWARE] = {
85 .user_set = false,
86
87 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
88 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060089 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060090 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060091
92 .invalid_fields = PERF_OUTPUT_TRACE,
93 },
94
95 [PERF_TYPE_TRACEPOINT] = {
96 .user_set = false,
97
98 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
99 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
100 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
101 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700102
103 [PERF_TYPE_RAW] = {
104 .user_set = false,
105
106 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
107 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600108 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -0600109 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700110
111 .invalid_fields = PERF_OUTPUT_TRACE,
112 },
David Ahern1424dc92011-03-09 22:23:28 -0700113};
David Ahern745f43e2011-03-09 22:23:26 -0700114
David Ahern2c9e45f72011-03-17 10:03:21 -0600115static bool output_set_by_user(void)
116{
117 int j;
118 for (j = 0; j < PERF_TYPE_MAX; ++j) {
119 if (output[j].user_set)
120 return true;
121 }
122 return false;
123}
David Ahern745f43e2011-03-09 22:23:26 -0700124
David Ahern9cbdb702011-04-06 21:54:20 -0600125static const char *output_field2str(enum perf_output_field field)
126{
127 int i, imax = ARRAY_SIZE(all_output_options);
128 const char *str = "";
129
130 for (i = 0; i < imax; ++i) {
131 if (all_output_options[i].field == field) {
132 str = all_output_options[i].str;
133 break;
134 }
135 }
136 return str;
137}
138
David Ahern2c9e45f72011-03-17 10:03:21 -0600139#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700140
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300141static int perf_evsel__check_stype(struct perf_evsel *evsel,
142 u64 sample_type, const char *sample_msg,
143 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700144{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300145 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600146 int type = attr->type;
147 const char *evname;
148
149 if (attr->sample_type & sample_type)
150 return 0;
151
152 if (output[type].user_set) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300153 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600154 pr_err("Samples for '%s' event do not have %s attribute set. "
155 "Cannot print '%s' field.\n",
156 evname, sample_msg, output_field2str(field));
157 return -1;
158 }
159
160 /* user did not ask for it explicitly so remove from the default list */
161 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300162 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600163 pr_debug("Samples for '%s' event do not have %s attribute set. "
164 "Skipping '%s' field.\n",
165 evname, sample_msg, output_field2str(field));
166
167 return 0;
168}
169
170static int perf_evsel__check_attr(struct perf_evsel *evsel,
171 struct perf_session *session)
172{
173 struct perf_event_attr *attr = &evsel->attr;
174
David Ahern1424dc92011-03-09 22:23:28 -0700175 if (PRINT_FIELD(TRACE) &&
176 !perf_session__has_traces(session, "record -R"))
177 return -EINVAL;
178
David Ahern787bef12011-05-27 14:28:43 -0600179 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300180 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
181 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700182 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600183
David Ahern1424dc92011-03-09 22:23:28 -0700184 if (!no_callchain &&
David Ahern9cbdb702011-04-06 21:54:20 -0600185 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
David Ahern1424dc92011-03-09 22:23:28 -0700186 symbol_conf.use_callchain = false;
187 }
David Ahern7cec0922011-05-30 13:08:23 -0600188
189 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300190 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
191 PERF_OUTPUT_ADDR))
David Ahern7cec0922011-05-30 13:08:23 -0600192 return -EINVAL;
193
194 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
195 pr_err("Display of symbols requested but neither sample IP nor "
196 "sample address\nis selected. Hence, no addresses to convert "
197 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600198 return -EINVAL;
199 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900200 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
201 pr_err("Display of offsets requested but symbol is not"
202 "selected.\n");
203 return -EINVAL;
204 }
David Ahern7cec0922011-05-30 13:08:23 -0600205 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
206 pr_err("Display of DSO requested but neither sample IP nor "
207 "sample address\nis selected. Hence, no addresses to convert "
208 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600209 return -EINVAL;
210 }
David Ahern1424dc92011-03-09 22:23:28 -0700211
212 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300213 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
214 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700215 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700216
217 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300218 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
219 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700220 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700221
222 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300223 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
224 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700225 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600226
227 return 0;
228}
229
230/*
231 * verify all user requested events exist and the samples
232 * have the expected data
233 */
234static int perf_session__check_output_opt(struct perf_session *session)
235{
236 int j;
237 struct perf_evsel *evsel;
238
239 for (j = 0; j < PERF_TYPE_MAX; ++j) {
240 evsel = perf_session__find_first_evtype(session, j);
241
242 /*
243 * even if fields is set to 0 (ie., show nothing) event must
244 * exist if user explicitly includes it on the command line
245 */
246 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
247 pr_err("%s events do not exist. "
248 "Remove corresponding -f option to proceed.\n",
249 event_type(j));
250 return -1;
251 }
252
253 if (evsel && output[j].fields &&
254 perf_evsel__check_attr(evsel, session))
255 return -1;
David Ahern1424dc92011-03-09 22:23:28 -0700256 }
257
258 return 0;
259}
David Ahern745f43e2011-03-09 22:23:26 -0700260
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300261static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700262 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300263 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700264{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300265 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700266 const char *evname = NULL;
267 unsigned long secs;
268 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700269 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700270
David Ahern745f43e2011-03-09 22:23:26 -0700271 if (PRINT_FIELD(COMM)) {
272 if (latency_format)
273 printf("%8.8s ", thread->comm);
David Ahern787bef12011-05-27 14:28:43 -0600274 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
David Ahernc0230b22011-03-09 22:23:27 -0700275 printf("%s ", thread->comm);
David Ahern745f43e2011-03-09 22:23:26 -0700276 else
277 printf("%16s ", thread->comm);
278 }
David Ahernc70c94b2011-03-09 22:23:25 -0700279
David Ahern745f43e2011-03-09 22:23:26 -0700280 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
281 printf("%5d/%-5d ", sample->pid, sample->tid);
282 else if (PRINT_FIELD(PID))
283 printf("%5d ", sample->pid);
284 else if (PRINT_FIELD(TID))
285 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700286
David Ahern745f43e2011-03-09 22:23:26 -0700287 if (PRINT_FIELD(CPU)) {
288 if (latency_format)
289 printf("%3d ", sample->cpu);
290 else
291 printf("[%03d] ", sample->cpu);
292 }
David Ahernc70c94b2011-03-09 22:23:25 -0700293
David Ahern745f43e2011-03-09 22:23:26 -0700294 if (PRINT_FIELD(TIME)) {
295 nsecs = sample->time;
296 secs = nsecs / NSECS_PER_SEC;
297 nsecs -= secs * NSECS_PER_SEC;
298 usecs = nsecs / NSECS_PER_USEC;
299 printf("%5lu.%06lu: ", secs, usecs);
300 }
301
302 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300303 evname = perf_evsel__name(evsel);
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900304 printf("%s: ", evname ? evname : "[unknown]");
David Ahern745f43e2011-03-09 22:23:26 -0700305 }
David Ahernc70c94b2011-03-09 22:23:25 -0700306}
307
Akihiro Nagai95582592012-01-30 13:43:09 +0900308static bool is_bts_event(struct perf_event_attr *attr)
309{
310 return ((attr->type == PERF_TYPE_HARDWARE) &&
311 (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
312 (attr->sample_period == 1));
313}
314
David Ahern7cec0922011-05-30 13:08:23 -0600315static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
316{
317 if ((attr->type == PERF_TYPE_SOFTWARE) &&
318 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
319 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
320 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
321 return true;
322
Akihiro Nagai95582592012-01-30 13:43:09 +0900323 if (is_bts_event(attr))
324 return true;
325
David Ahern7cec0922011-05-30 13:08:23 -0600326 return false;
327}
328
329static void print_sample_addr(union perf_event *event,
330 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200331 struct machine *machine,
David Ahern7cec0922011-05-30 13:08:23 -0600332 struct thread *thread,
333 struct perf_event_attr *attr)
334{
335 struct addr_location al;
336 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
David Ahern7cec0922011-05-30 13:08:23 -0600337
338 printf("%16" PRIx64, sample->addr);
339
340 if (!sample_addr_correlates_sym(attr))
341 return;
342
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200343 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
344 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600345 if (!al.map)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200346 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
347 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600348
349 al.cpu = sample->cpu;
350 al.sym = NULL;
351
352 if (al.map)
353 al.sym = map__find_symbol(al.map, al.addr, NULL);
354
355 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900356 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900357 if (PRINT_FIELD(SYMOFFSET))
358 symbol__fprintf_symname_offs(al.sym, &al, stdout);
359 else
360 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600361 }
362
363 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900364 printf(" (");
365 map__fprintf_dsoname(al.map, stdout);
366 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600367 }
368}
369
Akihiro Nagai95582592012-01-30 13:43:09 +0900370static void print_sample_bts(union perf_event *event,
371 struct perf_sample *sample,
372 struct perf_evsel *evsel,
373 struct machine *machine,
374 struct thread *thread)
375{
376 struct perf_event_attr *attr = &evsel->attr;
377
378 /* print branch_from information */
379 if (PRINT_FIELD(IP)) {
380 if (!symbol_conf.use_callchain)
381 printf(" ");
382 else
383 printf("\n");
Jiri Olsa71ad0f52012-08-07 15:20:46 +0200384 perf_evsel__print_ip(evsel, event, sample, machine,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900385 PRINT_FIELD(SYM), PRINT_FIELD(DSO),
386 PRINT_FIELD(SYMOFFSET));
Akihiro Nagai95582592012-01-30 13:43:09 +0900387 }
388
389 printf(" => ");
390
391 /* print branch_to information */
392 if (PRINT_FIELD(ADDR))
393 print_sample_addr(event, sample, machine, thread, attr);
394
395 printf("\n");
396}
397
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300398static void process_event(union perf_event *event, struct perf_sample *sample,
399 struct perf_evsel *evsel, struct machine *machine,
Feng Tang73994dc2012-08-08 17:57:52 +0800400 struct addr_location *al)
David Ahernbe6d8422011-03-09 22:23:23 -0700401{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300402 struct perf_event_attr *attr = &evsel->attr;
Feng Tang73994dc2012-08-08 17:57:52 +0800403 struct thread *thread = al->thread;
David Ahern1424dc92011-03-09 22:23:28 -0700404
David Ahern2c9e45f72011-03-17 10:03:21 -0600405 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700406 return;
407
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300408 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700409
Akihiro Nagai95582592012-01-30 13:43:09 +0900410 if (is_bts_event(attr)) {
411 print_sample_bts(event, sample, evsel, machine, thread);
412 return;
413 }
414
David Ahern745f43e2011-03-09 22:23:26 -0700415 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300416 event_format__print(evsel->tp_format, sample->cpu,
417 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600418 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200419 print_sample_addr(event, sample, machine, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600420
David Ahern787bef12011-05-27 14:28:43 -0600421 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700422 if (!symbol_conf.use_callchain)
423 printf(" ");
424 else
425 printf("\n");
Jiri Olsa71ad0f52012-08-07 15:20:46 +0200426 perf_evsel__print_ip(evsel, event, sample, machine,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900427 PRINT_FIELD(SYM), PRINT_FIELD(DSO),
428 PRINT_FIELD(SYMOFFSET));
David Ahernc0230b22011-03-09 22:23:27 -0700429 }
430
David Ahernc70c94b2011-03-09 22:23:25 -0700431 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700432}
433
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300434static int default_start_script(const char *script __maybe_unused,
435 int argc __maybe_unused,
436 const char **argv __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600437{
438 return 0;
439}
440
441static int default_stop_script(void)
442{
443 return 0;
444}
445
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300446static int default_generate_script(struct pevent *pevent __maybe_unused,
447 const char *outfile __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600448{
449 return 0;
450}
451
452static struct scripting_ops default_scripting_ops = {
453 .start_script = default_start_script,
454 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700455 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600456 .generate_script = default_generate_script,
457};
458
459static struct scripting_ops *scripting_ops;
460
461static void setup_scripting(void)
462{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600463 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600464 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600465
Tom Zanussi956ffd02009-11-25 01:15:46 -0600466 scripting_ops = &default_scripting_ops;
467}
468
469static int cleanup_scripting(void)
470{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100471 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500472
Tom Zanussi956ffd02009-11-25 01:15:46 -0600473 return scripting_ops->stop_script();
474}
475
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300476static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200477 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200478 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300479 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200480 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200481{
David Aherne7984b72011-11-21 10:02:52 -0700482 struct addr_location al;
David Ahern64aab932011-12-22 11:30:03 -0700483 struct thread *thread = machine__findnew_thread(machine, event->ip.tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200484
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200485 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200486 pr_debug("problem processing %d event, skipping it.\n",
487 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200488 return -1;
489 }
490
David Ahern1424dc92011-03-09 22:23:28 -0700491 if (debug_mode) {
492 if (sample->time < last_timestamp) {
493 pr_err("Samples misordered, previous: %" PRIu64
494 " this: %" PRIu64 "\n", last_timestamp,
495 sample->time);
496 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200497 }
David Ahern1424dc92011-03-09 22:23:28 -0700498 last_timestamp = sample->time;
499 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200500 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000501
David Aherne7984b72011-11-21 10:02:52 -0700502 if (perf_event__preprocess_sample(event, machine, &al, sample, 0) < 0) {
503 pr_err("problem processing %d event, skipping it.\n",
504 event->header.type);
505 return -1;
506 }
507
508 if (al.filtered)
509 return 0;
510
Anton Blanchard5d67be92011-07-04 21:57:50 +1000511 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
512 return 0;
513
Feng Tang73994dc2012-08-08 17:57:52 +0800514 scripting_ops->process_event(event, sample, evsel, machine, &al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200515
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200516 evsel->hists.stats.total_period += sample->period;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200517 return 0;
518}
519
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300520static struct perf_tool perf_script = {
521 .sample = process_sample_event,
522 .mmap = perf_event__process_mmap,
523 .comm = perf_event__process_comm,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300524 .exit = perf_event__process_exit,
525 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300526 .attr = perf_event__process_attr,
527 .event_type = perf_event__process_event_type,
528 .tracing_data = perf_event__process_tracing_data,
529 .build_id = perf_event__process_build_id,
530 .ordered_samples = true,
531 .ordering_requires_timestamps = true,
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200532};
533
Tom Zanussic239da32010-04-01 23:59:18 -0500534extern volatile int session_done;
535
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300536static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -0500537{
538 session_done = 1;
539}
540
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100541static int __cmd_script(struct perf_session *session)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200542{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200543 int ret;
544
Tom Zanussic239da32010-04-01 23:59:18 -0500545 signal(SIGINT, sig_handler);
546
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300547 ret = perf_session__process_events(session, &perf_script);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200548
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200549 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200550 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200551
552 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200553}
554
Tom Zanussi956ffd02009-11-25 01:15:46 -0600555struct script_spec {
556 struct list_head node;
557 struct scripting_ops *ops;
558 char spec[0];
559};
560
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200561static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600562
563static struct script_spec *script_spec__new(const char *spec,
564 struct scripting_ops *ops)
565{
566 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
567
568 if (s != NULL) {
569 strcpy(s->spec, spec);
570 s->ops = ops;
571 }
572
573 return s;
574}
575
Tom Zanussi956ffd02009-11-25 01:15:46 -0600576static void script_spec__add(struct script_spec *s)
577{
578 list_add_tail(&s->node, &script_specs);
579}
580
581static struct script_spec *script_spec__find(const char *spec)
582{
583 struct script_spec *s;
584
585 list_for_each_entry(s, &script_specs, node)
586 if (strcasecmp(s->spec, spec) == 0)
587 return s;
588 return NULL;
589}
590
591static struct script_spec *script_spec__findnew(const char *spec,
592 struct scripting_ops *ops)
593{
594 struct script_spec *s = script_spec__find(spec);
595
596 if (s)
597 return s;
598
599 s = script_spec__new(spec, ops);
600 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900601 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600602
603 script_spec__add(s);
604
605 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600606}
607
608int script_spec_register(const char *spec, struct scripting_ops *ops)
609{
610 struct script_spec *s;
611
612 s = script_spec__find(spec);
613 if (s)
614 return -1;
615
616 s = script_spec__findnew(spec, ops);
617 if (!s)
618 return -1;
619
620 return 0;
621}
622
623static struct scripting_ops *script_spec__lookup(const char *spec)
624{
625 struct script_spec *s = script_spec__find(spec);
626 if (!s)
627 return NULL;
628
629 return s->ops;
630}
631
632static void list_available_languages(void)
633{
634 struct script_spec *s;
635
636 fprintf(stderr, "\n");
637 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100638 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600639
640 list_for_each_entry(s, &script_specs, node)
641 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
642
643 fprintf(stderr, "\n");
644}
645
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300646static int parse_scriptname(const struct option *opt __maybe_unused,
647 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600648{
649 char spec[PATH_MAX];
650 const char *script, *ext;
651 int len;
652
Tom Zanussif526d682010-01-27 02:27:52 -0600653 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600654 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600655 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600656 }
657
658 script = strchr(str, ':');
659 if (script) {
660 len = script - str;
661 if (len >= PATH_MAX) {
662 fprintf(stderr, "invalid language specifier");
663 return -1;
664 }
665 strncpy(spec, str, len);
666 spec[len] = '\0';
667 scripting_ops = script_spec__lookup(spec);
668 if (!scripting_ops) {
669 fprintf(stderr, "invalid language specifier");
670 return -1;
671 }
672 script++;
673 } else {
674 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100675 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600676 if (!ext) {
677 fprintf(stderr, "invalid script extension");
678 return -1;
679 }
680 scripting_ops = script_spec__lookup(++ext);
681 if (!scripting_ops) {
682 fprintf(stderr, "invalid script extension");
683 return -1;
684 }
685 }
686
687 script_name = strdup(script);
688
689 return 0;
690}
691
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300692static int parse_output_fields(const struct option *opt __maybe_unused,
693 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -0700694{
695 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -0500696 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -0600697 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700698 int rc = 0;
699 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700700 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700701
702 if (!str)
703 return -ENOMEM;
704
David Ahern2c9e45f72011-03-17 10:03:21 -0600705 /* first word can state for which event type the user is specifying
706 * the fields. If no type exists, the specified fields apply to all
707 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700708 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600709 tok = strchr(str, ':');
710 if (tok) {
711 *tok = '\0';
712 tok++;
713 if (!strcmp(str, "hw"))
714 type = PERF_TYPE_HARDWARE;
715 else if (!strcmp(str, "sw"))
716 type = PERF_TYPE_SOFTWARE;
717 else if (!strcmp(str, "trace"))
718 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700719 else if (!strcmp(str, "raw"))
720 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600721 else {
722 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100723 rc = -EINVAL;
724 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600725 }
726
727 if (output[type].user_set)
728 pr_warning("Overriding previous field request for %s events.\n",
729 event_type(type));
730
731 output[type].fields = 0;
732 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600733 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600734
735 } else {
736 tok = str;
737 if (strlen(str) == 0) {
738 fprintf(stderr,
739 "Cannot set fields to 'none' for all event types.\n");
740 rc = -EINVAL;
741 goto out;
742 }
743
744 if (output_set_by_user())
745 pr_warning("Overriding previous field request for all events.\n");
746
747 for (j = 0; j < PERF_TYPE_MAX; ++j) {
748 output[j].fields = 0;
749 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600750 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -0600751 }
David Ahern1424dc92011-03-09 22:23:28 -0700752 }
753
David Ahern2c9e45f72011-03-17 10:03:21 -0600754 tok = strtok(tok, ",");
755 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -0700756 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600757 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -0700758 break;
David Ahern745f43e2011-03-09 22:23:26 -0700759 }
760 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600761 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -0700762 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -0600763 goto out;
764 }
765
766 if (type == -1) {
767 /* add user option to all events types for
768 * which it is valid
769 */
770 for (j = 0; j < PERF_TYPE_MAX; ++j) {
771 if (output[j].invalid_fields & all_output_options[i].field) {
772 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
773 all_output_options[i].str, event_type(j));
774 } else
775 output[j].fields |= all_output_options[i].field;
776 }
777 } else {
778 if (output[type].invalid_fields & all_output_options[i].field) {
779 fprintf(stderr, "\'%s\' not valid for %s events.\n",
780 all_output_options[i].str, event_type(type));
781
782 rc = -EINVAL;
783 goto out;
784 }
785 output[type].fields |= all_output_options[i].field;
786 }
787
788 tok = strtok(NULL, ",");
789 }
790
791 if (type >= 0) {
792 if (output[type].fields == 0) {
793 pr_debug("No fields requested for %s type. "
794 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -0700795 }
David Ahern1424dc92011-03-09 22:23:28 -0700796 }
David Ahern745f43e2011-03-09 22:23:26 -0700797
David Ahern2c9e45f72011-03-17 10:03:21 -0600798out:
David Ahern745f43e2011-03-09 22:23:26 -0700799 free(str);
800 return rc;
801}
802
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600803/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
804static int is_directory(const char *base_path, const struct dirent *dent)
805{
806 char path[PATH_MAX];
807 struct stat st;
808
809 sprintf(path, "%s/%s", base_path, dent->d_name);
810 if (stat(path, &st))
811 return 0;
812
813 return S_ISDIR(st.st_mode);
814}
815
816#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600817 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
818 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600819 if ((lang_dirent.d_type == DT_DIR || \
820 (lang_dirent.d_type == DT_UNKNOWN && \
821 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600822 (strcmp(lang_dirent.d_name, ".")) && \
823 (strcmp(lang_dirent.d_name, "..")))
824
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600825#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600826 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
827 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600828 if (script_dirent.d_type != DT_DIR && \
829 (script_dirent.d_type != DT_UNKNOWN || \
830 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600831
832
833#define RECORD_SUFFIX "-record"
834#define REPORT_SUFFIX "-report"
835
836struct script_desc {
837 struct list_head node;
838 char *name;
839 char *half_liner;
840 char *args;
841};
842
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200843static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600844
845static struct script_desc *script_desc__new(const char *name)
846{
847 struct script_desc *s = zalloc(sizeof(*s));
848
Tom Zanussib5b87312010-11-10 08:16:51 -0600849 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600850 s->name = strdup(name);
851
852 return s;
853}
854
855static void script_desc__delete(struct script_desc *s)
856{
857 free(s->name);
Tom Zanussie8719ad2010-11-10 07:52:32 -0600858 free(s->half_liner);
859 free(s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600860 free(s);
861}
862
863static void script_desc__add(struct script_desc *s)
864{
865 list_add_tail(&s->node, &script_descs);
866}
867
868static struct script_desc *script_desc__find(const char *name)
869{
870 struct script_desc *s;
871
872 list_for_each_entry(s, &script_descs, node)
873 if (strcasecmp(s->name, name) == 0)
874 return s;
875 return NULL;
876}
877
878static struct script_desc *script_desc__findnew(const char *name)
879{
880 struct script_desc *s = script_desc__find(name);
881
882 if (s)
883 return s;
884
885 s = script_desc__new(name);
886 if (!s)
887 goto out_delete_desc;
888
889 script_desc__add(s);
890
891 return s;
892
893out_delete_desc:
894 script_desc__delete(s);
895
896 return NULL;
897}
898
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200899static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600900{
901 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200902 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600903
904 if (strlen(str) > suffix_len) {
905 p = str + strlen(str) - suffix_len;
906 if (!strncmp(p, suffix, suffix_len))
907 return p;
908 }
909
910 return NULL;
911}
912
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600913static int read_script_info(struct script_desc *desc, const char *filename)
914{
915 char line[BUFSIZ], *p;
916 FILE *fp;
917
918 fp = fopen(filename, "r");
919 if (!fp)
920 return -1;
921
922 while (fgets(line, sizeof(line), fp)) {
923 p = ltrim(line);
924 if (strlen(p) == 0)
925 continue;
926 if (*p != '#')
927 continue;
928 p++;
929 if (strlen(p) && *p == '!')
930 continue;
931
932 p = ltrim(p);
933 if (strlen(p) && p[strlen(p) - 1] == '\n')
934 p[strlen(p) - 1] = '\0';
935
936 if (!strncmp(p, "description:", strlen("description:"))) {
937 p += strlen("description:");
938 desc->half_liner = strdup(ltrim(p));
939 continue;
940 }
941
942 if (!strncmp(p, "args:", strlen("args:"))) {
943 p += strlen("args:");
944 desc->args = strdup(ltrim(p));
945 continue;
946 }
947 }
948
949 fclose(fp);
950
951 return 0;
952}
953
Robert Richter38efb532011-11-25 11:38:40 +0100954static char *get_script_root(struct dirent *script_dirent, const char *suffix)
955{
956 char *script_root, *str;
957
958 script_root = strdup(script_dirent->d_name);
959 if (!script_root)
960 return NULL;
961
962 str = (char *)ends_with(script_root, suffix);
963 if (!str) {
964 free(script_root);
965 return NULL;
966 }
967
968 *str = '\0';
969 return script_root;
970}
971
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300972static int list_available_scripts(const struct option *opt __maybe_unused,
973 const char *s __maybe_unused,
974 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600975{
976 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
977 char scripts_path[MAXPATHLEN];
978 DIR *scripts_dir, *lang_dir;
979 char script_path[MAXPATHLEN];
980 char lang_path[MAXPATHLEN];
981 struct script_desc *desc;
982 char first_half[BUFSIZ];
983 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600984
985 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
986
987 scripts_dir = opendir(scripts_path);
988 if (!scripts_dir)
989 return -1;
990
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600991 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600992 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
993 lang_dirent.d_name);
994 lang_dir = opendir(lang_path);
995 if (!lang_dir)
996 continue;
997
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600998 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +0100999 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1000 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001001 desc = script_desc__findnew(script_root);
1002 snprintf(script_path, MAXPATHLEN, "%s/%s",
1003 lang_path, script_dirent.d_name);
1004 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001005 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001006 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001007 }
1008 }
1009
1010 fprintf(stdout, "List of available trace scripts:\n");
1011 list_for_each_entry(desc, &script_descs, node) {
1012 sprintf(first_half, "%s %s", desc->name,
1013 desc->args ? desc->args : "");
1014 fprintf(stdout, " %-36s %s\n", first_half,
1015 desc->half_liner ? desc->half_liner : "");
1016 }
1017
1018 exit(0);
1019}
1020
Feng Tange5f37052012-09-07 16:42:26 +08001021/*
Feng Tang49e639e2012-10-30 11:56:03 +08001022 * Some scripts specify the required events in their "xxx-record" file,
1023 * this function will check if the events in perf.data match those
1024 * mentioned in the "xxx-record".
1025 *
1026 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1027 * which is covered well now. And new parsing code should be added to
1028 * cover the future complexing formats like event groups etc.
1029 */
1030static int check_ev_match(char *dir_name, char *scriptname,
1031 struct perf_session *session)
1032{
1033 char filename[MAXPATHLEN], evname[128];
1034 char line[BUFSIZ], *p;
1035 struct perf_evsel *pos;
1036 int match, len;
1037 FILE *fp;
1038
1039 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1040
1041 fp = fopen(filename, "r");
1042 if (!fp)
1043 return -1;
1044
1045 while (fgets(line, sizeof(line), fp)) {
1046 p = ltrim(line);
1047 if (*p == '#')
1048 continue;
1049
1050 while (strlen(p)) {
1051 p = strstr(p, "-e");
1052 if (!p)
1053 break;
1054
1055 p += 2;
1056 p = ltrim(p);
1057 len = strcspn(p, " \t");
1058 if (!len)
1059 break;
1060
1061 snprintf(evname, len + 1, "%s", p);
1062
1063 match = 0;
1064 list_for_each_entry(pos,
1065 &session->evlist->entries, node) {
1066 if (!strcmp(perf_evsel__name(pos), evname)) {
1067 match = 1;
1068 break;
1069 }
1070 }
1071
1072 if (!match) {
1073 fclose(fp);
1074 return -1;
1075 }
1076 }
1077 }
1078
1079 fclose(fp);
1080 return 0;
1081}
1082
1083/*
Feng Tange5f37052012-09-07 16:42:26 +08001084 * Return -1 if none is found, otherwise the actual scripts number.
1085 *
1086 * Currently the only user of this function is the script browser, which
1087 * will list all statically runnable scripts, select one, execute it and
1088 * show the output in a perf browser.
1089 */
1090int find_scripts(char **scripts_array, char **scripts_path_array)
1091{
1092 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001093 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001094 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001095 struct perf_session *session;
Feng Tange5f37052012-09-07 16:42:26 +08001096 char *temp;
1097 int i = 0;
1098
Feng Tang49e639e2012-10-30 11:56:03 +08001099 session = perf_session__new(input_name, O_RDONLY, 0, false, NULL);
1100 if (!session)
1101 return -1;
1102
Feng Tange5f37052012-09-07 16:42:26 +08001103 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1104
1105 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001106 if (!scripts_dir) {
1107 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001108 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001109 }
Feng Tange5f37052012-09-07 16:42:26 +08001110
1111 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1112 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1113 lang_dirent.d_name);
1114#ifdef NO_LIBPERL
1115 if (strstr(lang_path, "perl"))
1116 continue;
1117#endif
1118#ifdef NO_LIBPYTHON
1119 if (strstr(lang_path, "python"))
1120 continue;
1121#endif
1122
1123 lang_dir = opendir(lang_path);
1124 if (!lang_dir)
1125 continue;
1126
1127 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1128 /* Skip those real time scripts: xxxtop.p[yl] */
1129 if (strstr(script_dirent.d_name, "top."))
1130 continue;
1131 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1132 script_dirent.d_name);
1133 temp = strchr(script_dirent.d_name, '.');
1134 snprintf(scripts_array[i],
1135 (temp - script_dirent.d_name) + 1,
1136 "%s", script_dirent.d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001137
1138 if (check_ev_match(lang_path,
1139 scripts_array[i], session))
1140 continue;
1141
Feng Tange5f37052012-09-07 16:42:26 +08001142 i++;
1143 }
Feng Tang49e639e2012-10-30 11:56:03 +08001144 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001145 }
1146
Feng Tang49e639e2012-10-30 11:56:03 +08001147 closedir(scripts_dir);
1148 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001149 return i;
1150}
1151
Tom Zanussi38752942009-12-15 02:53:39 -06001152static char *get_script_path(const char *script_root, const char *suffix)
1153{
1154 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1155 char scripts_path[MAXPATHLEN];
1156 char script_path[MAXPATHLEN];
1157 DIR *scripts_dir, *lang_dir;
1158 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001159 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001160
1161 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1162
1163 scripts_dir = opendir(scripts_path);
1164 if (!scripts_dir)
1165 return NULL;
1166
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001167 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001168 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1169 lang_dirent.d_name);
1170 lang_dir = opendir(lang_path);
1171 if (!lang_dir)
1172 continue;
1173
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001174 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001175 __script_root = get_script_root(&script_dirent, suffix);
1176 if (__script_root && !strcmp(script_root, __script_root)) {
1177 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001178 closedir(lang_dir);
1179 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001180 snprintf(script_path, MAXPATHLEN, "%s/%s",
1181 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001182 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001183 }
1184 free(__script_root);
1185 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001186 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001187 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001188 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001189
Robert Richter38efb532011-11-25 11:38:40 +01001190 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001191}
1192
Tom Zanussib5b87312010-11-10 08:16:51 -06001193static bool is_top_script(const char *script_path)
1194{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001195 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001196}
1197
1198static int has_required_arg(char *script_path)
1199{
1200 struct script_desc *desc;
1201 int n_args = 0;
1202 char *p;
1203
1204 desc = script_desc__new(NULL);
1205
1206 if (read_script_info(desc, script_path))
1207 goto out;
1208
1209 if (!desc->args)
1210 goto out;
1211
1212 for (p = desc->args; *p; p++)
1213 if (*p == '<')
1214 n_args++;
1215out:
1216 script_desc__delete(desc);
1217
1218 return n_args;
1219}
1220
David Ahernd54b1a92012-08-26 12:24:46 -06001221static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001222{
1223 char **__argv = malloc(sizeof(const char *) * argc);
1224
David Ahernd54b1a92012-08-26 12:24:46 -06001225 if (!__argv) {
1226 pr_err("malloc failed\n");
1227 return -1;
1228 }
1229
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001230 memcpy(__argv, argv, sizeof(const char *) * argc);
1231 argc = parse_options(argc, (const char **)__argv, record_options,
1232 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1233 free(__argv);
1234
David Ahernd54b1a92012-08-26 12:24:46 -06001235 system_wide = (argc == 0);
1236
1237 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001238}
1239
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001240int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001241{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001242 bool show_full_info = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001243 char *rec_script_path = NULL;
1244 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001245 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001246 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001247 const char **__argv;
Tom Zanussib5b87312010-11-10 08:16:51 -06001248 int i, j, err;
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001249 const struct option options[] = {
1250 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1251 "dump raw trace in ASCII"),
1252 OPT_INCR('v', "verbose", &verbose,
1253 "be more verbose (show symbol address, etc)"),
1254 OPT_BOOLEAN('L', "Latency", &latency_format,
1255 "show latency attributes (irqs/preemption disabled, etc)"),
1256 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1257 list_available_scripts),
1258 OPT_CALLBACK('s', "script", NULL, "name",
1259 "script file name (lang:script name, script name, or *)",
1260 parse_scriptname),
1261 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
1262 "generate perf-script.xx script in specified language"),
1263 OPT_STRING('i', "input", &input_name, "file", "input file name"),
1264 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1265 "do various checks like samples ordering and lost events"),
1266 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1267 "file", "vmlinux pathname"),
1268 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1269 "file", "kallsyms pathname"),
1270 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1271 "When printing symbols do not display call chain"),
1272 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1273 "Look for files with symbols relative to this directory"),
1274 OPT_CALLBACK('f', "fields", NULL, "str",
1275 "comma separated output fields prepend with 'type:'. "
1276 "Valid types: hw,sw,trace,raw. "
1277 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1278 "addr,symoff", parse_output_fields),
1279 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1280 "system-wide collection from all CPUs"),
1281 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1282 "only consider these symbols"),
1283 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
1284 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1285 "only display events for these comms"),
1286 OPT_BOOLEAN('I', "show-info", &show_full_info,
1287 "display extended information from perf.data file"),
1288 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1289 "Show the path of [kernel.kallsyms]"),
1290 OPT_END()
1291 };
1292 const char * const script_usage[] = {
1293 "perf script [<options>]",
1294 "perf script [<options>] record <script> [<record-options>] <command>",
1295 "perf script [<options>] report <script> [script-args]",
1296 "perf script [<options>] <script> [<record-options>] <command>",
1297 "perf script [<options>] <top-script> [script-args]",
1298 NULL
1299 };
Tom Zanussi38752942009-12-15 02:53:39 -06001300
Tom Zanussib5b87312010-11-10 08:16:51 -06001301 setup_scripting();
1302
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001303 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001304 PARSE_OPT_STOP_AT_NON_OPTION);
1305
1306 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1307 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1308 if (!rec_script_path)
1309 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001310 }
1311
Tom Zanussib5b87312010-11-10 08:16:51 -06001312 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1313 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1314 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001315 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001316 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001317 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001318 return -1;
1319 }
Tom Zanussi38752942009-12-15 02:53:39 -06001320 }
1321
Ben Hutchings44e668c2010-10-10 16:10:03 +01001322 /* make sure PERF_EXEC_PATH is set for scripts */
1323 perf_set_argv_exec_path(perf_exec_path());
1324
Tom Zanussib5b87312010-11-10 08:16:51 -06001325 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001326 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001327 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001328 pid_t pid;
1329
Tom Zanussib5b87312010-11-10 08:16:51 -06001330 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1331 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1332
1333 if (!rec_script_path && !rep_script_path) {
1334 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001335 " script -l for available scripts.\n", argv[0]);
1336 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001337 }
1338
Tom Zanussib5b87312010-11-10 08:16:51 -06001339 if (is_top_script(argv[0])) {
1340 rep_args = argc - 1;
1341 } else {
1342 int rec_args;
1343
1344 rep_args = has_required_arg(rep_script_path);
1345 rec_args = (argc - 1) - rep_args;
1346 if (rec_args < 0) {
1347 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001348 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001349 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001350 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001351 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001352 }
1353
1354 if (pipe(live_pipe) < 0) {
1355 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06001356 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001357 }
1358
1359 pid = fork();
1360 if (pid < 0) {
1361 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06001362 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001363 }
1364
1365 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001366 j = 0;
1367
Tom Zanussia0cccc22010-04-01 23:59:25 -05001368 dup2(live_pipe[1], 1);
1369 close(live_pipe[0]);
1370
Robert Richter317df652011-11-25 15:05:25 +01001371 if (is_top_script(argv[0])) {
1372 system_wide = true;
1373 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06001374 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1375 err = -1;
1376 goto out;
1377 }
Robert Richter317df652011-11-25 15:05:25 +01001378 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001379
1380 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001381 if (!__argv) {
1382 pr_err("malloc failed\n");
1383 err = -ENOMEM;
1384 goto out;
1385 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06001386
Tom Zanussib5b87312010-11-10 08:16:51 -06001387 __argv[j++] = "/bin/sh";
1388 __argv[j++] = rec_script_path;
1389 if (system_wide)
1390 __argv[j++] = "-a";
1391 __argv[j++] = "-q";
1392 __argv[j++] = "-o";
1393 __argv[j++] = "-";
1394 for (i = rep_args + 1; i < argc; i++)
1395 __argv[j++] = argv[i];
1396 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001397
1398 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001399 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001400 exit(-1);
1401 }
1402
1403 dup2(live_pipe[0], 0);
1404 close(live_pipe[1]);
1405
Tom Zanussib5b87312010-11-10 08:16:51 -06001406 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001407 if (!__argv) {
1408 pr_err("malloc failed\n");
1409 err = -ENOMEM;
1410 goto out;
1411 }
1412
Tom Zanussib5b87312010-11-10 08:16:51 -06001413 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001414 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001415 __argv[j++] = rep_script_path;
1416 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001417 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001418 __argv[j++] = "-i";
1419 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001420 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001421
1422 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001423 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001424 exit(-1);
1425 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001426
Tom Zanussib5b87312010-11-10 08:16:51 -06001427 if (rec_script_path)
1428 script_path = rec_script_path;
1429 if (rep_script_path)
1430 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001431
Tom Zanussib5b87312010-11-10 08:16:51 -06001432 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001433 j = 0;
1434
Robert Richter317df652011-11-25 15:05:25 +01001435 if (!rec_script_path)
1436 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06001437 else if (!system_wide) {
1438 if (have_cmd(argc - 1, &argv[1]) != 0) {
1439 err = -1;
1440 goto out;
1441 }
1442 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001443
1444 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001445 if (!__argv) {
1446 pr_err("malloc failed\n");
1447 err = -ENOMEM;
1448 goto out;
1449 }
1450
Tom Zanussib5b87312010-11-10 08:16:51 -06001451 __argv[j++] = "/bin/sh";
1452 __argv[j++] = script_path;
1453 if (system_wide)
1454 __argv[j++] = "-a";
1455 for (i = 2; i < argc; i++)
1456 __argv[j++] = argv[i];
1457 __argv[j++] = NULL;
1458
1459 execvp("/bin/sh", (char **)__argv);
1460 free(__argv);
1461 exit(-1);
1462 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001463
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001464 if (symbol__init() < 0)
1465 return -1;
Tom Zanussicf4fee52010-03-03 01:04:33 -06001466 if (!script_name)
1467 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001468
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001469 session = perf_session__new(input_name, O_RDONLY, 0, false,
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -03001470 &perf_script);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001471 if (session == NULL)
1472 return -ENOMEM;
1473
Anton Blanchard5d67be92011-07-04 21:57:50 +10001474 if (cpu_list) {
1475 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1476 return -1;
1477 }
1478
Tom Zanussibdb71db2013-01-18 13:51:26 -06001479 if (!script_name && !generate_script_lang)
1480 perf_session__fprintf_info(session, stdout, show_full_info);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001481
David Ahern1424dc92011-03-09 22:23:28 -07001482 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001483 symbol_conf.use_callchain = true;
1484 else
1485 symbol_conf.use_callchain = false;
1486
Tom Zanussi956ffd02009-11-25 01:15:46 -06001487 if (generate_script_lang) {
1488 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001489 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001490
David Ahern2c9e45f72011-03-17 10:03:21 -06001491 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001492 fprintf(stderr,
1493 "custom fields not supported for generated scripts");
1494 return -1;
1495 }
1496
Robert Richterefad1412011-12-07 10:02:54 +01001497 input = open(session->filename, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001498 if (input < 0) {
1499 perror("failed to open file");
David Ahernd54b1a92012-08-26 12:24:46 -06001500 return -1;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001501 }
1502
1503 err = fstat(input, &perf_stat);
1504 if (err < 0) {
1505 perror("failed to stat file");
David Ahernd54b1a92012-08-26 12:24:46 -06001506 return -1;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001507 }
1508
1509 if (!perf_stat.st_size) {
1510 fprintf(stderr, "zero-sized file, nothing to do!\n");
David Ahernd54b1a92012-08-26 12:24:46 -06001511 return 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001512 }
1513
1514 scripting_ops = script_spec__lookup(generate_script_lang);
1515 if (!scripting_ops) {
1516 fprintf(stderr, "invalid language specifier");
1517 return -1;
1518 }
1519
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001520 err = scripting_ops->generate_script(session->pevent,
1521 "perf-script");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001522 goto out;
1523 }
1524
1525 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001526 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001527 if (err)
1528 goto out;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001529 pr_debug("perf script started with script %s\n\n", script_name);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001530 }
1531
David Ahern9cbdb702011-04-06 21:54:20 -06001532
1533 err = perf_session__check_output_opt(session);
1534 if (err < 0)
1535 goto out;
1536
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001537 err = __cmd_script(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001538
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001539 perf_session__delete(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001540 cleanup_scripting();
1541out:
1542 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001543}