blob: ee5d6f8b74157013aa1e76f981cc6a545ed57dee [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 Aherna6ffaf92013-08-07 22:50:51 -040069 unsigned int print_ip_opts;
David Ahern2c9e45f72011-03-17 10:03:21 -060070 u64 fields;
71 u64 invalid_fields;
72} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070073
David Ahern2c9e45f72011-03-17 10:03:21 -060074 [PERF_TYPE_HARDWARE] = {
75 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070076
David Ahern2c9e45f72011-03-17 10:03:21 -060077 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
78 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060079 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060080 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060081
82 .invalid_fields = PERF_OUTPUT_TRACE,
83 },
84
85 [PERF_TYPE_SOFTWARE] = {
86 .user_set = false,
87
88 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
89 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060090 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060091 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060092
93 .invalid_fields = PERF_OUTPUT_TRACE,
94 },
95
96 [PERF_TYPE_TRACEPOINT] = {
97 .user_set = false,
98
99 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
100 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
101 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
102 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700103
104 [PERF_TYPE_RAW] = {
105 .user_set = false,
106
107 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
108 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600109 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -0600110 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700111
112 .invalid_fields = PERF_OUTPUT_TRACE,
113 },
David Ahern1424dc92011-03-09 22:23:28 -0700114};
David Ahern745f43e2011-03-09 22:23:26 -0700115
David Ahern2c9e45f72011-03-17 10:03:21 -0600116static bool output_set_by_user(void)
117{
118 int j;
119 for (j = 0; j < PERF_TYPE_MAX; ++j) {
120 if (output[j].user_set)
121 return true;
122 }
123 return false;
124}
David Ahern745f43e2011-03-09 22:23:26 -0700125
David Ahern9cbdb702011-04-06 21:54:20 -0600126static const char *output_field2str(enum perf_output_field field)
127{
128 int i, imax = ARRAY_SIZE(all_output_options);
129 const char *str = "";
130
131 for (i = 0; i < imax; ++i) {
132 if (all_output_options[i].field == field) {
133 str = all_output_options[i].str;
134 break;
135 }
136 }
137 return str;
138}
139
David Ahern2c9e45f72011-03-17 10:03:21 -0600140#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700141
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300142static int perf_evsel__check_stype(struct perf_evsel *evsel,
143 u64 sample_type, const char *sample_msg,
144 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700145{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300146 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600147 int type = attr->type;
148 const char *evname;
149
150 if (attr->sample_type & sample_type)
151 return 0;
152
153 if (output[type].user_set) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300154 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600155 pr_err("Samples for '%s' event do not have %s attribute set. "
156 "Cannot print '%s' field.\n",
157 evname, sample_msg, output_field2str(field));
158 return -1;
159 }
160
161 /* user did not ask for it explicitly so remove from the default list */
162 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300163 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600164 pr_debug("Samples for '%s' event do not have %s attribute set. "
165 "Skipping '%s' field.\n",
166 evname, sample_msg, output_field2str(field));
167
168 return 0;
169}
170
171static int perf_evsel__check_attr(struct perf_evsel *evsel,
172 struct perf_session *session)
173{
174 struct perf_event_attr *attr = &evsel->attr;
175
David Ahern1424dc92011-03-09 22:23:28 -0700176 if (PRINT_FIELD(TRACE) &&
177 !perf_session__has_traces(session, "record -R"))
178 return -EINVAL;
179
David Ahern787bef12011-05-27 14:28:43 -0600180 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300181 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
182 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700183 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600184
David Ahern1424dc92011-03-09 22:23:28 -0700185 if (!no_callchain &&
David Ahern9cbdb702011-04-06 21:54:20 -0600186 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
David Ahern1424dc92011-03-09 22:23:28 -0700187 symbol_conf.use_callchain = false;
188 }
David Ahern7cec0922011-05-30 13:08:23 -0600189
190 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300191 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
192 PERF_OUTPUT_ADDR))
David Ahern7cec0922011-05-30 13:08:23 -0600193 return -EINVAL;
194
195 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
196 pr_err("Display of symbols requested but neither sample IP nor "
197 "sample address\nis selected. Hence, no addresses to convert "
198 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600199 return -EINVAL;
200 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900201 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
202 pr_err("Display of offsets requested but symbol is not"
203 "selected.\n");
204 return -EINVAL;
205 }
David Ahern7cec0922011-05-30 13:08:23 -0600206 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
207 pr_err("Display of DSO requested but neither sample IP nor "
208 "sample address\nis selected. Hence, no addresses to convert "
209 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600210 return -EINVAL;
211 }
David Ahern1424dc92011-03-09 22:23:28 -0700212
213 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300214 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
215 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700216 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700217
218 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300219 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
220 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700221 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700222
223 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300224 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
225 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700226 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600227
228 return 0;
229}
230
231/*
232 * verify all user requested events exist and the samples
233 * have the expected data
234 */
235static int perf_session__check_output_opt(struct perf_session *session)
236{
237 int j;
238 struct perf_evsel *evsel;
David Aherna6ffaf92013-08-07 22:50:51 -0400239 struct perf_event_attr *attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600240
241 for (j = 0; j < PERF_TYPE_MAX; ++j) {
242 evsel = perf_session__find_first_evtype(session, j);
243
244 /*
245 * even if fields is set to 0 (ie., show nothing) event must
246 * exist if user explicitly includes it on the command line
247 */
248 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
249 pr_err("%s events do not exist. "
250 "Remove corresponding -f option to proceed.\n",
251 event_type(j));
252 return -1;
253 }
254
255 if (evsel && output[j].fields &&
256 perf_evsel__check_attr(evsel, session))
257 return -1;
David Aherna6ffaf92013-08-07 22:50:51 -0400258
259 if (evsel == NULL)
260 continue;
261
262 attr = &evsel->attr;
263
264 output[j].print_ip_opts = 0;
265 if (PRINT_FIELD(IP))
266 output[j].print_ip_opts |= PRINT_IP_OPT_IP;
267
268 if (PRINT_FIELD(SYM))
269 output[j].print_ip_opts |= PRINT_IP_OPT_SYM;
270
271 if (PRINT_FIELD(DSO))
272 output[j].print_ip_opts |= PRINT_IP_OPT_DSO;
273
274 if (PRINT_FIELD(SYMOFFSET))
275 output[j].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET;
David Ahern1424dc92011-03-09 22:23:28 -0700276 }
277
278 return 0;
279}
David Ahern745f43e2011-03-09 22:23:26 -0700280
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300281static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700282 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300283 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700284{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300285 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700286 const char *evname = NULL;
287 unsigned long secs;
288 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700289 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700290
David Ahern745f43e2011-03-09 22:23:26 -0700291 if (PRINT_FIELD(COMM)) {
292 if (latency_format)
293 printf("%8.8s ", thread->comm);
David Ahern787bef12011-05-27 14:28:43 -0600294 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
David Ahernc0230b22011-03-09 22:23:27 -0700295 printf("%s ", thread->comm);
David Ahern745f43e2011-03-09 22:23:26 -0700296 else
297 printf("%16s ", thread->comm);
298 }
David Ahernc70c94b2011-03-09 22:23:25 -0700299
David Ahern745f43e2011-03-09 22:23:26 -0700300 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
301 printf("%5d/%-5d ", sample->pid, sample->tid);
302 else if (PRINT_FIELD(PID))
303 printf("%5d ", sample->pid);
304 else if (PRINT_FIELD(TID))
305 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700306
David Ahern745f43e2011-03-09 22:23:26 -0700307 if (PRINT_FIELD(CPU)) {
308 if (latency_format)
309 printf("%3d ", sample->cpu);
310 else
311 printf("[%03d] ", sample->cpu);
312 }
David Ahernc70c94b2011-03-09 22:23:25 -0700313
David Ahern745f43e2011-03-09 22:23:26 -0700314 if (PRINT_FIELD(TIME)) {
315 nsecs = sample->time;
316 secs = nsecs / NSECS_PER_SEC;
317 nsecs -= secs * NSECS_PER_SEC;
318 usecs = nsecs / NSECS_PER_USEC;
319 printf("%5lu.%06lu: ", secs, usecs);
320 }
321
322 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300323 evname = perf_evsel__name(evsel);
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900324 printf("%s: ", evname ? evname : "[unknown]");
David Ahern745f43e2011-03-09 22:23:26 -0700325 }
David Ahernc70c94b2011-03-09 22:23:25 -0700326}
327
Akihiro Nagai95582592012-01-30 13:43:09 +0900328static bool is_bts_event(struct perf_event_attr *attr)
329{
330 return ((attr->type == PERF_TYPE_HARDWARE) &&
331 (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
332 (attr->sample_period == 1));
333}
334
David Ahern7cec0922011-05-30 13:08:23 -0600335static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
336{
337 if ((attr->type == PERF_TYPE_SOFTWARE) &&
338 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
339 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
340 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
341 return true;
342
Akihiro Nagai95582592012-01-30 13:43:09 +0900343 if (is_bts_event(attr))
344 return true;
345
David Ahern7cec0922011-05-30 13:08:23 -0600346 return false;
347}
348
349static void print_sample_addr(union perf_event *event,
350 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200351 struct machine *machine,
David Ahern7cec0922011-05-30 13:08:23 -0600352 struct thread *thread,
353 struct perf_event_attr *attr)
354{
355 struct addr_location al;
356 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
David Ahern7cec0922011-05-30 13:08:23 -0600357
358 printf("%16" PRIx64, sample->addr);
359
360 if (!sample_addr_correlates_sym(attr))
361 return;
362
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200363 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
Adrian Hunter5b7ba822013-08-07 14:38:46 +0300364 sample->addr, &al, NULL);
David Ahern7cec0922011-05-30 13:08:23 -0600365 if (!al.map)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200366 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
Adrian Hunter5b7ba822013-08-07 14:38:46 +0300367 sample->addr, &al, NULL);
David Ahern7cec0922011-05-30 13:08:23 -0600368
369 al.cpu = sample->cpu;
370 al.sym = NULL;
371
372 if (al.map)
373 al.sym = map__find_symbol(al.map, al.addr, NULL);
374
375 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900376 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900377 if (PRINT_FIELD(SYMOFFSET))
378 symbol__fprintf_symname_offs(al.sym, &al, stdout);
379 else
380 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600381 }
382
383 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900384 printf(" (");
385 map__fprintf_dsoname(al.map, stdout);
386 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600387 }
388}
389
Akihiro Nagai95582592012-01-30 13:43:09 +0900390static void print_sample_bts(union perf_event *event,
391 struct perf_sample *sample,
392 struct perf_evsel *evsel,
393 struct machine *machine,
394 struct thread *thread)
395{
396 struct perf_event_attr *attr = &evsel->attr;
397
398 /* print branch_from information */
399 if (PRINT_FIELD(IP)) {
400 if (!symbol_conf.use_callchain)
401 printf(" ");
402 else
403 printf("\n");
Jiri Olsa71ad0f52012-08-07 15:20:46 +0200404 perf_evsel__print_ip(evsel, event, sample, machine,
David Aherna6ffaf92013-08-07 22:50:51 -0400405 output[attr->type].print_ip_opts);
Akihiro Nagai95582592012-01-30 13:43:09 +0900406 }
407
408 printf(" => ");
409
410 /* print branch_to information */
411 if (PRINT_FIELD(ADDR))
412 print_sample_addr(event, sample, machine, thread, attr);
413
414 printf("\n");
415}
416
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300417static void process_event(union perf_event *event, struct perf_sample *sample,
418 struct perf_evsel *evsel, struct machine *machine,
David Ahern2eaa1b42013-07-18 16:06:15 -0600419 struct thread *thread,
420 struct addr_location *al __maybe_unused)
David Ahernbe6d8422011-03-09 22:23:23 -0700421{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300422 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700423
David Ahern2c9e45f72011-03-17 10:03:21 -0600424 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700425 return;
426
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300427 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700428
Akihiro Nagai95582592012-01-30 13:43:09 +0900429 if (is_bts_event(attr)) {
430 print_sample_bts(event, sample, evsel, machine, thread);
431 return;
432 }
433
David Ahern745f43e2011-03-09 22:23:26 -0700434 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300435 event_format__print(evsel->tp_format, sample->cpu,
436 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600437 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200438 print_sample_addr(event, sample, machine, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600439
David Ahern787bef12011-05-27 14:28:43 -0600440 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700441 if (!symbol_conf.use_callchain)
442 printf(" ");
443 else
444 printf("\n");
David Aherna6ffaf92013-08-07 22:50:51 -0400445
Jiri Olsa71ad0f52012-08-07 15:20:46 +0200446 perf_evsel__print_ip(evsel, event, sample, machine,
David Aherna6ffaf92013-08-07 22:50:51 -0400447 output[attr->type].print_ip_opts);
David Ahernc0230b22011-03-09 22:23:27 -0700448 }
449
David Ahernc70c94b2011-03-09 22:23:25 -0700450 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700451}
452
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300453static int default_start_script(const char *script __maybe_unused,
454 int argc __maybe_unused,
455 const char **argv __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600456{
457 return 0;
458}
459
460static int default_stop_script(void)
461{
462 return 0;
463}
464
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300465static int default_generate_script(struct pevent *pevent __maybe_unused,
466 const char *outfile __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600467{
468 return 0;
469}
470
471static struct scripting_ops default_scripting_ops = {
472 .start_script = default_start_script,
473 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700474 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600475 .generate_script = default_generate_script,
476};
477
478static struct scripting_ops *scripting_ops;
479
480static void setup_scripting(void)
481{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600482 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600483 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600484
Tom Zanussi956ffd02009-11-25 01:15:46 -0600485 scripting_ops = &default_scripting_ops;
486}
487
488static int cleanup_scripting(void)
489{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100490 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500491
Tom Zanussi956ffd02009-11-25 01:15:46 -0600492 return scripting_ops->stop_script();
493}
494
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300495static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200496 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200497 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300498 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200499 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200500{
David Aherne7984b72011-11-21 10:02:52 -0700501 struct addr_location al;
David Ahern64aab932011-12-22 11:30:03 -0700502 struct thread *thread = machine__findnew_thread(machine, event->ip.tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200503
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200504 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200505 pr_debug("problem processing %d event, skipping it.\n",
506 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200507 return -1;
508 }
509
David Ahern1424dc92011-03-09 22:23:28 -0700510 if (debug_mode) {
511 if (sample->time < last_timestamp) {
512 pr_err("Samples misordered, previous: %" PRIu64
513 " this: %" PRIu64 "\n", last_timestamp,
514 sample->time);
515 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200516 }
David Ahern1424dc92011-03-09 22:23:28 -0700517 last_timestamp = sample->time;
518 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200519 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000520
David Aherne7984b72011-11-21 10:02:52 -0700521 if (perf_event__preprocess_sample(event, machine, &al, sample, 0) < 0) {
522 pr_err("problem processing %d event, skipping it.\n",
523 event->header.type);
524 return -1;
525 }
526
527 if (al.filtered)
528 return 0;
529
Anton Blanchard5d67be92011-07-04 21:57:50 +1000530 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
531 return 0;
532
David Ahern2eaa1b42013-07-18 16:06:15 -0600533 scripting_ops->process_event(event, sample, evsel, machine, thread, &al);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200534
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200535 evsel->hists.stats.total_period += sample->period;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200536 return 0;
537}
538
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300539static struct perf_tool perf_script = {
540 .sample = process_sample_event,
541 .mmap = perf_event__process_mmap,
542 .comm = perf_event__process_comm,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300543 .exit = perf_event__process_exit,
544 .fork = perf_event__process_fork,
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300545 .attr = perf_event__process_attr,
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300546 .tracing_data = perf_event__process_tracing_data,
547 .build_id = perf_event__process_build_id,
548 .ordered_samples = true,
549 .ordering_requires_timestamps = true,
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200550};
551
Tom Zanussic239da32010-04-01 23:59:18 -0500552extern volatile int session_done;
553
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300554static void sig_handler(int sig __maybe_unused)
Tom Zanussic239da32010-04-01 23:59:18 -0500555{
556 session_done = 1;
557}
558
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100559static int __cmd_script(struct perf_session *session)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200560{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200561 int ret;
562
Tom Zanussic239da32010-04-01 23:59:18 -0500563 signal(SIGINT, sig_handler);
564
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -0300565 ret = perf_session__process_events(session, &perf_script);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200566
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200567 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200568 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200569
570 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200571}
572
Tom Zanussi956ffd02009-11-25 01:15:46 -0600573struct script_spec {
574 struct list_head node;
575 struct scripting_ops *ops;
576 char spec[0];
577};
578
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200579static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600580
581static struct script_spec *script_spec__new(const char *spec,
582 struct scripting_ops *ops)
583{
584 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
585
586 if (s != NULL) {
587 strcpy(s->spec, spec);
588 s->ops = ops;
589 }
590
591 return s;
592}
593
Tom Zanussi956ffd02009-11-25 01:15:46 -0600594static void script_spec__add(struct script_spec *s)
595{
596 list_add_tail(&s->node, &script_specs);
597}
598
599static struct script_spec *script_spec__find(const char *spec)
600{
601 struct script_spec *s;
602
603 list_for_each_entry(s, &script_specs, node)
604 if (strcasecmp(s->spec, spec) == 0)
605 return s;
606 return NULL;
607}
608
609static struct script_spec *script_spec__findnew(const char *spec,
610 struct scripting_ops *ops)
611{
612 struct script_spec *s = script_spec__find(spec);
613
614 if (s)
615 return s;
616
617 s = script_spec__new(spec, ops);
618 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900619 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600620
621 script_spec__add(s);
622
623 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600624}
625
626int script_spec_register(const char *spec, struct scripting_ops *ops)
627{
628 struct script_spec *s;
629
630 s = script_spec__find(spec);
631 if (s)
632 return -1;
633
634 s = script_spec__findnew(spec, ops);
635 if (!s)
636 return -1;
637
638 return 0;
639}
640
641static struct scripting_ops *script_spec__lookup(const char *spec)
642{
643 struct script_spec *s = script_spec__find(spec);
644 if (!s)
645 return NULL;
646
647 return s->ops;
648}
649
650static void list_available_languages(void)
651{
652 struct script_spec *s;
653
654 fprintf(stderr, "\n");
655 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100656 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600657
658 list_for_each_entry(s, &script_specs, node)
659 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
660
661 fprintf(stderr, "\n");
662}
663
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300664static int parse_scriptname(const struct option *opt __maybe_unused,
665 const char *str, int unset __maybe_unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600666{
667 char spec[PATH_MAX];
668 const char *script, *ext;
669 int len;
670
Tom Zanussif526d682010-01-27 02:27:52 -0600671 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600672 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600673 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600674 }
675
676 script = strchr(str, ':');
677 if (script) {
678 len = script - str;
679 if (len >= PATH_MAX) {
680 fprintf(stderr, "invalid language specifier");
681 return -1;
682 }
683 strncpy(spec, str, len);
684 spec[len] = '\0';
685 scripting_ops = script_spec__lookup(spec);
686 if (!scripting_ops) {
687 fprintf(stderr, "invalid language specifier");
688 return -1;
689 }
690 script++;
691 } else {
692 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100693 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600694 if (!ext) {
695 fprintf(stderr, "invalid script extension");
696 return -1;
697 }
698 scripting_ops = script_spec__lookup(++ext);
699 if (!scripting_ops) {
700 fprintf(stderr, "invalid script extension");
701 return -1;
702 }
703 }
704
705 script_name = strdup(script);
706
707 return 0;
708}
709
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300710static int parse_output_fields(const struct option *opt __maybe_unused,
711 const char *arg, int unset __maybe_unused)
David Ahern745f43e2011-03-09 22:23:26 -0700712{
713 char *tok;
Sasha Levin50ca19a2012-12-20 14:11:19 -0500714 int i, imax = ARRAY_SIZE(all_output_options);
David Ahern2c9e45f72011-03-17 10:03:21 -0600715 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700716 int rc = 0;
717 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700718 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700719
720 if (!str)
721 return -ENOMEM;
722
David Ahern2c9e45f72011-03-17 10:03:21 -0600723 /* first word can state for which event type the user is specifying
724 * the fields. If no type exists, the specified fields apply to all
725 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700726 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600727 tok = strchr(str, ':');
728 if (tok) {
729 *tok = '\0';
730 tok++;
731 if (!strcmp(str, "hw"))
732 type = PERF_TYPE_HARDWARE;
733 else if (!strcmp(str, "sw"))
734 type = PERF_TYPE_SOFTWARE;
735 else if (!strcmp(str, "trace"))
736 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700737 else if (!strcmp(str, "raw"))
738 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600739 else {
740 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100741 rc = -EINVAL;
742 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600743 }
744
745 if (output[type].user_set)
746 pr_warning("Overriding previous field request for %s events.\n",
747 event_type(type));
748
749 output[type].fields = 0;
750 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600751 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600752
753 } else {
754 tok = str;
755 if (strlen(str) == 0) {
756 fprintf(stderr,
757 "Cannot set fields to 'none' for all event types.\n");
758 rc = -EINVAL;
759 goto out;
760 }
761
762 if (output_set_by_user())
763 pr_warning("Overriding previous field request for all events.\n");
764
765 for (j = 0; j < PERF_TYPE_MAX; ++j) {
766 output[j].fields = 0;
767 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600768 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -0600769 }
David Ahern1424dc92011-03-09 22:23:28 -0700770 }
771
David Ahern2c9e45f72011-03-17 10:03:21 -0600772 tok = strtok(tok, ",");
773 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -0700774 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600775 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -0700776 break;
David Ahern745f43e2011-03-09 22:23:26 -0700777 }
778 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600779 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -0700780 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -0600781 goto out;
782 }
783
784 if (type == -1) {
785 /* add user option to all events types for
786 * which it is valid
787 */
788 for (j = 0; j < PERF_TYPE_MAX; ++j) {
789 if (output[j].invalid_fields & all_output_options[i].field) {
790 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
791 all_output_options[i].str, event_type(j));
792 } else
793 output[j].fields |= all_output_options[i].field;
794 }
795 } else {
796 if (output[type].invalid_fields & all_output_options[i].field) {
797 fprintf(stderr, "\'%s\' not valid for %s events.\n",
798 all_output_options[i].str, event_type(type));
799
800 rc = -EINVAL;
801 goto out;
802 }
803 output[type].fields |= all_output_options[i].field;
804 }
805
806 tok = strtok(NULL, ",");
807 }
808
809 if (type >= 0) {
810 if (output[type].fields == 0) {
811 pr_debug("No fields requested for %s type. "
812 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -0700813 }
David Ahern1424dc92011-03-09 22:23:28 -0700814 }
David Ahern745f43e2011-03-09 22:23:26 -0700815
David Ahern2c9e45f72011-03-17 10:03:21 -0600816out:
David Ahern745f43e2011-03-09 22:23:26 -0700817 free(str);
818 return rc;
819}
820
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600821/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
822static int is_directory(const char *base_path, const struct dirent *dent)
823{
824 char path[PATH_MAX];
825 struct stat st;
826
827 sprintf(path, "%s/%s", base_path, dent->d_name);
828 if (stat(path, &st))
829 return 0;
830
831 return S_ISDIR(st.st_mode);
832}
833
834#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600835 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
836 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600837 if ((lang_dirent.d_type == DT_DIR || \
838 (lang_dirent.d_type == DT_UNKNOWN && \
839 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600840 (strcmp(lang_dirent.d_name, ".")) && \
841 (strcmp(lang_dirent.d_name, "..")))
842
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600843#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600844 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
845 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600846 if (script_dirent.d_type != DT_DIR && \
847 (script_dirent.d_type != DT_UNKNOWN || \
848 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600849
850
851#define RECORD_SUFFIX "-record"
852#define REPORT_SUFFIX "-report"
853
854struct script_desc {
855 struct list_head node;
856 char *name;
857 char *half_liner;
858 char *args;
859};
860
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200861static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600862
863static struct script_desc *script_desc__new(const char *name)
864{
865 struct script_desc *s = zalloc(sizeof(*s));
866
Tom Zanussib5b87312010-11-10 08:16:51 -0600867 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600868 s->name = strdup(name);
869
870 return s;
871}
872
873static void script_desc__delete(struct script_desc *s)
874{
875 free(s->name);
Tom Zanussie8719ad2010-11-10 07:52:32 -0600876 free(s->half_liner);
877 free(s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600878 free(s);
879}
880
881static void script_desc__add(struct script_desc *s)
882{
883 list_add_tail(&s->node, &script_descs);
884}
885
886static struct script_desc *script_desc__find(const char *name)
887{
888 struct script_desc *s;
889
890 list_for_each_entry(s, &script_descs, node)
891 if (strcasecmp(s->name, name) == 0)
892 return s;
893 return NULL;
894}
895
896static struct script_desc *script_desc__findnew(const char *name)
897{
898 struct script_desc *s = script_desc__find(name);
899
900 if (s)
901 return s;
902
903 s = script_desc__new(name);
904 if (!s)
905 goto out_delete_desc;
906
907 script_desc__add(s);
908
909 return s;
910
911out_delete_desc:
912 script_desc__delete(s);
913
914 return NULL;
915}
916
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200917static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600918{
919 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200920 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600921
922 if (strlen(str) > suffix_len) {
923 p = str + strlen(str) - suffix_len;
924 if (!strncmp(p, suffix, suffix_len))
925 return p;
926 }
927
928 return NULL;
929}
930
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600931static int read_script_info(struct script_desc *desc, const char *filename)
932{
933 char line[BUFSIZ], *p;
934 FILE *fp;
935
936 fp = fopen(filename, "r");
937 if (!fp)
938 return -1;
939
940 while (fgets(line, sizeof(line), fp)) {
941 p = ltrim(line);
942 if (strlen(p) == 0)
943 continue;
944 if (*p != '#')
945 continue;
946 p++;
947 if (strlen(p) && *p == '!')
948 continue;
949
950 p = ltrim(p);
951 if (strlen(p) && p[strlen(p) - 1] == '\n')
952 p[strlen(p) - 1] = '\0';
953
954 if (!strncmp(p, "description:", strlen("description:"))) {
955 p += strlen("description:");
956 desc->half_liner = strdup(ltrim(p));
957 continue;
958 }
959
960 if (!strncmp(p, "args:", strlen("args:"))) {
961 p += strlen("args:");
962 desc->args = strdup(ltrim(p));
963 continue;
964 }
965 }
966
967 fclose(fp);
968
969 return 0;
970}
971
Robert Richter38efb532011-11-25 11:38:40 +0100972static char *get_script_root(struct dirent *script_dirent, const char *suffix)
973{
974 char *script_root, *str;
975
976 script_root = strdup(script_dirent->d_name);
977 if (!script_root)
978 return NULL;
979
980 str = (char *)ends_with(script_root, suffix);
981 if (!str) {
982 free(script_root);
983 return NULL;
984 }
985
986 *str = '\0';
987 return script_root;
988}
989
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300990static int list_available_scripts(const struct option *opt __maybe_unused,
991 const char *s __maybe_unused,
992 int unset __maybe_unused)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600993{
994 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
995 char scripts_path[MAXPATHLEN];
996 DIR *scripts_dir, *lang_dir;
997 char script_path[MAXPATHLEN];
998 char lang_path[MAXPATHLEN];
999 struct script_desc *desc;
1000 char first_half[BUFSIZ];
1001 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001002
1003 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1004
1005 scripts_dir = opendir(scripts_path);
1006 if (!scripts_dir)
1007 return -1;
1008
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001009 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001010 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1011 lang_dirent.d_name);
1012 lang_dir = opendir(lang_path);
1013 if (!lang_dir)
1014 continue;
1015
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001016 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001017 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1018 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001019 desc = script_desc__findnew(script_root);
1020 snprintf(script_path, MAXPATHLEN, "%s/%s",
1021 lang_path, script_dirent.d_name);
1022 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001023 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001024 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001025 }
1026 }
1027
1028 fprintf(stdout, "List of available trace scripts:\n");
1029 list_for_each_entry(desc, &script_descs, node) {
1030 sprintf(first_half, "%s %s", desc->name,
1031 desc->args ? desc->args : "");
1032 fprintf(stdout, " %-36s %s\n", first_half,
1033 desc->half_liner ? desc->half_liner : "");
1034 }
1035
1036 exit(0);
1037}
1038
Feng Tange5f37052012-09-07 16:42:26 +08001039/*
Feng Tang49e639e2012-10-30 11:56:03 +08001040 * Some scripts specify the required events in their "xxx-record" file,
1041 * this function will check if the events in perf.data match those
1042 * mentioned in the "xxx-record".
1043 *
1044 * Fixme: All existing "xxx-record" are all in good formats "-e event ",
1045 * which is covered well now. And new parsing code should be added to
1046 * cover the future complexing formats like event groups etc.
1047 */
1048static int check_ev_match(char *dir_name, char *scriptname,
1049 struct perf_session *session)
1050{
1051 char filename[MAXPATHLEN], evname[128];
1052 char line[BUFSIZ], *p;
1053 struct perf_evsel *pos;
1054 int match, len;
1055 FILE *fp;
1056
1057 sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
1058
1059 fp = fopen(filename, "r");
1060 if (!fp)
1061 return -1;
1062
1063 while (fgets(line, sizeof(line), fp)) {
1064 p = ltrim(line);
1065 if (*p == '#')
1066 continue;
1067
1068 while (strlen(p)) {
1069 p = strstr(p, "-e");
1070 if (!p)
1071 break;
1072
1073 p += 2;
1074 p = ltrim(p);
1075 len = strcspn(p, " \t");
1076 if (!len)
1077 break;
1078
1079 snprintf(evname, len + 1, "%s", p);
1080
1081 match = 0;
1082 list_for_each_entry(pos,
1083 &session->evlist->entries, node) {
1084 if (!strcmp(perf_evsel__name(pos), evname)) {
1085 match = 1;
1086 break;
1087 }
1088 }
1089
1090 if (!match) {
1091 fclose(fp);
1092 return -1;
1093 }
1094 }
1095 }
1096
1097 fclose(fp);
1098 return 0;
1099}
1100
1101/*
Feng Tange5f37052012-09-07 16:42:26 +08001102 * Return -1 if none is found, otherwise the actual scripts number.
1103 *
1104 * Currently the only user of this function is the script browser, which
1105 * will list all statically runnable scripts, select one, execute it and
1106 * show the output in a perf browser.
1107 */
1108int find_scripts(char **scripts_array, char **scripts_path_array)
1109{
1110 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
Feng Tang49e639e2012-10-30 11:56:03 +08001111 char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
Feng Tange5f37052012-09-07 16:42:26 +08001112 DIR *scripts_dir, *lang_dir;
Feng Tang49e639e2012-10-30 11:56:03 +08001113 struct perf_session *session;
Feng Tange5f37052012-09-07 16:42:26 +08001114 char *temp;
1115 int i = 0;
1116
Feng Tang49e639e2012-10-30 11:56:03 +08001117 session = perf_session__new(input_name, O_RDONLY, 0, false, NULL);
1118 if (!session)
1119 return -1;
1120
Feng Tange5f37052012-09-07 16:42:26 +08001121 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1122
1123 scripts_dir = opendir(scripts_path);
Feng Tang49e639e2012-10-30 11:56:03 +08001124 if (!scripts_dir) {
1125 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001126 return -1;
Feng Tang49e639e2012-10-30 11:56:03 +08001127 }
Feng Tange5f37052012-09-07 16:42:26 +08001128
1129 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
1130 snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
1131 lang_dirent.d_name);
1132#ifdef NO_LIBPERL
1133 if (strstr(lang_path, "perl"))
1134 continue;
1135#endif
1136#ifdef NO_LIBPYTHON
1137 if (strstr(lang_path, "python"))
1138 continue;
1139#endif
1140
1141 lang_dir = opendir(lang_path);
1142 if (!lang_dir)
1143 continue;
1144
1145 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
1146 /* Skip those real time scripts: xxxtop.p[yl] */
1147 if (strstr(script_dirent.d_name, "top."))
1148 continue;
1149 sprintf(scripts_path_array[i], "%s/%s", lang_path,
1150 script_dirent.d_name);
1151 temp = strchr(script_dirent.d_name, '.');
1152 snprintf(scripts_array[i],
1153 (temp - script_dirent.d_name) + 1,
1154 "%s", script_dirent.d_name);
Feng Tang49e639e2012-10-30 11:56:03 +08001155
1156 if (check_ev_match(lang_path,
1157 scripts_array[i], session))
1158 continue;
1159
Feng Tange5f37052012-09-07 16:42:26 +08001160 i++;
1161 }
Feng Tang49e639e2012-10-30 11:56:03 +08001162 closedir(lang_dir);
Feng Tange5f37052012-09-07 16:42:26 +08001163 }
1164
Feng Tang49e639e2012-10-30 11:56:03 +08001165 closedir(scripts_dir);
1166 perf_session__delete(session);
Feng Tange5f37052012-09-07 16:42:26 +08001167 return i;
1168}
1169
Tom Zanussi38752942009-12-15 02:53:39 -06001170static char *get_script_path(const char *script_root, const char *suffix)
1171{
1172 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1173 char scripts_path[MAXPATHLEN];
1174 char script_path[MAXPATHLEN];
1175 DIR *scripts_dir, *lang_dir;
1176 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001177 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001178
1179 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1180
1181 scripts_dir = opendir(scripts_path);
1182 if (!scripts_dir)
1183 return NULL;
1184
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001185 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001186 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1187 lang_dirent.d_name);
1188 lang_dir = opendir(lang_path);
1189 if (!lang_dir)
1190 continue;
1191
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001192 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001193 __script_root = get_script_root(&script_dirent, suffix);
1194 if (__script_root && !strcmp(script_root, __script_root)) {
1195 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001196 closedir(lang_dir);
1197 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001198 snprintf(script_path, MAXPATHLEN, "%s/%s",
1199 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001200 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001201 }
1202 free(__script_root);
1203 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001204 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001205 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001206 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001207
Robert Richter38efb532011-11-25 11:38:40 +01001208 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001209}
1210
Tom Zanussib5b87312010-11-10 08:16:51 -06001211static bool is_top_script(const char *script_path)
1212{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001213 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001214}
1215
1216static int has_required_arg(char *script_path)
1217{
1218 struct script_desc *desc;
1219 int n_args = 0;
1220 char *p;
1221
1222 desc = script_desc__new(NULL);
1223
1224 if (read_script_info(desc, script_path))
1225 goto out;
1226
1227 if (!desc->args)
1228 goto out;
1229
1230 for (p = desc->args; *p; p++)
1231 if (*p == '<')
1232 n_args++;
1233out:
1234 script_desc__delete(desc);
1235
1236 return n_args;
1237}
1238
David Ahernd54b1a92012-08-26 12:24:46 -06001239static int have_cmd(int argc, const char **argv)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001240{
1241 char **__argv = malloc(sizeof(const char *) * argc);
1242
David Ahernd54b1a92012-08-26 12:24:46 -06001243 if (!__argv) {
1244 pr_err("malloc failed\n");
1245 return -1;
1246 }
1247
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001248 memcpy(__argv, argv, sizeof(const char *) * argc);
1249 argc = parse_options(argc, (const char **)__argv, record_options,
1250 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1251 free(__argv);
1252
David Ahernd54b1a92012-08-26 12:24:46 -06001253 system_wide = (argc == 0);
1254
1255 return 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001256}
1257
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001258int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001259{
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001260 bool show_full_info = false;
Tom Zanussib5b87312010-11-10 08:16:51 -06001261 char *rec_script_path = NULL;
1262 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001263 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001264 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001265 const char **__argv;
Tom Zanussib5b87312010-11-10 08:16:51 -06001266 int i, j, err;
Arnaldo Carvalho de Melo69b64702012-10-01 15:20:58 -03001267 const struct option options[] = {
1268 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1269 "dump raw trace in ASCII"),
1270 OPT_INCR('v', "verbose", &verbose,
1271 "be more verbose (show symbol address, etc)"),
1272 OPT_BOOLEAN('L', "Latency", &latency_format,
1273 "show latency attributes (irqs/preemption disabled, etc)"),
1274 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1275 list_available_scripts),
1276 OPT_CALLBACK('s', "script", NULL, "name",
1277 "script file name (lang:script name, script name, or *)",
1278 parse_scriptname),
1279 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
1280 "generate perf-script.xx script in specified language"),
1281 OPT_STRING('i', "input", &input_name, "file", "input file name"),
1282 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1283 "do various checks like samples ordering and lost events"),
1284 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1285 "file", "vmlinux pathname"),
1286 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1287 "file", "kallsyms pathname"),
1288 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1289 "When printing symbols do not display call chain"),
1290 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1291 "Look for files with symbols relative to this directory"),
1292 OPT_CALLBACK('f', "fields", NULL, "str",
1293 "comma separated output fields prepend with 'type:'. "
1294 "Valid types: hw,sw,trace,raw. "
1295 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1296 "addr,symoff", parse_output_fields),
1297 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1298 "system-wide collection from all CPUs"),
1299 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1300 "only consider these symbols"),
1301 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
1302 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1303 "only display events for these comms"),
1304 OPT_BOOLEAN('I', "show-info", &show_full_info,
1305 "display extended information from perf.data file"),
1306 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1307 "Show the path of [kernel.kallsyms]"),
1308 OPT_END()
1309 };
1310 const char * const script_usage[] = {
1311 "perf script [<options>]",
1312 "perf script [<options>] record <script> [<record-options>] <command>",
1313 "perf script [<options>] report <script> [script-args]",
1314 "perf script [<options>] <script> [<record-options>] <command>",
1315 "perf script [<options>] <top-script> [script-args]",
1316 NULL
1317 };
Tom Zanussi38752942009-12-15 02:53:39 -06001318
Tom Zanussib5b87312010-11-10 08:16:51 -06001319 setup_scripting();
1320
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001321 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001322 PARSE_OPT_STOP_AT_NON_OPTION);
1323
1324 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1325 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1326 if (!rec_script_path)
1327 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001328 }
1329
Tom Zanussib5b87312010-11-10 08:16:51 -06001330 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1331 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1332 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001333 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001334 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001335 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001336 return -1;
1337 }
Tom Zanussi38752942009-12-15 02:53:39 -06001338 }
1339
Ben Hutchings44e668c2010-10-10 16:10:03 +01001340 /* make sure PERF_EXEC_PATH is set for scripts */
1341 perf_set_argv_exec_path(perf_exec_path());
1342
Tom Zanussib5b87312010-11-10 08:16:51 -06001343 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001344 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001345 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001346 pid_t pid;
1347
Tom Zanussib5b87312010-11-10 08:16:51 -06001348 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1349 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1350
1351 if (!rec_script_path && !rep_script_path) {
1352 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001353 " script -l for available scripts.\n", argv[0]);
1354 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001355 }
1356
Tom Zanussib5b87312010-11-10 08:16:51 -06001357 if (is_top_script(argv[0])) {
1358 rep_args = argc - 1;
1359 } else {
1360 int rec_args;
1361
1362 rep_args = has_required_arg(rep_script_path);
1363 rec_args = (argc - 1) - rep_args;
1364 if (rec_args < 0) {
1365 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001366 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001367 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001368 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001369 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001370 }
1371
1372 if (pipe(live_pipe) < 0) {
1373 perror("failed to create pipe");
David Ahernd54b1a92012-08-26 12:24:46 -06001374 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001375 }
1376
1377 pid = fork();
1378 if (pid < 0) {
1379 perror("failed to fork");
David Ahernd54b1a92012-08-26 12:24:46 -06001380 return -1;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001381 }
1382
1383 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001384 j = 0;
1385
Tom Zanussia0cccc22010-04-01 23:59:25 -05001386 dup2(live_pipe[1], 1);
1387 close(live_pipe[0]);
1388
Robert Richter317df652011-11-25 15:05:25 +01001389 if (is_top_script(argv[0])) {
1390 system_wide = true;
1391 } else if (!system_wide) {
David Ahernd54b1a92012-08-26 12:24:46 -06001392 if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
1393 err = -1;
1394 goto out;
1395 }
Robert Richter317df652011-11-25 15:05:25 +01001396 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001397
1398 __argv = malloc((argc + 6) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001399 if (!__argv) {
1400 pr_err("malloc failed\n");
1401 err = -ENOMEM;
1402 goto out;
1403 }
Tom Zanussie8719ad2010-11-10 07:52:32 -06001404
Tom Zanussib5b87312010-11-10 08:16:51 -06001405 __argv[j++] = "/bin/sh";
1406 __argv[j++] = rec_script_path;
1407 if (system_wide)
1408 __argv[j++] = "-a";
1409 __argv[j++] = "-q";
1410 __argv[j++] = "-o";
1411 __argv[j++] = "-";
1412 for (i = rep_args + 1; i < argc; i++)
1413 __argv[j++] = argv[i];
1414 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001415
1416 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001417 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001418 exit(-1);
1419 }
1420
1421 dup2(live_pipe[0], 0);
1422 close(live_pipe[1]);
1423
Tom Zanussib5b87312010-11-10 08:16:51 -06001424 __argv = malloc((argc + 4) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001425 if (!__argv) {
1426 pr_err("malloc failed\n");
1427 err = -ENOMEM;
1428 goto out;
1429 }
1430
Tom Zanussib5b87312010-11-10 08:16:51 -06001431 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001432 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001433 __argv[j++] = rep_script_path;
1434 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001435 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001436 __argv[j++] = "-i";
1437 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001438 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001439
1440 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001441 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001442 exit(-1);
1443 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001444
Tom Zanussib5b87312010-11-10 08:16:51 -06001445 if (rec_script_path)
1446 script_path = rec_script_path;
1447 if (rep_script_path)
1448 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001449
Tom Zanussib5b87312010-11-10 08:16:51 -06001450 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001451 j = 0;
1452
Robert Richter317df652011-11-25 15:05:25 +01001453 if (!rec_script_path)
1454 system_wide = false;
David Ahernd54b1a92012-08-26 12:24:46 -06001455 else if (!system_wide) {
1456 if (have_cmd(argc - 1, &argv[1]) != 0) {
1457 err = -1;
1458 goto out;
1459 }
1460 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001461
1462 __argv = malloc((argc + 2) * sizeof(const char *));
David Ahernd54b1a92012-08-26 12:24:46 -06001463 if (!__argv) {
1464 pr_err("malloc failed\n");
1465 err = -ENOMEM;
1466 goto out;
1467 }
1468
Tom Zanussib5b87312010-11-10 08:16:51 -06001469 __argv[j++] = "/bin/sh";
1470 __argv[j++] = script_path;
1471 if (system_wide)
1472 __argv[j++] = "-a";
1473 for (i = 2; i < argc; i++)
1474 __argv[j++] = argv[i];
1475 __argv[j++] = NULL;
1476
1477 execvp("/bin/sh", (char **)__argv);
1478 free(__argv);
1479 exit(-1);
1480 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001481
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001482 if (symbol__init() < 0)
1483 return -1;
Tom Zanussicf4fee52010-03-03 01:04:33 -06001484 if (!script_name)
1485 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001486
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001487 session = perf_session__new(input_name, O_RDONLY, 0, false,
Arnaldo Carvalho de Melo97822432012-08-07 23:50:21 -03001488 &perf_script);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001489 if (session == NULL)
1490 return -ENOMEM;
1491
Anton Blanchard5d67be92011-07-04 21:57:50 +10001492 if (cpu_list) {
1493 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1494 return -1;
1495 }
1496
Tom Zanussibdb71db2013-01-18 13:51:26 -06001497 if (!script_name && !generate_script_lang)
1498 perf_session__fprintf_info(session, stdout, show_full_info);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001499
David Ahern1424dc92011-03-09 22:23:28 -07001500 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001501 symbol_conf.use_callchain = true;
1502 else
1503 symbol_conf.use_callchain = false;
1504
Tom Zanussi956ffd02009-11-25 01:15:46 -06001505 if (generate_script_lang) {
1506 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001507 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001508
David Ahern2c9e45f72011-03-17 10:03:21 -06001509 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001510 fprintf(stderr,
1511 "custom fields not supported for generated scripts");
1512 return -1;
1513 }
1514
Robert Richterefad1412011-12-07 10:02:54 +01001515 input = open(session->filename, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001516 if (input < 0) {
1517 perror("failed to open file");
David Ahernd54b1a92012-08-26 12:24:46 -06001518 return -1;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001519 }
1520
1521 err = fstat(input, &perf_stat);
1522 if (err < 0) {
1523 perror("failed to stat file");
David Ahernd54b1a92012-08-26 12:24:46 -06001524 return -1;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001525 }
1526
1527 if (!perf_stat.st_size) {
1528 fprintf(stderr, "zero-sized file, nothing to do!\n");
David Ahernd54b1a92012-08-26 12:24:46 -06001529 return 0;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001530 }
1531
1532 scripting_ops = script_spec__lookup(generate_script_lang);
1533 if (!scripting_ops) {
1534 fprintf(stderr, "invalid language specifier");
1535 return -1;
1536 }
1537
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001538 err = scripting_ops->generate_script(session->pevent,
1539 "perf-script");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001540 goto out;
1541 }
1542
1543 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001544 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001545 if (err)
1546 goto out;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001547 pr_debug("perf script started with script %s\n\n", script_name);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001548 }
1549
David Ahern9cbdb702011-04-06 21:54:20 -06001550
1551 err = perf_session__check_output_opt(session);
1552 if (err < 0)
1553 goto out;
1554
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001555 err = __cmd_script(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001556
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001557 perf_session__delete(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001558 cleanup_scripting();
1559out:
1560 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001561}