blob: 8dba4707b03f437c41a8adad6d50a2772946182c [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"
Anton Blanchard5d67be92011-07-04 21:57:50 +100017#include <linux/bitmap.h>
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +020018
Tom Zanussi956ffd02009-11-25 01:15:46 -060019static char const *script_name;
20static char const *generate_script_lang;
Frederic Weisbeckerffabd992010-05-27 16:27:47 +020021static bool debug_mode;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +020022static u64 last_timestamp;
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +020023static u64 nr_unordered;
Tom Zanussi34c86ea2010-11-10 08:15:43 -060024extern const struct option record_options[];
David Ahernc0230b22011-03-09 22:23:27 -070025static bool no_callchain;
Stephane Eranianfbe96f22011-09-30 15:40:40 +020026static bool show_full_info;
Robert Richter317df652011-11-25 15:05:25 +010027static bool system_wide;
Anton Blanchard5d67be92011-07-04 21:57:50 +100028static const char *cpu_list;
29static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Tom Zanussi956ffd02009-11-25 01:15:46 -060030
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -030031struct perf_script {
32 struct perf_tool tool;
33 struct perf_session *session;
34};
35
David Ahern745f43e2011-03-09 22:23:26 -070036enum perf_output_field {
37 PERF_OUTPUT_COMM = 1U << 0,
38 PERF_OUTPUT_TID = 1U << 1,
39 PERF_OUTPUT_PID = 1U << 2,
40 PERF_OUTPUT_TIME = 1U << 3,
41 PERF_OUTPUT_CPU = 1U << 4,
42 PERF_OUTPUT_EVNAME = 1U << 5,
43 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060044 PERF_OUTPUT_IP = 1U << 7,
45 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060046 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060047 PERF_OUTPUT_ADDR = 1U << 10,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090048 PERF_OUTPUT_SYMOFFSET = 1U << 11,
David Ahern745f43e2011-03-09 22:23:26 -070049};
50
51struct output_option {
52 const char *str;
53 enum perf_output_field field;
54} all_output_options[] = {
55 {.str = "comm", .field = PERF_OUTPUT_COMM},
56 {.str = "tid", .field = PERF_OUTPUT_TID},
57 {.str = "pid", .field = PERF_OUTPUT_PID},
58 {.str = "time", .field = PERF_OUTPUT_TIME},
59 {.str = "cpu", .field = PERF_OUTPUT_CPU},
60 {.str = "event", .field = PERF_OUTPUT_EVNAME},
61 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060062 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070063 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060064 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060065 {.str = "addr", .field = PERF_OUTPUT_ADDR},
Akihiro Nagaia978f2a2012-01-30 13:43:15 +090066 {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
David Ahern745f43e2011-03-09 22:23:26 -070067};
68
69/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060070static struct {
71 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060072 bool wildcard_set;
David Ahern2c9e45f72011-03-17 10:03:21 -060073 u64 fields;
74 u64 invalid_fields;
75} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070076
David Ahern2c9e45f72011-03-17 10:03:21 -060077 [PERF_TYPE_HARDWARE] = {
78 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070079
David Ahern2c9e45f72011-03-17 10:03:21 -060080 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
81 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060082 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060083 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060084
85 .invalid_fields = PERF_OUTPUT_TRACE,
86 },
87
88 [PERF_TYPE_SOFTWARE] = {
89 .user_set = false,
90
91 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
92 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060093 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060094 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060095
96 .invalid_fields = PERF_OUTPUT_TRACE,
97 },
98
99 [PERF_TYPE_TRACEPOINT] = {
100 .user_set = false,
101
102 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
103 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
104 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
105 },
Arun Sharma0817a6a2011-04-14 10:38:18 -0700106
107 [PERF_TYPE_RAW] = {
108 .user_set = false,
109
110 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
111 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600112 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -0600113 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700114
115 .invalid_fields = PERF_OUTPUT_TRACE,
116 },
David Ahern1424dc92011-03-09 22:23:28 -0700117};
David Ahern745f43e2011-03-09 22:23:26 -0700118
David Ahern2c9e45f72011-03-17 10:03:21 -0600119static bool output_set_by_user(void)
120{
121 int j;
122 for (j = 0; j < PERF_TYPE_MAX; ++j) {
123 if (output[j].user_set)
124 return true;
125 }
126 return false;
127}
David Ahern745f43e2011-03-09 22:23:26 -0700128
David Ahern9cbdb702011-04-06 21:54:20 -0600129static const char *output_field2str(enum perf_output_field field)
130{
131 int i, imax = ARRAY_SIZE(all_output_options);
132 const char *str = "";
133
134 for (i = 0; i < imax; ++i) {
135 if (all_output_options[i].field == field) {
136 str = all_output_options[i].str;
137 break;
138 }
139 }
140 return str;
141}
142
David Ahern2c9e45f72011-03-17 10:03:21 -0600143#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700144
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300145static int perf_evsel__check_stype(struct perf_evsel *evsel,
146 u64 sample_type, const char *sample_msg,
147 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700148{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300149 struct perf_event_attr *attr = &evsel->attr;
David Ahern9cbdb702011-04-06 21:54:20 -0600150 int type = attr->type;
151 const char *evname;
152
153 if (attr->sample_type & sample_type)
154 return 0;
155
156 if (output[type].user_set) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300157 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600158 pr_err("Samples for '%s' event do not have %s attribute set. "
159 "Cannot print '%s' field.\n",
160 evname, sample_msg, output_field2str(field));
161 return -1;
162 }
163
164 /* user did not ask for it explicitly so remove from the default list */
165 output[type].fields &= ~field;
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300166 evname = perf_evsel__name(evsel);
David Ahern9cbdb702011-04-06 21:54:20 -0600167 pr_debug("Samples for '%s' event do not have %s attribute set. "
168 "Skipping '%s' field.\n",
169 evname, sample_msg, output_field2str(field));
170
171 return 0;
172}
173
174static int perf_evsel__check_attr(struct perf_evsel *evsel,
175 struct perf_session *session)
176{
177 struct perf_event_attr *attr = &evsel->attr;
178
David Ahern1424dc92011-03-09 22:23:28 -0700179 if (PRINT_FIELD(TRACE) &&
180 !perf_session__has_traces(session, "record -R"))
181 return -EINVAL;
182
David Ahern787bef12011-05-27 14:28:43 -0600183 if (PRINT_FIELD(IP)) {
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300184 if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
185 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700186 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600187
David Ahern1424dc92011-03-09 22:23:28 -0700188 if (!no_callchain &&
David Ahern9cbdb702011-04-06 21:54:20 -0600189 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
David Ahern1424dc92011-03-09 22:23:28 -0700190 symbol_conf.use_callchain = false;
191 }
David Ahern7cec0922011-05-30 13:08:23 -0600192
193 if (PRINT_FIELD(ADDR) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300194 perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
195 PERF_OUTPUT_ADDR))
David Ahern7cec0922011-05-30 13:08:23 -0600196 return -EINVAL;
197
198 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
199 pr_err("Display of symbols requested but neither sample IP nor "
200 "sample address\nis selected. Hence, no addresses to convert "
201 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600202 return -EINVAL;
203 }
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900204 if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
205 pr_err("Display of offsets requested but symbol is not"
206 "selected.\n");
207 return -EINVAL;
208 }
David Ahern7cec0922011-05-30 13:08:23 -0600209 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
210 pr_err("Display of DSO requested but neither sample IP nor "
211 "sample address\nis selected. Hence, no addresses to convert "
212 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600213 return -EINVAL;
214 }
David Ahern1424dc92011-03-09 22:23:28 -0700215
216 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300217 perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
218 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700219 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700220
221 if (PRINT_FIELD(TIME) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300222 perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
223 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700224 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700225
226 if (PRINT_FIELD(CPU) &&
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300227 perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
228 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700229 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600230
231 return 0;
232}
233
234/*
235 * verify all user requested events exist and the samples
236 * have the expected data
237 */
238static int perf_session__check_output_opt(struct perf_session *session)
239{
240 int j;
241 struct perf_evsel *evsel;
242
243 for (j = 0; j < PERF_TYPE_MAX; ++j) {
244 evsel = perf_session__find_first_evtype(session, j);
245
246 /*
247 * even if fields is set to 0 (ie., show nothing) event must
248 * exist if user explicitly includes it on the command line
249 */
250 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
251 pr_err("%s events do not exist. "
252 "Remove corresponding -f option to proceed.\n",
253 event_type(j));
254 return -1;
255 }
256
257 if (evsel && output[j].fields &&
258 perf_evsel__check_attr(evsel, session))
259 return -1;
David Ahern1424dc92011-03-09 22:23:28 -0700260 }
261
262 return 0;
263}
David Ahern745f43e2011-03-09 22:23:26 -0700264
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300265static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700266 struct thread *thread,
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300267 struct perf_evsel *evsel)
David Ahernc70c94b2011-03-09 22:23:25 -0700268{
Arnaldo Carvalho de Melo5bff01f2012-06-12 13:35:44 -0300269 struct perf_event_attr *attr = &evsel->attr;
David Ahernc70c94b2011-03-09 22:23:25 -0700270 const char *evname = NULL;
271 unsigned long secs;
272 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700273 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700274
David Ahern745f43e2011-03-09 22:23:26 -0700275 if (PRINT_FIELD(COMM)) {
276 if (latency_format)
277 printf("%8.8s ", thread->comm);
David Ahern787bef12011-05-27 14:28:43 -0600278 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
David Ahernc0230b22011-03-09 22:23:27 -0700279 printf("%s ", thread->comm);
David Ahern745f43e2011-03-09 22:23:26 -0700280 else
281 printf("%16s ", thread->comm);
282 }
David Ahernc70c94b2011-03-09 22:23:25 -0700283
David Ahern745f43e2011-03-09 22:23:26 -0700284 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
285 printf("%5d/%-5d ", sample->pid, sample->tid);
286 else if (PRINT_FIELD(PID))
287 printf("%5d ", sample->pid);
288 else if (PRINT_FIELD(TID))
289 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700290
David Ahern745f43e2011-03-09 22:23:26 -0700291 if (PRINT_FIELD(CPU)) {
292 if (latency_format)
293 printf("%3d ", sample->cpu);
294 else
295 printf("[%03d] ", sample->cpu);
296 }
David Ahernc70c94b2011-03-09 22:23:25 -0700297
David Ahern745f43e2011-03-09 22:23:26 -0700298 if (PRINT_FIELD(TIME)) {
299 nsecs = sample->time;
300 secs = nsecs / NSECS_PER_SEC;
301 nsecs -= secs * NSECS_PER_SEC;
302 usecs = nsecs / NSECS_PER_USEC;
303 printf("%5lu.%06lu: ", secs, usecs);
304 }
305
306 if (PRINT_FIELD(EVNAME)) {
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300307 evname = perf_evsel__name(evsel);
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900308 printf("%s: ", evname ? evname : "[unknown]");
David Ahern745f43e2011-03-09 22:23:26 -0700309 }
David Ahernc70c94b2011-03-09 22:23:25 -0700310}
311
Akihiro Nagai95582592012-01-30 13:43:09 +0900312static bool is_bts_event(struct perf_event_attr *attr)
313{
314 return ((attr->type == PERF_TYPE_HARDWARE) &&
315 (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
316 (attr->sample_period == 1));
317}
318
David Ahern7cec0922011-05-30 13:08:23 -0600319static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
320{
321 if ((attr->type == PERF_TYPE_SOFTWARE) &&
322 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
323 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
324 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
325 return true;
326
Akihiro Nagai95582592012-01-30 13:43:09 +0900327 if (is_bts_event(attr))
328 return true;
329
David Ahern7cec0922011-05-30 13:08:23 -0600330 return false;
331}
332
333static void print_sample_addr(union perf_event *event,
334 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200335 struct machine *machine,
David Ahern7cec0922011-05-30 13:08:23 -0600336 struct thread *thread,
337 struct perf_event_attr *attr)
338{
339 struct addr_location al;
340 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
David Ahern7cec0922011-05-30 13:08:23 -0600341
342 printf("%16" PRIx64, sample->addr);
343
344 if (!sample_addr_correlates_sym(attr))
345 return;
346
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200347 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
348 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600349 if (!al.map)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200350 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
351 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600352
353 al.cpu = sample->cpu;
354 al.sym = NULL;
355
356 if (al.map)
357 al.sym = map__find_symbol(al.map, al.addr, NULL);
358
359 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900360 printf(" ");
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900361 if (PRINT_FIELD(SYMOFFSET))
362 symbol__fprintf_symname_offs(al.sym, &al, stdout);
363 else
364 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600365 }
366
367 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900368 printf(" (");
369 map__fprintf_dsoname(al.map, stdout);
370 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600371 }
372}
373
Akihiro Nagai95582592012-01-30 13:43:09 +0900374static void print_sample_bts(union perf_event *event,
375 struct perf_sample *sample,
376 struct perf_evsel *evsel,
377 struct machine *machine,
378 struct thread *thread)
379{
380 struct perf_event_attr *attr = &evsel->attr;
381
382 /* print branch_from information */
383 if (PRINT_FIELD(IP)) {
384 if (!symbol_conf.use_callchain)
385 printf(" ");
386 else
387 printf("\n");
Jiri Olsaa9c34a92012-06-11 15:20:03 +0200388 perf_event__print_ip(event, sample, machine,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900389 PRINT_FIELD(SYM), PRINT_FIELD(DSO),
390 PRINT_FIELD(SYMOFFSET));
Akihiro Nagai95582592012-01-30 13:43:09 +0900391 }
392
393 printf(" => ");
394
395 /* print branch_to information */
396 if (PRINT_FIELD(ADDR))
397 print_sample_addr(event, sample, machine, thread, attr);
398
399 printf("\n");
400}
401
David Ahernbe6d8422011-03-09 22:23:23 -0700402static void process_event(union perf_event *event __unused,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300403 struct pevent *pevent __unused,
David Ahernbe6d8422011-03-09 22:23:23 -0700404 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300405 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200406 struct machine *machine,
David Ahernbe6d8422011-03-09 22:23:23 -0700407 struct thread *thread)
408{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300409 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700410
David Ahern2c9e45f72011-03-17 10:03:21 -0600411 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700412 return;
413
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300414 print_sample_start(sample, thread, evsel);
David Ahern745f43e2011-03-09 22:23:26 -0700415
Akihiro Nagai95582592012-01-30 13:43:09 +0900416 if (is_bts_event(attr)) {
417 print_sample_bts(event, sample, evsel, machine, thread);
418 return;
419 }
420
David Ahern745f43e2011-03-09 22:23:26 -0700421 if (PRINT_FIELD(TRACE))
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300422 event_format__print(evsel->tp_format, sample->cpu,
423 sample->raw_data, sample->raw_size);
David Ahern7cec0922011-05-30 13:08:23 -0600424 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200425 print_sample_addr(event, sample, machine, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600426
David Ahern787bef12011-05-27 14:28:43 -0600427 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700428 if (!symbol_conf.use_callchain)
429 printf(" ");
430 else
431 printf("\n");
Jiri Olsaa9c34a92012-06-11 15:20:03 +0200432 perf_event__print_ip(event, sample, machine,
Akihiro Nagaia978f2a2012-01-30 13:43:15 +0900433 PRINT_FIELD(SYM), PRINT_FIELD(DSO),
434 PRINT_FIELD(SYMOFFSET));
David Ahernc0230b22011-03-09 22:23:27 -0700435 }
436
David Ahernc70c94b2011-03-09 22:23:25 -0700437 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700438}
439
Tom Zanussi586bc5c2009-12-15 02:53:35 -0600440static int default_start_script(const char *script __unused,
441 int argc __unused,
442 const char **argv __unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600443{
444 return 0;
445}
446
447static int default_stop_script(void)
448{
449 return 0;
450}
451
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300452static int default_generate_script(struct pevent *pevent __unused,
453 const char *outfile __unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600454{
455 return 0;
456}
457
458static struct scripting_ops default_scripting_ops = {
459 .start_script = default_start_script,
460 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700461 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600462 .generate_script = default_generate_script,
463};
464
465static struct scripting_ops *scripting_ops;
466
467static void setup_scripting(void)
468{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600469 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600470 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600471
Tom Zanussi956ffd02009-11-25 01:15:46 -0600472 scripting_ops = &default_scripting_ops;
473}
474
475static int cleanup_scripting(void)
476{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100477 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500478
Tom Zanussi956ffd02009-11-25 01:15:46 -0600479 return scripting_ops->stop_script();
480}
481
Robert Richterefad1412011-12-07 10:02:54 +0100482static const char *input_name;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200483
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200484static int process_sample_event(struct perf_tool *tool __used,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200485 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200486 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300487 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200488 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200489{
David Aherne7984b72011-11-21 10:02:52 -0700490 struct addr_location al;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300491 struct perf_script *scr = container_of(tool, struct perf_script, tool);
David Ahern64aab932011-12-22 11:30:03 -0700492 struct thread *thread = machine__findnew_thread(machine, event->ip.tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200493
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200494 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200495 pr_debug("problem processing %d event, skipping it.\n",
496 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200497 return -1;
498 }
499
David Ahern1424dc92011-03-09 22:23:28 -0700500 if (debug_mode) {
501 if (sample->time < last_timestamp) {
502 pr_err("Samples misordered, previous: %" PRIu64
503 " this: %" PRIu64 "\n", last_timestamp,
504 sample->time);
505 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200506 }
David Ahern1424dc92011-03-09 22:23:28 -0700507 last_timestamp = sample->time;
508 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200509 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000510
David Aherne7984b72011-11-21 10:02:52 -0700511 if (perf_event__preprocess_sample(event, machine, &al, sample, 0) < 0) {
512 pr_err("problem processing %d event, skipping it.\n",
513 event->header.type);
514 return -1;
515 }
516
517 if (al.filtered)
518 return 0;
519
Anton Blanchard5d67be92011-07-04 21:57:50 +1000520 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
521 return 0;
522
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300523 scripting_ops->process_event(event, scr->session->pevent,
524 sample, evsel, machine, thread);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200525
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200526 evsel->hists.stats.total_period += sample->period;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200527 return 0;
528}
529
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300530static struct perf_script perf_script = {
531 .tool = {
532 .sample = process_sample_event,
533 .mmap = perf_event__process_mmap,
534 .comm = perf_event__process_comm,
535 .exit = perf_event__process_task,
536 .fork = perf_event__process_task,
537 .attr = perf_event__process_attr,
538 .event_type = perf_event__process_event_type,
539 .tracing_data = perf_event__process_tracing_data,
540 .build_id = perf_event__process_build_id,
541 .ordered_samples = true,
542 .ordering_requires_timestamps = true,
543 },
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200544};
545
Tom Zanussic239da32010-04-01 23:59:18 -0500546extern volatile int session_done;
547
548static void sig_handler(int sig __unused)
549{
550 session_done = 1;
551}
552
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100553static int __cmd_script(struct perf_session *session)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200554{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200555 int ret;
556
Tom Zanussic239da32010-04-01 23:59:18 -0500557 signal(SIGINT, sig_handler);
558
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -0300559 ret = perf_session__process_events(session, &perf_script.tool);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200560
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200561 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200562 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200563
564 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200565}
566
Tom Zanussi956ffd02009-11-25 01:15:46 -0600567struct script_spec {
568 struct list_head node;
569 struct scripting_ops *ops;
570 char spec[0];
571};
572
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200573static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600574
575static struct script_spec *script_spec__new(const char *spec,
576 struct scripting_ops *ops)
577{
578 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
579
580 if (s != NULL) {
581 strcpy(s->spec, spec);
582 s->ops = ops;
583 }
584
585 return s;
586}
587
Tom Zanussi956ffd02009-11-25 01:15:46 -0600588static void script_spec__add(struct script_spec *s)
589{
590 list_add_tail(&s->node, &script_specs);
591}
592
593static struct script_spec *script_spec__find(const char *spec)
594{
595 struct script_spec *s;
596
597 list_for_each_entry(s, &script_specs, node)
598 if (strcasecmp(s->spec, spec) == 0)
599 return s;
600 return NULL;
601}
602
603static struct script_spec *script_spec__findnew(const char *spec,
604 struct scripting_ops *ops)
605{
606 struct script_spec *s = script_spec__find(spec);
607
608 if (s)
609 return s;
610
611 s = script_spec__new(spec, ops);
612 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900613 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600614
615 script_spec__add(s);
616
617 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600618}
619
620int script_spec_register(const char *spec, struct scripting_ops *ops)
621{
622 struct script_spec *s;
623
624 s = script_spec__find(spec);
625 if (s)
626 return -1;
627
628 s = script_spec__findnew(spec, ops);
629 if (!s)
630 return -1;
631
632 return 0;
633}
634
635static struct scripting_ops *script_spec__lookup(const char *spec)
636{
637 struct script_spec *s = script_spec__find(spec);
638 if (!s)
639 return NULL;
640
641 return s->ops;
642}
643
644static void list_available_languages(void)
645{
646 struct script_spec *s;
647
648 fprintf(stderr, "\n");
649 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100650 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600651
652 list_for_each_entry(s, &script_specs, node)
653 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
654
655 fprintf(stderr, "\n");
656}
657
658static int parse_scriptname(const struct option *opt __used,
659 const char *str, int unset __used)
660{
661 char spec[PATH_MAX];
662 const char *script, *ext;
663 int len;
664
Tom Zanussif526d682010-01-27 02:27:52 -0600665 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600666 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600667 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600668 }
669
670 script = strchr(str, ':');
671 if (script) {
672 len = script - str;
673 if (len >= PATH_MAX) {
674 fprintf(stderr, "invalid language specifier");
675 return -1;
676 }
677 strncpy(spec, str, len);
678 spec[len] = '\0';
679 scripting_ops = script_spec__lookup(spec);
680 if (!scripting_ops) {
681 fprintf(stderr, "invalid language specifier");
682 return -1;
683 }
684 script++;
685 } else {
686 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100687 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600688 if (!ext) {
689 fprintf(stderr, "invalid script extension");
690 return -1;
691 }
692 scripting_ops = script_spec__lookup(++ext);
693 if (!scripting_ops) {
694 fprintf(stderr, "invalid script extension");
695 return -1;
696 }
697 }
698
699 script_name = strdup(script);
700
701 return 0;
702}
703
David Ahern745f43e2011-03-09 22:23:26 -0700704static int parse_output_fields(const struct option *opt __used,
705 const char *arg, int unset __used)
706{
707 char *tok;
708 int i, imax = sizeof(all_output_options) / sizeof(struct output_option);
David Ahern2c9e45f72011-03-17 10:03:21 -0600709 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700710 int rc = 0;
711 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700712 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700713
714 if (!str)
715 return -ENOMEM;
716
David Ahern2c9e45f72011-03-17 10:03:21 -0600717 /* first word can state for which event type the user is specifying
718 * the fields. If no type exists, the specified fields apply to all
719 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700720 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600721 tok = strchr(str, ':');
722 if (tok) {
723 *tok = '\0';
724 tok++;
725 if (!strcmp(str, "hw"))
726 type = PERF_TYPE_HARDWARE;
727 else if (!strcmp(str, "sw"))
728 type = PERF_TYPE_SOFTWARE;
729 else if (!strcmp(str, "trace"))
730 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700731 else if (!strcmp(str, "raw"))
732 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600733 else {
734 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100735 rc = -EINVAL;
736 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600737 }
738
739 if (output[type].user_set)
740 pr_warning("Overriding previous field request for %s events.\n",
741 event_type(type));
742
743 output[type].fields = 0;
744 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600745 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600746
747 } else {
748 tok = str;
749 if (strlen(str) == 0) {
750 fprintf(stderr,
751 "Cannot set fields to 'none' for all event types.\n");
752 rc = -EINVAL;
753 goto out;
754 }
755
756 if (output_set_by_user())
757 pr_warning("Overriding previous field request for all events.\n");
758
759 for (j = 0; j < PERF_TYPE_MAX; ++j) {
760 output[j].fields = 0;
761 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600762 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -0600763 }
David Ahern1424dc92011-03-09 22:23:28 -0700764 }
765
David Ahern2c9e45f72011-03-17 10:03:21 -0600766 tok = strtok(tok, ",");
767 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -0700768 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600769 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -0700770 break;
David Ahern745f43e2011-03-09 22:23:26 -0700771 }
772 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600773 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -0700774 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -0600775 goto out;
776 }
777
778 if (type == -1) {
779 /* add user option to all events types for
780 * which it is valid
781 */
782 for (j = 0; j < PERF_TYPE_MAX; ++j) {
783 if (output[j].invalid_fields & all_output_options[i].field) {
784 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
785 all_output_options[i].str, event_type(j));
786 } else
787 output[j].fields |= all_output_options[i].field;
788 }
789 } else {
790 if (output[type].invalid_fields & all_output_options[i].field) {
791 fprintf(stderr, "\'%s\' not valid for %s events.\n",
792 all_output_options[i].str, event_type(type));
793
794 rc = -EINVAL;
795 goto out;
796 }
797 output[type].fields |= all_output_options[i].field;
798 }
799
800 tok = strtok(NULL, ",");
801 }
802
803 if (type >= 0) {
804 if (output[type].fields == 0) {
805 pr_debug("No fields requested for %s type. "
806 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -0700807 }
David Ahern1424dc92011-03-09 22:23:28 -0700808 }
David Ahern745f43e2011-03-09 22:23:26 -0700809
David Ahern2c9e45f72011-03-17 10:03:21 -0600810out:
David Ahern745f43e2011-03-09 22:23:26 -0700811 free(str);
812 return rc;
813}
814
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600815/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
816static int is_directory(const char *base_path, const struct dirent *dent)
817{
818 char path[PATH_MAX];
819 struct stat st;
820
821 sprintf(path, "%s/%s", base_path, dent->d_name);
822 if (stat(path, &st))
823 return 0;
824
825 return S_ISDIR(st.st_mode);
826}
827
828#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600829 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
830 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600831 if ((lang_dirent.d_type == DT_DIR || \
832 (lang_dirent.d_type == DT_UNKNOWN && \
833 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600834 (strcmp(lang_dirent.d_name, ".")) && \
835 (strcmp(lang_dirent.d_name, "..")))
836
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600837#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600838 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
839 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600840 if (script_dirent.d_type != DT_DIR && \
841 (script_dirent.d_type != DT_UNKNOWN || \
842 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600843
844
845#define RECORD_SUFFIX "-record"
846#define REPORT_SUFFIX "-report"
847
848struct script_desc {
849 struct list_head node;
850 char *name;
851 char *half_liner;
852 char *args;
853};
854
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200855static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600856
857static struct script_desc *script_desc__new(const char *name)
858{
859 struct script_desc *s = zalloc(sizeof(*s));
860
Tom Zanussib5b87312010-11-10 08:16:51 -0600861 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600862 s->name = strdup(name);
863
864 return s;
865}
866
867static void script_desc__delete(struct script_desc *s)
868{
869 free(s->name);
Tom Zanussie8719ad2010-11-10 07:52:32 -0600870 free(s->half_liner);
871 free(s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600872 free(s);
873}
874
875static void script_desc__add(struct script_desc *s)
876{
877 list_add_tail(&s->node, &script_descs);
878}
879
880static struct script_desc *script_desc__find(const char *name)
881{
882 struct script_desc *s;
883
884 list_for_each_entry(s, &script_descs, node)
885 if (strcasecmp(s->name, name) == 0)
886 return s;
887 return NULL;
888}
889
890static struct script_desc *script_desc__findnew(const char *name)
891{
892 struct script_desc *s = script_desc__find(name);
893
894 if (s)
895 return s;
896
897 s = script_desc__new(name);
898 if (!s)
899 goto out_delete_desc;
900
901 script_desc__add(s);
902
903 return s;
904
905out_delete_desc:
906 script_desc__delete(s);
907
908 return NULL;
909}
910
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200911static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600912{
913 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200914 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600915
916 if (strlen(str) > suffix_len) {
917 p = str + strlen(str) - suffix_len;
918 if (!strncmp(p, suffix, suffix_len))
919 return p;
920 }
921
922 return NULL;
923}
924
925static char *ltrim(char *str)
926{
927 int len = strlen(str);
928
929 while (len && isspace(*str)) {
930 len--;
931 str++;
932 }
933
934 return str;
935}
936
937static int read_script_info(struct script_desc *desc, const char *filename)
938{
939 char line[BUFSIZ], *p;
940 FILE *fp;
941
942 fp = fopen(filename, "r");
943 if (!fp)
944 return -1;
945
946 while (fgets(line, sizeof(line), fp)) {
947 p = ltrim(line);
948 if (strlen(p) == 0)
949 continue;
950 if (*p != '#')
951 continue;
952 p++;
953 if (strlen(p) && *p == '!')
954 continue;
955
956 p = ltrim(p);
957 if (strlen(p) && p[strlen(p) - 1] == '\n')
958 p[strlen(p) - 1] = '\0';
959
960 if (!strncmp(p, "description:", strlen("description:"))) {
961 p += strlen("description:");
962 desc->half_liner = strdup(ltrim(p));
963 continue;
964 }
965
966 if (!strncmp(p, "args:", strlen("args:"))) {
967 p += strlen("args:");
968 desc->args = strdup(ltrim(p));
969 continue;
970 }
971 }
972
973 fclose(fp);
974
975 return 0;
976}
977
Robert Richter38efb532011-11-25 11:38:40 +0100978static char *get_script_root(struct dirent *script_dirent, const char *suffix)
979{
980 char *script_root, *str;
981
982 script_root = strdup(script_dirent->d_name);
983 if (!script_root)
984 return NULL;
985
986 str = (char *)ends_with(script_root, suffix);
987 if (!str) {
988 free(script_root);
989 return NULL;
990 }
991
992 *str = '\0';
993 return script_root;
994}
995
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600996static int list_available_scripts(const struct option *opt __used,
997 const char *s __used, int unset __used)
998{
999 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1000 char scripts_path[MAXPATHLEN];
1001 DIR *scripts_dir, *lang_dir;
1002 char script_path[MAXPATHLEN];
1003 char lang_path[MAXPATHLEN];
1004 struct script_desc *desc;
1005 char first_half[BUFSIZ];
1006 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001007
1008 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1009
1010 scripts_dir = opendir(scripts_path);
1011 if (!scripts_dir)
1012 return -1;
1013
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001014 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001015 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1016 lang_dirent.d_name);
1017 lang_dir = opendir(lang_path);
1018 if (!lang_dir)
1019 continue;
1020
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001021 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001022 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
1023 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001024 desc = script_desc__findnew(script_root);
1025 snprintf(script_path, MAXPATHLEN, "%s/%s",
1026 lang_path, script_dirent.d_name);
1027 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +01001028 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001029 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001030 }
1031 }
1032
1033 fprintf(stdout, "List of available trace scripts:\n");
1034 list_for_each_entry(desc, &script_descs, node) {
1035 sprintf(first_half, "%s %s", desc->name,
1036 desc->args ? desc->args : "");
1037 fprintf(stdout, " %-36s %s\n", first_half,
1038 desc->half_liner ? desc->half_liner : "");
1039 }
1040
1041 exit(0);
1042}
1043
Tom Zanussi38752942009-12-15 02:53:39 -06001044static char *get_script_path(const char *script_root, const char *suffix)
1045{
1046 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
1047 char scripts_path[MAXPATHLEN];
1048 char script_path[MAXPATHLEN];
1049 DIR *scripts_dir, *lang_dir;
1050 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +01001051 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -06001052
1053 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
1054
1055 scripts_dir = opendir(scripts_path);
1056 if (!scripts_dir)
1057 return NULL;
1058
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001059 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001060 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1061 lang_dirent.d_name);
1062 lang_dir = opendir(lang_path);
1063 if (!lang_dir)
1064 continue;
1065
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001066 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001067 __script_root = get_script_root(&script_dirent, suffix);
1068 if (__script_root && !strcmp(script_root, __script_root)) {
1069 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001070 closedir(lang_dir);
1071 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001072 snprintf(script_path, MAXPATHLEN, "%s/%s",
1073 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001074 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001075 }
1076 free(__script_root);
1077 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001078 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001079 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001080 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001081
Robert Richter38efb532011-11-25 11:38:40 +01001082 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001083}
1084
Tom Zanussib5b87312010-11-10 08:16:51 -06001085static bool is_top_script(const char *script_path)
1086{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001087 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001088}
1089
1090static int has_required_arg(char *script_path)
1091{
1092 struct script_desc *desc;
1093 int n_args = 0;
1094 char *p;
1095
1096 desc = script_desc__new(NULL);
1097
1098 if (read_script_info(desc, script_path))
1099 goto out;
1100
1101 if (!desc->args)
1102 goto out;
1103
1104 for (p = desc->args; *p; p++)
1105 if (*p == '<')
1106 n_args++;
1107out:
1108 script_desc__delete(desc);
1109
1110 return n_args;
1111}
1112
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001113static const char * const script_usage[] = {
1114 "perf script [<options>]",
1115 "perf script [<options>] record <script> [<record-options>] <command>",
1116 "perf script [<options>] report <script> [script-args]",
1117 "perf script [<options>] <script> [<record-options>] <command>",
1118 "perf script [<options>] <top-script> [script-args]",
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001119 NULL
1120};
1121
1122static const struct option options[] = {
1123 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1124 "dump raw trace in ASCII"),
Ian Munsiec0555642010-04-13 18:37:33 +10001125 OPT_INCR('v', "verbose", &verbose,
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001126 "be more verbose (show symbol address, etc)"),
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001127 OPT_BOOLEAN('L', "Latency", &latency_format,
Steven Rostedtcda48462009-10-14 15:43:42 -04001128 "show latency attributes (irqs/preemption disabled, etc)"),
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001129 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1130 list_available_scripts),
Tom Zanussi956ffd02009-11-25 01:15:46 -06001131 OPT_CALLBACK('s', "script", NULL, "name",
1132 "script file name (lang:script name, script name, or *)",
1133 parse_scriptname),
1134 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001135 "generate perf-script.xx script in specified language"),
Hitoshi Mitake408f0d12010-01-22 22:45:29 +09001136 OPT_STRING('i', "input", &input_name, "file",
1137 "input file name"),
Frederic Weisbeckerffabd992010-05-27 16:27:47 +02001138 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1139 "do various checks like samples ordering and lost events"),
David Ahernc0230b22011-03-09 22:23:27 -07001140 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1141 "file", "vmlinux pathname"),
1142 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1143 "file", "kallsyms pathname"),
1144 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1145 "When printing symbols do not display call chain"),
1146 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1147 "Look for files with symbols relative to this directory"),
David Ahern745f43e2011-03-09 22:23:26 -07001148 OPT_CALLBACK('f', "fields", NULL, "str",
Akihiro Nagaia978f2a2012-01-30 13:43:15 +09001149 "comma separated output fields prepend with 'type:'. "
1150 "Valid types: hw,sw,trace,raw. "
1151 "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
1152 "addr,symoff",
David Ahern745f43e2011-03-09 22:23:26 -07001153 parse_output_fields),
Robert Richter317df652011-11-25 15:05:25 +01001154 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1155 "system-wide collection from all CPUs"),
David Ahernc8e66722011-11-13 11:30:08 -07001156 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
David Aherne7984b72011-11-21 10:02:52 -07001157 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1158 "only display events for these comms"),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001159 OPT_BOOLEAN('I', "show-info", &show_full_info,
1160 "display extended information from perf.data file"),
Akihiro Nagai0bc8d202012-01-30 13:43:20 +09001161 OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
1162 "Show the path of [kernel.kallsyms]"),
1163
Masami Hiramatsu19096292009-08-21 14:56:03 -04001164 OPT_END()
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001165};
1166
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001167static bool have_cmd(int argc, const char **argv)
1168{
1169 char **__argv = malloc(sizeof(const char *) * argc);
1170
1171 if (!__argv)
1172 die("malloc");
1173 memcpy(__argv, argv, sizeof(const char *) * argc);
1174 argc = parse_options(argc, (const char **)__argv, record_options,
1175 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1176 free(__argv);
1177
1178 return argc != 0;
1179}
1180
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001181int cmd_script(int argc, const char **argv, const char *prefix __used)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001182{
Tom Zanussib5b87312010-11-10 08:16:51 -06001183 char *rec_script_path = NULL;
1184 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001185 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001186 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001187 const char **__argv;
Tom Zanussib5b87312010-11-10 08:16:51 -06001188 int i, j, err;
Tom Zanussi38752942009-12-15 02:53:39 -06001189
Tom Zanussib5b87312010-11-10 08:16:51 -06001190 setup_scripting();
1191
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001192 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001193 PARSE_OPT_STOP_AT_NON_OPTION);
1194
1195 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1196 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1197 if (!rec_script_path)
1198 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001199 }
1200
Tom Zanussib5b87312010-11-10 08:16:51 -06001201 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1202 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1203 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001204 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001205 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001206 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001207 return -1;
1208 }
Tom Zanussi38752942009-12-15 02:53:39 -06001209 }
1210
Ben Hutchings44e668c2010-10-10 16:10:03 +01001211 /* make sure PERF_EXEC_PATH is set for scripts */
1212 perf_set_argv_exec_path(perf_exec_path());
1213
Tom Zanussib5b87312010-11-10 08:16:51 -06001214 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001215 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001216 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001217 pid_t pid;
1218
Tom Zanussib5b87312010-11-10 08:16:51 -06001219 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1220 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1221
1222 if (!rec_script_path && !rep_script_path) {
1223 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001224 " script -l for available scripts.\n", argv[0]);
1225 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001226 }
1227
Tom Zanussib5b87312010-11-10 08:16:51 -06001228 if (is_top_script(argv[0])) {
1229 rep_args = argc - 1;
1230 } else {
1231 int rec_args;
1232
1233 rep_args = has_required_arg(rep_script_path);
1234 rec_args = (argc - 1) - rep_args;
1235 if (rec_args < 0) {
1236 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001237 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001238 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001239 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001240 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001241 }
1242
1243 if (pipe(live_pipe) < 0) {
1244 perror("failed to create pipe");
1245 exit(-1);
1246 }
1247
1248 pid = fork();
1249 if (pid < 0) {
1250 perror("failed to fork");
1251 exit(-1);
1252 }
1253
1254 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001255 j = 0;
1256
Tom Zanussia0cccc22010-04-01 23:59:25 -05001257 dup2(live_pipe[1], 1);
1258 close(live_pipe[0]);
1259
Robert Richter317df652011-11-25 15:05:25 +01001260 if (is_top_script(argv[0])) {
1261 system_wide = true;
1262 } else if (!system_wide) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001263 system_wide = !have_cmd(argc - rep_args,
1264 &argv[rep_args]);
Robert Richter317df652011-11-25 15:05:25 +01001265 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001266
1267 __argv = malloc((argc + 6) * sizeof(const char *));
Tom Zanussie8719ad2010-11-10 07:52:32 -06001268 if (!__argv)
1269 die("malloc");
1270
Tom Zanussib5b87312010-11-10 08:16:51 -06001271 __argv[j++] = "/bin/sh";
1272 __argv[j++] = rec_script_path;
1273 if (system_wide)
1274 __argv[j++] = "-a";
1275 __argv[j++] = "-q";
1276 __argv[j++] = "-o";
1277 __argv[j++] = "-";
1278 for (i = rep_args + 1; i < argc; i++)
1279 __argv[j++] = argv[i];
1280 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001281
1282 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001283 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001284 exit(-1);
1285 }
1286
1287 dup2(live_pipe[0], 0);
1288 close(live_pipe[1]);
1289
Tom Zanussib5b87312010-11-10 08:16:51 -06001290 __argv = malloc((argc + 4) * sizeof(const char *));
Tom Zanussie8719ad2010-11-10 07:52:32 -06001291 if (!__argv)
1292 die("malloc");
Tom Zanussib5b87312010-11-10 08:16:51 -06001293 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001294 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001295 __argv[j++] = rep_script_path;
1296 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001297 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001298 __argv[j++] = "-i";
1299 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001300 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001301
1302 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001303 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001304 exit(-1);
1305 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001306
Tom Zanussib5b87312010-11-10 08:16:51 -06001307 if (rec_script_path)
1308 script_path = rec_script_path;
1309 if (rep_script_path)
1310 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001311
Tom Zanussib5b87312010-11-10 08:16:51 -06001312 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001313 j = 0;
1314
Robert Richter317df652011-11-25 15:05:25 +01001315 if (!rec_script_path)
1316 system_wide = false;
1317 else if (!system_wide)
Tom Zanussib5b87312010-11-10 08:16:51 -06001318 system_wide = !have_cmd(argc - 1, &argv[1]);
1319
1320 __argv = malloc((argc + 2) * sizeof(const char *));
1321 if (!__argv)
1322 die("malloc");
1323 __argv[j++] = "/bin/sh";
1324 __argv[j++] = script_path;
1325 if (system_wide)
1326 __argv[j++] = "-a";
1327 for (i = 2; i < argc; i++)
1328 __argv[j++] = argv[i];
1329 __argv[j++] = NULL;
1330
1331 execvp("/bin/sh", (char **)__argv);
1332 free(__argv);
1333 exit(-1);
1334 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001335
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001336 if (symbol__init() < 0)
1337 return -1;
Tom Zanussicf4fee52010-03-03 01:04:33 -06001338 if (!script_name)
1339 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001340
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001341 session = perf_session__new(input_name, O_RDONLY, 0, false,
1342 &perf_script.tool);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001343 if (session == NULL)
1344 return -ENOMEM;
1345
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001346 perf_script.session = session;
1347
Anton Blanchard5d67be92011-07-04 21:57:50 +10001348 if (cpu_list) {
1349 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1350 return -1;
1351 }
1352
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001353 perf_session__fprintf_info(session, stdout, show_full_info);
1354
David Ahern1424dc92011-03-09 22:23:28 -07001355 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001356 symbol_conf.use_callchain = true;
1357 else
1358 symbol_conf.use_callchain = false;
1359
Tom Zanussi956ffd02009-11-25 01:15:46 -06001360 if (generate_script_lang) {
1361 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001362 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001363
David Ahern2c9e45f72011-03-17 10:03:21 -06001364 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001365 fprintf(stderr,
1366 "custom fields not supported for generated scripts");
1367 return -1;
1368 }
1369
Robert Richterefad1412011-12-07 10:02:54 +01001370 input = open(session->filename, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001371 if (input < 0) {
1372 perror("failed to open file");
1373 exit(-1);
1374 }
1375
1376 err = fstat(input, &perf_stat);
1377 if (err < 0) {
1378 perror("failed to stat file");
1379 exit(-1);
1380 }
1381
1382 if (!perf_stat.st_size) {
1383 fprintf(stderr, "zero-sized file, nothing to do!\n");
1384 exit(0);
1385 }
1386
1387 scripting_ops = script_spec__lookup(generate_script_lang);
1388 if (!scripting_ops) {
1389 fprintf(stderr, "invalid language specifier");
1390 return -1;
1391 }
1392
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001393 err = scripting_ops->generate_script(session->pevent,
1394 "perf-script");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001395 goto out;
1396 }
1397
1398 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001399 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001400 if (err)
1401 goto out;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001402 pr_debug("perf script started with script %s\n\n", script_name);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001403 }
1404
David Ahern9cbdb702011-04-06 21:54:20 -06001405
1406 err = perf_session__check_output_opt(session);
1407 if (err < 0)
1408 goto out;
1409
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001410 err = __cmd_script(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001411
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001412 perf_session__delete(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001413 cleanup_scripting();
1414out:
1415 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001416}