blob: add13ec15977a1cfa9f0f92ad8005a5cbf4fbd4e [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
David Ahern745f43e2011-03-09 22:23:26 -070031enum perf_output_field {
32 PERF_OUTPUT_COMM = 1U << 0,
33 PERF_OUTPUT_TID = 1U << 1,
34 PERF_OUTPUT_PID = 1U << 2,
35 PERF_OUTPUT_TIME = 1U << 3,
36 PERF_OUTPUT_CPU = 1U << 4,
37 PERF_OUTPUT_EVNAME = 1U << 5,
38 PERF_OUTPUT_TRACE = 1U << 6,
David Ahern787bef12011-05-27 14:28:43 -060039 PERF_OUTPUT_IP = 1U << 7,
40 PERF_OUTPUT_SYM = 1U << 8,
David Ahern610723f2011-05-27 14:28:44 -060041 PERF_OUTPUT_DSO = 1U << 9,
David Ahern7cec0922011-05-30 13:08:23 -060042 PERF_OUTPUT_ADDR = 1U << 10,
David Ahern745f43e2011-03-09 22:23:26 -070043};
44
45struct output_option {
46 const char *str;
47 enum perf_output_field field;
48} all_output_options[] = {
49 {.str = "comm", .field = PERF_OUTPUT_COMM},
50 {.str = "tid", .field = PERF_OUTPUT_TID},
51 {.str = "pid", .field = PERF_OUTPUT_PID},
52 {.str = "time", .field = PERF_OUTPUT_TIME},
53 {.str = "cpu", .field = PERF_OUTPUT_CPU},
54 {.str = "event", .field = PERF_OUTPUT_EVNAME},
55 {.str = "trace", .field = PERF_OUTPUT_TRACE},
David Ahern787bef12011-05-27 14:28:43 -060056 {.str = "ip", .field = PERF_OUTPUT_IP},
David Ahernc0230b22011-03-09 22:23:27 -070057 {.str = "sym", .field = PERF_OUTPUT_SYM},
David Ahern610723f2011-05-27 14:28:44 -060058 {.str = "dso", .field = PERF_OUTPUT_DSO},
David Ahern7cec0922011-05-30 13:08:23 -060059 {.str = "addr", .field = PERF_OUTPUT_ADDR},
David Ahern745f43e2011-03-09 22:23:26 -070060};
61
62/* default set to maintain compatibility with current format */
David Ahern2c9e45f72011-03-17 10:03:21 -060063static struct {
64 bool user_set;
David Ahern9cbdb702011-04-06 21:54:20 -060065 bool wildcard_set;
David Ahern2c9e45f72011-03-17 10:03:21 -060066 u64 fields;
67 u64 invalid_fields;
68} output[PERF_TYPE_MAX] = {
David Ahern1424dc92011-03-09 22:23:28 -070069
David Ahern2c9e45f72011-03-17 10:03:21 -060070 [PERF_TYPE_HARDWARE] = {
71 .user_set = false,
David Ahern1424dc92011-03-09 22:23:28 -070072
David Ahern2c9e45f72011-03-17 10:03:21 -060073 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
74 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060075 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060076 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060077
78 .invalid_fields = PERF_OUTPUT_TRACE,
79 },
80
81 [PERF_TYPE_SOFTWARE] = {
82 .user_set = false,
83
84 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
85 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -060086 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -060087 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
David Ahern2c9e45f72011-03-17 10:03:21 -060088
89 .invalid_fields = PERF_OUTPUT_TRACE,
90 },
91
92 [PERF_TYPE_TRACEPOINT] = {
93 .user_set = false,
94
95 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
96 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
97 PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
98 },
Arun Sharma0817a6a2011-04-14 10:38:18 -070099
100 [PERF_TYPE_RAW] = {
101 .user_set = false,
102
103 .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
104 PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
David Ahern787bef12011-05-27 14:28:43 -0600105 PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
David Ahern610723f2011-05-27 14:28:44 -0600106 PERF_OUTPUT_SYM | PERF_OUTPUT_DSO,
Arun Sharma0817a6a2011-04-14 10:38:18 -0700107
108 .invalid_fields = PERF_OUTPUT_TRACE,
109 },
David Ahern1424dc92011-03-09 22:23:28 -0700110};
David Ahern745f43e2011-03-09 22:23:26 -0700111
David Ahern2c9e45f72011-03-17 10:03:21 -0600112static bool output_set_by_user(void)
113{
114 int j;
115 for (j = 0; j < PERF_TYPE_MAX; ++j) {
116 if (output[j].user_set)
117 return true;
118 }
119 return false;
120}
David Ahern745f43e2011-03-09 22:23:26 -0700121
David Ahern9cbdb702011-04-06 21:54:20 -0600122static const char *output_field2str(enum perf_output_field field)
123{
124 int i, imax = ARRAY_SIZE(all_output_options);
125 const char *str = "";
126
127 for (i = 0; i < imax; ++i) {
128 if (all_output_options[i].field == field) {
129 str = all_output_options[i].str;
130 break;
131 }
132 }
133 return str;
134}
135
David Ahern2c9e45f72011-03-17 10:03:21 -0600136#define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x)
David Ahern1424dc92011-03-09 22:23:28 -0700137
David Ahern9cbdb702011-04-06 21:54:20 -0600138static int perf_event_attr__check_stype(struct perf_event_attr *attr,
139 u64 sample_type, const char *sample_msg,
140 enum perf_output_field field)
David Ahern1424dc92011-03-09 22:23:28 -0700141{
David Ahern9cbdb702011-04-06 21:54:20 -0600142 int type = attr->type;
143 const char *evname;
144
145 if (attr->sample_type & sample_type)
146 return 0;
147
148 if (output[type].user_set) {
149 evname = __event_name(attr->type, attr->config);
150 pr_err("Samples for '%s' event do not have %s attribute set. "
151 "Cannot print '%s' field.\n",
152 evname, sample_msg, output_field2str(field));
153 return -1;
154 }
155
156 /* user did not ask for it explicitly so remove from the default list */
157 output[type].fields &= ~field;
158 evname = __event_name(attr->type, attr->config);
159 pr_debug("Samples for '%s' event do not have %s attribute set. "
160 "Skipping '%s' field.\n",
161 evname, sample_msg, output_field2str(field));
162
163 return 0;
164}
165
166static int perf_evsel__check_attr(struct perf_evsel *evsel,
167 struct perf_session *session)
168{
169 struct perf_event_attr *attr = &evsel->attr;
170
David Ahern1424dc92011-03-09 22:23:28 -0700171 if (PRINT_FIELD(TRACE) &&
172 !perf_session__has_traces(session, "record -R"))
173 return -EINVAL;
174
David Ahern787bef12011-05-27 14:28:43 -0600175 if (PRINT_FIELD(IP)) {
David Ahern9cbdb702011-04-06 21:54:20 -0600176 if (perf_event_attr__check_stype(attr, PERF_SAMPLE_IP, "IP",
David Ahern787bef12011-05-27 14:28:43 -0600177 PERF_OUTPUT_IP))
David Ahern1424dc92011-03-09 22:23:28 -0700178 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600179
David Ahern1424dc92011-03-09 22:23:28 -0700180 if (!no_callchain &&
David Ahern9cbdb702011-04-06 21:54:20 -0600181 !(attr->sample_type & PERF_SAMPLE_CALLCHAIN))
David Ahern1424dc92011-03-09 22:23:28 -0700182 symbol_conf.use_callchain = false;
183 }
David Ahern7cec0922011-05-30 13:08:23 -0600184
185 if (PRINT_FIELD(ADDR) &&
186 perf_event_attr__check_stype(attr, PERF_SAMPLE_ADDR, "ADDR",
187 PERF_OUTPUT_ADDR))
188 return -EINVAL;
189
190 if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
191 pr_err("Display of symbols requested but neither sample IP nor "
192 "sample address\nis selected. Hence, no addresses to convert "
193 "to symbols.\n");
David Ahern787bef12011-05-27 14:28:43 -0600194 return -EINVAL;
195 }
David Ahern7cec0922011-05-30 13:08:23 -0600196 if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
197 pr_err("Display of DSO requested but neither sample IP nor "
198 "sample address\nis selected. Hence, no addresses to convert "
199 "to DSO.\n");
David Ahern610723f2011-05-27 14:28:44 -0600200 return -EINVAL;
201 }
David Ahern1424dc92011-03-09 22:23:28 -0700202
203 if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
David Ahern9cbdb702011-04-06 21:54:20 -0600204 perf_event_attr__check_stype(attr, PERF_SAMPLE_TID, "TID",
205 PERF_OUTPUT_TID|PERF_OUTPUT_PID))
David Ahern1424dc92011-03-09 22:23:28 -0700206 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700207
208 if (PRINT_FIELD(TIME) &&
David Ahern9cbdb702011-04-06 21:54:20 -0600209 perf_event_attr__check_stype(attr, PERF_SAMPLE_TIME, "TIME",
210 PERF_OUTPUT_TIME))
David Ahern1424dc92011-03-09 22:23:28 -0700211 return -EINVAL;
David Ahern1424dc92011-03-09 22:23:28 -0700212
213 if (PRINT_FIELD(CPU) &&
David Ahern9cbdb702011-04-06 21:54:20 -0600214 perf_event_attr__check_stype(attr, PERF_SAMPLE_CPU, "CPU",
215 PERF_OUTPUT_CPU))
David Ahern1424dc92011-03-09 22:23:28 -0700216 return -EINVAL;
David Ahern9cbdb702011-04-06 21:54:20 -0600217
218 return 0;
219}
220
221/*
222 * verify all user requested events exist and the samples
223 * have the expected data
224 */
225static int perf_session__check_output_opt(struct perf_session *session)
226{
227 int j;
228 struct perf_evsel *evsel;
229
230 for (j = 0; j < PERF_TYPE_MAX; ++j) {
231 evsel = perf_session__find_first_evtype(session, j);
232
233 /*
234 * even if fields is set to 0 (ie., show nothing) event must
235 * exist if user explicitly includes it on the command line
236 */
237 if (!evsel && output[j].user_set && !output[j].wildcard_set) {
238 pr_err("%s events do not exist. "
239 "Remove corresponding -f option to proceed.\n",
240 event_type(j));
241 return -1;
242 }
243
244 if (evsel && output[j].fields &&
245 perf_evsel__check_attr(evsel, session))
246 return -1;
David Ahern1424dc92011-03-09 22:23:28 -0700247 }
248
249 return 0;
250}
David Ahern745f43e2011-03-09 22:23:26 -0700251
David Ahernc70c94b2011-03-09 22:23:25 -0700252static void print_sample_start(struct perf_sample *sample,
David Ahern1424dc92011-03-09 22:23:28 -0700253 struct thread *thread,
254 struct perf_event_attr *attr)
David Ahernc70c94b2011-03-09 22:23:25 -0700255{
256 int type;
257 struct event *event;
258 const char *evname = NULL;
259 unsigned long secs;
260 unsigned long usecs;
David Ahern745f43e2011-03-09 22:23:26 -0700261 unsigned long long nsecs;
David Ahernc70c94b2011-03-09 22:23:25 -0700262
David Ahern745f43e2011-03-09 22:23:26 -0700263 if (PRINT_FIELD(COMM)) {
264 if (latency_format)
265 printf("%8.8s ", thread->comm);
David Ahern787bef12011-05-27 14:28:43 -0600266 else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
David Ahernc0230b22011-03-09 22:23:27 -0700267 printf("%s ", thread->comm);
David Ahern745f43e2011-03-09 22:23:26 -0700268 else
269 printf("%16s ", thread->comm);
270 }
David Ahernc70c94b2011-03-09 22:23:25 -0700271
David Ahern745f43e2011-03-09 22:23:26 -0700272 if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
273 printf("%5d/%-5d ", sample->pid, sample->tid);
274 else if (PRINT_FIELD(PID))
275 printf("%5d ", sample->pid);
276 else if (PRINT_FIELD(TID))
277 printf("%5d ", sample->tid);
David Ahernc70c94b2011-03-09 22:23:25 -0700278
David Ahern745f43e2011-03-09 22:23:26 -0700279 if (PRINT_FIELD(CPU)) {
280 if (latency_format)
281 printf("%3d ", sample->cpu);
282 else
283 printf("[%03d] ", sample->cpu);
284 }
David Ahernc70c94b2011-03-09 22:23:25 -0700285
David Ahern745f43e2011-03-09 22:23:26 -0700286 if (PRINT_FIELD(TIME)) {
287 nsecs = sample->time;
288 secs = nsecs / NSECS_PER_SEC;
289 nsecs -= secs * NSECS_PER_SEC;
290 usecs = nsecs / NSECS_PER_USEC;
291 printf("%5lu.%06lu: ", secs, usecs);
292 }
293
294 if (PRINT_FIELD(EVNAME)) {
David Ahern1424dc92011-03-09 22:23:28 -0700295 if (attr->type == PERF_TYPE_TRACEPOINT) {
296 type = trace_parse_common_type(sample->raw_data);
297 event = trace_find_event(type);
298 if (event)
299 evname = event->name;
300 } else
301 evname = __event_name(attr->type, attr->config);
David Ahern745f43e2011-03-09 22:23:26 -0700302
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900303 printf("%s: ", evname ? evname : "[unknown]");
David Ahern745f43e2011-03-09 22:23:26 -0700304 }
David Ahernc70c94b2011-03-09 22:23:25 -0700305}
306
David Ahern7cec0922011-05-30 13:08:23 -0600307static bool sample_addr_correlates_sym(struct perf_event_attr *attr)
308{
309 if ((attr->type == PERF_TYPE_SOFTWARE) &&
310 ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) ||
311 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) ||
312 (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ)))
313 return true;
314
315 return false;
316}
317
318static void print_sample_addr(union perf_event *event,
319 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200320 struct machine *machine,
David Ahern7cec0922011-05-30 13:08:23 -0600321 struct thread *thread,
322 struct perf_event_attr *attr)
323{
324 struct addr_location al;
325 u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
David Ahern7cec0922011-05-30 13:08:23 -0600326
327 printf("%16" PRIx64, sample->addr);
328
329 if (!sample_addr_correlates_sym(attr))
330 return;
331
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200332 thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION,
333 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600334 if (!al.map)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200335 thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE,
336 sample->addr, &al);
David Ahern7cec0922011-05-30 13:08:23 -0600337
338 al.cpu = sample->cpu;
339 al.sym = NULL;
340
341 if (al.map)
342 al.sym = map__find_symbol(al.map, al.addr, NULL);
343
344 if (PRINT_FIELD(SYM)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900345 printf(" ");
346 symbol__fprintf_symname(al.sym, stdout);
David Ahern7cec0922011-05-30 13:08:23 -0600347 }
348
349 if (PRINT_FIELD(DSO)) {
Akihiro Nagai547a92e2012-01-30 13:42:57 +0900350 printf(" (");
351 map__fprintf_dsoname(al.map, stdout);
352 printf(")");
David Ahern7cec0922011-05-30 13:08:23 -0600353 }
354}
355
David Ahernbe6d8422011-03-09 22:23:23 -0700356static void process_event(union perf_event *event __unused,
357 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300358 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200359 struct machine *machine,
David Ahernbe6d8422011-03-09 22:23:23 -0700360 struct thread *thread)
361{
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300362 struct perf_event_attr *attr = &evsel->attr;
David Ahern1424dc92011-03-09 22:23:28 -0700363
David Ahern2c9e45f72011-03-17 10:03:21 -0600364 if (output[attr->type].fields == 0)
David Ahern1424dc92011-03-09 22:23:28 -0700365 return;
366
David Ahern1424dc92011-03-09 22:23:28 -0700367 print_sample_start(sample, thread, attr);
David Ahern745f43e2011-03-09 22:23:26 -0700368
369 if (PRINT_FIELD(TRACE))
370 print_trace_event(sample->cpu, sample->raw_data,
371 sample->raw_size);
372
David Ahern7cec0922011-05-30 13:08:23 -0600373 if (PRINT_FIELD(ADDR))
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200374 print_sample_addr(event, sample, machine, thread, attr);
David Ahern7cec0922011-05-30 13:08:23 -0600375
David Ahern787bef12011-05-27 14:28:43 -0600376 if (PRINT_FIELD(IP)) {
David Ahernc0230b22011-03-09 22:23:27 -0700377 if (!symbol_conf.use_callchain)
378 printf(" ");
379 else
380 printf("\n");
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200381 perf_event__print_ip(event, sample, machine, evsel,
382 PRINT_FIELD(SYM), PRINT_FIELD(DSO));
David Ahernc0230b22011-03-09 22:23:27 -0700383 }
384
David Ahernc70c94b2011-03-09 22:23:25 -0700385 printf("\n");
David Ahernbe6d8422011-03-09 22:23:23 -0700386}
387
Tom Zanussi586bc5c2009-12-15 02:53:35 -0600388static int default_start_script(const char *script __unused,
389 int argc __unused,
390 const char **argv __unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600391{
392 return 0;
393}
394
395static int default_stop_script(void)
396{
397 return 0;
398}
399
Tom Zanussi586bc5c2009-12-15 02:53:35 -0600400static int default_generate_script(const char *outfile __unused)
Tom Zanussi956ffd02009-11-25 01:15:46 -0600401{
402 return 0;
403}
404
405static struct scripting_ops default_scripting_ops = {
406 .start_script = default_start_script,
407 .stop_script = default_stop_script,
David Ahernbe6d8422011-03-09 22:23:23 -0700408 .process_event = process_event,
Tom Zanussi956ffd02009-11-25 01:15:46 -0600409 .generate_script = default_generate_script,
410};
411
412static struct scripting_ops *scripting_ops;
413
414static void setup_scripting(void)
415{
Tom Zanussi16c632d2009-11-25 01:15:48 -0600416 setup_perl_scripting();
Tom Zanussi7e4b21b2010-01-27 02:27:57 -0600417 setup_python_scripting();
Tom Zanussi16c632d2009-11-25 01:15:48 -0600418
Tom Zanussi956ffd02009-11-25 01:15:46 -0600419 scripting_ops = &default_scripting_ops;
420}
421
422static int cleanup_scripting(void)
423{
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100424 pr_debug("\nperf script stopped\n");
Tom Zanussi3824a4e2010-05-09 23:46:57 -0500425
Tom Zanussi956ffd02009-11-25 01:15:46 -0600426 return scripting_ops->stop_script();
427}
428
Robert Richterefad1412011-12-07 10:02:54 +0100429static const char *input_name;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200430
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200431static int process_sample_event(struct perf_tool *tool __used,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200432 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200433 struct perf_sample *sample,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300434 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200435 struct machine *machine)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200436{
David Aherne7984b72011-11-21 10:02:52 -0700437 struct addr_location al;
David Ahern64aab932011-12-22 11:30:03 -0700438 struct thread *thread = machine__findnew_thread(machine, event->ip.tid);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200439
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200440 if (thread == NULL) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200441 pr_debug("problem processing %d event, skipping it.\n",
442 event->header.type);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200443 return -1;
444 }
445
David Ahern1424dc92011-03-09 22:23:28 -0700446 if (debug_mode) {
447 if (sample->time < last_timestamp) {
448 pr_err("Samples misordered, previous: %" PRIu64
449 " this: %" PRIu64 "\n", last_timestamp,
450 sample->time);
451 nr_unordered++;
Frederic Weisbeckere1889d72010-04-24 01:55:09 +0200452 }
David Ahern1424dc92011-03-09 22:23:28 -0700453 last_timestamp = sample->time;
454 return 0;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200455 }
Anton Blanchard5d67be92011-07-04 21:57:50 +1000456
David Aherne7984b72011-11-21 10:02:52 -0700457 if (perf_event__preprocess_sample(event, machine, &al, sample, 0) < 0) {
458 pr_err("problem processing %d event, skipping it.\n",
459 event->header.type);
460 return -1;
461 }
462
463 if (al.filtered)
464 return 0;
465
Anton Blanchard5d67be92011-07-04 21:57:50 +1000466 if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
467 return 0;
468
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200469 scripting_ops->process_event(event, sample, evsel, machine, thread);
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200470
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200471 evsel->hists.stats.total_period += sample->period;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200472 return 0;
473}
474
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200475static struct perf_tool perf_script = {
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200476 .sample = process_sample_event,
David Ahernc0230b22011-03-09 22:23:27 -0700477 .mmap = perf_event__process_mmap,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200478 .comm = perf_event__process_comm,
David Ahernc0230b22011-03-09 22:23:27 -0700479 .exit = perf_event__process_task,
480 .fork = perf_event__process_task,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200481 .attr = perf_event__process_attr,
482 .event_type = perf_event__process_event_type,
483 .tracing_data = perf_event__process_tracing_data,
484 .build_id = perf_event__process_build_id,
Frederic Weisbeckere0a808c2010-04-24 00:38:33 +0200485 .ordered_samples = true,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200486 .ordering_requires_timestamps = true,
Frederic Weisbecker016e92f2009-10-07 12:47:31 +0200487};
488
Tom Zanussic239da32010-04-01 23:59:18 -0500489extern volatile int session_done;
490
491static void sig_handler(int sig __unused)
492{
493 session_done = 1;
494}
495
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100496static int __cmd_script(struct perf_session *session)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200497{
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200498 int ret;
499
Tom Zanussic239da32010-04-01 23:59:18 -0500500 signal(SIGINT, sig_handler);
501
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200502 ret = perf_session__process_events(session, &perf_script);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200503
Arnaldo Carvalho de Melo6d8afb52011-01-04 16:27:30 -0200504 if (debug_mode)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200505 pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
Frederic Weisbecker6fcf7dd2010-05-27 15:46:25 +0200506
507 return ret;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200508}
509
Tom Zanussi956ffd02009-11-25 01:15:46 -0600510struct script_spec {
511 struct list_head node;
512 struct scripting_ops *ops;
513 char spec[0];
514};
515
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200516static LIST_HEAD(script_specs);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600517
518static struct script_spec *script_spec__new(const char *spec,
519 struct scripting_ops *ops)
520{
521 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
522
523 if (s != NULL) {
524 strcpy(s->spec, spec);
525 s->ops = ops;
526 }
527
528 return s;
529}
530
Tom Zanussi956ffd02009-11-25 01:15:46 -0600531static void script_spec__add(struct script_spec *s)
532{
533 list_add_tail(&s->node, &script_specs);
534}
535
536static struct script_spec *script_spec__find(const char *spec)
537{
538 struct script_spec *s;
539
540 list_for_each_entry(s, &script_specs, node)
541 if (strcasecmp(s->spec, spec) == 0)
542 return s;
543 return NULL;
544}
545
546static struct script_spec *script_spec__findnew(const char *spec,
547 struct scripting_ops *ops)
548{
549 struct script_spec *s = script_spec__find(spec);
550
551 if (s)
552 return s;
553
554 s = script_spec__new(spec, ops);
555 if (!s)
Namhyung Kim466e2872011-12-28 00:35:51 +0900556 return NULL;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600557
558 script_spec__add(s);
559
560 return s;
Tom Zanussi956ffd02009-11-25 01:15:46 -0600561}
562
563int script_spec_register(const char *spec, struct scripting_ops *ops)
564{
565 struct script_spec *s;
566
567 s = script_spec__find(spec);
568 if (s)
569 return -1;
570
571 s = script_spec__findnew(spec, ops);
572 if (!s)
573 return -1;
574
575 return 0;
576}
577
578static struct scripting_ops *script_spec__lookup(const char *spec)
579{
580 struct script_spec *s = script_spec__find(spec);
581 if (!s)
582 return NULL;
583
584 return s->ops;
585}
586
587static void list_available_languages(void)
588{
589 struct script_spec *s;
590
591 fprintf(stderr, "\n");
592 fprintf(stderr, "Scripting language extensions (used in "
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100593 "perf script -s [spec:]script.[spec]):\n\n");
Tom Zanussi956ffd02009-11-25 01:15:46 -0600594
595 list_for_each_entry(s, &script_specs, node)
596 fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
597
598 fprintf(stderr, "\n");
599}
600
601static int parse_scriptname(const struct option *opt __used,
602 const char *str, int unset __used)
603{
604 char spec[PATH_MAX];
605 const char *script, *ext;
606 int len;
607
Tom Zanussif526d682010-01-27 02:27:52 -0600608 if (strcmp(str, "lang") == 0) {
Tom Zanussi956ffd02009-11-25 01:15:46 -0600609 list_available_languages();
Tom Zanussif526d682010-01-27 02:27:52 -0600610 exit(0);
Tom Zanussi956ffd02009-11-25 01:15:46 -0600611 }
612
613 script = strchr(str, ':');
614 if (script) {
615 len = script - str;
616 if (len >= PATH_MAX) {
617 fprintf(stderr, "invalid language specifier");
618 return -1;
619 }
620 strncpy(spec, str, len);
621 spec[len] = '\0';
622 scripting_ops = script_spec__lookup(spec);
623 if (!scripting_ops) {
624 fprintf(stderr, "invalid language specifier");
625 return -1;
626 }
627 script++;
628 } else {
629 script = str;
Ben Hutchingsd1e95bb2010-10-10 16:11:02 +0100630 ext = strrchr(script, '.');
Tom Zanussi956ffd02009-11-25 01:15:46 -0600631 if (!ext) {
632 fprintf(stderr, "invalid script extension");
633 return -1;
634 }
635 scripting_ops = script_spec__lookup(++ext);
636 if (!scripting_ops) {
637 fprintf(stderr, "invalid script extension");
638 return -1;
639 }
640 }
641
642 script_name = strdup(script);
643
644 return 0;
645}
646
David Ahern745f43e2011-03-09 22:23:26 -0700647static int parse_output_fields(const struct option *opt __used,
648 const char *arg, int unset __used)
649{
650 char *tok;
651 int i, imax = sizeof(all_output_options) / sizeof(struct output_option);
David Ahern2c9e45f72011-03-17 10:03:21 -0600652 int j;
David Ahern745f43e2011-03-09 22:23:26 -0700653 int rc = 0;
654 char *str = strdup(arg);
David Ahern1424dc92011-03-09 22:23:28 -0700655 int type = -1;
David Ahern745f43e2011-03-09 22:23:26 -0700656
657 if (!str)
658 return -ENOMEM;
659
David Ahern2c9e45f72011-03-17 10:03:21 -0600660 /* first word can state for which event type the user is specifying
661 * the fields. If no type exists, the specified fields apply to all
662 * event types found in the file minus the invalid fields for a type.
David Ahern1424dc92011-03-09 22:23:28 -0700663 */
David Ahern2c9e45f72011-03-17 10:03:21 -0600664 tok = strchr(str, ':');
665 if (tok) {
666 *tok = '\0';
667 tok++;
668 if (!strcmp(str, "hw"))
669 type = PERF_TYPE_HARDWARE;
670 else if (!strcmp(str, "sw"))
671 type = PERF_TYPE_SOFTWARE;
672 else if (!strcmp(str, "trace"))
673 type = PERF_TYPE_TRACEPOINT;
Arun Sharma0817a6a2011-04-14 10:38:18 -0700674 else if (!strcmp(str, "raw"))
675 type = PERF_TYPE_RAW;
David Ahern2c9e45f72011-03-17 10:03:21 -0600676 else {
677 fprintf(stderr, "Invalid event type in field string.\n");
Robert Richter38efb532011-11-25 11:38:40 +0100678 rc = -EINVAL;
679 goto out;
David Ahern2c9e45f72011-03-17 10:03:21 -0600680 }
681
682 if (output[type].user_set)
683 pr_warning("Overriding previous field request for %s events.\n",
684 event_type(type));
685
686 output[type].fields = 0;
687 output[type].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600688 output[type].wildcard_set = false;
David Ahern2c9e45f72011-03-17 10:03:21 -0600689
690 } else {
691 tok = str;
692 if (strlen(str) == 0) {
693 fprintf(stderr,
694 "Cannot set fields to 'none' for all event types.\n");
695 rc = -EINVAL;
696 goto out;
697 }
698
699 if (output_set_by_user())
700 pr_warning("Overriding previous field request for all events.\n");
701
702 for (j = 0; j < PERF_TYPE_MAX; ++j) {
703 output[j].fields = 0;
704 output[j].user_set = true;
David Ahern9cbdb702011-04-06 21:54:20 -0600705 output[j].wildcard_set = true;
David Ahern2c9e45f72011-03-17 10:03:21 -0600706 }
David Ahern1424dc92011-03-09 22:23:28 -0700707 }
708
David Ahern2c9e45f72011-03-17 10:03:21 -0600709 tok = strtok(tok, ",");
710 while (tok) {
David Ahern745f43e2011-03-09 22:23:26 -0700711 for (i = 0; i < imax; ++i) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600712 if (strcmp(tok, all_output_options[i].str) == 0)
David Ahern745f43e2011-03-09 22:23:26 -0700713 break;
David Ahern745f43e2011-03-09 22:23:26 -0700714 }
715 if (i == imax) {
David Ahern2c9e45f72011-03-17 10:03:21 -0600716 fprintf(stderr, "Invalid field requested.\n");
David Ahern745f43e2011-03-09 22:23:26 -0700717 rc = -EINVAL;
David Ahern2c9e45f72011-03-17 10:03:21 -0600718 goto out;
719 }
720
721 if (type == -1) {
722 /* add user option to all events types for
723 * which it is valid
724 */
725 for (j = 0; j < PERF_TYPE_MAX; ++j) {
726 if (output[j].invalid_fields & all_output_options[i].field) {
727 pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
728 all_output_options[i].str, event_type(j));
729 } else
730 output[j].fields |= all_output_options[i].field;
731 }
732 } else {
733 if (output[type].invalid_fields & all_output_options[i].field) {
734 fprintf(stderr, "\'%s\' not valid for %s events.\n",
735 all_output_options[i].str, event_type(type));
736
737 rc = -EINVAL;
738 goto out;
739 }
740 output[type].fields |= all_output_options[i].field;
741 }
742
743 tok = strtok(NULL, ",");
744 }
745
746 if (type >= 0) {
747 if (output[type].fields == 0) {
748 pr_debug("No fields requested for %s type. "
749 "Events will not be displayed.\n", event_type(type));
David Ahern745f43e2011-03-09 22:23:26 -0700750 }
David Ahern1424dc92011-03-09 22:23:28 -0700751 }
David Ahern745f43e2011-03-09 22:23:26 -0700752
David Ahern2c9e45f72011-03-17 10:03:21 -0600753out:
David Ahern745f43e2011-03-09 22:23:26 -0700754 free(str);
755 return rc;
756}
757
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600758/* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */
759static int is_directory(const char *base_path, const struct dirent *dent)
760{
761 char path[PATH_MAX];
762 struct stat st;
763
764 sprintf(path, "%s/%s", base_path, dent->d_name);
765 if (stat(path, &st))
766 return 0;
767
768 return S_ISDIR(st.st_mode);
769}
770
771#define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600772 while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \
773 lang_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600774 if ((lang_dirent.d_type == DT_DIR || \
775 (lang_dirent.d_type == DT_UNKNOWN && \
776 is_directory(scripts_path, &lang_dirent))) && \
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600777 (strcmp(lang_dirent.d_name, ".")) && \
778 (strcmp(lang_dirent.d_name, "..")))
779
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600780#define for_each_script(lang_path, lang_dir, script_dirent, script_next)\
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600781 while (!readdir_r(lang_dir, &script_dirent, &script_next) && \
782 script_next) \
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600783 if (script_dirent.d_type != DT_DIR && \
784 (script_dirent.d_type != DT_UNKNOWN || \
785 !is_directory(lang_path, &script_dirent)))
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600786
787
788#define RECORD_SUFFIX "-record"
789#define REPORT_SUFFIX "-report"
790
791struct script_desc {
792 struct list_head node;
793 char *name;
794 char *half_liner;
795 char *args;
796};
797
Arnaldo Carvalho de Meloeccdfe22011-01-04 16:32:52 -0200798static LIST_HEAD(script_descs);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600799
800static struct script_desc *script_desc__new(const char *name)
801{
802 struct script_desc *s = zalloc(sizeof(*s));
803
Tom Zanussib5b87312010-11-10 08:16:51 -0600804 if (s != NULL && name)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600805 s->name = strdup(name);
806
807 return s;
808}
809
810static void script_desc__delete(struct script_desc *s)
811{
812 free(s->name);
Tom Zanussie8719ad2010-11-10 07:52:32 -0600813 free(s->half_liner);
814 free(s->args);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600815 free(s);
816}
817
818static void script_desc__add(struct script_desc *s)
819{
820 list_add_tail(&s->node, &script_descs);
821}
822
823static struct script_desc *script_desc__find(const char *name)
824{
825 struct script_desc *s;
826
827 list_for_each_entry(s, &script_descs, node)
828 if (strcasecmp(s->name, name) == 0)
829 return s;
830 return NULL;
831}
832
833static struct script_desc *script_desc__findnew(const char *name)
834{
835 struct script_desc *s = script_desc__find(name);
836
837 if (s)
838 return s;
839
840 s = script_desc__new(name);
841 if (!s)
842 goto out_delete_desc;
843
844 script_desc__add(s);
845
846 return s;
847
848out_delete_desc:
849 script_desc__delete(s);
850
851 return NULL;
852}
853
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200854static const char *ends_with(const char *str, const char *suffix)
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600855{
856 size_t suffix_len = strlen(suffix);
Stephane Eranian965bb6b2010-12-03 17:52:01 +0200857 const char *p = str;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600858
859 if (strlen(str) > suffix_len) {
860 p = str + strlen(str) - suffix_len;
861 if (!strncmp(p, suffix, suffix_len))
862 return p;
863 }
864
865 return NULL;
866}
867
868static char *ltrim(char *str)
869{
870 int len = strlen(str);
871
872 while (len && isspace(*str)) {
873 len--;
874 str++;
875 }
876
877 return str;
878}
879
880static int read_script_info(struct script_desc *desc, const char *filename)
881{
882 char line[BUFSIZ], *p;
883 FILE *fp;
884
885 fp = fopen(filename, "r");
886 if (!fp)
887 return -1;
888
889 while (fgets(line, sizeof(line), fp)) {
890 p = ltrim(line);
891 if (strlen(p) == 0)
892 continue;
893 if (*p != '#')
894 continue;
895 p++;
896 if (strlen(p) && *p == '!')
897 continue;
898
899 p = ltrim(p);
900 if (strlen(p) && p[strlen(p) - 1] == '\n')
901 p[strlen(p) - 1] = '\0';
902
903 if (!strncmp(p, "description:", strlen("description:"))) {
904 p += strlen("description:");
905 desc->half_liner = strdup(ltrim(p));
906 continue;
907 }
908
909 if (!strncmp(p, "args:", strlen("args:"))) {
910 p += strlen("args:");
911 desc->args = strdup(ltrim(p));
912 continue;
913 }
914 }
915
916 fclose(fp);
917
918 return 0;
919}
920
Robert Richter38efb532011-11-25 11:38:40 +0100921static char *get_script_root(struct dirent *script_dirent, const char *suffix)
922{
923 char *script_root, *str;
924
925 script_root = strdup(script_dirent->d_name);
926 if (!script_root)
927 return NULL;
928
929 str = (char *)ends_with(script_root, suffix);
930 if (!str) {
931 free(script_root);
932 return NULL;
933 }
934
935 *str = '\0';
936 return script_root;
937}
938
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600939static int list_available_scripts(const struct option *opt __used,
940 const char *s __used, int unset __used)
941{
942 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
943 char scripts_path[MAXPATHLEN];
944 DIR *scripts_dir, *lang_dir;
945 char script_path[MAXPATHLEN];
946 char lang_path[MAXPATHLEN];
947 struct script_desc *desc;
948 char first_half[BUFSIZ];
949 char *script_root;
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600950
951 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
952
953 scripts_dir = opendir(scripts_path);
954 if (!scripts_dir)
955 return -1;
956
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600957 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600958 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
959 lang_dirent.d_name);
960 lang_dir = opendir(lang_path);
961 if (!lang_dir)
962 continue;
963
Shawn Bohrer008f29d2010-11-21 10:09:39 -0600964 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +0100965 script_root = get_script_root(&script_dirent, REPORT_SUFFIX);
966 if (script_root) {
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600967 desc = script_desc__findnew(script_root);
968 snprintf(script_path, MAXPATHLEN, "%s/%s",
969 lang_path, script_dirent.d_name);
970 read_script_info(desc, script_path);
Robert Richter38efb532011-11-25 11:38:40 +0100971 free(script_root);
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600972 }
Tom Zanussi4b9c0c52009-12-15 02:53:38 -0600973 }
974 }
975
976 fprintf(stdout, "List of available trace scripts:\n");
977 list_for_each_entry(desc, &script_descs, node) {
978 sprintf(first_half, "%s %s", desc->name,
979 desc->args ? desc->args : "");
980 fprintf(stdout, " %-36s %s\n", first_half,
981 desc->half_liner ? desc->half_liner : "");
982 }
983
984 exit(0);
985}
986
Tom Zanussi38752942009-12-15 02:53:39 -0600987static char *get_script_path(const char *script_root, const char *suffix)
988{
989 struct dirent *script_next, *lang_next, script_dirent, lang_dirent;
990 char scripts_path[MAXPATHLEN];
991 char script_path[MAXPATHLEN];
992 DIR *scripts_dir, *lang_dir;
993 char lang_path[MAXPATHLEN];
Robert Richter38efb532011-11-25 11:38:40 +0100994 char *__script_root;
Tom Zanussi38752942009-12-15 02:53:39 -0600995
996 snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path());
997
998 scripts_dir = opendir(scripts_path);
999 if (!scripts_dir)
1000 return NULL;
1001
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001002 for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) {
Tom Zanussi38752942009-12-15 02:53:39 -06001003 snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
1004 lang_dirent.d_name);
1005 lang_dir = opendir(lang_path);
1006 if (!lang_dir)
1007 continue;
1008
Shawn Bohrer008f29d2010-11-21 10:09:39 -06001009 for_each_script(lang_path, lang_dir, script_dirent, script_next) {
Robert Richter38efb532011-11-25 11:38:40 +01001010 __script_root = get_script_root(&script_dirent, suffix);
1011 if (__script_root && !strcmp(script_root, __script_root)) {
1012 free(__script_root);
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001013 closedir(lang_dir);
1014 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001015 snprintf(script_path, MAXPATHLEN, "%s/%s",
1016 lang_path, script_dirent.d_name);
Robert Richter38efb532011-11-25 11:38:40 +01001017 return strdup(script_path);
Tom Zanussi38752942009-12-15 02:53:39 -06001018 }
1019 free(__script_root);
1020 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001021 closedir(lang_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001022 }
Namhyung Kim946ef2a2012-01-08 02:25:25 +09001023 closedir(scripts_dir);
Tom Zanussi38752942009-12-15 02:53:39 -06001024
Robert Richter38efb532011-11-25 11:38:40 +01001025 return NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001026}
1027
Tom Zanussib5b87312010-11-10 08:16:51 -06001028static bool is_top_script(const char *script_path)
1029{
Stephane Eranian965bb6b2010-12-03 17:52:01 +02001030 return ends_with(script_path, "top") == NULL ? false : true;
Tom Zanussib5b87312010-11-10 08:16:51 -06001031}
1032
1033static int has_required_arg(char *script_path)
1034{
1035 struct script_desc *desc;
1036 int n_args = 0;
1037 char *p;
1038
1039 desc = script_desc__new(NULL);
1040
1041 if (read_script_info(desc, script_path))
1042 goto out;
1043
1044 if (!desc->args)
1045 goto out;
1046
1047 for (p = desc->args; *p; p++)
1048 if (*p == '<')
1049 n_args++;
1050out:
1051 script_desc__delete(desc);
1052
1053 return n_args;
1054}
1055
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001056static const char * const script_usage[] = {
1057 "perf script [<options>]",
1058 "perf script [<options>] record <script> [<record-options>] <command>",
1059 "perf script [<options>] report <script> [script-args]",
1060 "perf script [<options>] <script> [<record-options>] <command>",
1061 "perf script [<options>] <top-script> [script-args]",
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001062 NULL
1063};
1064
1065static const struct option options[] = {
1066 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1067 "dump raw trace in ASCII"),
Ian Munsiec0555642010-04-13 18:37:33 +10001068 OPT_INCR('v', "verbose", &verbose,
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001069 "be more verbose (show symbol address, etc)"),
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001070 OPT_BOOLEAN('L', "Latency", &latency_format,
Steven Rostedtcda48462009-10-14 15:43:42 -04001071 "show latency attributes (irqs/preemption disabled, etc)"),
Tom Zanussi4b9c0c52009-12-15 02:53:38 -06001072 OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
1073 list_available_scripts),
Tom Zanussi956ffd02009-11-25 01:15:46 -06001074 OPT_CALLBACK('s', "script", NULL, "name",
1075 "script file name (lang:script name, script name, or *)",
1076 parse_scriptname),
1077 OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001078 "generate perf-script.xx script in specified language"),
Hitoshi Mitake408f0d12010-01-22 22:45:29 +09001079 OPT_STRING('i', "input", &input_name, "file",
1080 "input file name"),
Frederic Weisbeckerffabd992010-05-27 16:27:47 +02001081 OPT_BOOLEAN('d', "debug-mode", &debug_mode,
1082 "do various checks like samples ordering and lost events"),
David Ahernc0230b22011-03-09 22:23:27 -07001083 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1084 "file", "vmlinux pathname"),
1085 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1086 "file", "kallsyms pathname"),
1087 OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
1088 "When printing symbols do not display call chain"),
1089 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
1090 "Look for files with symbols relative to this directory"),
David Ahern745f43e2011-03-09 22:23:26 -07001091 OPT_CALLBACK('f', "fields", NULL, "str",
David Ahern7cec0922011-05-30 13:08:23 -06001092 "comma separated output fields prepend with 'type:'. Valid types: hw,sw,trace,raw. Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,addr",
David Ahern745f43e2011-03-09 22:23:26 -07001093 parse_output_fields),
Robert Richter317df652011-11-25 15:05:25 +01001094 OPT_BOOLEAN('a', "all-cpus", &system_wide,
1095 "system-wide collection from all CPUs"),
David Ahernc8e66722011-11-13 11:30:08 -07001096 OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
David Aherne7984b72011-11-21 10:02:52 -07001097 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1098 "only display events for these comms"),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001099 OPT_BOOLEAN('I', "show-info", &show_full_info,
1100 "display extended information from perf.data file"),
Masami Hiramatsu19096292009-08-21 14:56:03 -04001101 OPT_END()
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001102};
1103
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001104static bool have_cmd(int argc, const char **argv)
1105{
1106 char **__argv = malloc(sizeof(const char *) * argc);
1107
1108 if (!__argv)
1109 die("malloc");
1110 memcpy(__argv, argv, sizeof(const char *) * argc);
1111 argc = parse_options(argc, (const char **)__argv, record_options,
1112 NULL, PARSE_OPT_STOP_AT_NON_OPTION);
1113 free(__argv);
1114
1115 return argc != 0;
1116}
1117
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001118int cmd_script(int argc, const char **argv, const char *prefix __used)
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001119{
Tom Zanussib5b87312010-11-10 08:16:51 -06001120 char *rec_script_path = NULL;
1121 char *rep_script_path = NULL;
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001122 struct perf_session *session;
Tom Zanussib5b87312010-11-10 08:16:51 -06001123 char *script_path = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001124 const char **__argv;
Tom Zanussib5b87312010-11-10 08:16:51 -06001125 int i, j, err;
Tom Zanussi38752942009-12-15 02:53:39 -06001126
Tom Zanussib5b87312010-11-10 08:16:51 -06001127 setup_scripting();
1128
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001129 argc = parse_options(argc, argv, options, script_usage,
Tom Zanussib5b87312010-11-10 08:16:51 -06001130 PARSE_OPT_STOP_AT_NON_OPTION);
1131
1132 if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
1133 rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
1134 if (!rec_script_path)
1135 return cmd_record(argc, argv, NULL);
Tom Zanussi38752942009-12-15 02:53:39 -06001136 }
1137
Tom Zanussib5b87312010-11-10 08:16:51 -06001138 if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
1139 rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
1140 if (!rep_script_path) {
Tom Zanussi38752942009-12-15 02:53:39 -06001141 fprintf(stderr,
Tom Zanussib5b87312010-11-10 08:16:51 -06001142 "Please specify a valid report script"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001143 "(see 'perf script -l' for listing)\n");
Tom Zanussi38752942009-12-15 02:53:39 -06001144 return -1;
1145 }
Tom Zanussi38752942009-12-15 02:53:39 -06001146 }
1147
Ben Hutchings44e668c2010-10-10 16:10:03 +01001148 /* make sure PERF_EXEC_PATH is set for scripts */
1149 perf_set_argv_exec_path(perf_exec_path());
1150
Tom Zanussib5b87312010-11-10 08:16:51 -06001151 if (argc && !script_name && !rec_script_path && !rep_script_path) {
Tom Zanussia0cccc22010-04-01 23:59:25 -05001152 int live_pipe[2];
Tom Zanussib5b87312010-11-10 08:16:51 -06001153 int rep_args;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001154 pid_t pid;
1155
Tom Zanussib5b87312010-11-10 08:16:51 -06001156 rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
1157 rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
1158
1159 if (!rec_script_path && !rep_script_path) {
1160 fprintf(stderr, " Couldn't find script %s\n\n See perf"
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001161 " script -l for available scripts.\n", argv[0]);
1162 usage_with_options(script_usage, options);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001163 }
1164
Tom Zanussib5b87312010-11-10 08:16:51 -06001165 if (is_top_script(argv[0])) {
1166 rep_args = argc - 1;
1167 } else {
1168 int rec_args;
1169
1170 rep_args = has_required_arg(rep_script_path);
1171 rec_args = (argc - 1) - rep_args;
1172 if (rec_args < 0) {
1173 fprintf(stderr, " %s script requires options."
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001174 "\n\n See perf script -l for available "
Tom Zanussib5b87312010-11-10 08:16:51 -06001175 "scripts and options.\n", argv[0]);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001176 usage_with_options(script_usage, options);
Tom Zanussib5b87312010-11-10 08:16:51 -06001177 }
Tom Zanussia0cccc22010-04-01 23:59:25 -05001178 }
1179
1180 if (pipe(live_pipe) < 0) {
1181 perror("failed to create pipe");
1182 exit(-1);
1183 }
1184
1185 pid = fork();
1186 if (pid < 0) {
1187 perror("failed to fork");
1188 exit(-1);
1189 }
1190
1191 if (!pid) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001192 j = 0;
1193
Tom Zanussia0cccc22010-04-01 23:59:25 -05001194 dup2(live_pipe[1], 1);
1195 close(live_pipe[0]);
1196
Robert Richter317df652011-11-25 15:05:25 +01001197 if (is_top_script(argv[0])) {
1198 system_wide = true;
1199 } else if (!system_wide) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001200 system_wide = !have_cmd(argc - rep_args,
1201 &argv[rep_args]);
Robert Richter317df652011-11-25 15:05:25 +01001202 }
Tom Zanussib5b87312010-11-10 08:16:51 -06001203
1204 __argv = malloc((argc + 6) * sizeof(const char *));
Tom Zanussie8719ad2010-11-10 07:52:32 -06001205 if (!__argv)
1206 die("malloc");
1207
Tom Zanussib5b87312010-11-10 08:16:51 -06001208 __argv[j++] = "/bin/sh";
1209 __argv[j++] = rec_script_path;
1210 if (system_wide)
1211 __argv[j++] = "-a";
1212 __argv[j++] = "-q";
1213 __argv[j++] = "-o";
1214 __argv[j++] = "-";
1215 for (i = rep_args + 1; i < argc; i++)
1216 __argv[j++] = argv[i];
1217 __argv[j++] = NULL;
Tom Zanussia0cccc22010-04-01 23:59:25 -05001218
1219 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001220 free(__argv);
Tom Zanussia0cccc22010-04-01 23:59:25 -05001221 exit(-1);
1222 }
1223
1224 dup2(live_pipe[0], 0);
1225 close(live_pipe[1]);
1226
Tom Zanussib5b87312010-11-10 08:16:51 -06001227 __argv = malloc((argc + 4) * sizeof(const char *));
Tom Zanussie8719ad2010-11-10 07:52:32 -06001228 if (!__argv)
1229 die("malloc");
Tom Zanussib5b87312010-11-10 08:16:51 -06001230 j = 0;
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001231 __argv[j++] = "/bin/sh";
Tom Zanussib5b87312010-11-10 08:16:51 -06001232 __argv[j++] = rep_script_path;
1233 for (i = 1; i < rep_args + 1; i++)
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001234 __argv[j++] = argv[i];
Tom Zanussib5b87312010-11-10 08:16:51 -06001235 __argv[j++] = "-i";
1236 __argv[j++] = "-";
Tom Zanussi34c86ea2010-11-10 08:15:43 -06001237 __argv[j++] = NULL;
Tom Zanussi38752942009-12-15 02:53:39 -06001238
1239 execvp("/bin/sh", (char **)__argv);
Tom Zanussie8719ad2010-11-10 07:52:32 -06001240 free(__argv);
Tom Zanussi38752942009-12-15 02:53:39 -06001241 exit(-1);
1242 }
Tom Zanussi956ffd02009-11-25 01:15:46 -06001243
Tom Zanussib5b87312010-11-10 08:16:51 -06001244 if (rec_script_path)
1245 script_path = rec_script_path;
1246 if (rep_script_path)
1247 script_path = rep_script_path;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001248
Tom Zanussib5b87312010-11-10 08:16:51 -06001249 if (script_path) {
Tom Zanussib5b87312010-11-10 08:16:51 -06001250 j = 0;
1251
Robert Richter317df652011-11-25 15:05:25 +01001252 if (!rec_script_path)
1253 system_wide = false;
1254 else if (!system_wide)
Tom Zanussib5b87312010-11-10 08:16:51 -06001255 system_wide = !have_cmd(argc - 1, &argv[1]);
1256
1257 __argv = malloc((argc + 2) * sizeof(const char *));
1258 if (!__argv)
1259 die("malloc");
1260 __argv[j++] = "/bin/sh";
1261 __argv[j++] = script_path;
1262 if (system_wide)
1263 __argv[j++] = "-a";
1264 for (i = 2; i < argc; i++)
1265 __argv[j++] = argv[i];
1266 __argv[j++] = NULL;
1267
1268 execvp("/bin/sh", (char **)__argv);
1269 free(__argv);
1270 exit(-1);
1271 }
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001272
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001273 if (symbol__init() < 0)
1274 return -1;
Tom Zanussicf4fee52010-03-03 01:04:33 -06001275 if (!script_name)
1276 setup_pager();
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001277
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001278 session = perf_session__new(input_name, O_RDONLY, 0, false, &perf_script);
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001279 if (session == NULL)
1280 return -ENOMEM;
1281
Anton Blanchard5d67be92011-07-04 21:57:50 +10001282 if (cpu_list) {
1283 if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap))
1284 return -1;
1285 }
1286
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001287 perf_session__fprintf_info(session, stdout, show_full_info);
1288
David Ahern1424dc92011-03-09 22:23:28 -07001289 if (!no_callchain)
David Ahernc0230b22011-03-09 22:23:27 -07001290 symbol_conf.use_callchain = true;
1291 else
1292 symbol_conf.use_callchain = false;
1293
Tom Zanussi956ffd02009-11-25 01:15:46 -06001294 if (generate_script_lang) {
1295 struct stat perf_stat;
David Ahern745f43e2011-03-09 22:23:26 -07001296 int input;
Tom Zanussi956ffd02009-11-25 01:15:46 -06001297
David Ahern2c9e45f72011-03-17 10:03:21 -06001298 if (output_set_by_user()) {
David Ahern745f43e2011-03-09 22:23:26 -07001299 fprintf(stderr,
1300 "custom fields not supported for generated scripts");
1301 return -1;
1302 }
1303
Robert Richterefad1412011-12-07 10:02:54 +01001304 input = open(session->filename, O_RDONLY); /* input_name */
Tom Zanussi956ffd02009-11-25 01:15:46 -06001305 if (input < 0) {
1306 perror("failed to open file");
1307 exit(-1);
1308 }
1309
1310 err = fstat(input, &perf_stat);
1311 if (err < 0) {
1312 perror("failed to stat file");
1313 exit(-1);
1314 }
1315
1316 if (!perf_stat.st_size) {
1317 fprintf(stderr, "zero-sized file, nothing to do!\n");
1318 exit(0);
1319 }
1320
1321 scripting_ops = script_spec__lookup(generate_script_lang);
1322 if (!scripting_ops) {
1323 fprintf(stderr, "invalid language specifier");
1324 return -1;
1325 }
1326
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001327 err = scripting_ops->generate_script("perf-script");
Tom Zanussi956ffd02009-11-25 01:15:46 -06001328 goto out;
1329 }
1330
1331 if (script_name) {
Tom Zanussi586bc5c2009-12-15 02:53:35 -06001332 err = scripting_ops->start_script(script_name, argc, argv);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001333 if (err)
1334 goto out;
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001335 pr_debug("perf script started with script %s\n\n", script_name);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001336 }
1337
David Ahern9cbdb702011-04-06 21:54:20 -06001338
1339 err = perf_session__check_output_opt(session);
1340 if (err < 0)
1341 goto out;
1342
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001343 err = __cmd_script(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001344
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -02001345 perf_session__delete(session);
Tom Zanussi956ffd02009-11-25 01:15:46 -06001346 cleanup_scripting();
1347out:
1348 return err;
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +02001349}