]>
Commit | Line | Data |
---|---|---|
5f9c39dc FW |
1 | #include "builtin.h" |
2 | ||
b7eead86 | 3 | #include "perf.h" |
5f9c39dc | 4 | #include "util/cache.h" |
b7eead86 AG |
5 | #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" | |
45694aa7 | 10 | #include "util/tool.h" |
5f9c39dc FW |
11 | #include "util/symbol.h" |
12 | #include "util/thread.h" | |
cf72344d | 13 | #include "util/trace-event.h" |
b7eead86 | 14 | #include "util/util.h" |
1424dc96 DA |
15 | #include "util/evlist.h" |
16 | #include "util/evsel.h" | |
5d67be97 | 17 | #include <linux/bitmap.h> |
5f9c39dc | 18 | |
956ffd02 TZ |
19 | static char const *script_name; |
20 | static char const *generate_script_lang; | |
ffabd99e | 21 | static bool debug_mode; |
e1889d75 | 22 | static u64 last_timestamp; |
6fcf7ddb | 23 | static u64 nr_unordered; |
34c86ea9 | 24 | extern const struct option record_options[]; |
c0230b2b | 25 | static bool no_callchain; |
fbe96f29 | 26 | static bool show_full_info; |
317df650 | 27 | static bool system_wide; |
5d67be97 AB |
28 | static const char *cpu_list; |
29 | static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); | |
956ffd02 | 30 | |
da378962 ACM |
31 | struct perf_script { |
32 | struct perf_tool tool; | |
33 | struct perf_session *session; | |
34 | }; | |
35 | ||
745f43e3 DA |
36 | enum 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, | |
787bef17 DA |
44 | PERF_OUTPUT_IP = 1U << 7, |
45 | PERF_OUTPUT_SYM = 1U << 8, | |
610723f2 | 46 | PERF_OUTPUT_DSO = 1U << 9, |
7cec0922 | 47 | PERF_OUTPUT_ADDR = 1U << 10, |
a978f2ab | 48 | PERF_OUTPUT_SYMOFFSET = 1U << 11, |
745f43e3 DA |
49 | }; |
50 | ||
51 | struct 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}, | |
787bef17 | 62 | {.str = "ip", .field = PERF_OUTPUT_IP}, |
c0230b2b | 63 | {.str = "sym", .field = PERF_OUTPUT_SYM}, |
610723f2 | 64 | {.str = "dso", .field = PERF_OUTPUT_DSO}, |
7cec0922 | 65 | {.str = "addr", .field = PERF_OUTPUT_ADDR}, |
a978f2ab | 66 | {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET}, |
745f43e3 DA |
67 | }; |
68 | ||
69 | /* default set to maintain compatibility with current format */ | |
2c9e45f7 DA |
70 | static struct { |
71 | bool user_set; | |
9cbdb702 | 72 | bool wildcard_set; |
2c9e45f7 DA |
73 | u64 fields; |
74 | u64 invalid_fields; | |
75 | } output[PERF_TYPE_MAX] = { | |
76 | ||
77 | [PERF_TYPE_HARDWARE] = { | |
78 | .user_set = false, | |
79 | ||
80 | .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID | | |
81 | PERF_OUTPUT_CPU | PERF_OUTPUT_TIME | | |
787bef17 | 82 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP | |
610723f2 | 83 | PERF_OUTPUT_SYM | PERF_OUTPUT_DSO, |
2c9e45f7 DA |
84 | |
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 | | |
787bef17 | 93 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP | |
610723f2 | 94 | PERF_OUTPUT_SYM | PERF_OUTPUT_DSO, |
2c9e45f7 DA |
95 | |
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 | }, | |
0817a6a3 AS |
106 | |
107 | [PERF_TYPE_RAW] = { | |
108 | .user_set = false, | |
109 | ||
110 | .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID | | |
111 | PERF_OUTPUT_CPU | PERF_OUTPUT_TIME | | |
787bef17 | 112 | PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP | |
610723f2 | 113 | PERF_OUTPUT_SYM | PERF_OUTPUT_DSO, |
0817a6a3 AS |
114 | |
115 | .invalid_fields = PERF_OUTPUT_TRACE, | |
116 | }, | |
1424dc96 | 117 | }; |
745f43e3 | 118 | |
2c9e45f7 DA |
119 | static 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 | } | |
745f43e3 | 128 | |
9cbdb702 DA |
129 | static 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 | ||
2c9e45f7 | 143 | #define PRINT_FIELD(x) (output[attr->type].fields & PERF_OUTPUT_##x) |
1424dc96 | 144 | |
5bff01f6 ACM |
145 | static int perf_evsel__check_stype(struct perf_evsel *evsel, |
146 | u64 sample_type, const char *sample_msg, | |
147 | enum perf_output_field field) | |
1424dc96 | 148 | { |
5bff01f6 | 149 | struct perf_event_attr *attr = &evsel->attr; |
9cbdb702 DA |
150 | 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) { | |
5bff01f6 | 157 | evname = perf_evsel__name(evsel); |
9cbdb702 DA |
158 | 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; | |
5bff01f6 | 166 | evname = perf_evsel__name(evsel); |
9cbdb702 DA |
167 | 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 | ||
174 | static int perf_evsel__check_attr(struct perf_evsel *evsel, | |
175 | struct perf_session *session) | |
176 | { | |
177 | struct perf_event_attr *attr = &evsel->attr; | |
178 | ||
1424dc96 DA |
179 | if (PRINT_FIELD(TRACE) && |
180 | !perf_session__has_traces(session, "record -R")) | |
181 | return -EINVAL; | |
182 | ||
787bef17 | 183 | if (PRINT_FIELD(IP)) { |
5bff01f6 ACM |
184 | if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP", |
185 | PERF_OUTPUT_IP)) | |
1424dc96 | 186 | return -EINVAL; |
9cbdb702 | 187 | |
1424dc96 | 188 | if (!no_callchain && |
9cbdb702 | 189 | !(attr->sample_type & PERF_SAMPLE_CALLCHAIN)) |
1424dc96 DA |
190 | symbol_conf.use_callchain = false; |
191 | } | |
7cec0922 DA |
192 | |
193 | if (PRINT_FIELD(ADDR) && | |
5bff01f6 ACM |
194 | perf_evsel__check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR", |
195 | PERF_OUTPUT_ADDR)) | |
7cec0922 DA |
196 | 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"); | |
787bef17 DA |
202 | return -EINVAL; |
203 | } | |
a978f2ab AN |
204 | 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 | } | |
7cec0922 DA |
209 | 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"); | |
610723f2 DA |
213 | return -EINVAL; |
214 | } | |
1424dc96 DA |
215 | |
216 | if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) && | |
5bff01f6 ACM |
217 | perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID", |
218 | PERF_OUTPUT_TID|PERF_OUTPUT_PID)) | |
1424dc96 | 219 | return -EINVAL; |
1424dc96 DA |
220 | |
221 | if (PRINT_FIELD(TIME) && | |
5bff01f6 ACM |
222 | perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME", |
223 | PERF_OUTPUT_TIME)) | |
1424dc96 | 224 | return -EINVAL; |
1424dc96 DA |
225 | |
226 | if (PRINT_FIELD(CPU) && | |
5bff01f6 ACM |
227 | perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU", |
228 | PERF_OUTPUT_CPU)) | |
1424dc96 | 229 | return -EINVAL; |
9cbdb702 DA |
230 | |
231 | return 0; | |
232 | } | |
233 | ||
234 | /* | |
235 | * verify all user requested events exist and the samples | |
236 | * have the expected data | |
237 | */ | |
238 | static 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; | |
1424dc96 DA |
260 | } |
261 | ||
262 | return 0; | |
263 | } | |
745f43e3 | 264 | |
fcf65bf1 | 265 | static void print_sample_start(struct perf_sample *sample, |
1424dc96 | 266 | struct thread *thread, |
5bff01f6 | 267 | struct perf_evsel *evsel) |
c70c94b4 | 268 | { |
5bff01f6 | 269 | struct perf_event_attr *attr = &evsel->attr; |
c70c94b4 DA |
270 | const char *evname = NULL; |
271 | unsigned long secs; | |
272 | unsigned long usecs; | |
745f43e3 DA |
273 | unsigned long long nsecs; |
274 | ||
275 | if (PRINT_FIELD(COMM)) { | |
276 | if (latency_format) | |
277 | printf("%8.8s ", thread->comm); | |
787bef17 | 278 | else if (PRINT_FIELD(IP) && symbol_conf.use_callchain) |
c0230b2b | 279 | printf("%s ", thread->comm); |
745f43e3 DA |
280 | else |
281 | printf("%16s ", thread->comm); | |
282 | } | |
c70c94b4 | 283 | |
745f43e3 DA |
284 | 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); | |
290 | ||
291 | if (PRINT_FIELD(CPU)) { | |
292 | if (latency_format) | |
293 | printf("%3d ", sample->cpu); | |
294 | else | |
295 | printf("[%03d] ", sample->cpu); | |
296 | } | |
c70c94b4 | 297 | |
745f43e3 DA |
298 | 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 | } | |
c70c94b4 | 305 | |
745f43e3 | 306 | if (PRINT_FIELD(EVNAME)) { |
fcf65bf1 | 307 | evname = perf_evsel__name(evsel); |
547a92e0 | 308 | printf("%s: ", evname ? evname : "[unknown]"); |
745f43e3 | 309 | } |
c70c94b4 DA |
310 | } |
311 | ||
95582596 AN |
312 | static 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 | ||
7cec0922 DA |
319 | static 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 | ||
95582596 AN |
327 | if (is_bts_event(attr)) |
328 | return true; | |
329 | ||
7cec0922 DA |
330 | return false; |
331 | } | |
332 | ||
333 | static void print_sample_addr(union perf_event *event, | |
334 | struct perf_sample *sample, | |
743eb868 | 335 | struct machine *machine, |
7cec0922 DA |
336 | 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; | |
7cec0922 DA |
341 | |
342 | printf("%16" PRIx64, sample->addr); | |
343 | ||
344 | if (!sample_addr_correlates_sym(attr)) | |
345 | return; | |
346 | ||
743eb868 ACM |
347 | thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION, |
348 | sample->addr, &al); | |
7cec0922 | 349 | if (!al.map) |
743eb868 ACM |
350 | thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE, |
351 | sample->addr, &al); | |
7cec0922 DA |
352 | |
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)) { | |
547a92e0 | 360 | printf(" "); |
a978f2ab AN |
361 | if (PRINT_FIELD(SYMOFFSET)) |
362 | symbol__fprintf_symname_offs(al.sym, &al, stdout); | |
363 | else | |
364 | symbol__fprintf_symname(al.sym, stdout); | |
7cec0922 DA |
365 | } |
366 | ||
367 | if (PRINT_FIELD(DSO)) { | |
547a92e0 AN |
368 | printf(" ("); |
369 | map__fprintf_dsoname(al.map, stdout); | |
370 | printf(")"); | |
7cec0922 DA |
371 | } |
372 | } | |
373 | ||
95582596 AN |
374 | static 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"); | |
a9c34a9f | 388 | perf_event__print_ip(event, sample, machine, |
a978f2ab AN |
389 | PRINT_FIELD(SYM), PRINT_FIELD(DSO), |
390 | PRINT_FIELD(SYMOFFSET)); | |
95582596 AN |
391 | } |
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 | ||
be6d842a | 402 | static void process_event(union perf_event *event __unused, |
fcf65bf1 | 403 | struct pevent *pevent __unused, |
be6d842a | 404 | struct perf_sample *sample, |
9e69c210 | 405 | struct perf_evsel *evsel, |
743eb868 | 406 | struct machine *machine, |
be6d842a DA |
407 | struct thread *thread) |
408 | { | |
9e69c210 | 409 | struct perf_event_attr *attr = &evsel->attr; |
1424dc96 | 410 | |
2c9e45f7 | 411 | if (output[attr->type].fields == 0) |
1424dc96 DA |
412 | return; |
413 | ||
fcf65bf1 | 414 | print_sample_start(sample, thread, evsel); |
745f43e3 | 415 | |
95582596 AN |
416 | if (is_bts_event(attr)) { |
417 | print_sample_bts(event, sample, evsel, machine, thread); | |
418 | return; | |
419 | } | |
420 | ||
745f43e3 | 421 | if (PRINT_FIELD(TRACE)) |
fcf65bf1 ACM |
422 | event_format__print(evsel->tp_format, sample->cpu, |
423 | sample->raw_data, sample->raw_size); | |
7cec0922 | 424 | if (PRINT_FIELD(ADDR)) |
743eb868 | 425 | print_sample_addr(event, sample, machine, thread, attr); |
7cec0922 | 426 | |
787bef17 | 427 | if (PRINT_FIELD(IP)) { |
c0230b2b DA |
428 | if (!symbol_conf.use_callchain) |
429 | printf(" "); | |
430 | else | |
431 | printf("\n"); | |
a9c34a9f | 432 | perf_event__print_ip(event, sample, machine, |
a978f2ab AN |
433 | PRINT_FIELD(SYM), PRINT_FIELD(DSO), |
434 | PRINT_FIELD(SYMOFFSET)); | |
c0230b2b DA |
435 | } |
436 | ||
c70c94b4 | 437 | printf("\n"); |
be6d842a DA |
438 | } |
439 | ||
586bc5cc TZ |
440 | static int default_start_script(const char *script __unused, |
441 | int argc __unused, | |
442 | const char **argv __unused) | |
956ffd02 TZ |
443 | { |
444 | return 0; | |
445 | } | |
446 | ||
447 | static int default_stop_script(void) | |
448 | { | |
449 | return 0; | |
450 | } | |
451 | ||
da378962 ACM |
452 | static int default_generate_script(struct pevent *pevent __unused, |
453 | const char *outfile __unused) | |
956ffd02 TZ |
454 | { |
455 | return 0; | |
456 | } | |
457 | ||
458 | static struct scripting_ops default_scripting_ops = { | |
459 | .start_script = default_start_script, | |
460 | .stop_script = default_stop_script, | |
be6d842a | 461 | .process_event = process_event, |
956ffd02 TZ |
462 | .generate_script = default_generate_script, |
463 | }; | |
464 | ||
465 | static struct scripting_ops *scripting_ops; | |
466 | ||
467 | static void setup_scripting(void) | |
468 | { | |
16c632de | 469 | setup_perl_scripting(); |
7e4b21b8 | 470 | setup_python_scripting(); |
16c632de | 471 | |
956ffd02 TZ |
472 | scripting_ops = &default_scripting_ops; |
473 | } | |
474 | ||
475 | static int cleanup_scripting(void) | |
476 | { | |
133dc4c3 | 477 | pr_debug("\nperf script stopped\n"); |
3824a4e8 | 478 | |
956ffd02 TZ |
479 | return scripting_ops->stop_script(); |
480 | } | |
481 | ||
efad1415 | 482 | static const char *input_name; |
5f9c39dc | 483 | |
45694aa7 | 484 | static int process_sample_event(struct perf_tool *tool __used, |
d20deb64 | 485 | union perf_event *event, |
8115d60c | 486 | struct perf_sample *sample, |
9e69c210 | 487 | struct perf_evsel *evsel, |
743eb868 | 488 | struct machine *machine) |
5f9c39dc | 489 | { |
e7984b7b | 490 | struct addr_location al; |
da378962 | 491 | struct perf_script *scr = container_of(tool, struct perf_script, tool); |
64aab93c | 492 | struct thread *thread = machine__findnew_thread(machine, event->ip.tid); |
6ddf259d | 493 | |
5f9c39dc | 494 | if (thread == NULL) { |
6beba7ad ACM |
495 | pr_debug("problem processing %d event, skipping it.\n", |
496 | event->header.type); | |
5f9c39dc FW |
497 | return -1; |
498 | } | |
499 | ||
1424dc96 DA |
500 | 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++; | |
e1889d75 | 506 | } |
1424dc96 DA |
507 | last_timestamp = sample->time; |
508 | return 0; | |
5f9c39dc | 509 | } |
5d67be97 | 510 | |
e7984b7b DA |
511 | 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 | ||
5d67be97 AB |
520 | if (cpu_list && !test_bit(sample->cpu, cpu_bitmap)) |
521 | return 0; | |
522 | ||
da378962 ACM |
523 | scripting_ops->process_event(event, scr->session->pevent, |
524 | sample, evsel, machine, thread); | |
5f9c39dc | 525 | |
743eb868 | 526 | evsel->hists.stats.total_period += sample->period; |
5f9c39dc FW |
527 | return 0; |
528 | } | |
529 | ||
da378962 ACM |
530 | static 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 | }, | |
016e92fb FW |
544 | }; |
545 | ||
c239da3b TZ |
546 | extern volatile int session_done; |
547 | ||
548 | static void sig_handler(int sig __unused) | |
549 | { | |
550 | session_done = 1; | |
551 | } | |
552 | ||
133dc4c3 | 553 | static int __cmd_script(struct perf_session *session) |
5f9c39dc | 554 | { |
6fcf7ddb FW |
555 | int ret; |
556 | ||
c239da3b TZ |
557 | signal(SIGINT, sig_handler); |
558 | ||
da378962 | 559 | ret = perf_session__process_events(session, &perf_script.tool); |
6fcf7ddb | 560 | |
6d8afb56 | 561 | if (debug_mode) |
9486aa38 | 562 | pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered); |
6fcf7ddb FW |
563 | |
564 | return ret; | |
5f9c39dc FW |
565 | } |
566 | ||
956ffd02 TZ |
567 | struct script_spec { |
568 | struct list_head node; | |
569 | struct scripting_ops *ops; | |
570 | char spec[0]; | |
571 | }; | |
572 | ||
eccdfe2d | 573 | static LIST_HEAD(script_specs); |
956ffd02 TZ |
574 | |
575 | static 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 | ||
956ffd02 TZ |
588 | static void script_spec__add(struct script_spec *s) |
589 | { | |
590 | list_add_tail(&s->node, &script_specs); | |
591 | } | |
592 | ||
593 | static 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 | ||
603 | static 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) | |
466e2876 | 613 | return NULL; |
956ffd02 TZ |
614 | |
615 | script_spec__add(s); | |
616 | ||
617 | return s; | |
956ffd02 TZ |
618 | } |
619 | ||
620 | int 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 | ||
635 | static 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 | ||
644 | static void list_available_languages(void) | |
645 | { | |
646 | struct script_spec *s; | |
647 | ||
648 | fprintf(stderr, "\n"); | |
649 | fprintf(stderr, "Scripting language extensions (used in " | |
133dc4c3 | 650 | "perf script -s [spec:]script.[spec]):\n\n"); |
956ffd02 TZ |
651 | |
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 | ||
658 | static 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 | ||
f526d68b | 665 | if (strcmp(str, "lang") == 0) { |
956ffd02 | 666 | list_available_languages(); |
f526d68b | 667 | exit(0); |
956ffd02 TZ |
668 | } |
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; | |
d1e95bb5 | 687 | ext = strrchr(script, '.'); |
956ffd02 TZ |
688 | 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 | ||
745f43e3 DA |
704 | static 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); | |
2c9e45f7 | 709 | int j; |
745f43e3 DA |
710 | int rc = 0; |
711 | char *str = strdup(arg); | |
1424dc96 | 712 | int type = -1; |
745f43e3 DA |
713 | |
714 | if (!str) | |
715 | return -ENOMEM; | |
716 | ||
2c9e45f7 DA |
717 | /* 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. | |
1424dc96 | 720 | */ |
2c9e45f7 DA |
721 | 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; | |
0817a6a3 AS |
731 | else if (!strcmp(str, "raw")) |
732 | type = PERF_TYPE_RAW; | |
2c9e45f7 DA |
733 | else { |
734 | fprintf(stderr, "Invalid event type in field string.\n"); | |
38efb539 RR |
735 | rc = -EINVAL; |
736 | goto out; | |
2c9e45f7 DA |
737 | } |
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; | |
9cbdb702 | 745 | output[type].wildcard_set = false; |
2c9e45f7 DA |
746 | |
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; | |
9cbdb702 | 762 | output[j].wildcard_set = true; |
2c9e45f7 | 763 | } |
745f43e3 DA |
764 | } |
765 | ||
2c9e45f7 DA |
766 | tok = strtok(tok, ","); |
767 | while (tok) { | |
745f43e3 | 768 | for (i = 0; i < imax; ++i) { |
2c9e45f7 | 769 | if (strcmp(tok, all_output_options[i].str) == 0) |
745f43e3 | 770 | break; |
745f43e3 DA |
771 | } |
772 | if (i == imax) { | |
2c9e45f7 | 773 | fprintf(stderr, "Invalid field requested.\n"); |
745f43e3 | 774 | rc = -EINVAL; |
2c9e45f7 | 775 | goto out; |
745f43e3 DA |
776 | } |
777 | ||
2c9e45f7 DA |
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, ","); | |
745f43e3 DA |
801 | } |
802 | ||
2c9e45f7 DA |
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)); | |
807 | } | |
808 | } | |
745f43e3 | 809 | |
2c9e45f7 | 810 | out: |
745f43e3 DA |
811 | free(str); |
812 | return rc; | |
813 | } | |
814 | ||
008f29d3 SB |
815 | /* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */ |
816 | static 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)\ | |
4b9c0c59 TZ |
829 | while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \ |
830 | lang_next) \ | |
008f29d3 SB |
831 | if ((lang_dirent.d_type == DT_DIR || \ |
832 | (lang_dirent.d_type == DT_UNKNOWN && \ | |
833 | is_directory(scripts_path, &lang_dirent))) && \ | |
4b9c0c59 TZ |
834 | (strcmp(lang_dirent.d_name, ".")) && \ |
835 | (strcmp(lang_dirent.d_name, ".."))) | |
836 | ||
008f29d3 | 837 | #define for_each_script(lang_path, lang_dir, script_dirent, script_next)\ |
4b9c0c59 TZ |
838 | while (!readdir_r(lang_dir, &script_dirent, &script_next) && \ |
839 | script_next) \ | |
008f29d3 SB |
840 | if (script_dirent.d_type != DT_DIR && \ |
841 | (script_dirent.d_type != DT_UNKNOWN || \ | |
842 | !is_directory(lang_path, &script_dirent))) | |
4b9c0c59 TZ |
843 | |
844 | ||
845 | #define RECORD_SUFFIX "-record" | |
846 | #define REPORT_SUFFIX "-report" | |
847 | ||
848 | struct script_desc { | |
849 | struct list_head node; | |
850 | char *name; | |
851 | char *half_liner; | |
852 | char *args; | |
853 | }; | |
854 | ||
eccdfe2d | 855 | static LIST_HEAD(script_descs); |
4b9c0c59 TZ |
856 | |
857 | static struct script_desc *script_desc__new(const char *name) | |
858 | { | |
859 | struct script_desc *s = zalloc(sizeof(*s)); | |
860 | ||
b5b87312 | 861 | if (s != NULL && name) |
4b9c0c59 TZ |
862 | s->name = strdup(name); |
863 | ||
864 | return s; | |
865 | } | |
866 | ||
867 | static void script_desc__delete(struct script_desc *s) | |
868 | { | |
869 | free(s->name); | |
e8719adf TZ |
870 | free(s->half_liner); |
871 | free(s->args); | |
4b9c0c59 TZ |
872 | free(s); |
873 | } | |
874 | ||
875 | static void script_desc__add(struct script_desc *s) | |
876 | { | |
877 | list_add_tail(&s->node, &script_descs); | |
878 | } | |
879 | ||
880 | static 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 | ||
890 | static 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 | ||
905 | out_delete_desc: | |
906 | script_desc__delete(s); | |
907 | ||
908 | return NULL; | |
909 | } | |
910 | ||
965bb6be | 911 | static const char *ends_with(const char *str, const char *suffix) |
4b9c0c59 TZ |
912 | { |
913 | size_t suffix_len = strlen(suffix); | |
965bb6be | 914 | const char *p = str; |
4b9c0c59 TZ |
915 | |
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 | ||
925 | static 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 | ||
937 | static 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 | ||
38efb539 RR |
978 | static 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 | ||
4b9c0c59 TZ |
996 | static 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; | |
4b9c0c59 TZ |
1007 | |
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 | ||
008f29d3 | 1014 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { |
4b9c0c59 TZ |
1015 | 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 | ||
008f29d3 | 1021 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { |
38efb539 RR |
1022 | script_root = get_script_root(&script_dirent, REPORT_SUFFIX); |
1023 | if (script_root) { | |
4b9c0c59 TZ |
1024 | 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); | |
38efb539 | 1028 | free(script_root); |
4b9c0c59 | 1029 | } |
4b9c0c59 TZ |
1030 | } |
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 | ||
3875294f TZ |
1044 | static 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]; | |
38efb539 | 1051 | char *__script_root; |
3875294f TZ |
1052 | |
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 | ||
008f29d3 | 1059 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { |
3875294f TZ |
1060 | 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 | ||
008f29d3 | 1066 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { |
38efb539 RR |
1067 | __script_root = get_script_root(&script_dirent, suffix); |
1068 | if (__script_root && !strcmp(script_root, __script_root)) { | |
1069 | free(__script_root); | |
946ef2a2 NK |
1070 | closedir(lang_dir); |
1071 | closedir(scripts_dir); | |
3875294f TZ |
1072 | snprintf(script_path, MAXPATHLEN, "%s/%s", |
1073 | lang_path, script_dirent.d_name); | |
38efb539 | 1074 | return strdup(script_path); |
3875294f TZ |
1075 | } |
1076 | free(__script_root); | |
1077 | } | |
946ef2a2 | 1078 | closedir(lang_dir); |
3875294f | 1079 | } |
946ef2a2 | 1080 | closedir(scripts_dir); |
3875294f | 1081 | |
38efb539 | 1082 | return NULL; |
3875294f TZ |
1083 | } |
1084 | ||
b5b87312 TZ |
1085 | static bool is_top_script(const char *script_path) |
1086 | { | |
965bb6be | 1087 | return ends_with(script_path, "top") == NULL ? false : true; |
b5b87312 TZ |
1088 | } |
1089 | ||
1090 | static 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++; | |
1107 | out: | |
1108 | script_desc__delete(desc); | |
1109 | ||
1110 | return n_args; | |
1111 | } | |
1112 | ||
133dc4c3 IM |
1113 | static 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]", | |
5f9c39dc FW |
1119 | NULL |
1120 | }; | |
1121 | ||
1122 | static const struct option options[] = { | |
1123 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, | |
1124 | "dump raw trace in ASCII"), | |
c0555642 | 1125 | OPT_INCR('v', "verbose", &verbose, |
5f9c39dc | 1126 | "be more verbose (show symbol address, etc)"), |
4b9c0c59 | 1127 | OPT_BOOLEAN('L', "Latency", &latency_format, |
cda48461 | 1128 | "show latency attributes (irqs/preemption disabled, etc)"), |
4b9c0c59 TZ |
1129 | OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts", |
1130 | list_available_scripts), | |
956ffd02 TZ |
1131 | 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", | |
133dc4c3 | 1135 | "generate perf-script.xx script in specified language"), |
408f0d18 HM |
1136 | OPT_STRING('i', "input", &input_name, "file", |
1137 | "input file name"), | |
ffabd99e FW |
1138 | OPT_BOOLEAN('d', "debug-mode", &debug_mode, |
1139 | "do various checks like samples ordering and lost events"), | |
c0230b2b DA |
1140 | 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"), | |
745f43e3 | 1148 | OPT_CALLBACK('f', "fields", NULL, "str", |
a978f2ab AN |
1149 | "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", | |
745f43e3 | 1153 | parse_output_fields), |
317df650 RR |
1154 | OPT_BOOLEAN('a', "all-cpus", &system_wide, |
1155 | "system-wide collection from all CPUs"), | |
c8e66720 | 1156 | OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"), |
e7984b7b DA |
1157 | OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]", |
1158 | "only display events for these comms"), | |
fbe96f29 SE |
1159 | OPT_BOOLEAN('I', "show-info", &show_full_info, |
1160 | "display extended information from perf.data file"), | |
0bc8d205 AN |
1161 | OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path, |
1162 | "Show the path of [kernel.kallsyms]"), | |
1163 | ||
1909629f | 1164 | OPT_END() |
5f9c39dc FW |
1165 | }; |
1166 | ||
34c86ea9 TZ |
1167 | static 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 | ||
133dc4c3 | 1181 | int cmd_script(int argc, const char **argv, const char *prefix __used) |
5f9c39dc | 1182 | { |
b5b87312 TZ |
1183 | char *rec_script_path = NULL; |
1184 | char *rep_script_path = NULL; | |
d8f66248 | 1185 | struct perf_session *session; |
b5b87312 | 1186 | char *script_path = NULL; |
3875294f | 1187 | const char **__argv; |
b5b87312 | 1188 | int i, j, err; |
3875294f | 1189 | |
b5b87312 TZ |
1190 | setup_scripting(); |
1191 | ||
133dc4c3 | 1192 | argc = parse_options(argc, argv, options, script_usage, |
b5b87312 TZ |
1193 | 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); | |
3875294f TZ |
1199 | } |
1200 | ||
b5b87312 TZ |
1201 | 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) { | |
3875294f | 1204 | fprintf(stderr, |
b5b87312 | 1205 | "Please specify a valid report script" |
133dc4c3 | 1206 | "(see 'perf script -l' for listing)\n"); |
3875294f TZ |
1207 | return -1; |
1208 | } | |
3875294f TZ |
1209 | } |
1210 | ||
44e668c6 BH |
1211 | /* make sure PERF_EXEC_PATH is set for scripts */ |
1212 | perf_set_argv_exec_path(perf_exec_path()); | |
1213 | ||
b5b87312 | 1214 | if (argc && !script_name && !rec_script_path && !rep_script_path) { |
a0cccc2e | 1215 | int live_pipe[2]; |
b5b87312 | 1216 | int rep_args; |
a0cccc2e TZ |
1217 | pid_t pid; |
1218 | ||
b5b87312 TZ |
1219 | 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" | |
133dc4c3 IM |
1224 | " script -l for available scripts.\n", argv[0]); |
1225 | usage_with_options(script_usage, options); | |
a0cccc2e TZ |
1226 | } |
1227 | ||
b5b87312 TZ |
1228 | 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." | |
133dc4c3 | 1237 | "\n\n See perf script -l for available " |
b5b87312 | 1238 | "scripts and options.\n", argv[0]); |
133dc4c3 | 1239 | usage_with_options(script_usage, options); |
b5b87312 | 1240 | } |
a0cccc2e TZ |
1241 | } |
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) { | |
b5b87312 TZ |
1255 | j = 0; |
1256 | ||
a0cccc2e TZ |
1257 | dup2(live_pipe[1], 1); |
1258 | close(live_pipe[0]); | |
1259 | ||
317df650 RR |
1260 | if (is_top_script(argv[0])) { |
1261 | system_wide = true; | |
1262 | } else if (!system_wide) { | |
b5b87312 TZ |
1263 | system_wide = !have_cmd(argc - rep_args, |
1264 | &argv[rep_args]); | |
317df650 | 1265 | } |
b5b87312 TZ |
1266 | |
1267 | __argv = malloc((argc + 6) * sizeof(const char *)); | |
e8719adf TZ |
1268 | if (!__argv) |
1269 | die("malloc"); | |
1270 | ||
b5b87312 TZ |
1271 | __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; | |
a0cccc2e TZ |
1281 | |
1282 | execvp("/bin/sh", (char **)__argv); | |
e8719adf | 1283 | free(__argv); |
a0cccc2e TZ |
1284 | exit(-1); |
1285 | } | |
1286 | ||
1287 | dup2(live_pipe[0], 0); | |
1288 | close(live_pipe[1]); | |
1289 | ||
b5b87312 | 1290 | __argv = malloc((argc + 4) * sizeof(const char *)); |
e8719adf TZ |
1291 | if (!__argv) |
1292 | die("malloc"); | |
b5b87312 TZ |
1293 | j = 0; |
1294 | __argv[j++] = "/bin/sh"; | |
1295 | __argv[j++] = rep_script_path; | |
1296 | for (i = 1; i < rep_args + 1; i++) | |
1297 | __argv[j++] = argv[i]; | |
1298 | __argv[j++] = "-i"; | |
1299 | __argv[j++] = "-"; | |
1300 | __argv[j++] = NULL; | |
a0cccc2e TZ |
1301 | |
1302 | execvp("/bin/sh", (char **)__argv); | |
e8719adf | 1303 | free(__argv); |
a0cccc2e TZ |
1304 | exit(-1); |
1305 | } | |
1306 | ||
b5b87312 TZ |
1307 | if (rec_script_path) |
1308 | script_path = rec_script_path; | |
1309 | if (rep_script_path) | |
1310 | script_path = rep_script_path; | |
34c86ea9 | 1311 | |
b5b87312 | 1312 | if (script_path) { |
b5b87312 | 1313 | j = 0; |
3875294f | 1314 | |
317df650 RR |
1315 | if (!rec_script_path) |
1316 | system_wide = false; | |
1317 | else if (!system_wide) | |
b5b87312 | 1318 | system_wide = !have_cmd(argc - 1, &argv[1]); |
34c86ea9 | 1319 | |
b5b87312 | 1320 | __argv = malloc((argc + 2) * sizeof(const char *)); |
e8719adf TZ |
1321 | if (!__argv) |
1322 | die("malloc"); | |
34c86ea9 TZ |
1323 | __argv[j++] = "/bin/sh"; |
1324 | __argv[j++] = script_path; | |
1325 | if (system_wide) | |
1326 | __argv[j++] = "-a"; | |
b5b87312 | 1327 | for (i = 2; i < argc; i++) |
34c86ea9 TZ |
1328 | __argv[j++] = argv[i]; |
1329 | __argv[j++] = NULL; | |
3875294f TZ |
1330 | |
1331 | execvp("/bin/sh", (char **)__argv); | |
e8719adf | 1332 | free(__argv); |
3875294f TZ |
1333 | exit(-1); |
1334 | } | |
956ffd02 | 1335 | |
655000e7 ACM |
1336 | if (symbol__init() < 0) |
1337 | return -1; | |
cf4fee50 TZ |
1338 | if (!script_name) |
1339 | setup_pager(); | |
5f9c39dc | 1340 | |
da378962 ACM |
1341 | session = perf_session__new(input_name, O_RDONLY, 0, false, |
1342 | &perf_script.tool); | |
d8f66248 ACM |
1343 | if (session == NULL) |
1344 | return -ENOMEM; | |
1345 | ||
da378962 ACM |
1346 | perf_script.session = session; |
1347 | ||
5d67be97 AB |
1348 | if (cpu_list) { |
1349 | if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap)) | |
1350 | return -1; | |
1351 | } | |
1352 | ||
fbe96f29 SE |
1353 | perf_session__fprintf_info(session, stdout, show_full_info); |
1354 | ||
1424dc96 | 1355 | if (!no_callchain) |
c0230b2b DA |
1356 | symbol_conf.use_callchain = true; |
1357 | else | |
1358 | symbol_conf.use_callchain = false; | |
1359 | ||
956ffd02 TZ |
1360 | if (generate_script_lang) { |
1361 | struct stat perf_stat; | |
745f43e3 DA |
1362 | int input; |
1363 | ||
2c9e45f7 | 1364 | if (output_set_by_user()) { |
745f43e3 DA |
1365 | fprintf(stderr, |
1366 | "custom fields not supported for generated scripts"); | |
1367 | return -1; | |
1368 | } | |
956ffd02 | 1369 | |
efad1415 | 1370 | input = open(session->filename, O_RDONLY); /* input_name */ |
956ffd02 TZ |
1371 | 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 | ||
da378962 ACM |
1393 | err = scripting_ops->generate_script(session->pevent, |
1394 | "perf-script"); | |
956ffd02 TZ |
1395 | goto out; |
1396 | } | |
1397 | ||
1398 | if (script_name) { | |
586bc5cc | 1399 | err = scripting_ops->start_script(script_name, argc, argv); |
956ffd02 TZ |
1400 | if (err) |
1401 | goto out; | |
133dc4c3 | 1402 | pr_debug("perf script started with script %s\n\n", script_name); |
956ffd02 TZ |
1403 | } |
1404 | ||
9cbdb702 DA |
1405 | |
1406 | err = perf_session__check_output_opt(session); | |
1407 | if (err < 0) | |
1408 | goto out; | |
1409 | ||
133dc4c3 | 1410 | err = __cmd_script(session); |
956ffd02 | 1411 | |
d8f66248 | 1412 | perf_session__delete(session); |
956ffd02 TZ |
1413 | cleanup_scripting(); |
1414 | out: | |
1415 | return err; | |
5f9c39dc | 1416 | } |