]>
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" | |
36385be5 | 17 | #include "util/sort.h" |
f5fc1412 | 18 | #include "util/data.h" |
5d67be97 | 19 | #include <linux/bitmap.h> |
5f9c39dc | 20 | |
956ffd02 TZ |
21 | static char const *script_name; |
22 | static char const *generate_script_lang; | |
ffabd99e | 23 | static bool debug_mode; |
e1889d75 | 24 | static u64 last_timestamp; |
6fcf7ddb | 25 | static u64 nr_unordered; |
34c86ea9 | 26 | extern const struct option record_options[]; |
c0230b2b | 27 | static bool no_callchain; |
47390ae2 | 28 | static bool latency_format; |
317df650 | 29 | static bool system_wide; |
5d67be97 AB |
30 | static const char *cpu_list; |
31 | static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); | |
956ffd02 | 32 | |
745f43e3 DA |
33 | enum perf_output_field { |
34 | PERF_OUTPUT_COMM = 1U << 0, | |
35 | PERF_OUTPUT_TID = 1U << 1, | |
36 | PERF_OUTPUT_PID = 1U << 2, | |
37 | PERF_OUTPUT_TIME = 1U << 3, | |
38 | PERF_OUTPUT_CPU = 1U << 4, | |
39 | PERF_OUTPUT_EVNAME = 1U << 5, | |
40 | PERF_OUTPUT_TRACE = 1U << 6, | |
787bef17 DA |
41 | PERF_OUTPUT_IP = 1U << 7, |
42 | PERF_OUTPUT_SYM = 1U << 8, | |
610723f2 | 43 | PERF_OUTPUT_DSO = 1U << 9, |
7cec0922 | 44 | PERF_OUTPUT_ADDR = 1U << 10, |
a978f2ab | 45 | PERF_OUTPUT_SYMOFFSET = 1U << 11, |
cc8fae1d | 46 | PERF_OUTPUT_SRCLINE = 1U << 12, |
745f43e3 DA |
47 | }; |
48 | ||
49 | struct output_option { | |
50 | const char *str; | |
51 | enum perf_output_field field; | |
52 | } all_output_options[] = { | |
53 | {.str = "comm", .field = PERF_OUTPUT_COMM}, | |
54 | {.str = "tid", .field = PERF_OUTPUT_TID}, | |
55 | {.str = "pid", .field = PERF_OUTPUT_PID}, | |
56 | {.str = "time", .field = PERF_OUTPUT_TIME}, | |
57 | {.str = "cpu", .field = PERF_OUTPUT_CPU}, | |
58 | {.str = "event", .field = PERF_OUTPUT_EVNAME}, | |
59 | {.str = "trace", .field = PERF_OUTPUT_TRACE}, | |
787bef17 | 60 | {.str = "ip", .field = PERF_OUTPUT_IP}, |
c0230b2b | 61 | {.str = "sym", .field = PERF_OUTPUT_SYM}, |
610723f2 | 62 | {.str = "dso", .field = PERF_OUTPUT_DSO}, |
7cec0922 | 63 | {.str = "addr", .field = PERF_OUTPUT_ADDR}, |
a978f2ab | 64 | {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET}, |
cc8fae1d | 65 | {.str = "srcline", .field = PERF_OUTPUT_SRCLINE}, |
745f43e3 DA |
66 | }; |
67 | ||
68 | /* default set to maintain compatibility with current format */ | |
2c9e45f7 DA |
69 | static struct { |
70 | bool user_set; | |
9cbdb702 | 71 | bool wildcard_set; |
a6ffaf91 | 72 | unsigned int print_ip_opts; |
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 | } | |
cc8fae1d AH |
215 | if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) { |
216 | pr_err("Display of source line number requested but sample IP is not\n" | |
217 | "selected. Hence, no address to lookup the source line number.\n"); | |
218 | return -EINVAL; | |
219 | } | |
1424dc96 DA |
220 | |
221 | if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) && | |
5bff01f6 ACM |
222 | perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID", |
223 | PERF_OUTPUT_TID|PERF_OUTPUT_PID)) | |
1424dc96 | 224 | return -EINVAL; |
1424dc96 DA |
225 | |
226 | if (PRINT_FIELD(TIME) && | |
5bff01f6 ACM |
227 | perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME", |
228 | PERF_OUTPUT_TIME)) | |
1424dc96 | 229 | return -EINVAL; |
1424dc96 DA |
230 | |
231 | if (PRINT_FIELD(CPU) && | |
5bff01f6 ACM |
232 | perf_evsel__check_stype(evsel, PERF_SAMPLE_CPU, "CPU", |
233 | PERF_OUTPUT_CPU)) | |
1424dc96 | 234 | return -EINVAL; |
9cbdb702 DA |
235 | |
236 | return 0; | |
237 | } | |
238 | ||
7ea95727 AH |
239 | static void set_print_ip_opts(struct perf_event_attr *attr) |
240 | { | |
241 | unsigned int type = attr->type; | |
242 | ||
243 | output[type].print_ip_opts = 0; | |
244 | if (PRINT_FIELD(IP)) | |
245 | output[type].print_ip_opts |= PRINT_IP_OPT_IP; | |
246 | ||
247 | if (PRINT_FIELD(SYM)) | |
248 | output[type].print_ip_opts |= PRINT_IP_OPT_SYM; | |
249 | ||
250 | if (PRINT_FIELD(DSO)) | |
251 | output[type].print_ip_opts |= PRINT_IP_OPT_DSO; | |
252 | ||
253 | if (PRINT_FIELD(SYMOFFSET)) | |
254 | output[type].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET; | |
cc8fae1d AH |
255 | |
256 | if (PRINT_FIELD(SRCLINE)) | |
257 | output[type].print_ip_opts |= PRINT_IP_OPT_SRCLINE; | |
7ea95727 AH |
258 | } |
259 | ||
9cbdb702 DA |
260 | /* |
261 | * verify all user requested events exist and the samples | |
262 | * have the expected data | |
263 | */ | |
264 | static int perf_session__check_output_opt(struct perf_session *session) | |
265 | { | |
266 | int j; | |
267 | struct perf_evsel *evsel; | |
268 | ||
269 | for (j = 0; j < PERF_TYPE_MAX; ++j) { | |
270 | evsel = perf_session__find_first_evtype(session, j); | |
271 | ||
272 | /* | |
273 | * even if fields is set to 0 (ie., show nothing) event must | |
274 | * exist if user explicitly includes it on the command line | |
275 | */ | |
276 | if (!evsel && output[j].user_set && !output[j].wildcard_set) { | |
277 | pr_err("%s events do not exist. " | |
278 | "Remove corresponding -f option to proceed.\n", | |
279 | event_type(j)); | |
280 | return -1; | |
281 | } | |
282 | ||
283 | if (evsel && output[j].fields && | |
284 | perf_evsel__check_attr(evsel, session)) | |
285 | return -1; | |
a6ffaf91 DA |
286 | |
287 | if (evsel == NULL) | |
288 | continue; | |
289 | ||
7ea95727 | 290 | set_print_ip_opts(&evsel->attr); |
1424dc96 DA |
291 | } |
292 | ||
80b8b496 DA |
293 | /* |
294 | * set default for tracepoints to print symbols only | |
295 | * if callchains are present | |
296 | */ | |
297 | if (symbol_conf.use_callchain && | |
298 | !output[PERF_TYPE_TRACEPOINT].user_set) { | |
299 | struct perf_event_attr *attr; | |
300 | ||
301 | j = PERF_TYPE_TRACEPOINT; | |
302 | evsel = perf_session__find_first_evtype(session, j); | |
303 | if (evsel == NULL) | |
304 | goto out; | |
305 | ||
306 | attr = &evsel->attr; | |
307 | ||
308 | if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) { | |
309 | output[j].fields |= PERF_OUTPUT_IP; | |
310 | output[j].fields |= PERF_OUTPUT_SYM; | |
311 | output[j].fields |= PERF_OUTPUT_DSO; | |
312 | set_print_ip_opts(attr); | |
313 | } | |
314 | } | |
315 | ||
316 | out: | |
1424dc96 DA |
317 | return 0; |
318 | } | |
745f43e3 | 319 | |
fcf65bf1 | 320 | static void print_sample_start(struct perf_sample *sample, |
1424dc96 | 321 | struct thread *thread, |
5bff01f6 | 322 | struct perf_evsel *evsel) |
c70c94b4 | 323 | { |
5bff01f6 | 324 | struct perf_event_attr *attr = &evsel->attr; |
c70c94b4 DA |
325 | unsigned long secs; |
326 | unsigned long usecs; | |
745f43e3 DA |
327 | unsigned long long nsecs; |
328 | ||
329 | if (PRINT_FIELD(COMM)) { | |
330 | if (latency_format) | |
b9c5143a | 331 | printf("%8.8s ", thread__comm_str(thread)); |
787bef17 | 332 | else if (PRINT_FIELD(IP) && symbol_conf.use_callchain) |
b9c5143a | 333 | printf("%s ", thread__comm_str(thread)); |
745f43e3 | 334 | else |
b9c5143a | 335 | printf("%16s ", thread__comm_str(thread)); |
745f43e3 | 336 | } |
c70c94b4 | 337 | |
745f43e3 DA |
338 | if (PRINT_FIELD(PID) && PRINT_FIELD(TID)) |
339 | printf("%5d/%-5d ", sample->pid, sample->tid); | |
340 | else if (PRINT_FIELD(PID)) | |
341 | printf("%5d ", sample->pid); | |
342 | else if (PRINT_FIELD(TID)) | |
343 | printf("%5d ", sample->tid); | |
344 | ||
345 | if (PRINT_FIELD(CPU)) { | |
346 | if (latency_format) | |
347 | printf("%3d ", sample->cpu); | |
348 | else | |
349 | printf("[%03d] ", sample->cpu); | |
350 | } | |
c70c94b4 | 351 | |
745f43e3 DA |
352 | if (PRINT_FIELD(TIME)) { |
353 | nsecs = sample->time; | |
354 | secs = nsecs / NSECS_PER_SEC; | |
355 | nsecs -= secs * NSECS_PER_SEC; | |
356 | usecs = nsecs / NSECS_PER_USEC; | |
357 | printf("%5lu.%06lu: ", secs, usecs); | |
358 | } | |
c70c94b4 DA |
359 | } |
360 | ||
95582596 AN |
361 | static bool is_bts_event(struct perf_event_attr *attr) |
362 | { | |
363 | return ((attr->type == PERF_TYPE_HARDWARE) && | |
364 | (attr->config & PERF_COUNT_HW_BRANCH_INSTRUCTIONS) && | |
365 | (attr->sample_period == 1)); | |
366 | } | |
367 | ||
7cec0922 DA |
368 | static bool sample_addr_correlates_sym(struct perf_event_attr *attr) |
369 | { | |
370 | if ((attr->type == PERF_TYPE_SOFTWARE) && | |
371 | ((attr->config == PERF_COUNT_SW_PAGE_FAULTS) || | |
372 | (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MIN) || | |
373 | (attr->config == PERF_COUNT_SW_PAGE_FAULTS_MAJ))) | |
374 | return true; | |
375 | ||
95582596 AN |
376 | if (is_bts_event(attr)) |
377 | return true; | |
378 | ||
7cec0922 DA |
379 | return false; |
380 | } | |
381 | ||
382 | static void print_sample_addr(union perf_event *event, | |
383 | struct perf_sample *sample, | |
743eb868 | 384 | struct machine *machine, |
7cec0922 DA |
385 | struct thread *thread, |
386 | struct perf_event_attr *attr) | |
387 | { | |
388 | struct addr_location al; | |
389 | u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; | |
7cec0922 DA |
390 | |
391 | printf("%16" PRIx64, sample->addr); | |
392 | ||
393 | if (!sample_addr_correlates_sym(attr)) | |
394 | return; | |
395 | ||
743eb868 | 396 | thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION, |
326f59bf | 397 | sample->addr, &al); |
7cec0922 | 398 | if (!al.map) |
743eb868 | 399 | thread__find_addr_map(thread, machine, cpumode, MAP__VARIABLE, |
326f59bf | 400 | sample->addr, &al); |
7cec0922 DA |
401 | |
402 | al.cpu = sample->cpu; | |
403 | al.sym = NULL; | |
404 | ||
405 | if (al.map) | |
406 | al.sym = map__find_symbol(al.map, al.addr, NULL); | |
407 | ||
408 | if (PRINT_FIELD(SYM)) { | |
547a92e0 | 409 | printf(" "); |
a978f2ab AN |
410 | if (PRINT_FIELD(SYMOFFSET)) |
411 | symbol__fprintf_symname_offs(al.sym, &al, stdout); | |
412 | else | |
413 | symbol__fprintf_symname(al.sym, stdout); | |
7cec0922 DA |
414 | } |
415 | ||
416 | if (PRINT_FIELD(DSO)) { | |
547a92e0 AN |
417 | printf(" ("); |
418 | map__fprintf_dsoname(al.map, stdout); | |
419 | printf(")"); | |
7cec0922 DA |
420 | } |
421 | } | |
422 | ||
95582596 AN |
423 | static void print_sample_bts(union perf_event *event, |
424 | struct perf_sample *sample, | |
425 | struct perf_evsel *evsel, | |
426 | struct machine *machine, | |
a2cb3cf2 AH |
427 | struct thread *thread, |
428 | struct addr_location *al) | |
95582596 AN |
429 | { |
430 | struct perf_event_attr *attr = &evsel->attr; | |
431 | ||
432 | /* print branch_from information */ | |
433 | if (PRINT_FIELD(IP)) { | |
434 | if (!symbol_conf.use_callchain) | |
435 | printf(" "); | |
436 | else | |
437 | printf("\n"); | |
a2cb3cf2 | 438 | perf_evsel__print_ip(evsel, sample, machine, al, |
307cbb92 DA |
439 | output[attr->type].print_ip_opts, |
440 | PERF_MAX_STACK_DEPTH); | |
95582596 AN |
441 | } |
442 | ||
443 | printf(" => "); | |
444 | ||
445 | /* print branch_to information */ | |
243be3dd AH |
446 | if (PRINT_FIELD(ADDR) || |
447 | ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) && | |
448 | !output[attr->type].user_set)) | |
95582596 AN |
449 | print_sample_addr(event, sample, machine, thread, attr); |
450 | ||
451 | printf("\n"); | |
452 | } | |
453 | ||
97822433 ACM |
454 | static void process_event(union perf_event *event, struct perf_sample *sample, |
455 | struct perf_evsel *evsel, struct machine *machine, | |
2eaa1b40 | 456 | struct thread *thread, |
a2cb3cf2 | 457 | struct addr_location *al) |
be6d842a | 458 | { |
9e69c210 | 459 | struct perf_event_attr *attr = &evsel->attr; |
1424dc96 | 460 | |
2c9e45f7 | 461 | if (output[attr->type].fields == 0) |
1424dc96 DA |
462 | return; |
463 | ||
fcf65bf1 | 464 | print_sample_start(sample, thread, evsel); |
745f43e3 | 465 | |
e944d3d7 NK |
466 | if (PRINT_FIELD(EVNAME)) { |
467 | const char *evname = perf_evsel__name(evsel); | |
468 | printf("%s: ", evname ? evname : "[unknown]"); | |
469 | } | |
470 | ||
95582596 | 471 | if (is_bts_event(attr)) { |
a2cb3cf2 | 472 | print_sample_bts(event, sample, evsel, machine, thread, al); |
95582596 AN |
473 | return; |
474 | } | |
475 | ||
745f43e3 | 476 | if (PRINT_FIELD(TRACE)) |
fcf65bf1 ACM |
477 | event_format__print(evsel->tp_format, sample->cpu, |
478 | sample->raw_data, sample->raw_size); | |
7cec0922 | 479 | if (PRINT_FIELD(ADDR)) |
743eb868 | 480 | print_sample_addr(event, sample, machine, thread, attr); |
7cec0922 | 481 | |
787bef17 | 482 | if (PRINT_FIELD(IP)) { |
c0230b2b DA |
483 | if (!symbol_conf.use_callchain) |
484 | printf(" "); | |
485 | else | |
486 | printf("\n"); | |
a6ffaf91 | 487 | |
a2cb3cf2 | 488 | perf_evsel__print_ip(evsel, sample, machine, al, |
307cbb92 DA |
489 | output[attr->type].print_ip_opts, |
490 | PERF_MAX_STACK_DEPTH); | |
c0230b2b DA |
491 | } |
492 | ||
c70c94b4 | 493 | printf("\n"); |
be6d842a DA |
494 | } |
495 | ||
1d037ca1 IT |
496 | static int default_start_script(const char *script __maybe_unused, |
497 | int argc __maybe_unused, | |
498 | const char **argv __maybe_unused) | |
956ffd02 TZ |
499 | { |
500 | return 0; | |
501 | } | |
502 | ||
503 | static int default_stop_script(void) | |
504 | { | |
505 | return 0; | |
506 | } | |
507 | ||
1d037ca1 IT |
508 | static int default_generate_script(struct pevent *pevent __maybe_unused, |
509 | const char *outfile __maybe_unused) | |
956ffd02 TZ |
510 | { |
511 | return 0; | |
512 | } | |
513 | ||
514 | static struct scripting_ops default_scripting_ops = { | |
515 | .start_script = default_start_script, | |
516 | .stop_script = default_stop_script, | |
be6d842a | 517 | .process_event = process_event, |
956ffd02 TZ |
518 | .generate_script = default_generate_script, |
519 | }; | |
520 | ||
521 | static struct scripting_ops *scripting_ops; | |
522 | ||
523 | static void setup_scripting(void) | |
524 | { | |
16c632de | 525 | setup_perl_scripting(); |
7e4b21b8 | 526 | setup_python_scripting(); |
16c632de | 527 | |
956ffd02 TZ |
528 | scripting_ops = &default_scripting_ops; |
529 | } | |
530 | ||
531 | static int cleanup_scripting(void) | |
532 | { | |
133dc4c3 | 533 | pr_debug("\nperf script stopped\n"); |
3824a4e8 | 534 | |
956ffd02 TZ |
535 | return scripting_ops->stop_script(); |
536 | } | |
537 | ||
1d037ca1 | 538 | static int process_sample_event(struct perf_tool *tool __maybe_unused, |
d20deb64 | 539 | union perf_event *event, |
8115d60c | 540 | struct perf_sample *sample, |
9e69c210 | 541 | struct perf_evsel *evsel, |
743eb868 | 542 | struct machine *machine) |
5f9c39dc | 543 | { |
e7984b7b | 544 | struct addr_location al; |
ef89325f AH |
545 | struct thread *thread = machine__findnew_thread(machine, sample->pid, |
546 | sample->tid); | |
6ddf259d | 547 | |
5f9c39dc | 548 | if (thread == NULL) { |
6beba7ad ACM |
549 | pr_debug("problem processing %d event, skipping it.\n", |
550 | event->header.type); | |
5f9c39dc FW |
551 | return -1; |
552 | } | |
553 | ||
1424dc96 DA |
554 | if (debug_mode) { |
555 | if (sample->time < last_timestamp) { | |
556 | pr_err("Samples misordered, previous: %" PRIu64 | |
557 | " this: %" PRIu64 "\n", last_timestamp, | |
558 | sample->time); | |
559 | nr_unordered++; | |
e1889d75 | 560 | } |
1424dc96 DA |
561 | last_timestamp = sample->time; |
562 | return 0; | |
5f9c39dc | 563 | } |
5d67be97 | 564 | |
e44baa3e | 565 | if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) { |
e7984b7b DA |
566 | pr_err("problem processing %d event, skipping it.\n", |
567 | event->header.type); | |
568 | return -1; | |
569 | } | |
570 | ||
571 | if (al.filtered) | |
572 | return 0; | |
573 | ||
5d67be97 AB |
574 | if (cpu_list && !test_bit(sample->cpu, cpu_bitmap)) |
575 | return 0; | |
576 | ||
2eaa1b40 | 577 | scripting_ops->process_event(event, sample, evsel, machine, thread, &al); |
5f9c39dc | 578 | |
743eb868 | 579 | evsel->hists.stats.total_period += sample->period; |
5f9c39dc FW |
580 | return 0; |
581 | } | |
582 | ||
6f3e5eda AH |
583 | struct perf_script { |
584 | struct perf_tool tool; | |
585 | struct perf_session *session; | |
ad7ebb9a | 586 | bool show_task_events; |
ba1ddf42 | 587 | bool show_mmap_events; |
016e92fb FW |
588 | }; |
589 | ||
7ea95727 AH |
590 | static int process_attr(struct perf_tool *tool, union perf_event *event, |
591 | struct perf_evlist **pevlist) | |
592 | { | |
593 | struct perf_script *scr = container_of(tool, struct perf_script, tool); | |
594 | struct perf_evlist *evlist; | |
595 | struct perf_evsel *evsel, *pos; | |
596 | int err; | |
597 | ||
598 | err = perf_event__process_attr(tool, event, pevlist); | |
599 | if (err) | |
600 | return err; | |
601 | ||
602 | evlist = *pevlist; | |
603 | evsel = perf_evlist__last(*pevlist); | |
604 | ||
605 | if (evsel->attr.type >= PERF_TYPE_MAX) | |
606 | return 0; | |
607 | ||
608 | list_for_each_entry(pos, &evlist->entries, node) { | |
609 | if (pos->attr.type == evsel->attr.type && pos != evsel) | |
610 | return 0; | |
611 | } | |
612 | ||
613 | set_print_ip_opts(&evsel->attr); | |
614 | ||
615 | return perf_evsel__check_attr(evsel, scr->session); | |
616 | } | |
617 | ||
ad7ebb9a NK |
618 | static int process_comm_event(struct perf_tool *tool, |
619 | union perf_event *event, | |
620 | struct perf_sample *sample, | |
621 | struct machine *machine) | |
622 | { | |
623 | struct thread *thread; | |
624 | struct perf_script *script = container_of(tool, struct perf_script, tool); | |
625 | struct perf_session *session = script->session; | |
626 | struct perf_evsel *evsel = perf_evlist__first(session->evlist); | |
627 | int ret = -1; | |
628 | ||
629 | thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid); | |
630 | if (thread == NULL) { | |
631 | pr_debug("problem processing COMM event, skipping it.\n"); | |
632 | return -1; | |
633 | } | |
634 | ||
635 | if (perf_event__process_comm(tool, event, sample, machine) < 0) | |
636 | goto out; | |
637 | ||
638 | if (!evsel->attr.sample_id_all) { | |
639 | sample->cpu = 0; | |
640 | sample->time = 0; | |
641 | sample->tid = event->comm.tid; | |
642 | sample->pid = event->comm.pid; | |
643 | } | |
644 | print_sample_start(sample, thread, evsel); | |
645 | perf_event__fprintf(event, stdout); | |
646 | ret = 0; | |
647 | ||
648 | out: | |
649 | return ret; | |
650 | } | |
651 | ||
652 | static int process_fork_event(struct perf_tool *tool, | |
653 | union perf_event *event, | |
654 | struct perf_sample *sample, | |
655 | struct machine *machine) | |
656 | { | |
657 | struct thread *thread; | |
658 | struct perf_script *script = container_of(tool, struct perf_script, tool); | |
659 | struct perf_session *session = script->session; | |
660 | struct perf_evsel *evsel = perf_evlist__first(session->evlist); | |
661 | ||
662 | if (perf_event__process_fork(tool, event, sample, machine) < 0) | |
663 | return -1; | |
664 | ||
665 | thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid); | |
666 | if (thread == NULL) { | |
667 | pr_debug("problem processing FORK event, skipping it.\n"); | |
668 | return -1; | |
669 | } | |
670 | ||
671 | if (!evsel->attr.sample_id_all) { | |
672 | sample->cpu = 0; | |
673 | sample->time = event->fork.time; | |
674 | sample->tid = event->fork.tid; | |
675 | sample->pid = event->fork.pid; | |
676 | } | |
677 | print_sample_start(sample, thread, evsel); | |
678 | perf_event__fprintf(event, stdout); | |
679 | ||
680 | return 0; | |
681 | } | |
682 | static int process_exit_event(struct perf_tool *tool, | |
683 | union perf_event *event, | |
684 | struct perf_sample *sample, | |
685 | struct machine *machine) | |
686 | { | |
687 | struct thread *thread; | |
688 | struct perf_script *script = container_of(tool, struct perf_script, tool); | |
689 | struct perf_session *session = script->session; | |
690 | struct perf_evsel *evsel = perf_evlist__first(session->evlist); | |
691 | ||
692 | thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid); | |
693 | if (thread == NULL) { | |
694 | pr_debug("problem processing EXIT event, skipping it.\n"); | |
695 | return -1; | |
696 | } | |
697 | ||
698 | if (!evsel->attr.sample_id_all) { | |
699 | sample->cpu = 0; | |
700 | sample->time = 0; | |
701 | sample->tid = event->comm.tid; | |
702 | sample->pid = event->comm.pid; | |
703 | } | |
704 | print_sample_start(sample, thread, evsel); | |
705 | perf_event__fprintf(event, stdout); | |
706 | ||
707 | if (perf_event__process_exit(tool, event, sample, machine) < 0) | |
708 | return -1; | |
709 | ||
710 | return 0; | |
711 | } | |
712 | ||
ba1ddf42 NK |
713 | static int process_mmap_event(struct perf_tool *tool, |
714 | union perf_event *event, | |
715 | struct perf_sample *sample, | |
716 | struct machine *machine) | |
717 | { | |
718 | struct thread *thread; | |
719 | struct perf_script *script = container_of(tool, struct perf_script, tool); | |
720 | struct perf_session *session = script->session; | |
721 | struct perf_evsel *evsel = perf_evlist__first(session->evlist); | |
722 | ||
723 | if (perf_event__process_mmap(tool, event, sample, machine) < 0) | |
724 | return -1; | |
725 | ||
726 | thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid); | |
727 | if (thread == NULL) { | |
728 | pr_debug("problem processing MMAP event, skipping it.\n"); | |
729 | return -1; | |
730 | } | |
731 | ||
732 | if (!evsel->attr.sample_id_all) { | |
733 | sample->cpu = 0; | |
734 | sample->time = 0; | |
735 | sample->tid = event->mmap.tid; | |
736 | sample->pid = event->mmap.pid; | |
737 | } | |
738 | print_sample_start(sample, thread, evsel); | |
739 | perf_event__fprintf(event, stdout); | |
740 | ||
741 | return 0; | |
742 | } | |
743 | ||
744 | static int process_mmap2_event(struct perf_tool *tool, | |
745 | union perf_event *event, | |
746 | struct perf_sample *sample, | |
747 | struct machine *machine) | |
748 | { | |
749 | struct thread *thread; | |
750 | struct perf_script *script = container_of(tool, struct perf_script, tool); | |
751 | struct perf_session *session = script->session; | |
752 | struct perf_evsel *evsel = perf_evlist__first(session->evlist); | |
753 | ||
754 | if (perf_event__process_mmap2(tool, event, sample, machine) < 0) | |
755 | return -1; | |
756 | ||
757 | thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid); | |
758 | if (thread == NULL) { | |
759 | pr_debug("problem processing MMAP2 event, skipping it.\n"); | |
760 | return -1; | |
761 | } | |
762 | ||
763 | if (!evsel->attr.sample_id_all) { | |
764 | sample->cpu = 0; | |
765 | sample->time = 0; | |
766 | sample->tid = event->mmap2.tid; | |
767 | sample->pid = event->mmap2.pid; | |
768 | } | |
769 | print_sample_start(sample, thread, evsel); | |
770 | perf_event__fprintf(event, stdout); | |
771 | ||
772 | return 0; | |
773 | } | |
774 | ||
1d037ca1 | 775 | static void sig_handler(int sig __maybe_unused) |
c239da3b TZ |
776 | { |
777 | session_done = 1; | |
778 | } | |
779 | ||
6f3e5eda | 780 | static int __cmd_script(struct perf_script *script) |
5f9c39dc | 781 | { |
6fcf7ddb FW |
782 | int ret; |
783 | ||
c239da3b TZ |
784 | signal(SIGINT, sig_handler); |
785 | ||
ad7ebb9a NK |
786 | /* override event processing functions */ |
787 | if (script->show_task_events) { | |
788 | script->tool.comm = process_comm_event; | |
789 | script->tool.fork = process_fork_event; | |
790 | script->tool.exit = process_exit_event; | |
791 | } | |
ba1ddf42 NK |
792 | if (script->show_mmap_events) { |
793 | script->tool.mmap = process_mmap_event; | |
794 | script->tool.mmap2 = process_mmap2_event; | |
795 | } | |
ad7ebb9a | 796 | |
6f3e5eda | 797 | ret = perf_session__process_events(script->session, &script->tool); |
6fcf7ddb | 798 | |
6d8afb56 | 799 | if (debug_mode) |
9486aa38 | 800 | pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered); |
6fcf7ddb FW |
801 | |
802 | return ret; | |
5f9c39dc FW |
803 | } |
804 | ||
956ffd02 TZ |
805 | struct script_spec { |
806 | struct list_head node; | |
807 | struct scripting_ops *ops; | |
808 | char spec[0]; | |
809 | }; | |
810 | ||
eccdfe2d | 811 | static LIST_HEAD(script_specs); |
956ffd02 TZ |
812 | |
813 | static struct script_spec *script_spec__new(const char *spec, | |
814 | struct scripting_ops *ops) | |
815 | { | |
816 | struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1); | |
817 | ||
818 | if (s != NULL) { | |
819 | strcpy(s->spec, spec); | |
820 | s->ops = ops; | |
821 | } | |
822 | ||
823 | return s; | |
824 | } | |
825 | ||
956ffd02 TZ |
826 | static void script_spec__add(struct script_spec *s) |
827 | { | |
828 | list_add_tail(&s->node, &script_specs); | |
829 | } | |
830 | ||
831 | static struct script_spec *script_spec__find(const char *spec) | |
832 | { | |
833 | struct script_spec *s; | |
834 | ||
835 | list_for_each_entry(s, &script_specs, node) | |
836 | if (strcasecmp(s->spec, spec) == 0) | |
837 | return s; | |
838 | return NULL; | |
839 | } | |
840 | ||
841 | static struct script_spec *script_spec__findnew(const char *spec, | |
842 | struct scripting_ops *ops) | |
843 | { | |
844 | struct script_spec *s = script_spec__find(spec); | |
845 | ||
846 | if (s) | |
847 | return s; | |
848 | ||
849 | s = script_spec__new(spec, ops); | |
850 | if (!s) | |
466e2876 | 851 | return NULL; |
956ffd02 TZ |
852 | |
853 | script_spec__add(s); | |
854 | ||
855 | return s; | |
956ffd02 TZ |
856 | } |
857 | ||
858 | int script_spec_register(const char *spec, struct scripting_ops *ops) | |
859 | { | |
860 | struct script_spec *s; | |
861 | ||
862 | s = script_spec__find(spec); | |
863 | if (s) | |
864 | return -1; | |
865 | ||
866 | s = script_spec__findnew(spec, ops); | |
867 | if (!s) | |
868 | return -1; | |
869 | ||
870 | return 0; | |
871 | } | |
872 | ||
873 | static struct scripting_ops *script_spec__lookup(const char *spec) | |
874 | { | |
875 | struct script_spec *s = script_spec__find(spec); | |
876 | if (!s) | |
877 | return NULL; | |
878 | ||
879 | return s->ops; | |
880 | } | |
881 | ||
882 | static void list_available_languages(void) | |
883 | { | |
884 | struct script_spec *s; | |
885 | ||
886 | fprintf(stderr, "\n"); | |
887 | fprintf(stderr, "Scripting language extensions (used in " | |
133dc4c3 | 888 | "perf script -s [spec:]script.[spec]):\n\n"); |
956ffd02 TZ |
889 | |
890 | list_for_each_entry(s, &script_specs, node) | |
891 | fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name); | |
892 | ||
893 | fprintf(stderr, "\n"); | |
894 | } | |
895 | ||
1d037ca1 IT |
896 | static int parse_scriptname(const struct option *opt __maybe_unused, |
897 | const char *str, int unset __maybe_unused) | |
956ffd02 TZ |
898 | { |
899 | char spec[PATH_MAX]; | |
900 | const char *script, *ext; | |
901 | int len; | |
902 | ||
f526d68b | 903 | if (strcmp(str, "lang") == 0) { |
956ffd02 | 904 | list_available_languages(); |
f526d68b | 905 | exit(0); |
956ffd02 TZ |
906 | } |
907 | ||
908 | script = strchr(str, ':'); | |
909 | if (script) { | |
910 | len = script - str; | |
911 | if (len >= PATH_MAX) { | |
912 | fprintf(stderr, "invalid language specifier"); | |
913 | return -1; | |
914 | } | |
915 | strncpy(spec, str, len); | |
916 | spec[len] = '\0'; | |
917 | scripting_ops = script_spec__lookup(spec); | |
918 | if (!scripting_ops) { | |
919 | fprintf(stderr, "invalid language specifier"); | |
920 | return -1; | |
921 | } | |
922 | script++; | |
923 | } else { | |
924 | script = str; | |
d1e95bb5 | 925 | ext = strrchr(script, '.'); |
956ffd02 TZ |
926 | if (!ext) { |
927 | fprintf(stderr, "invalid script extension"); | |
928 | return -1; | |
929 | } | |
930 | scripting_ops = script_spec__lookup(++ext); | |
931 | if (!scripting_ops) { | |
932 | fprintf(stderr, "invalid script extension"); | |
933 | return -1; | |
934 | } | |
935 | } | |
936 | ||
937 | script_name = strdup(script); | |
938 | ||
939 | return 0; | |
940 | } | |
941 | ||
1d037ca1 IT |
942 | static int parse_output_fields(const struct option *opt __maybe_unused, |
943 | const char *arg, int unset __maybe_unused) | |
745f43e3 DA |
944 | { |
945 | char *tok; | |
50ca19ae | 946 | int i, imax = ARRAY_SIZE(all_output_options); |
2c9e45f7 | 947 | int j; |
745f43e3 DA |
948 | int rc = 0; |
949 | char *str = strdup(arg); | |
1424dc96 | 950 | int type = -1; |
745f43e3 DA |
951 | |
952 | if (!str) | |
953 | return -ENOMEM; | |
954 | ||
2c9e45f7 DA |
955 | /* first word can state for which event type the user is specifying |
956 | * the fields. If no type exists, the specified fields apply to all | |
957 | * event types found in the file minus the invalid fields for a type. | |
1424dc96 | 958 | */ |
2c9e45f7 DA |
959 | tok = strchr(str, ':'); |
960 | if (tok) { | |
961 | *tok = '\0'; | |
962 | tok++; | |
963 | if (!strcmp(str, "hw")) | |
964 | type = PERF_TYPE_HARDWARE; | |
965 | else if (!strcmp(str, "sw")) | |
966 | type = PERF_TYPE_SOFTWARE; | |
967 | else if (!strcmp(str, "trace")) | |
968 | type = PERF_TYPE_TRACEPOINT; | |
0817a6a3 AS |
969 | else if (!strcmp(str, "raw")) |
970 | type = PERF_TYPE_RAW; | |
2c9e45f7 DA |
971 | else { |
972 | fprintf(stderr, "Invalid event type in field string.\n"); | |
38efb539 RR |
973 | rc = -EINVAL; |
974 | goto out; | |
2c9e45f7 DA |
975 | } |
976 | ||
977 | if (output[type].user_set) | |
978 | pr_warning("Overriding previous field request for %s events.\n", | |
979 | event_type(type)); | |
980 | ||
981 | output[type].fields = 0; | |
982 | output[type].user_set = true; | |
9cbdb702 | 983 | output[type].wildcard_set = false; |
2c9e45f7 DA |
984 | |
985 | } else { | |
986 | tok = str; | |
987 | if (strlen(str) == 0) { | |
988 | fprintf(stderr, | |
989 | "Cannot set fields to 'none' for all event types.\n"); | |
990 | rc = -EINVAL; | |
991 | goto out; | |
992 | } | |
993 | ||
994 | if (output_set_by_user()) | |
995 | pr_warning("Overriding previous field request for all events.\n"); | |
996 | ||
997 | for (j = 0; j < PERF_TYPE_MAX; ++j) { | |
998 | output[j].fields = 0; | |
999 | output[j].user_set = true; | |
9cbdb702 | 1000 | output[j].wildcard_set = true; |
2c9e45f7 | 1001 | } |
745f43e3 DA |
1002 | } |
1003 | ||
2c9e45f7 DA |
1004 | tok = strtok(tok, ","); |
1005 | while (tok) { | |
745f43e3 | 1006 | for (i = 0; i < imax; ++i) { |
2c9e45f7 | 1007 | if (strcmp(tok, all_output_options[i].str) == 0) |
745f43e3 | 1008 | break; |
745f43e3 DA |
1009 | } |
1010 | if (i == imax) { | |
2c9e45f7 | 1011 | fprintf(stderr, "Invalid field requested.\n"); |
745f43e3 | 1012 | rc = -EINVAL; |
2c9e45f7 | 1013 | goto out; |
745f43e3 DA |
1014 | } |
1015 | ||
2c9e45f7 DA |
1016 | if (type == -1) { |
1017 | /* add user option to all events types for | |
1018 | * which it is valid | |
1019 | */ | |
1020 | for (j = 0; j < PERF_TYPE_MAX; ++j) { | |
1021 | if (output[j].invalid_fields & all_output_options[i].field) { | |
1022 | pr_warning("\'%s\' not valid for %s events. Ignoring.\n", | |
1023 | all_output_options[i].str, event_type(j)); | |
1024 | } else | |
1025 | output[j].fields |= all_output_options[i].field; | |
1026 | } | |
1027 | } else { | |
1028 | if (output[type].invalid_fields & all_output_options[i].field) { | |
1029 | fprintf(stderr, "\'%s\' not valid for %s events.\n", | |
1030 | all_output_options[i].str, event_type(type)); | |
1031 | ||
1032 | rc = -EINVAL; | |
1033 | goto out; | |
1034 | } | |
1035 | output[type].fields |= all_output_options[i].field; | |
1036 | } | |
1037 | ||
1038 | tok = strtok(NULL, ","); | |
745f43e3 DA |
1039 | } |
1040 | ||
2c9e45f7 DA |
1041 | if (type >= 0) { |
1042 | if (output[type].fields == 0) { | |
1043 | pr_debug("No fields requested for %s type. " | |
1044 | "Events will not be displayed.\n", event_type(type)); | |
1045 | } | |
1046 | } | |
745f43e3 | 1047 | |
2c9e45f7 | 1048 | out: |
745f43e3 DA |
1049 | free(str); |
1050 | return rc; | |
1051 | } | |
1052 | ||
008f29d3 SB |
1053 | /* Helper function for filesystems that return a dent->d_type DT_UNKNOWN */ |
1054 | static int is_directory(const char *base_path, const struct dirent *dent) | |
1055 | { | |
1056 | char path[PATH_MAX]; | |
1057 | struct stat st; | |
1058 | ||
1059 | sprintf(path, "%s/%s", base_path, dent->d_name); | |
1060 | if (stat(path, &st)) | |
1061 | return 0; | |
1062 | ||
1063 | return S_ISDIR(st.st_mode); | |
1064 | } | |
1065 | ||
1066 | #define for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next)\ | |
4b9c0c59 TZ |
1067 | while (!readdir_r(scripts_dir, &lang_dirent, &lang_next) && \ |
1068 | lang_next) \ | |
008f29d3 SB |
1069 | if ((lang_dirent.d_type == DT_DIR || \ |
1070 | (lang_dirent.d_type == DT_UNKNOWN && \ | |
1071 | is_directory(scripts_path, &lang_dirent))) && \ | |
4b9c0c59 TZ |
1072 | (strcmp(lang_dirent.d_name, ".")) && \ |
1073 | (strcmp(lang_dirent.d_name, ".."))) | |
1074 | ||
008f29d3 | 1075 | #define for_each_script(lang_path, lang_dir, script_dirent, script_next)\ |
4b9c0c59 TZ |
1076 | while (!readdir_r(lang_dir, &script_dirent, &script_next) && \ |
1077 | script_next) \ | |
008f29d3 SB |
1078 | if (script_dirent.d_type != DT_DIR && \ |
1079 | (script_dirent.d_type != DT_UNKNOWN || \ | |
1080 | !is_directory(lang_path, &script_dirent))) | |
4b9c0c59 TZ |
1081 | |
1082 | ||
1083 | #define RECORD_SUFFIX "-record" | |
1084 | #define REPORT_SUFFIX "-report" | |
1085 | ||
1086 | struct script_desc { | |
1087 | struct list_head node; | |
1088 | char *name; | |
1089 | char *half_liner; | |
1090 | char *args; | |
1091 | }; | |
1092 | ||
eccdfe2d | 1093 | static LIST_HEAD(script_descs); |
4b9c0c59 TZ |
1094 | |
1095 | static struct script_desc *script_desc__new(const char *name) | |
1096 | { | |
1097 | struct script_desc *s = zalloc(sizeof(*s)); | |
1098 | ||
b5b87312 | 1099 | if (s != NULL && name) |
4b9c0c59 TZ |
1100 | s->name = strdup(name); |
1101 | ||
1102 | return s; | |
1103 | } | |
1104 | ||
1105 | static void script_desc__delete(struct script_desc *s) | |
1106 | { | |
1107 | free(s->name); | |
e8719adf TZ |
1108 | free(s->half_liner); |
1109 | free(s->args); | |
4b9c0c59 TZ |
1110 | free(s); |
1111 | } | |
1112 | ||
1113 | static void script_desc__add(struct script_desc *s) | |
1114 | { | |
1115 | list_add_tail(&s->node, &script_descs); | |
1116 | } | |
1117 | ||
1118 | static struct script_desc *script_desc__find(const char *name) | |
1119 | { | |
1120 | struct script_desc *s; | |
1121 | ||
1122 | list_for_each_entry(s, &script_descs, node) | |
1123 | if (strcasecmp(s->name, name) == 0) | |
1124 | return s; | |
1125 | return NULL; | |
1126 | } | |
1127 | ||
1128 | static struct script_desc *script_desc__findnew(const char *name) | |
1129 | { | |
1130 | struct script_desc *s = script_desc__find(name); | |
1131 | ||
1132 | if (s) | |
1133 | return s; | |
1134 | ||
1135 | s = script_desc__new(name); | |
1136 | if (!s) | |
1137 | goto out_delete_desc; | |
1138 | ||
1139 | script_desc__add(s); | |
1140 | ||
1141 | return s; | |
1142 | ||
1143 | out_delete_desc: | |
1144 | script_desc__delete(s); | |
1145 | ||
1146 | return NULL; | |
1147 | } | |
1148 | ||
965bb6be | 1149 | static const char *ends_with(const char *str, const char *suffix) |
4b9c0c59 TZ |
1150 | { |
1151 | size_t suffix_len = strlen(suffix); | |
965bb6be | 1152 | const char *p = str; |
4b9c0c59 TZ |
1153 | |
1154 | if (strlen(str) > suffix_len) { | |
1155 | p = str + strlen(str) - suffix_len; | |
1156 | if (!strncmp(p, suffix, suffix_len)) | |
1157 | return p; | |
1158 | } | |
1159 | ||
1160 | return NULL; | |
1161 | } | |
1162 | ||
4b9c0c59 TZ |
1163 | static int read_script_info(struct script_desc *desc, const char *filename) |
1164 | { | |
1165 | char line[BUFSIZ], *p; | |
1166 | FILE *fp; | |
1167 | ||
1168 | fp = fopen(filename, "r"); | |
1169 | if (!fp) | |
1170 | return -1; | |
1171 | ||
1172 | while (fgets(line, sizeof(line), fp)) { | |
1173 | p = ltrim(line); | |
1174 | if (strlen(p) == 0) | |
1175 | continue; | |
1176 | if (*p != '#') | |
1177 | continue; | |
1178 | p++; | |
1179 | if (strlen(p) && *p == '!') | |
1180 | continue; | |
1181 | ||
1182 | p = ltrim(p); | |
1183 | if (strlen(p) && p[strlen(p) - 1] == '\n') | |
1184 | p[strlen(p) - 1] = '\0'; | |
1185 | ||
1186 | if (!strncmp(p, "description:", strlen("description:"))) { | |
1187 | p += strlen("description:"); | |
1188 | desc->half_liner = strdup(ltrim(p)); | |
1189 | continue; | |
1190 | } | |
1191 | ||
1192 | if (!strncmp(p, "args:", strlen("args:"))) { | |
1193 | p += strlen("args:"); | |
1194 | desc->args = strdup(ltrim(p)); | |
1195 | continue; | |
1196 | } | |
1197 | } | |
1198 | ||
1199 | fclose(fp); | |
1200 | ||
1201 | return 0; | |
1202 | } | |
1203 | ||
38efb539 RR |
1204 | static char *get_script_root(struct dirent *script_dirent, const char *suffix) |
1205 | { | |
1206 | char *script_root, *str; | |
1207 | ||
1208 | script_root = strdup(script_dirent->d_name); | |
1209 | if (!script_root) | |
1210 | return NULL; | |
1211 | ||
1212 | str = (char *)ends_with(script_root, suffix); | |
1213 | if (!str) { | |
1214 | free(script_root); | |
1215 | return NULL; | |
1216 | } | |
1217 | ||
1218 | *str = '\0'; | |
1219 | return script_root; | |
1220 | } | |
1221 | ||
1d037ca1 IT |
1222 | static int list_available_scripts(const struct option *opt __maybe_unused, |
1223 | const char *s __maybe_unused, | |
1224 | int unset __maybe_unused) | |
4b9c0c59 TZ |
1225 | { |
1226 | struct dirent *script_next, *lang_next, script_dirent, lang_dirent; | |
1227 | char scripts_path[MAXPATHLEN]; | |
1228 | DIR *scripts_dir, *lang_dir; | |
1229 | char script_path[MAXPATHLEN]; | |
1230 | char lang_path[MAXPATHLEN]; | |
1231 | struct script_desc *desc; | |
1232 | char first_half[BUFSIZ]; | |
1233 | char *script_root; | |
4b9c0c59 TZ |
1234 | |
1235 | snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path()); | |
1236 | ||
1237 | scripts_dir = opendir(scripts_path); | |
1238 | if (!scripts_dir) | |
1239 | return -1; | |
1240 | ||
008f29d3 | 1241 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { |
4b9c0c59 TZ |
1242 | snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path, |
1243 | lang_dirent.d_name); | |
1244 | lang_dir = opendir(lang_path); | |
1245 | if (!lang_dir) | |
1246 | continue; | |
1247 | ||
008f29d3 | 1248 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { |
38efb539 RR |
1249 | script_root = get_script_root(&script_dirent, REPORT_SUFFIX); |
1250 | if (script_root) { | |
4b9c0c59 TZ |
1251 | desc = script_desc__findnew(script_root); |
1252 | snprintf(script_path, MAXPATHLEN, "%s/%s", | |
1253 | lang_path, script_dirent.d_name); | |
1254 | read_script_info(desc, script_path); | |
38efb539 | 1255 | free(script_root); |
4b9c0c59 | 1256 | } |
4b9c0c59 TZ |
1257 | } |
1258 | } | |
1259 | ||
1260 | fprintf(stdout, "List of available trace scripts:\n"); | |
1261 | list_for_each_entry(desc, &script_descs, node) { | |
1262 | sprintf(first_half, "%s %s", desc->name, | |
1263 | desc->args ? desc->args : ""); | |
1264 | fprintf(stdout, " %-36s %s\n", first_half, | |
1265 | desc->half_liner ? desc->half_liner : ""); | |
1266 | } | |
1267 | ||
1268 | exit(0); | |
1269 | } | |
1270 | ||
49e639e2 FT |
1271 | /* |
1272 | * Some scripts specify the required events in their "xxx-record" file, | |
1273 | * this function will check if the events in perf.data match those | |
1274 | * mentioned in the "xxx-record". | |
1275 | * | |
1276 | * Fixme: All existing "xxx-record" are all in good formats "-e event ", | |
1277 | * which is covered well now. And new parsing code should be added to | |
1278 | * cover the future complexing formats like event groups etc. | |
1279 | */ | |
1280 | static int check_ev_match(char *dir_name, char *scriptname, | |
1281 | struct perf_session *session) | |
1282 | { | |
1283 | char filename[MAXPATHLEN], evname[128]; | |
1284 | char line[BUFSIZ], *p; | |
1285 | struct perf_evsel *pos; | |
1286 | int match, len; | |
1287 | FILE *fp; | |
1288 | ||
1289 | sprintf(filename, "%s/bin/%s-record", dir_name, scriptname); | |
1290 | ||
1291 | fp = fopen(filename, "r"); | |
1292 | if (!fp) | |
1293 | return -1; | |
1294 | ||
1295 | while (fgets(line, sizeof(line), fp)) { | |
1296 | p = ltrim(line); | |
1297 | if (*p == '#') | |
1298 | continue; | |
1299 | ||
1300 | while (strlen(p)) { | |
1301 | p = strstr(p, "-e"); | |
1302 | if (!p) | |
1303 | break; | |
1304 | ||
1305 | p += 2; | |
1306 | p = ltrim(p); | |
1307 | len = strcspn(p, " \t"); | |
1308 | if (!len) | |
1309 | break; | |
1310 | ||
1311 | snprintf(evname, len + 1, "%s", p); | |
1312 | ||
1313 | match = 0; | |
1314 | list_for_each_entry(pos, | |
1315 | &session->evlist->entries, node) { | |
1316 | if (!strcmp(perf_evsel__name(pos), evname)) { | |
1317 | match = 1; | |
1318 | break; | |
1319 | } | |
1320 | } | |
1321 | ||
1322 | if (!match) { | |
1323 | fclose(fp); | |
1324 | return -1; | |
1325 | } | |
1326 | } | |
1327 | } | |
1328 | ||
1329 | fclose(fp); | |
1330 | return 0; | |
1331 | } | |
1332 | ||
e5f3705e FT |
1333 | /* |
1334 | * Return -1 if none is found, otherwise the actual scripts number. | |
1335 | * | |
1336 | * Currently the only user of this function is the script browser, which | |
1337 | * will list all statically runnable scripts, select one, execute it and | |
1338 | * show the output in a perf browser. | |
1339 | */ | |
1340 | int find_scripts(char **scripts_array, char **scripts_path_array) | |
1341 | { | |
1342 | struct dirent *script_next, *lang_next, script_dirent, lang_dirent; | |
49e639e2 | 1343 | char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN]; |
e5f3705e | 1344 | DIR *scripts_dir, *lang_dir; |
49e639e2 | 1345 | struct perf_session *session; |
f5fc1412 JO |
1346 | struct perf_data_file file = { |
1347 | .path = input_name, | |
1348 | .mode = PERF_DATA_MODE_READ, | |
1349 | }; | |
e5f3705e FT |
1350 | char *temp; |
1351 | int i = 0; | |
1352 | ||
f5fc1412 | 1353 | session = perf_session__new(&file, false, NULL); |
49e639e2 FT |
1354 | if (!session) |
1355 | return -1; | |
1356 | ||
e5f3705e FT |
1357 | snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path()); |
1358 | ||
1359 | scripts_dir = opendir(scripts_path); | |
49e639e2 FT |
1360 | if (!scripts_dir) { |
1361 | perf_session__delete(session); | |
e5f3705e | 1362 | return -1; |
49e639e2 | 1363 | } |
e5f3705e FT |
1364 | |
1365 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { | |
1366 | snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path, | |
1367 | lang_dirent.d_name); | |
1368 | #ifdef NO_LIBPERL | |
1369 | if (strstr(lang_path, "perl")) | |
1370 | continue; | |
1371 | #endif | |
1372 | #ifdef NO_LIBPYTHON | |
1373 | if (strstr(lang_path, "python")) | |
1374 | continue; | |
1375 | #endif | |
1376 | ||
1377 | lang_dir = opendir(lang_path); | |
1378 | if (!lang_dir) | |
1379 | continue; | |
1380 | ||
1381 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { | |
1382 | /* Skip those real time scripts: xxxtop.p[yl] */ | |
1383 | if (strstr(script_dirent.d_name, "top.")) | |
1384 | continue; | |
1385 | sprintf(scripts_path_array[i], "%s/%s", lang_path, | |
1386 | script_dirent.d_name); | |
1387 | temp = strchr(script_dirent.d_name, '.'); | |
1388 | snprintf(scripts_array[i], | |
1389 | (temp - script_dirent.d_name) + 1, | |
1390 | "%s", script_dirent.d_name); | |
49e639e2 FT |
1391 | |
1392 | if (check_ev_match(lang_path, | |
1393 | scripts_array[i], session)) | |
1394 | continue; | |
1395 | ||
e5f3705e FT |
1396 | i++; |
1397 | } | |
49e639e2 | 1398 | closedir(lang_dir); |
e5f3705e FT |
1399 | } |
1400 | ||
49e639e2 FT |
1401 | closedir(scripts_dir); |
1402 | perf_session__delete(session); | |
e5f3705e FT |
1403 | return i; |
1404 | } | |
1405 | ||
3875294f TZ |
1406 | static char *get_script_path(const char *script_root, const char *suffix) |
1407 | { | |
1408 | struct dirent *script_next, *lang_next, script_dirent, lang_dirent; | |
1409 | char scripts_path[MAXPATHLEN]; | |
1410 | char script_path[MAXPATHLEN]; | |
1411 | DIR *scripts_dir, *lang_dir; | |
1412 | char lang_path[MAXPATHLEN]; | |
38efb539 | 1413 | char *__script_root; |
3875294f TZ |
1414 | |
1415 | snprintf(scripts_path, MAXPATHLEN, "%s/scripts", perf_exec_path()); | |
1416 | ||
1417 | scripts_dir = opendir(scripts_path); | |
1418 | if (!scripts_dir) | |
1419 | return NULL; | |
1420 | ||
008f29d3 | 1421 | for_each_lang(scripts_path, scripts_dir, lang_dirent, lang_next) { |
3875294f TZ |
1422 | snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path, |
1423 | lang_dirent.d_name); | |
1424 | lang_dir = opendir(lang_path); | |
1425 | if (!lang_dir) | |
1426 | continue; | |
1427 | ||
008f29d3 | 1428 | for_each_script(lang_path, lang_dir, script_dirent, script_next) { |
38efb539 RR |
1429 | __script_root = get_script_root(&script_dirent, suffix); |
1430 | if (__script_root && !strcmp(script_root, __script_root)) { | |
1431 | free(__script_root); | |
946ef2a2 NK |
1432 | closedir(lang_dir); |
1433 | closedir(scripts_dir); | |
3875294f TZ |
1434 | snprintf(script_path, MAXPATHLEN, "%s/%s", |
1435 | lang_path, script_dirent.d_name); | |
38efb539 | 1436 | return strdup(script_path); |
3875294f TZ |
1437 | } |
1438 | free(__script_root); | |
1439 | } | |
946ef2a2 | 1440 | closedir(lang_dir); |
3875294f | 1441 | } |
946ef2a2 | 1442 | closedir(scripts_dir); |
3875294f | 1443 | |
38efb539 | 1444 | return NULL; |
3875294f TZ |
1445 | } |
1446 | ||
b5b87312 TZ |
1447 | static bool is_top_script(const char *script_path) |
1448 | { | |
965bb6be | 1449 | return ends_with(script_path, "top") == NULL ? false : true; |
b5b87312 TZ |
1450 | } |
1451 | ||
1452 | static int has_required_arg(char *script_path) | |
1453 | { | |
1454 | struct script_desc *desc; | |
1455 | int n_args = 0; | |
1456 | char *p; | |
1457 | ||
1458 | desc = script_desc__new(NULL); | |
1459 | ||
1460 | if (read_script_info(desc, script_path)) | |
1461 | goto out; | |
1462 | ||
1463 | if (!desc->args) | |
1464 | goto out; | |
1465 | ||
1466 | for (p = desc->args; *p; p++) | |
1467 | if (*p == '<') | |
1468 | n_args++; | |
1469 | out: | |
1470 | script_desc__delete(desc); | |
1471 | ||
1472 | return n_args; | |
1473 | } | |
1474 | ||
69b6470e ACM |
1475 | static int have_cmd(int argc, const char **argv) |
1476 | { | |
1477 | char **__argv = malloc(sizeof(const char *) * argc); | |
1478 | ||
1479 | if (!__argv) { | |
1480 | pr_err("malloc failed\n"); | |
1481 | return -1; | |
1482 | } | |
1483 | ||
1484 | memcpy(__argv, argv, sizeof(const char *) * argc); | |
1485 | argc = parse_options(argc, (const char **)__argv, record_options, | |
1486 | NULL, PARSE_OPT_STOP_AT_NON_OPTION); | |
1487 | free(__argv); | |
5f9c39dc | 1488 | |
69b6470e ACM |
1489 | system_wide = (argc == 0); |
1490 | ||
1491 | return 0; | |
1492 | } | |
1493 | ||
1494 | int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused) | |
1495 | { | |
1496 | bool show_full_info = false; | |
e90debdd JO |
1497 | bool header = false; |
1498 | bool header_only = false; | |
69b6470e ACM |
1499 | char *rec_script_path = NULL; |
1500 | char *rep_script_path = NULL; | |
1501 | struct perf_session *session; | |
1502 | char *script_path = NULL; | |
1503 | const char **__argv; | |
1504 | int i, j, err; | |
6f3e5eda AH |
1505 | struct perf_script script = { |
1506 | .tool = { | |
1507 | .sample = process_sample_event, | |
1508 | .mmap = perf_event__process_mmap, | |
1509 | .mmap2 = perf_event__process_mmap2, | |
1510 | .comm = perf_event__process_comm, | |
1511 | .exit = perf_event__process_exit, | |
1512 | .fork = perf_event__process_fork, | |
7ea95727 | 1513 | .attr = process_attr, |
6f3e5eda AH |
1514 | .tracing_data = perf_event__process_tracing_data, |
1515 | .build_id = perf_event__process_build_id, | |
1516 | .ordered_samples = true, | |
1517 | .ordering_requires_timestamps = true, | |
1518 | }, | |
1519 | }; | |
69b6470e | 1520 | const struct option options[] = { |
5f9c39dc FW |
1521 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
1522 | "dump raw trace in ASCII"), | |
c0555642 | 1523 | OPT_INCR('v', "verbose", &verbose, |
69b6470e | 1524 | "be more verbose (show symbol address, etc)"), |
4b9c0c59 | 1525 | OPT_BOOLEAN('L', "Latency", &latency_format, |
cda48461 | 1526 | "show latency attributes (irqs/preemption disabled, etc)"), |
4b9c0c59 TZ |
1527 | OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts", |
1528 | list_available_scripts), | |
956ffd02 TZ |
1529 | OPT_CALLBACK('s', "script", NULL, "name", |
1530 | "script file name (lang:script name, script name, or *)", | |
1531 | parse_scriptname), | |
1532 | OPT_STRING('g', "gen-script", &generate_script_lang, "lang", | |
133dc4c3 | 1533 | "generate perf-script.xx script in specified language"), |
69b6470e | 1534 | OPT_STRING('i', "input", &input_name, "file", "input file name"), |
ffabd99e FW |
1535 | OPT_BOOLEAN('d', "debug-mode", &debug_mode, |
1536 | "do various checks like samples ordering and lost events"), | |
e90debdd JO |
1537 | OPT_BOOLEAN(0, "header", &header, "Show data header."), |
1538 | OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."), | |
c0230b2b DA |
1539 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, |
1540 | "file", "vmlinux pathname"), | |
1541 | OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, | |
1542 | "file", "kallsyms pathname"), | |
1543 | OPT_BOOLEAN('G', "hide-call-graph", &no_callchain, | |
1544 | "When printing symbols do not display call chain"), | |
1545 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", | |
1546 | "Look for files with symbols relative to this directory"), | |
745f43e3 | 1547 | OPT_CALLBACK('f', "fields", NULL, "str", |
a978f2ab AN |
1548 | "comma separated output fields prepend with 'type:'. " |
1549 | "Valid types: hw,sw,trace,raw. " | |
1550 | "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso," | |
69b6470e | 1551 | "addr,symoff", parse_output_fields), |
317df650 | 1552 | OPT_BOOLEAN('a', "all-cpus", &system_wide, |
69b6470e | 1553 | "system-wide collection from all CPUs"), |
36385be5 FT |
1554 | OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", |
1555 | "only consider these symbols"), | |
c8e66720 | 1556 | OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"), |
e7984b7b DA |
1557 | OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]", |
1558 | "only display events for these comms"), | |
fbe96f29 SE |
1559 | OPT_BOOLEAN('I', "show-info", &show_full_info, |
1560 | "display extended information from perf.data file"), | |
0bc8d205 AN |
1561 | OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path, |
1562 | "Show the path of [kernel.kallsyms]"), | |
ad7ebb9a NK |
1563 | OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events, |
1564 | "Show the fork/comm/exit events"), | |
ba1ddf42 NK |
1565 | OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events, |
1566 | "Show the mmap events"), | |
1909629f | 1567 | OPT_END() |
69b6470e ACM |
1568 | }; |
1569 | const char * const script_usage[] = { | |
1570 | "perf script [<options>]", | |
1571 | "perf script [<options>] record <script> [<record-options>] <command>", | |
1572 | "perf script [<options>] report <script> [script-args]", | |
1573 | "perf script [<options>] <script> [<record-options>] <command>", | |
1574 | "perf script [<options>] <top-script> [script-args]", | |
1575 | NULL | |
1576 | }; | |
f5fc1412 JO |
1577 | struct perf_data_file file = { |
1578 | .mode = PERF_DATA_MODE_READ, | |
1579 | }; | |
3875294f | 1580 | |
b5b87312 TZ |
1581 | setup_scripting(); |
1582 | ||
133dc4c3 | 1583 | argc = parse_options(argc, argv, options, script_usage, |
b5b87312 TZ |
1584 | PARSE_OPT_STOP_AT_NON_OPTION); |
1585 | ||
f5fc1412 JO |
1586 | file.path = input_name; |
1587 | ||
b5b87312 TZ |
1588 | if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) { |
1589 | rec_script_path = get_script_path(argv[1], RECORD_SUFFIX); | |
1590 | if (!rec_script_path) | |
1591 | return cmd_record(argc, argv, NULL); | |
3875294f TZ |
1592 | } |
1593 | ||
b5b87312 TZ |
1594 | if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) { |
1595 | rep_script_path = get_script_path(argv[1], REPORT_SUFFIX); | |
1596 | if (!rep_script_path) { | |
3875294f | 1597 | fprintf(stderr, |
b5b87312 | 1598 | "Please specify a valid report script" |
133dc4c3 | 1599 | "(see 'perf script -l' for listing)\n"); |
3875294f TZ |
1600 | return -1; |
1601 | } | |
3875294f TZ |
1602 | } |
1603 | ||
44e668c6 BH |
1604 | /* make sure PERF_EXEC_PATH is set for scripts */ |
1605 | perf_set_argv_exec_path(perf_exec_path()); | |
1606 | ||
b5b87312 | 1607 | if (argc && !script_name && !rec_script_path && !rep_script_path) { |
a0cccc2e | 1608 | int live_pipe[2]; |
b5b87312 | 1609 | int rep_args; |
a0cccc2e TZ |
1610 | pid_t pid; |
1611 | ||
b5b87312 TZ |
1612 | rec_script_path = get_script_path(argv[0], RECORD_SUFFIX); |
1613 | rep_script_path = get_script_path(argv[0], REPORT_SUFFIX); | |
1614 | ||
1615 | if (!rec_script_path && !rep_script_path) { | |
1616 | fprintf(stderr, " Couldn't find script %s\n\n See perf" | |
133dc4c3 IM |
1617 | " script -l for available scripts.\n", argv[0]); |
1618 | usage_with_options(script_usage, options); | |
a0cccc2e TZ |
1619 | } |
1620 | ||
b5b87312 TZ |
1621 | if (is_top_script(argv[0])) { |
1622 | rep_args = argc - 1; | |
1623 | } else { | |
1624 | int rec_args; | |
1625 | ||
1626 | rep_args = has_required_arg(rep_script_path); | |
1627 | rec_args = (argc - 1) - rep_args; | |
1628 | if (rec_args < 0) { | |
1629 | fprintf(stderr, " %s script requires options." | |
133dc4c3 | 1630 | "\n\n See perf script -l for available " |
b5b87312 | 1631 | "scripts and options.\n", argv[0]); |
133dc4c3 | 1632 | usage_with_options(script_usage, options); |
b5b87312 | 1633 | } |
a0cccc2e TZ |
1634 | } |
1635 | ||
1636 | if (pipe(live_pipe) < 0) { | |
1637 | perror("failed to create pipe"); | |
d54b1a9e | 1638 | return -1; |
a0cccc2e TZ |
1639 | } |
1640 | ||
1641 | pid = fork(); | |
1642 | if (pid < 0) { | |
1643 | perror("failed to fork"); | |
d54b1a9e | 1644 | return -1; |
a0cccc2e TZ |
1645 | } |
1646 | ||
1647 | if (!pid) { | |
b5b87312 TZ |
1648 | j = 0; |
1649 | ||
a0cccc2e TZ |
1650 | dup2(live_pipe[1], 1); |
1651 | close(live_pipe[0]); | |
1652 | ||
317df650 RR |
1653 | if (is_top_script(argv[0])) { |
1654 | system_wide = true; | |
1655 | } else if (!system_wide) { | |
d54b1a9e DA |
1656 | if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) { |
1657 | err = -1; | |
1658 | goto out; | |
1659 | } | |
317df650 | 1660 | } |
b5b87312 TZ |
1661 | |
1662 | __argv = malloc((argc + 6) * sizeof(const char *)); | |
d54b1a9e DA |
1663 | if (!__argv) { |
1664 | pr_err("malloc failed\n"); | |
1665 | err = -ENOMEM; | |
1666 | goto out; | |
1667 | } | |
e8719adf | 1668 | |
b5b87312 TZ |
1669 | __argv[j++] = "/bin/sh"; |
1670 | __argv[j++] = rec_script_path; | |
1671 | if (system_wide) | |
1672 | __argv[j++] = "-a"; | |
1673 | __argv[j++] = "-q"; | |
1674 | __argv[j++] = "-o"; | |
1675 | __argv[j++] = "-"; | |
1676 | for (i = rep_args + 1; i < argc; i++) | |
1677 | __argv[j++] = argv[i]; | |
1678 | __argv[j++] = NULL; | |
a0cccc2e TZ |
1679 | |
1680 | execvp("/bin/sh", (char **)__argv); | |
e8719adf | 1681 | free(__argv); |
a0cccc2e TZ |
1682 | exit(-1); |
1683 | } | |
1684 | ||
1685 | dup2(live_pipe[0], 0); | |
1686 | close(live_pipe[1]); | |
1687 | ||
b5b87312 | 1688 | __argv = malloc((argc + 4) * sizeof(const char *)); |
d54b1a9e DA |
1689 | if (!__argv) { |
1690 | pr_err("malloc failed\n"); | |
1691 | err = -ENOMEM; | |
1692 | goto out; | |
1693 | } | |
1694 | ||
b5b87312 TZ |
1695 | j = 0; |
1696 | __argv[j++] = "/bin/sh"; | |
1697 | __argv[j++] = rep_script_path; | |
1698 | for (i = 1; i < rep_args + 1; i++) | |
1699 | __argv[j++] = argv[i]; | |
1700 | __argv[j++] = "-i"; | |
1701 | __argv[j++] = "-"; | |
1702 | __argv[j++] = NULL; | |
a0cccc2e TZ |
1703 | |
1704 | execvp("/bin/sh", (char **)__argv); | |
e8719adf | 1705 | free(__argv); |
a0cccc2e TZ |
1706 | exit(-1); |
1707 | } | |
1708 | ||
b5b87312 TZ |
1709 | if (rec_script_path) |
1710 | script_path = rec_script_path; | |
1711 | if (rep_script_path) | |
1712 | script_path = rep_script_path; | |
34c86ea9 | 1713 | |
b5b87312 | 1714 | if (script_path) { |
b5b87312 | 1715 | j = 0; |
3875294f | 1716 | |
317df650 RR |
1717 | if (!rec_script_path) |
1718 | system_wide = false; | |
d54b1a9e DA |
1719 | else if (!system_wide) { |
1720 | if (have_cmd(argc - 1, &argv[1]) != 0) { | |
1721 | err = -1; | |
1722 | goto out; | |
1723 | } | |
1724 | } | |
34c86ea9 | 1725 | |
b5b87312 | 1726 | __argv = malloc((argc + 2) * sizeof(const char *)); |
d54b1a9e DA |
1727 | if (!__argv) { |
1728 | pr_err("malloc failed\n"); | |
1729 | err = -ENOMEM; | |
1730 | goto out; | |
1731 | } | |
1732 | ||
34c86ea9 TZ |
1733 | __argv[j++] = "/bin/sh"; |
1734 | __argv[j++] = script_path; | |
1735 | if (system_wide) | |
1736 | __argv[j++] = "-a"; | |
b5b87312 | 1737 | for (i = 2; i < argc; i++) |
34c86ea9 TZ |
1738 | __argv[j++] = argv[i]; |
1739 | __argv[j++] = NULL; | |
3875294f TZ |
1740 | |
1741 | execvp("/bin/sh", (char **)__argv); | |
e8719adf | 1742 | free(__argv); |
3875294f TZ |
1743 | exit(-1); |
1744 | } | |
956ffd02 | 1745 | |
655000e7 ACM |
1746 | if (symbol__init() < 0) |
1747 | return -1; | |
cf4fee50 TZ |
1748 | if (!script_name) |
1749 | setup_pager(); | |
5f9c39dc | 1750 | |
6f3e5eda | 1751 | session = perf_session__new(&file, false, &script.tool); |
d8f66248 ACM |
1752 | if (session == NULL) |
1753 | return -ENOMEM; | |
1754 | ||
e90debdd JO |
1755 | if (header || header_only) { |
1756 | perf_session__fprintf_info(session, stdout, show_full_info); | |
1757 | if (header_only) | |
1758 | return 0; | |
1759 | } | |
1760 | ||
6f3e5eda AH |
1761 | script.session = session; |
1762 | ||
5d67be97 AB |
1763 | if (cpu_list) { |
1764 | if (perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap)) | |
1765 | return -1; | |
1766 | } | |
1767 | ||
1424dc96 | 1768 | if (!no_callchain) |
c0230b2b DA |
1769 | symbol_conf.use_callchain = true; |
1770 | else | |
1771 | symbol_conf.use_callchain = false; | |
1772 | ||
956ffd02 TZ |
1773 | if (generate_script_lang) { |
1774 | struct stat perf_stat; | |
745f43e3 DA |
1775 | int input; |
1776 | ||
2c9e45f7 | 1777 | if (output_set_by_user()) { |
745f43e3 DA |
1778 | fprintf(stderr, |
1779 | "custom fields not supported for generated scripts"); | |
1780 | return -1; | |
1781 | } | |
956ffd02 | 1782 | |
cc9784bd | 1783 | input = open(file.path, O_RDONLY); /* input_name */ |
956ffd02 TZ |
1784 | if (input < 0) { |
1785 | perror("failed to open file"); | |
d54b1a9e | 1786 | return -1; |
956ffd02 TZ |
1787 | } |
1788 | ||
1789 | err = fstat(input, &perf_stat); | |
1790 | if (err < 0) { | |
1791 | perror("failed to stat file"); | |
d54b1a9e | 1792 | return -1; |
956ffd02 TZ |
1793 | } |
1794 | ||
1795 | if (!perf_stat.st_size) { | |
1796 | fprintf(stderr, "zero-sized file, nothing to do!\n"); | |
d54b1a9e | 1797 | return 0; |
956ffd02 TZ |
1798 | } |
1799 | ||
1800 | scripting_ops = script_spec__lookup(generate_script_lang); | |
1801 | if (!scripting_ops) { | |
1802 | fprintf(stderr, "invalid language specifier"); | |
1803 | return -1; | |
1804 | } | |
1805 | ||
29f5ffd3 | 1806 | err = scripting_ops->generate_script(session->tevent.pevent, |
da378962 | 1807 | "perf-script"); |
956ffd02 TZ |
1808 | goto out; |
1809 | } | |
1810 | ||
1811 | if (script_name) { | |
586bc5cc | 1812 | err = scripting_ops->start_script(script_name, argc, argv); |
956ffd02 TZ |
1813 | if (err) |
1814 | goto out; | |
133dc4c3 | 1815 | pr_debug("perf script started with script %s\n\n", script_name); |
956ffd02 TZ |
1816 | } |
1817 | ||
9cbdb702 DA |
1818 | |
1819 | err = perf_session__check_output_opt(session); | |
1820 | if (err < 0) | |
1821 | goto out; | |
1822 | ||
6f3e5eda | 1823 | err = __cmd_script(&script); |
956ffd02 | 1824 | |
d8f66248 | 1825 | perf_session__delete(session); |
956ffd02 TZ |
1826 | cleanup_scripting(); |
1827 | out: | |
1828 | return err; | |
5f9c39dc | 1829 | } |